diff --git "a/prepare-upload.ipynb" "b/prepare-upload.ipynb"
new file mode 100644--- /dev/null
+++ "b/prepare-upload.ipynb"
@@ -0,0 +1,3379 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "33ff07b7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import json\n",
+ "import soundfile as sf\n",
+ "from tqdm import tqdm"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "8b36e5d6",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "!mkdir audio"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "26f935d3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "with open('/home/husein/speech-bahasa/malay-asr-train-shuffled.json') as fopen:\n",
+ " data = json.load(fopen)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "c9d2279d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# !wget https://gist.githubusercontent.com/huseinzol05/98974ae8c6c7a65d4bc0af9f5003786a/raw/5aa5257608b61e8fcc828e99fbd070d5ca7358e3/mp.py"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "51e46ebc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import mp\n",
+ "\n",
+ "def loop(index):\n",
+ " index, _ = index\n",
+ " for i in tqdm(index):\n",
+ " y, _ = sf.read(data['X'][i])\n",
+ " sf.write(f'audio/{i}.mp3', y, 16000)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "61fb2fd6",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|███████████████████████████████████████████| 10/10 [00:02<00:00, 4.63it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "loop((range(10), 0))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "45421d6d",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 76%|████████████████████████▎ | 61997/81779 [20:02:48<7:46:14, 1.41s/it]IOPub message rate exceeded.\n",
+ "The notebook 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",
+ "`--NotebookApp.iopub_msg_rate_limit`.\n",
+ "\n",
+ "Current values:\n",
+ "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
+ "NotebookApp.rate_limit_window=3.0 (secs)\n",
+ "\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:37:45<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:37:49<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:37:51<00:00, 1.17s/it]\n",
+ "100%|███████████████████████████████████████████| 19/19 [00:23<00:00, 1.22s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:09<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:16<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:17<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:17<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:21<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:29<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:38:57<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:09<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:09<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:21<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:30<00:00, 1.17s/it]\n",
+ "100%|████████████████████████████████��█| 81779/81779 [26:39:33<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:48<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:52<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:39:56<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:40:06<00:00, 1.17s/it]\n",
+ "100%|██████████████████████████████████| 81779/81779 [26:40:12<00:00, 1.17s/it]\n"
+ ]
+ }
+ ],
+ "source": [
+ "mp.multiprocessing(range(len(data['X'])), loop, cores = 20, returned = False)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "deb07990",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|█████████████████████████████| 1635599/1635599 [00:03<00:00, 484512.06it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "import os\n",
+ "\n",
+ "with open('label.jsonl', 'w') as fopen:\n",
+ " for i in tqdm(range(len(data['X']))):\n",
+ " f = f'audio/{i}.mp3'\n",
+ " d = {\n",
+ " 'filename': f,\n",
+ " 'Y': data['Y'][i]\n",
+ " }\n",
+ " fopen.write(f'{json.dumps(d)}\\n')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "id": "85353fef",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from datasets import load_dataset, Audio"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "id": "5676f8b5",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Downloading and preparing dataset json/default to /home/husein/.cache/huggingface/datasets/json/default-e2b95159dbdc9fa6/0.0.0/e347ab1c932092252e717ff3f949105a4dd28b27e842dd53157d2f72e276c2e4...\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "589c88f771424543b3d60f24f89fbe83",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading data files: 0%| | 0/1 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "94fdd8dd2aa3471ca0d189c6f37140c0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Extracting data files: 0%| | 0/1 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c6cf4c9c519244f894a5b3925ec43b0d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Generating train split: 0 examples [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Dataset json downloaded and prepared to /home/husein/.cache/huggingface/datasets/json/default-e2b95159dbdc9fa6/0.0.0/e347ab1c932092252e717ff3f949105a4dd28b27e842dd53157d2f72e276c2e4. Subsequent calls will reuse this data.\n"
+ ]
+ }
+ ],
+ "source": [
+ "dataset = load_dataset('json', data_files = 'label.jsonl', keep_in_memory = False, split = 'train')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 29,
+ "id": "992c790e",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{'filename': 'audio/0.mp3',\n",
+ " 'Y': 'insurans perjalanan adalah penting ketika anda ingin bercuti di luar negara'}"
+ ]
+ },
+ "execution_count": 29,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dataset[0]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "id": "619a168e",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset = dataset.cast_column('filename', Audio(sampling_rate = 16000))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "id": "03895efa",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{'filename': {'path': 'audio/10000.mp3',\n",
+ " 'array': array([ 0.30818927, 0.36826494, 0.3203871 , ..., -0.12982449,\n",
+ " -0.13854556, -0.1248559 ]),\n",
+ " 'sampling_rate': 16000},\n",
+ " 'Y': 'compare dengan ubat kita satu botol boleh bertukar semua sangat tak logik ya jadi jangan percaya'}"
+ ]
+ },
+ "execution_count": 39,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dataset[10000]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "id": "c477770c",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ " \n",
+ " "
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 38,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import IPython.display as ipd\n",
+ "ipd.Audio(dataset[10000]['filename']['array'], rate = 16000)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 40,
+ "id": "390a8aff",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "26d553fe2c7a485fba88312495a124e8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fd927da4675a44b786a1acce4c725f05",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Pushing dataset shards to the dataset hub: 0%| | 0/107 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "3878436dcdeb483f9767c21cbb1472a4",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "28599c3b13c840a88a1d7ce9f6c21deb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d88a646d8501464fb7e5c9cda201a765",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "92df482fa2924520ad8451ce7128023a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "501759a685f641658684dc5da63eb474",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f649da1760884245aa4b9fbd17387f1e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "cfb5ef8335214889b070eb60d5235532",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e8da0788ce4c434fade2c27cb091489b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0bc1bc0f45ec4f7d9d1c581b6177daf4",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "490b3e487f744a969fddbae365eb2b6b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7ab5d4bbd6f6412caae258df4581a67c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "97ce9834067f4b769f6fef3aeb16fcae",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "53ebe36afe354219bb77add0707d6f3c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "6d7f6fd0f22a4cbcb5fcf087eddc7056",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4502f60ad1e04d508788ed9c31c8de67",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "359122b20dbe4ecf8b44260d9102eae6",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "55786039a7134c56b43d8c290e66ca38",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2472051afaf44ab2acb3f65a80ee6ab2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b0f0177e0bea4f5d85e634ca340b0451",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "aa302d3209524c2f89edf8a26a59d107",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "01ff44de41144254b57dbc4ce345ec63",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "99d4de206cb14f768723f3b7e49a45c6",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "de462ac29f73437f8324d37546de1230",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "53cd62fb90354aa8a39a4eeb1ab3cc3e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4f521b48be3c4261b2d7ca4df9c62575",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "19f7d07b32fc437d9bbd1d28ff6b9656",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b14d3ff6d0f549478535bac2c5ed693e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "61cb01a762054d8b83207a4f50337f62",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4e4dc16ad197497983a3fb8d394c3bc7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "8fd41679b5b4459aa33ed2941c9aa17e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1b08a32fd43b40fda2253fe85ac9ada3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "a871803a82fe40dba8471a86a3a740a7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c1dc99b109e14ba8b4652866b43c03af",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fc9b978bb78046e791b1490701f60470",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b99fd2625d21496fb552ea09c3fd665d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "3adc1cc38bcf4511adb4b68b8ad56aa3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e99871ae7c6b454cac64ae0c9eb8dbe0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "976bcdf3a7724dd59655b3702c617b95",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2051e28a354244ac920e361881b6a364",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "cd6e7a57166842a1840675ef38f8ad9d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b040454b101c4a2088cb1b064eb07032",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d6e6018d9c0d47879c521cea3e5bbd80",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "58db357a79364bb3bd34b97e62e147b7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "10c01d75472440d0b1aa56fe7f13b916",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b0ede02ce5aa4bbb8d95e661f073a5c3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c7f4407b2c054f2e8cc65c8a2d15da05",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7f0ba90931f5433faf076e655167e85c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "605fd721d7b64643ae86214dc5808cc6",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "bad79175506c49eb9283b9d55bbf28dc",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "81c57b991efe4e118647dddcfb7790e0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "69be8c22dc3a4774a65d97efc0f4a484",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2bced91834cc475299712c78517ccf4d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "989e14009cc3440a9a0ef42617f233c2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1b30b448a9e841dcb11aa53bd4612c29",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4a3c1c39ee6f410ca69967aacc116160",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fcd80994813945a6bee4648a3d526e94",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "db8fb7bafa8648a8878962dbb25d928c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f8a7ee98593f4447a9ade0c616ec727d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4ae4c678ea5a46d4ad25e03fa600f660",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "72ab2578bc1745e39a771508e16d4ddb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ca37562386f1465b82b9f17b51bded7e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7c6657665660433dadfed7603b40adda",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b0cbeddec2da4282abfd634fa321a9da",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "58e8d670e7e544dda415f861a99db1da",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "618b9669f1d5444885367bd1f2bd957b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d06b0e46291344ed8f6d0990cbd1ec0b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e9b1f40f37734190a2334cef9cfb91e7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1401b72d94cd4f969aa923aa18b315ef",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d74d8949b8da4161900890cd230ca291",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b711d7aad5aa4b6d8a52133c082bd5c6",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "92ab4f3181744ed28d00034292a17593",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e19bc474f1f64f0e8bf7418957d6362a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "62f48740bd0c43a3857847d9a0dda189",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "3d2c578ab2754c3eb428f7268fc68d70",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4f252f4124634e8cb7b13d640123bd4e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7e4c5b3b68da4ea186660192145f2945",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "af232a0551784630afc06f1360dff8be",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2cf0ab9a567e4a18bc5b15010ad08415",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1558502f34b94432ace8addf514a4920",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "168caead71c6436f952ab9c2eaa9f830",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e006c476c90347d5a7690c4e4fc75ea1",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "cf6ba7c48250416fa280566b15ae07b5",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "bf7072756f4d461f9ccd071b2458babb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "706d26c84733496887d64bf0f211a067",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "99981d53db864521bed9257c3728a80d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0956b3dc06134028906b468ea1dc971a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "961b3b8ab3f442c7a029683bb8148a68",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "be5f120d57f54ceeb82d15003019de32",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "16518716277f47c99bb32b4ef467daf4",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e739e8ff6bb648d5a0b4cdfd311d9cae",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fdbfebe06b054264a7e6551061cf57ae",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d934e1b0bfab487e962f9253c83dc7ed",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "97641858d77844039697a3a0682f239b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "970901d51f46474fb3f9879874ab72d8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "749210bbbdd74f9e8236b03dfb19b935",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "70f6714e98bb4a208791175542c4447e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0cd61c8385af4752bb1b68ac994d0003",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c52fe1ec6e9e43a4b789f0b2d48c8679",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fde06e18e7ea4fa58a6b5ff5cb283694",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c001070408d04a7da79df1fbc2b7d73f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c53e6ad692ae45e78d5af729966dcef0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0f0f4abb7155453a897c492aca875cc7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "04d76c83f7c54953b5c5cca48c710f03",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "99ca070254ee417e8a05a2ed0728217d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2f111b500d844aa8aaa94d2bd2e5c853",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e45d1863f7034672ad90bc24d4af2389",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "adc2504062ba4799934d230f553db461",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "770bc09573fa494dae16dd8007da36a1",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c38eada710b44caaa99b363b91bcb00a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f6341e87bc7b4318a58aaa8cd3666d66",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "cf2887bf7b654099a466e2ceaa31606c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1c0567e5900f4be386a5ecbb77e1b772",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "080f1dee910a4d6db7b9716aa5be7d52",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "359dcc9e1b8b4d13b6d498d60f812be6",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "9e0b4eebbf3c457cae6d55d29cfa1aeb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d9be9333625042939650531c03b40202",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d05b681b7df94cf79650fd4625d83bcf",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "491e0882377c42cebb6e5fddc71c6972",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "268d6e63cd344e11acd3ed0bc0dc93ea",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ed1a16a2bee047bd9c2c2dcd03e8bab8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "088e0a519267408dae03a6ce3b272171",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "20575742b5ca4162bca7eb920cdbaaab",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4f9f345bde944fa8bc585322ce487699",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d9acf8dc6ee145f3bd62b0b272b711e3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1bae5ec81ff84189acca36befc86dbc5",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "dccd74cfdd274168b14379ac2e4f682d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "36dc5424ea384f83885cee243f972674",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e1fe0334a91c40bf90af5d1805134f97",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fea4393badd746098c8b3ee72a44e218",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "04dabcf22e1c486ba6288a5dde19ff2a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4f8a6909548c4cc58f35ffb8a5afdc28",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "db04f9632ea4431cbd102cfdf2a00f5d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5fa48767872b4a06ae03350b7c5e8cc9",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d152bc072a26405bbdf15afd5f69fbdb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0f1c0fa411e7443594d462610e952992",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5a027346c6c64c349efad27e3a15d6d8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "24f2e6e27f444a948a6ddd4e62ba590e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "416c0d342b574bfea4beebe73c4f264f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "a2ca7bd4e65541eeb1d8cf81a98aa80e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "16d82443e6ec43bcaaa23eb53edb502e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c3d897b3b7464446b0299a1ba815856e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4cdc564266fa456bb4051e117bd84f7e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "420580aba20c4ff28b84e3e45e5de650",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e4fb2bd9f42444818a44b7477753a76c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "aa06f6a0ef8644c1a1ecf41bd134f380",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d77ac024cc254e63985963c8916e788a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "87278630b07f4c1197984079863259cf",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b7be4b0c8f5c49a1b777cc004c867144",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "133876cdcdd845d68796bfcf3d53053d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c655f8f3b8024329a6a3ed2e4ebd2248",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2c51705c5609429094948c18b97db029",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "aa1aa80f135c4dbcaad74fe63c5ef0f4",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "16284bb0b2d1408aa4543887a1bd81b2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4d89d8ea3ac040d689c67548ce08447c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "1ae5c0d535334f5c911573b746681711",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "6539c2f70c98481f8f8129c706ce13ea",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "74b8a5661e224134a0323d1517f6f8b9",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fcb2a172ad1c4259964567c941b43d78",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7f7038f6932344fea248d2bfadd64e0d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2b301402da634b80948723b25536990f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "9ef91865376b43378142a72eedc3cb60",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "134afac1785d426497ced667d73fece3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "23885617e10044f4bfbb6c9001199aa0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ece95d63aa63480cad7f3c1fd1359359",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "8dd35bceabb9478e93a25fc595878c4b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "a3f8f9420b0d49289aa99beeab356cf0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "0dcccfcbf562441dbad70bc6a2028e64",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "9527a9d2d6b94a0f9208527816d3e5cb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5aad88cacefd44df95012bf47cadeb32",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "54df849a394a45f5992bc1ddce444f9f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "14fb505009884f4097d046ae93005008",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "012fcd1b63f34214bc622a53a37cf642",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7ed6cd7e710d4052b647b03fcf80b86c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d6389f12926944eeaa3e1068e7f40112",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "30e47667cb64422982fbc15bdb0c4fb3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "3aff784cb4804d3aa08b7ab41015e349",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "af1ef89a959944a3a00c50dcf329de2f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "3c724bde4b904110b9be60e3a6c654d1",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "178ae0fd1a264fd69a5a7b3edcb69bfb",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "459730609db0479daa8553fa8bf66151",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b8aea029912b4b47be579455ba433990",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "95aa73d35b0d48f2a33d4439eaa18c07",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7c81f503ff314b14b3ad7760ec537bc7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5a75654f02bf4e6eb46c7191d54d63d7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "2ecaa7af6dfd45e3949bda1b3c52dcd2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "6c1e86e404c74a14924a42fc98fe750a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "09a5d4c9faf24a87ab03ddca83d17f44",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "245096f1e68a4afd8c72cb1aece394b4",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c6eb71830e244c01a983ef2440e3e8f8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "a57c6ecbccc54569ba482086cecb1ac0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5426a08e117a4466936edb4361a043fc",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "4ef2fdc817c44741b5ce6cdb2c7644b2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "31e7df4385554414a83e482e23cae0f3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "65769419b8c84a76a20a29d134edded8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c9ac9e77cabb45e19715f92b401315df",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d2a05b9882de4b7088109924286ea398",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ac9a2995abf84dc48cc712f2f050c8ea",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f05f60b1a7374aea83319f0f499334cf",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "45441ded2a264844b3dc4af893512c26",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "a861cecaf9e748aab43d87711c71f878",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "fca7a507c13f4e72958d23322dbf41e7",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ec40d2e77bf94826801e5c06b61d486c",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "03527e9cefa74e198683bb85121f376d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "6db8f7f194aa4cfa988ffd3e65143ac8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "87aaaaec12184e8496076ee349aefa2a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "11e407d243e34333a40ea1319cd30fa0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15286 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "b92eca8eca8a407d993cdfdb5af84a5e",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "64b091eadc7b44529a5ed0f0b3923b20",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15285 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d24915d694604b65b496cfc3db373401",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7437f4f59cad4c81afda76c44c5f79d2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15285 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d7ebcf37f6de4d12826c7eb5ac9e8f0a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f3254130fa424f449dc151e483f39c18",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Map: 0%| | 0/15285 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "f1df5dda1b10422a9c4cb8c00512976d",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Creating parquet from Arrow format: 0%| | 0/153 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "dataset.push_to_hub('mesolitica/malaya-speech-malay-stt')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "2a1fd434",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "\"\"\"\n",
+ "Malaya-Speech Speech-to-Text dataset\n",
+ "This dataset combined from semisupervised Google Speech-to-Text and private datasets.\n",
+ "\n",
+ "Processing script https://github.com/mesolitica/malaya-speech/blob/master/pretrained-model/prepare-stt/prepare-malay-stt-train.ipynb\n",
+ "\n",
+ "This repository is to centralize the dataset for https://malaya-speech.readthedocs.io/\n",
+ "\"\"\""
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "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.8.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}