"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "show_random_elements(common_voice_train.remove_columns([\"path\", \"audio\"]), num_examples=10)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {
+ "id": "NdLHxhRd6IK7"
+ },
+ "outputs": [],
+ "source": [
+ "import re\n",
+ "CHARS_TO_IGNORE = [\",\", \"?\", \"¿\", \".\", \"!\", \"¡\", \";\", \";\", \":\", '\"\"', \"%\", '\"', \"�\", \"ʿ\", \"·\", \"჻\", \"~\", \"՞\",\n",
+ " \"؟\", \"،\", \"।\", \"॥\", \"«\", \"»\", \"„\", \"“\", \"”\", \"「\", \"」\", \"‘\", \"’\", \"《\", \"》\", \"(\", \")\", \"[\", \"]\",\n",
+ " \"{\", \"}\", \"=\", \"`\", \"_\", \"+\", \"<\", \">\", \"…\", \"–\", \"°\", \"´\", \"ʾ\", \"‹\", \"›\", \"©\", \"®\", \"—\", \"→\", \"。\",\n",
+ " \"、\", \"﹂\", \"﹁\", \"‧\", \"~\", \"﹏\", \",\", \"{\", \"}\", \"(\", \")\", \"[\", \"]\", \"【\", \"】\", \"‥\", \"〽\",\n",
+ " \"『\", \"』\", \"〝\", \"〟\", \"⟨\", \"⟩\", \"〜\", \":\", \"!\", \"?\", \"♪\", \"؛\", \"/\", \"\\\\\", \"º\", \"−\", \"^\", \"ʻ\", \"ˆ\"]\n",
+ "\n",
+ "\n",
+ "chars_to_remove_regex = f\"[{re.escape(''.join(CHARS_TO_IGNORE))}]\"\n",
+ "\n",
+ "def remove_special_characters(batch):\n",
+ " batch[\"sentence\"] = re.sub(chars_to_remove_regex, '', batch[\"sentence\"]).lower()\n",
+ " batch[\"sentence\"] = re.sub('[-]', ' ', batch[\"sentence\"]).lower()\n",
+ " return batch"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 81,
+ "referenced_widgets": [
+ "e3f4dd7cb7814691b99a98e00e42b413",
+ "07356cbb5c644aed8eb9de437e8e4691",
+ "24f1bfd43ca34ef9933d19e2b2ee93d6",
+ "d0ea9b81b1254e00a3f407d4632ebe50",
+ "92089a2dfb794fbe8a6a4b553f281d85",
+ "add1cdf7f5904571ba09b696819e6724",
+ "b083339d05a645718b9c697c0d3ce2a0",
+ "a5ec641870f44cbe9d5c4f2a6caf9e8b",
+ "8e3c6d7df70d47c5bf1ccfc5ce6b490c",
+ "699c71d9472b4a64a993e19bbe6dd735",
+ "2aaa74b624de44a78a55cea202430754",
+ "37c68e11a6d748018e1478f583a03051",
+ "990fd8d131e640e6ba0f6ed3613cfc8b",
+ "156189bcb95b4a2893d58e4dae6335d7",
+ "a4c60066b2ce4c78acb09269cf3e2894",
+ "515e18bdede14b8f86c3d2b41e4cef00",
+ "b8af84200dd44930970a304cc8fbeb8c",
+ "b269c11828d8431198f55a0f1825a58c",
+ "ba794f1f60eb4bd99c5a22a20acce667",
+ "60493e52db344e60afc883249d71c170",
+ "17e6b65ba76f4b2eb83148730734bddf",
+ "430b2d8471f74285b910f96e44f62924"
+ ]
+ },
+ "id": "q7YFJgON6IK7",
+ "outputId": "f9c0c89c-08bb-4e06-e29d-40cf7da492c3"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "9368a8d5d58d4e60870f24c505606c99",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "0ex [00:00, ?ex/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e33f059a0467483b9722b969127a1ab9",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "0ex [00:00, ?ex/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "common_voice_train = common_voice_train.map(remove_special_characters)\n",
+ "common_voice_test = common_voice_test.map(remove_special_characters)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {
+ "id": "NkGbORLu6IK8"
+ },
+ "outputs": [],
+ "source": [
+ "def extract_all_chars(batch):\n",
+ " all_text = \" \".join(batch[\"sentence\"])\n",
+ " vocab = list(set(all_text))\n",
+ " return {\"vocab\": [vocab], \"all_text\": [all_text]}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 81,
+ "referenced_widgets": [
+ "6825d36977104f0facdc9216b62ffeb7",
+ "85b98111a8f4486d865d5e9213f28ebf",
+ "0f745c9c99b44616a7dc0b41d63d800c",
+ "ed001b4d74c24bda8a75e05f1c4cebff",
+ "c854815e32334e88b18b3fc380b9dd01",
+ "c8c624a55eeb4398aeb78978f1534073",
+ "3da34632f24e40f18fc0d78691e58ba6",
+ "d3a824f5974941beb35aa9d718db3476",
+ "1cb79ffb0385495ba396e69add87a5fc",
+ "15ed138efd55476da386e8f5ed48d583",
+ "a1dfee9c96ab446cb1807d6dafadfab5",
+ "a12d06dcf0a64868a18634f1f6b6bb54",
+ "79a24cbc91f64305bc63e438f3b6be2a",
+ "d378de92cbe24153b561cb416219d3ff",
+ "51ae1caebc9a40b99e3889f79c01db9a",
+ "ad09e4d8e90c4537a592a51f55af3858",
+ "313a4ec6c0c247279c0520aaf1536f47",
+ "cb22cfc078494aebab308a9daef8729b",
+ "f9ae0de86e4244dd88d97fe64df30d3c",
+ "3fbdad25464044029ebddaa7c4503cb6",
+ "f63362b3cbad406891125013c655ab92",
+ "954014a8b8a84c80a365609dfc2181b7"
+ ]
+ },
+ "id": "Ju5Q4mA-6IK8",
+ "outputId": "80cdeca0-05ed-414d-f779-78e05671cbc4"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "c3a86f71d73f44cda2945f2bef2609b1",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ " 0%| | 0/1 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "39cb0140de344f79b5f7c5087cdffa9f",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ " 0%| | 0/1 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "vocab_train = common_voice_train.map(extract_all_chars, batched=True, batch_size=-1, keep_in_memory=True, remove_columns=common_voice_train.column_names)\n",
+ "vocab_test = common_voice_test.map(extract_all_chars, batched=True, batch_size=-1, keep_in_memory=True, remove_columns=common_voice_test.column_names)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {
+ "id": "gsolpWsJ6IK8"
+ },
+ "outputs": [],
+ "source": [
+ "vocab_list = list(set(vocab_train[\"vocab\"][0]) | set(vocab_test[\"vocab\"][0]))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "0q1NTOFJ6IK8",
+ "outputId": "60753b19-43a0-49e5-b370-82fa1c573952"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "6521\n",
+ "2613\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(len(common_voice_train))\n",
+ "print(len(common_voice_test))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "Inc3TW7j6IK8",
+ "outputId": "9ea274ae-0d4a-48aa-d883-2f3b245aab57"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "35"
+ ]
+ },
+ "execution_count": 21,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "len(vocab_list)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "SPiQbdO66IK8",
+ "outputId": "8eac4eab-33b5-4469-f28b-1413ef728054"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "['p',\n",
+ " 'ž',\n",
+ " 'y',\n",
+ " 'x',\n",
+ " 'e',\n",
+ " 'j',\n",
+ " 'a',\n",
+ " 'r',\n",
+ " 'ü',\n",
+ " 'n',\n",
+ " 'o',\n",
+ " 'g',\n",
+ " ' ',\n",
+ " 'c',\n",
+ " 'i',\n",
+ " 'ö',\n",
+ " '̇',\n",
+ " 'd',\n",
+ " 'm',\n",
+ " 's',\n",
+ " 't',\n",
+ " 'š',\n",
+ " 'f',\n",
+ " 'b',\n",
+ " 'h',\n",
+ " 'w',\n",
+ " 'k',\n",
+ " 'ä',\n",
+ " 'l',\n",
+ " 'v',\n",
+ " \"'\",\n",
+ " 'q',\n",
+ " 'u',\n",
+ " 'z',\n",
+ " 'õ']"
+ ]
+ },
+ "execution_count": 22,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "vocab_list"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {
+ "id": "eDCcZFFI6IK9"
+ },
+ "outputs": [],
+ "source": [
+ "vocab_dict = {v: k for k, v in enumerate(sorted(vocab_list))}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {
+ "id": "wjywVk9I6IK9"
+ },
+ "outputs": [],
+ "source": [
+ "vocab_dict[\"|\"] = vocab_dict[\" \"]\n",
+ "del vocab_dict[\" \"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "tgmet03p6IK9",
+ "outputId": "b95dddea-49db-41f7-f710-9452bf897495"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{\"'\": 1,\n",
+ " 'a': 2,\n",
+ " 'b': 3,\n",
+ " 'c': 4,\n",
+ " 'd': 5,\n",
+ " 'e': 6,\n",
+ " 'f': 7,\n",
+ " 'g': 8,\n",
+ " 'h': 9,\n",
+ " 'i': 10,\n",
+ " 'j': 11,\n",
+ " 'k': 12,\n",
+ " 'l': 13,\n",
+ " 'm': 14,\n",
+ " 'n': 15,\n",
+ " 'o': 16,\n",
+ " 'p': 17,\n",
+ " 'q': 18,\n",
+ " 'r': 19,\n",
+ " 's': 20,\n",
+ " 't': 21,\n",
+ " 'u': 22,\n",
+ " 'v': 23,\n",
+ " 'w': 24,\n",
+ " 'x': 25,\n",
+ " 'y': 26,\n",
+ " 'z': 27,\n",
+ " 'ä': 28,\n",
+ " 'õ': 29,\n",
+ " 'ö': 30,\n",
+ " 'ü': 31,\n",
+ " 'š': 32,\n",
+ " 'ž': 33,\n",
+ " '̇': 34,\n",
+ " '|': 0}"
+ ]
+ },
+ "execution_count": 25,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "vocab_dict"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "ZLcIQUV-6IK9",
+ "outputId": "9d909643-8981-4b4b-cf35-216533a61486"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "37"
+ ]
+ },
+ "execution_count": 26,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "vocab_dict[\"[UNK]\"] = len(vocab_dict)\n",
+ "vocab_dict[\"[PAD]\"] = len(vocab_dict)\n",
+ "len(vocab_dict)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {
+ "id": "OlE9Fm916IK9"
+ },
+ "outputs": [],
+ "source": [
+ "import json\n",
+ "with open('vocab.json', 'w') as vocab_file:\n",
+ " json.dump(vocab_dict, vocab_file)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "ZnwWceMF6IK9",
+ "outputId": "c55f12b5-d417-4363-92f8-75cd1a5d6677"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "file ./config.json not found\n",
+ "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n"
+ ]
+ }
+ ],
+ "source": [
+ "from transformers import Wav2Vec2CTCTokenizer\n",
+ "\n",
+ "tokenizer = Wav2Vec2CTCTokenizer.from_pretrained(\"./\", unk_token=\"[UNK]\", pad_token=\"[PAD]\", word_delimiter_token=\"|\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 29,
+ "metadata": {
+ "id": "ziVOWgep6IK9"
+ },
+ "outputs": [],
+ "source": [
+ "repo_name = \"wav2vec2-xlsr-1b-et\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {
+ "id": "biccWGbt6IK9"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/opt/conda/lib/python3.8/site-packages/huggingface_hub/hf_api.py:1001: FutureWarning: `create_repo` now takes `token` as an optional positional argument. Be sure to adapt your code!\n",
+ " warnings.warn(\n",
+ "Cloning https://huggingface.co/RASMUS/wav2vec2-xlsr-1b-et into local empty directory.\n",
+ "To https://huggingface.co/RASMUS/wav2vec2-xlsr-1b-et\n",
+ " ecf61eb..69fdc69 main -> main\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "'https://huggingface.co/RASMUS/wav2vec2-xlsr-1b-et/commit/69fdc6958a35d1f5d8af7690b6a219722f1278d5'"
+ ]
+ },
+ "execution_count": 30,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "tokenizer.push_to_hub(repo_name)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 31,
+ "metadata": {
+ "id": "4GDqmpau6IK9"
+ },
+ "outputs": [],
+ "source": [
+ "from transformers import Wav2Vec2FeatureExtractor\n",
+ "\n",
+ "feature_extractor = Wav2Vec2FeatureExtractor(feature_size=1, sampling_rate=16000, padding_value=0.0, do_normalize=True, return_attention_mask=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "metadata": {
+ "id": "3ydgeSof6IK-"
+ },
+ "outputs": [],
+ "source": [
+ "from transformers import Wav2Vec2Processor\n",
+ "\n",
+ "processor = Wav2Vec2Processor(feature_extractor=feature_extractor, tokenizer=tokenizer)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {
+ "id": "6RGWMIrk6IK-"
+ },
+ "outputs": [],
+ "source": [
+ "import torchaudio"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {
+ "id": "2oXxiiMx6IK-"
+ },
+ "outputs": [],
+ "source": [
+ "common_voice_train = common_voice_train.cast_column(\"audio\", Audio(sampling_rate=16_000))\n",
+ "common_voice_test = common_voice_test.cast_column(\"audio\", Audio(sampling_rate=16_000))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 35,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "ljOF6qF86IK-",
+ "outputId": "531347dd-66dd-4e28-9ff4-ee52b7222398"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{'path': 'cv-corpus-8.0-2022-01-19/et/clips/common_voice_et_18039906.mp3',\n",
+ " 'array': array([0.0000000e+00, 0.0000000e+00, 0.0000000e+00, ..., 2.8755874e-05,\n",
+ " 7.3133713e-05, 4.6529221e-05], dtype=float32),\n",
+ " 'sampling_rate': 16000}"
+ ]
+ },
+ "execution_count": 35,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "common_voice_train[0][\"audio\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {
+ "id": "2Lt4U5wL6IK-"
+ },
+ "outputs": [],
+ "source": [
+ "def prepare_dataset(batch):\n",
+ " audio = batch[\"audio\"]\n",
+ "\n",
+ " # batched output is \"un-batched\"\n",
+ " batch[\"input_values\"] = processor(audio[\"array\"], sampling_rate=audio[\"sampling_rate\"]).input_values[0]\n",
+ " batch[\"input_length\"] = len(batch[\"input_values\"])\n",
+ " \n",
+ " with processor.as_target_processor():\n",
+ " batch[\"labels\"] = processor(batch[\"sentence\"]).input_ids\n",
+ " return batch"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 98,
+ "referenced_widgets": [
+ "5ce68963158f43c6afd697112ae91b86",
+ "9e3f3a604e6a455e96d0b8c2c1ad437b",
+ "fd832e95e5e545d6ba00375c311f4d6d",
+ "ca3ab0df68934372874e745484f452c8",
+ "8afadf17db944fd8aa3160963d9ce1d3",
+ "55ad365db37744b8aeba007e99ec719e",
+ "9bc1101beda048109d123fb002d5400c",
+ "d90cdb5e20d643cd939b195f67c6480b",
+ "fe4b7a51a8454b8c97b66cc5f8a96040",
+ "ddb0349a1010496d9ef755fdc0b7960e",
+ "61368172bb5a431d990ef898bc23d9cc",
+ "e1ded32ac98d45b98a0ea4f96f5f472a",
+ "47974c9e252d43c6b516db6853a0d78c",
+ "86f48fe824a4424691ac207bdb9be81c",
+ "7051513a70fd45e292b742f8b0e1c24a",
+ "a757021c8c2240e788df46ec84a67587",
+ "b8531ca6621a479796636b6f5460240c",
+ "f1acc768df0c4d50bdb0c1c008aad15e",
+ "1b433b3ae9c84d47bd5fb1d3978f4f3a",
+ "f82689a91e3e4962935dd07e20c13426",
+ "7a1499b32a28488087c951ef8af473a0",
+ "3ac86f6958ba46f4a53ffa937e66427c"
+ ]
+ },
+ "id": "ldXFrogk6IK-",
+ "outputId": "839b1d78-4017-4b1e-c259-c1fec5641de0"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "29057dc672f94ff9ac14970da2113e38",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "0ex [00:00, ?ex/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "done train\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "ebbf56cd919d46f2a24022c64cc1b74b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "0ex [00:00, ?ex/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "common_voice_train = common_voice_train.map(prepare_dataset, remove_columns=common_voice_train.column_names)\n",
+ "print(\"done train\")\n",
+ "common_voice_test = common_voice_test.map(prepare_dataset, remove_columns=common_voice_test.column_names)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "metadata": {
+ "id": "JP1OWPs36IK-"
+ },
+ "outputs": [],
+ "source": [
+ "max_input_length = 20.0 * feature_extractor.sampling_rate\n",
+ "min_input_length = 0.0 * feature_extractor.sampling_rate"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "metadata": {
+ "id": "1gHoa7lL6IK-"
+ },
+ "outputs": [],
+ "source": [
+ "def is_audio_in_length_range(length):\n",
+ " return length > min_input_length and length < max_input_length"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 40,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 49,
+ "referenced_widgets": [
+ "b9e3a30cafbf4a7ca7bbdf3fe9a636b4",
+ "433af8fbc3a444f38a7e018a20cb6fd1",
+ "b64a8d5d660a4faf838c5f03becaf176",
+ "9ecf7f11f0d342939ee906c4b2beb3e6",
+ "435be14c703a41148dff1bd6be5a16bf",
+ "dbecceb62ccf4ebd94c5b96c4a2aebd7",
+ "26e1e39eaaa241f2b427be2195f3a6c3",
+ "0dc42365459344bb94b495a103153b4d",
+ "8a4049e6a66f4fe99968b8f4550bc8a3",
+ "ae384809c29d4a2b996d0733fd45ea35",
+ "8d14f0d27388487aa0f605df23bcb466"
+ ]
+ },
+ "id": "TjEkpBpJ6IK_",
+ "outputId": "0b74024a-66b5-444c-a230-9f119eab3824"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "8a5254a972c142b185fbd59df9c26f0b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ " 0%| | 0/7 [00:00, ?ba/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "common_voice_train = common_voice_train.filter(\n",
+ " is_audio_in_length_range,\n",
+ " input_columns=[\"input_length\"],\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 41,
+ "metadata": {
+ "id": "c9K5jjV96IK_"
+ },
+ "outputs": [],
+ "source": [
+ "import torch\n",
+ "\n",
+ "from dataclasses import dataclass, field\n",
+ "from typing import Any, Dict, List, Optional, Union\n",
+ "from transformers import AutoProcessor\n",
+ "\n",
+ "\n",
+ "@dataclass\n",
+ "class DataCollatorCTCWithPadding:\n",
+ " \"\"\"\n",
+ " Data collator that will dynamically pad the inputs received.\n",
+ " Args:\n",
+ " processor (:class:`~transformers.AutoProcessor`)\n",
+ " The processor used for proccessing the data.\n",
+ " padding (:obj:`bool`, :obj:`str` or :class:`~transformers.tokenization_utils_base.PaddingStrategy`, `optional`, defaults to :obj:`True`):\n",
+ " Select a strategy to pad the returned sequences (according to the model's padding side and padding index)\n",
+ " among:\n",
+ " * :obj:`True` or :obj:`'longest'`: Pad to the longest sequence in the batch (or no padding if only a single\n",
+ " sequence if provided).\n",
+ " * :obj:`'max_length'`: Pad to a maximum length specified with the argument :obj:`max_length` or to the\n",
+ " maximum acceptable input length for the model if that argument is not provided.\n",
+ " * :obj:`False` or :obj:`'do_not_pad'` (default): No padding (i.e., can output a batch with sequences of\n",
+ " different lengths).\n",
+ " max_length (:obj:`int`, `optional`):\n",
+ " Maximum length of the ``input_values`` of the returned list and optionally padding length (see above).\n",
+ " max_length_labels (:obj:`int`, `optional`):\n",
+ " Maximum length of the ``labels`` returned list and optionally padding length (see above).\n",
+ " pad_to_multiple_of (:obj:`int`, `optional`):\n",
+ " If set will pad the sequence to a multiple of the provided value.\n",
+ " This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability >=\n",
+ " 7.5 (Volta).\n",
+ " \"\"\"\n",
+ "\n",
+ " processor: AutoProcessor\n",
+ " padding: Union[bool, str] = \"longest\"\n",
+ " pad_to_multiple_of: Optional[int] = None\n",
+ " pad_to_multiple_of_labels: Optional[int] = None\n",
+ "\n",
+ " def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:\n",
+ " # split inputs and labels since they have to be of different lenghts and need\n",
+ " # different padding methods\n",
+ " input_features = [{\"input_values\": feature[\"input_values\"]} for feature in features]\n",
+ " label_features = [{\"input_ids\": feature[\"labels\"]} for feature in features]\n",
+ "\n",
+ " batch = self.processor.pad(\n",
+ " input_features,\n",
+ " padding=self.padding,\n",
+ " pad_to_multiple_of=self.pad_to_multiple_of,\n",
+ " return_tensors=\"pt\",\n",
+ " )\n",
+ "\n",
+ " with self.processor.as_target_processor():\n",
+ " labels_batch = self.processor.pad(\n",
+ " label_features,\n",
+ " padding=self.padding,\n",
+ " pad_to_multiple_of=self.pad_to_multiple_of_labels,\n",
+ " return_tensors=\"pt\",\n",
+ " )\n",
+ "\n",
+ " # replace padding with -100 to ignore loss correctly\n",
+ " labels = labels_batch[\"input_ids\"].masked_fill(labels_batch.attention_mask.ne(1), -100)\n",
+ "\n",
+ " batch[\"labels\"] = labels\n",
+ "\n",
+ " return batch"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 42,
+ "metadata": {
+ "id": "WcQgSGyj6IK_"
+ },
+ "outputs": [],
+ "source": [
+ "data_collator = DataCollatorCTCWithPadding(processor=processor, padding=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 43,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 49,
+ "referenced_widgets": [
+ "6cc16ec4852a4d4582eaf33d1cff826c",
+ "2f30c5df319c4a48821ec755ee5da56a",
+ "de951c72061b4336bf75d740af794ca0",
+ "a79cfde642384d619ce5c63f39ecc663",
+ "e5dbc60918ca45da95c182a1dee60b11",
+ "d32b18b2918d4c93bea93f36576e3126",
+ "2322e918a1234201baea4d53d759971c",
+ "6389d412e77e4ec09f349a917d00dc46",
+ "f6a6332f550741f1813bab57254c631c",
+ "19aa057986cd46a1bdea803c140a2ac0",
+ "e210bd8662c04b0b96f8736b71463994"
+ ]
+ },
+ "id": "wSSJacE46IK_",
+ "outputId": "3bbde635-9e7b-458d-c89c-ef3986c8f5f2"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "26f2239d38184a389c96417e23fd2d64",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading: 0%| | 0.00/1.90k [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "wer_metric = load_metric(\"wer\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 44,
+ "metadata": {
+ "id": "AWh2K1ia6IK_"
+ },
+ "outputs": [],
+ "source": [
+ "def compute_metrics(pred):\n",
+ " pred_logits = pred.predictions\n",
+ " pred_ids = np.argmax(pred_logits, axis=-1)\n",
+ "\n",
+ " pred.label_ids[pred.label_ids == -100] = processor.tokenizer.pad_token_id\n",
+ "\n",
+ " pred_str = processor.batch_decode(pred_ids)\n",
+ " # we do not want to group tokens when computing the metrics\n",
+ " label_str = processor.batch_decode(pred.label_ids, group_tokens=False)\n",
+ "\n",
+ " wer = wer_metric.compute(predictions=pred_str, references=label_str)\n",
+ "\n",
+ " return {\"wer\": wer}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 45,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 1000,
+ "referenced_widgets": [
+ "4eb1abff92784022addb0bf5b31ae373",
+ "606b15306d5a44e4900407fc381cd166",
+ "20f1708cf53247578a6116a293058037",
+ "e5460d64f66b45e6b2b53c383ce848ce",
+ "09b4b107deac41b7995165510b626466",
+ "99704c7a217f47db8112915355c5cb16",
+ "ff043090146b48de83ce764b5d526df9",
+ "535fbef4f8784d2fbd3e78a8a22fdcca",
+ "c45f7b4056374db59e1214bd853b1156",
+ "e07665eaa8534a2b8650c798a2d38855",
+ "241d1dad276a432dadfcb1db92eb3f5d",
+ "0588c69428e64537a561b079368142b6",
+ "05020a0096864fc58e5946755c857eef",
+ "8d7c7c66485842169988ce66dc064c48",
+ "1f78fb65661945318c678d503eaf687a",
+ "b2007b3777434c39a46b83586061c464",
+ "82cf273e4c7144f9bcd962d883f39ac3",
+ "c78a45f3e3e346f085fd6988a7ee0d26",
+ "4edf587f189445cf93b5b8f66b3160d8",
+ "da3acb63b71b46d6989a71db41480a8f",
+ "d2f297bc8be84b64adf64455026b8772",
+ "62a3c3d1336f4228acef6f2e5be17b13"
+ ]
+ },
+ "collapsed": true,
+ "id": "XCnGR0uB6ILA",
+ "jupyter": {
+ "outputs_hidden": true
+ },
+ "outputId": "e77ff43a-9f8d-4a31-8700-bdc7eddb8b23"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "9c8f5da495704126b238062f84dd6830",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading: 0%| | 0.00/1.53k [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "7f78ef1f86cd403f8ac19cf18197c820",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading: 0%| | 0.00/3.60G [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Some weights of the model checkpoint at facebook/wav2vec2-xls-r-1b were not used when initializing Wav2Vec2ForCTC: ['project_hid.weight', 'project_q.weight', 'quantizer.weight_proj.bias', 'quantizer.codevectors', 'quantizer.weight_proj.weight', 'project_q.bias', 'project_hid.bias']\n",
+ "- This IS expected if you are initializing Wav2Vec2ForCTC from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\n",
+ "- This IS NOT expected if you are initializing Wav2Vec2ForCTC from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\n",
+ "Some weights of Wav2Vec2ForCTC were not initialized from the model checkpoint at facebook/wav2vec2-xls-r-1b and are newly initialized: ['lm_head.bias', 'lm_head.weight']\n",
+ "You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "Wav2Vec2ForCTC(\n",
+ " (wav2vec2): Wav2Vec2Model(\n",
+ " (feature_extractor): Wav2Vec2FeatureEncoder(\n",
+ " (conv_layers): ModuleList(\n",
+ " (0): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(1, 512, kernel_size=(10,), stride=(5,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (1): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(3,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (2): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(3,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (3): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(3,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (4): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(3,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (5): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(2,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (6): Wav2Vec2LayerNormConvLayer(\n",
+ " (conv): Conv1d(512, 512, kernel_size=(2,), stride=(2,))\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " )\n",
+ " )\n",
+ " (feature_projection): Wav2Vec2FeatureProjection(\n",
+ " (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True)\n",
+ " (projection): Linear(in_features=512, out_features=1280, bias=True)\n",
+ " (dropout): Dropout(p=0.04, inplace=False)\n",
+ " )\n",
+ " (encoder): Wav2Vec2EncoderStableLayerNorm(\n",
+ " (pos_conv_embed): Wav2Vec2PositionalConvEmbedding(\n",
+ " (conv): Conv1d(1280, 1280, kernel_size=(128,), stride=(1,), padding=(64,), groups=16)\n",
+ " (padding): Wav2Vec2SamePadLayer()\n",
+ " )\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layers): ModuleList(\n",
+ " (0): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (1): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (2): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (3): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (4): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (5): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (6): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (7): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (8): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (9): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (10): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (11): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (12): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (13): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (14): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (15): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (16): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (17): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (18): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (19): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (20): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (21): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (22): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (23): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (24): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (25): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (26): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (27): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (28): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (29): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (30): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (31): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (32): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (33): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (34): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (35): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (36): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (37): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (38): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (39): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (40): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (41): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (42): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (43): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (44): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (45): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (46): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (47): Wav2Vec2EncoderLayerStableLayerNorm(\n",
+ " (attention): Wav2Vec2Attention(\n",
+ " (k_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (v_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (q_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " (out_proj): Linear(in_features=1280, out_features=1280, bias=True)\n",
+ " )\n",
+ " (dropout): Dropout(p=0.047, inplace=False)\n",
+ " (layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " (feed_forward): Wav2Vec2FeedForward(\n",
+ " (intermediate_dropout): Dropout(p=0.055, inplace=False)\n",
+ " (intermediate_dense): Linear(in_features=1280, out_features=5120, bias=True)\n",
+ " (output_dense): Linear(in_features=5120, out_features=1280, bias=True)\n",
+ " (output_dropout): Dropout(p=0.047, inplace=False)\n",
+ " )\n",
+ " (final_layer_norm): LayerNorm((1280,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " )\n",
+ " )\n",
+ " )\n",
+ " (dropout): Dropout(p=0.0, inplace=False)\n",
+ " (lm_head): Linear(in_features=1280, out_features=39, bias=True)\n",
+ ")"
+ ]
+ },
+ "execution_count": 45,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from transformers import Wav2Vec2ForCTC\n",
+ "\n",
+ "model = Wav2Vec2ForCTC.from_pretrained(\n",
+ " \"facebook/wav2vec2-xls-r-1b\", \n",
+ " attention_dropout=0.094,\n",
+ " hidden_dropout=0.047,\n",
+ " feat_proj_dropout=0.04,\n",
+ " mask_time_prob=0.082,\n",
+ " layerdrop=0.041,\n",
+ " activation_dropout=0.055,\n",
+ " ctc_loss_reduction=\"mean\", \n",
+ " pad_token_id=processor.tokenizer.pad_token_id,\n",
+ " vocab_size=len(processor.tokenizer),\n",
+ ")\n",
+ "model.to('cuda')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 47,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "vJ4YmBLK6ILA",
+ "outputId": "5ff744c2-0a83-41fa-8b5b-aa0e430ff1e9"
+ },
+ "outputs": [],
+ "source": [
+ "model.freeze_feature_extractor()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 48,
+ "metadata": {
+ "id": "Wu3bwi8i6ILA"
+ },
+ "outputs": [],
+ "source": [
+ "import os\n",
+ "os.environ[\"WANDB_DISABLED\"] = \"true\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 50,
+ "metadata": {
+ "id": "0NXLfMI56ILA"
+ },
+ "outputs": [],
+ "source": [
+ "from transformers import TrainingArguments\n",
+ "\n",
+ "training_args = TrainingArguments(\n",
+ " output_dir=repo_name,\n",
+ " group_by_length=True,\n",
+ " per_device_train_batch_size=32,\n",
+ " gradient_accumulation_steps=1,\n",
+ " evaluation_strategy=\"steps\",\n",
+ " num_train_epochs=10,\n",
+ " gradient_checkpointing=True,\n",
+ " fp16=True,\n",
+ " save_steps=500,\n",
+ " eval_steps=500,\n",
+ " logging_steps=50,\n",
+ " learning_rate=5e-5,\n",
+ " warmup_steps=500,\n",
+ " save_total_limit=3,\n",
+ " push_to_hub=True,\n",
+ " load_best_model_at_end=True,\n",
+ " greater_is_better=False,\n",
+ " report_to=\"tensorboard\",\n",
+ " metric_for_best_model='eval_wer',\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 50,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "MTdz79SyGz0y",
+ "outputId": "867f5a41-e82e-44be-aaf0-3fc6c0698a7e"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Sat Feb 5 08:58:36 2022 \n",
+ "+-----------------------------------------------------------------------------+\n",
+ "| NVIDIA-SMI 460.32.03 Driver Version: 460.32.03 CUDA Version: 11.2 |\n",
+ "|-------------------------------+----------------------+----------------------+\n",
+ "| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |\n",
+ "| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |\n",
+ "| | | MIG M. |\n",
+ "|===============================+======================+======================|\n",
+ "| 0 Tesla K80 Off | 00000000:00:04.0 Off | 0 |\n",
+ "| N/A 73C P0 72W / 149W | 1806MiB / 11441MiB | 0% Default |\n",
+ "| | | N/A |\n",
+ "+-------------------------------+----------------------+----------------------+\n",
+ " \n",
+ "+-----------------------------------------------------------------------------+\n",
+ "| Processes: |\n",
+ "| GPU GI CI PID Type Process name GPU Memory |\n",
+ "| ID ID Usage |\n",
+ "|=============================================================================|\n",
+ "+-----------------------------------------------------------------------------+\n"
+ ]
+ }
+ ],
+ "source": [
+ "!nvidia-smi"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 49,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "collapsed": true,
+ "id": "eTNIJiY66ILA",
+ "jupyter": {
+ "outputs_hidden": true
+ },
+ "outputId": "4c18731e-6766-439b-de44-5bb70c3040ac"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "Collecting bitsandbytes-cuda111\n",
+ " Downloading bitsandbytes_cuda111-0.26.0-py3-none-any.whl (4.0 MB)\n",
+ " |████████████████████████████████| 4.0 MB 24.2 MB/s \n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[?25hInstalling collected packages: bitsandbytes-cuda111\n",
+ "Successfully installed bitsandbytes-cuda111-0.26.0\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: You are using pip version 21.3.1; however, version 22.0.3 is available.\n",
+ "You should consider upgrading via the '/opt/conda/bin/python -m pip install --upgrade pip' command.\u001b[0m\n"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install bitsandbytes-cuda111 --user"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 52,
+ "metadata": {
+ "collapsed": true,
+ "jupyter": {
+ "outputs_hidden": true
+ }
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "Collecting tensorboard\n",
+ " Downloading tensorboard-2.8.0-py3-none-any.whl (5.8 MB)\n",
+ " |████████████████████████████████| 5.8 MB 4.8 MB/s \n",
+ "\u001b[?25hCollecting absl-py>=0.4\n",
+ " Downloading absl_py-1.0.0-py3-none-any.whl (126 kB)\n",
+ " |████████████████████████████████| 126 kB 99.3 MB/s \n",
+ "\u001b[?25hCollecting google-auth<3,>=1.6.3\n",
+ " Downloading google_auth-2.6.0-py2.py3-none-any.whl (156 kB)\n",
+ " |████████████████████████████████| 156 kB 92.1 MB/s \n",
+ "\u001b[?25hCollecting werkzeug>=0.11.15\n",
+ " Downloading Werkzeug-2.0.2-py3-none-any.whl (288 kB)\n",
+ " |████████████████████████████████| 288 kB 80.4 MB/s \n",
+ "\u001b[?25hCollecting markdown>=2.6.8\n",
+ " Downloading Markdown-3.3.6-py3-none-any.whl (97 kB)\n",
+ " |████████████████████████████████| 97 kB 27.2 MB/s \n",
+ "\u001b[?25hRequirement already satisfied: wheel>=0.26 in /opt/conda/lib/python3.8/site-packages (from tensorboard) (0.35.1)\n",
+ "Collecting tensorboard-plugin-wit>=1.6.0\n",
+ " Downloading tensorboard_plugin_wit-1.8.1-py3-none-any.whl (781 kB)\n",
+ " |████████████████████████████████| 781 kB 97.0 MB/s \n",
+ "\u001b[?25hRequirement already satisfied: setuptools>=41.0.0 in /opt/conda/lib/python3.8/site-packages (from tensorboard) (50.3.1.post20201107)\n",
+ "Requirement already satisfied: numpy>=1.12.0 in /opt/conda/lib/python3.8/site-packages (from tensorboard) (1.19.2)\n",
+ "Collecting grpcio>=1.24.3\n",
+ " Downloading grpcio-1.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB)\n",
+ " |████████████████████████████████| 4.1 MB 76.3 MB/s \n",
+ "\u001b[?25hCollecting protobuf>=3.6.0\n",
+ " Downloading protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB)\n",
+ " |████████████████████████████████| 1.1 MB 76.3 MB/s \n",
+ "\u001b[?25hCollecting google-auth-oauthlib<0.5,>=0.4.1\n",
+ " Downloading google_auth_oauthlib-0.4.6-py2.py3-none-any.whl (18 kB)\n",
+ "Requirement already satisfied: requests<3,>=2.21.0 in /opt/conda/lib/python3.8/site-packages (from tensorboard) (2.24.0)\n",
+ "Collecting tensorboard-data-server<0.7.0,>=0.6.0\n",
+ " Downloading tensorboard_data_server-0.6.1-py3-none-manylinux2010_x86_64.whl (4.9 MB)\n",
+ " |████████████████████████████████| 4.9 MB 39.7 MB/s \n",
+ "\u001b[?25hRequirement already satisfied: six in /opt/conda/lib/python3.8/site-packages (from absl-py>=0.4->tensorboard) (1.15.0)\n",
+ "Collecting rsa<5,>=3.1.4\n",
+ " Downloading rsa-4.8-py3-none-any.whl (39 kB)\n",
+ "Collecting pyasn1-modules>=0.2.1\n",
+ " Downloading pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB)\n",
+ " |████████████████████████████████| 155 kB 99.3 MB/s \n",
+ "\u001b[?25hCollecting cachetools<6.0,>=2.0.0\n",
+ " Downloading cachetools-5.0.0-py3-none-any.whl (9.1 kB)\n",
+ "Collecting requests-oauthlib>=0.7.0\n",
+ " Downloading requests_oauthlib-1.3.1-py2.py3-none-any.whl (23 kB)\n",
+ "Collecting importlib-metadata>=4.4\n",
+ " Downloading importlib_metadata-4.10.1-py3-none-any.whl (17 kB)\n",
+ "Requirement already satisfied: chardet<4,>=3.0.2 in /opt/conda/lib/python3.8/site-packages (from requests<3,>=2.21.0->tensorboard) (3.0.4)\n",
+ "Requirement already satisfied: idna<3,>=2.5 in /opt/conda/lib/python3.8/site-packages (from requests<3,>=2.21.0->tensorboard) (2.10)\n",
+ "Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/lib/python3.8/site-packages (from requests<3,>=2.21.0->tensorboard) (2020.12.5)\n",
+ "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /opt/conda/lib/python3.8/site-packages (from requests<3,>=2.21.0->tensorboard) (1.25.11)\n",
+ "Requirement already satisfied: zipp>=0.5 in /opt/conda/lib/python3.8/site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard) (3.7.0)\n",
+ "Collecting pyasn1<0.5.0,>=0.4.6\n",
+ " Downloading pyasn1-0.4.8-py2.py3-none-any.whl (77 kB)\n",
+ " |████████████████████████████████| 77 kB 26.5 MB/s \n",
+ "\u001b[?25hCollecting oauthlib>=3.0.0\n",
+ " Downloading oauthlib-3.2.0-py3-none-any.whl (151 kB)\n",
+ " |████████████████████████████████| 151 kB 104.7 MB/s \n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[?25hInstalling collected packages: pyasn1, rsa, pyasn1-modules, oauthlib, cachetools, requests-oauthlib, importlib-metadata, google-auth, werkzeug, tensorboard-plugin-wit, tensorboard-data-server, protobuf, markdown, grpcio, google-auth-oauthlib, absl-py, tensorboard\n",
+ "\u001b[33m WARNING: The scripts pyrsa-decrypt, pyrsa-encrypt, pyrsa-keygen, pyrsa-priv2pub, pyrsa-sign and pyrsa-verify are installed in '/workspace/.local/bin' which is not on PATH.\n",
+ " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\n",
+ "\u001b[33m WARNING: The script markdown_py is installed in '/workspace/.local/bin' which is not on PATH.\n",
+ " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\n",
+ "\u001b[33m WARNING: The script google-oauthlib-tool is installed in '/workspace/.local/bin' which is not on PATH.\n",
+ " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\n",
+ "\u001b[33m WARNING: The script tensorboard is installed in '/workspace/.local/bin' which is not on PATH.\n",
+ " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\n",
+ "Successfully installed absl-py-1.0.0 cachetools-5.0.0 google-auth-2.6.0 google-auth-oauthlib-0.4.6 grpcio-1.43.0 importlib-metadata-4.10.1 markdown-3.3.6 oauthlib-3.2.0 protobuf-3.19.4 pyasn1-0.4.8 pyasn1-modules-0.2.8 requests-oauthlib-1.3.1 rsa-4.8 tensorboard-2.8.0 tensorboard-data-server-0.6.1 tensorboard-plugin-wit-1.8.1 werkzeug-2.0.2\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: Ignoring invalid distribution -uggingface-hub (/opt/conda/lib/python3.8/site-packages)\u001b[0m\n",
+ "\u001b[33mWARNING: You are using pip version 21.3.1; however, version 22.0.3 is available.\n",
+ "You should consider upgrading via the '/opt/conda/bin/python -m pip install --upgrade pip' command.\u001b[0m\n"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install tensorboard --user"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 53,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 732,
+ "referenced_widgets": [
+ "dcc0badbab394367a5639c05dac0d33d",
+ "16d1947231f340d89822b4b71b1928e8",
+ "aff7e29683e14cb5b1b76ddbf80e528c",
+ "805c9080eeb64e26859a19405b0529c3",
+ "496ae52b33aa4fbda8bde8bcb3791c9c",
+ "40271b49aaa541e286c5d59432fedff5",
+ "25de7fb2d8884be0944822ca28e54363",
+ "432129ee22174ab0935a48e1be94f759",
+ "526c32e64c3745688d02299848392d80",
+ "a643eaa07fdb480d937fde7e0b3d0d1a",
+ "035281da59bb41d38b55ad86109d5312",
+ "d09f1802735f47c7848aef24b12ba105",
+ "4df809cb50b9497cb739c43b6d4fa7ac",
+ "85c29a546643497b89b17888f89611fe",
+ "b6b9aadad0c84134820285e9b99a2d40",
+ "6961daf34b9a493ca2d71c9480321189",
+ "08502ae7c7f947d381e7342119ed0c85",
+ "4d37fe247d7f47f6b68650646a859f96",
+ "3bcfcf297b604930b8324492d41a9217",
+ "68fe3fd6ec244ad78bcab645a45c0ff1",
+ "5b11d4b1bdc743ff9b2b384930999db7",
+ "248e8404d28140c9900ca32d45ea8e5a",
+ "f91ff8ae2cb14451b2a56a5268863624",
+ "7dcc2490f1424ed5af5f6736361ac66e",
+ "7c5907acf85943b9b430dcea234faf9c",
+ "e0d773078b5f418a82f90f49b982332d",
+ "883742d152ef4a0ead4f096a2a7c07f6",
+ "3e6358f2058943f89c665a6abfaae182",
+ "c21f3bdbe18f4602b9373a7d8e77d295",
+ "c980918aa1e24514a97786f320687a9f",
+ "4558b9a1cfd74888a90987e410a674ec",
+ "f0d829273d4c4af58281ad9d4a4b8448",
+ "6ab9b55b55c94c1c8b8a976d193106aa",
+ "0a0af685fef64be29d99e3f9b8d6bc44",
+ "f72456fb1e3f447e8fbb1bf90fe6446a",
+ "b6f2de905fe4418ea3f1bb836ed76a53",
+ "6c6d262586f84df193b421ef80fb520b",
+ "981d875ba2ca41409ff84b9ad20c66c1",
+ "7c276cf6fb6742f8b090172d1ea4503a",
+ "9116024606b949029dd9f65f8bbc8f2f",
+ "63549d0653e34a19a9c8bf2fd5d480e0",
+ "2b21a4ca692d4fbcbf3842b3d8a008ae",
+ "679b9ffa836b436c948d480865eb9b9c",
+ "b3521a13ed3f4cdeacc9e47e211c1259",
+ "7348ae91f0af4245853d12599942f6f3",
+ "faf529ce4601419c88a0c40cd26ff2e9",
+ "2bc9cbecbb5d4c3bbd543393098ff01a",
+ "8f7dcf3ccd49483695bea0aaeb9c17b7",
+ "695406f681da405bbef0b96a8bd10f99",
+ "793495e0382245bab20edb5d5bae4d73",
+ "6505382f04d640379aa6d7ba551c3c8a",
+ "46ad55fad84c4de4967a36a59a154799",
+ "77aaf9fde36a4461be486d9931e6b651",
+ "9cacd728ad8e4a20b7288c7ec07a29a4",
+ "06358b58b575411f8926c9f055279a46",
+ "c55f7cda5f7a40d18d2782eb77cec5c2",
+ "cc51fd8680ce49b9becae846838ce9a2",
+ "d422f7c49886416d8fd77c3a30bbcd31",
+ "ee69114c112d48a78022de3026e72b4a",
+ "6b2510387830423f806b960cc6622a9f",
+ "1510b8ce0fe446b0be63b1bc36314c65",
+ "1d55e2f3a462485096bd41e5c0ea13b6",
+ "4600ff781e2844cbb08ccc8b3026bb7b",
+ "d933f707550f493c9593e71b027ed25e",
+ "9f0159dfbd4e4ca39495988466a86585",
+ "77ae695ea05240ebaff701dfff5f0d79",
+ "af8d14fecd7545c7978292f333c6b7e1",
+ "271a0f0891644b81b5a684c6756660c9",
+ "bd50420066ea41238c26fa4494303355",
+ "8edad5ac1d974f43b41f25893d517db1",
+ "6cbb7289891a41d9a99f64ab73b663e0",
+ "c6c6c11852b84383a89c7af1583842ed",
+ "c60e7c6ab29149b8988d871df59e493b",
+ "f7fed0712ada4e90bf6f77739d7f36fd",
+ "d68cce18010c44058305c29cbf428598",
+ "165523a9439e48f692ce7f8dff6d2009",
+ "497bde87ca7a415791e24c569f13d046",
+ "019d55028f7245f7a1af1dcaf8ce9efa",
+ "f8ffedca892a481e8b79b92ccf98e497",
+ "aabd57a7b86948fe95f40db66e04a338",
+ "2830259df5184d19809a6af0381804f0",
+ "9a01e7f579a747afb5cc7d0b6a6e119f",
+ "1cd1ed174b4f4612af2b994e248473e4",
+ "235e7ecfc401446c9318394f701b344f",
+ "c999d260928848d08dabff30e9354437",
+ "75c3c64306df4185aa4d9a32b0a024c1",
+ "bac5d5752af5498284b138dbbf69681d",
+ "fb7a264328674db992df5311f41fba41"
+ ]
+ },
+ "id": "9jie-V0n6ILA",
+ "outputId": "831edb46-1b75-4c69-9694-14be0dadfd00"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/workspace/wav2vec2-xlsr-1b-et is already a clone of https://huggingface.co/RASMUS/wav2vec2-xlsr-1b-et. Make sure you pull the latest changes with `repo.git_pull()`.\n",
+ "Using amp half precision backend\n"
+ ]
+ }
+ ],
+ "source": [
+ "import bitsandbytes as bnb\n",
+ "from transformers import Trainer\n",
+ "from transformers.trainer_pt_utils import get_parameter_names\n",
+ "\n",
+ "decay_parameters = get_parameter_names(model, [torch.nn.LayerNorm])\n",
+ "decay_parameters = [name for name in decay_parameters if \"bias\" not in name]\n",
+ "optimizer_grouped_parameters = [\n",
+ " {\n",
+ " \"params\": [p for n, p in model.named_parameters() if n in decay_parameters],\n",
+ " \"weight_decay\": training_args.weight_decay,\n",
+ " },\n",
+ " {\n",
+ " \"params\": [p for n, p in model.named_parameters() if n not in decay_parameters],\n",
+ " \"weight_decay\": 0.0,\n",
+ " },\n",
+ "]\n",
+ "optimizer = bnb.optim.Adam8bit(\n",
+ " params=optimizer_grouped_parameters,\n",
+ " lr=training_args.learning_rate,\n",
+ " betas=(training_args.adam_beta1, training_args.adam_beta2),\n",
+ " eps=training_args.adam_epsilon,\n",
+ ")\n",
+ "\n",
+ "optimizers = (optimizer, None)\n",
+ "\n",
+ "# Initialize Trainer\n",
+ "trainer = Trainer(\n",
+ " model=model,\n",
+ " data_collator=data_collator,\n",
+ " args=training_args,\n",
+ " compute_metrics=compute_metrics,\n",
+ " train_dataset=common_voice_train,\n",
+ " eval_dataset=common_voice_test,\n",
+ " tokenizer=processor.feature_extractor,\n",
+ " optimizers=optimizers,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 54,
+ "metadata": {
+ "id": "955VTrNd6ILB"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 55,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 529
+ },
+ "id": "tMtJagfc6ILB",
+ "outputId": "9022f51c-29ca-4f66-8f46-8eeeba41bc60"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "The following columns in the training set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.\n",
+ "***** Running training *****\n",
+ " Num examples = 6521\n",
+ " Num Epochs = 10\n",
+ " Instantaneous batch size per device = 32\n",
+ " Total train batch size (w. parallel, distributed & accumulation) = 32\n",
+ " Gradient Accumulation steps = 1\n",
+ " Total optimization steps = 2040\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ " \n",
+ " \n",
+ "
\n",
+ " [2040/2040 2:47:42, Epoch 10/10]\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " Step | \n",
+ " Training Loss | \n",
+ " Validation Loss | \n",
+ " Wer | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 500 | \n",
+ " 0.531400 | \n",
+ " 0.237670 | \n",
+ " 0.329148 | \n",
+ "
\n",
+ " \n",
+ " 1000 | \n",
+ " 0.291400 | \n",
+ " 0.176413 | \n",
+ " 0.232050 | \n",
+ "
\n",
+ " \n",
+ " 1500 | \n",
+ " 0.291000 | \n",
+ " 0.146177 | \n",
+ " 0.200820 | \n",
+ "
\n",
+ " \n",
+ " 2000 | \n",
+ " 0.347600 | \n",
+ " 0.215049 | \n",
+ " 0.203659 | \n",
+ "
\n",
+ " \n",
+ "
"
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.\n",
+ "***** Running Evaluation *****\n",
+ " Num examples = 2613\n",
+ " Batch size = 8\n",
+ "Saving model checkpoint to wav2vec2-xlsr-1b-et/checkpoint-500\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-500/config.json\n",
+ "Model weights saved in wav2vec2-xlsr-1b-et/checkpoint-500/pytorch_model.bin\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-500/preprocessor_config.json\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/preprocessor_config.json\n",
+ "The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.\n",
+ "***** Running Evaluation *****\n",
+ " Num examples = 2613\n",
+ " Batch size = 8\n",
+ "Saving model checkpoint to wav2vec2-xlsr-1b-et/checkpoint-1000\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-1000/config.json\n",
+ "Model weights saved in wav2vec2-xlsr-1b-et/checkpoint-1000/pytorch_model.bin\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-1000/preprocessor_config.json\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/preprocessor_config.json\n",
+ "The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.\n",
+ "***** Running Evaluation *****\n",
+ " Num examples = 2613\n",
+ " Batch size = 8\n",
+ "Saving model checkpoint to wav2vec2-xlsr-1b-et/checkpoint-1500\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-1500/config.json\n",
+ "Model weights saved in wav2vec2-xlsr-1b-et/checkpoint-1500/pytorch_model.bin\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-1500/preprocessor_config.json\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/preprocessor_config.json\n",
+ "The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.\n",
+ "***** Running Evaluation *****\n",
+ " Num examples = 2613\n",
+ " Batch size = 8\n",
+ "Saving model checkpoint to wav2vec2-xlsr-1b-et/checkpoint-2000\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-2000/config.json\n",
+ "Model weights saved in wav2vec2-xlsr-1b-et/checkpoint-2000/pytorch_model.bin\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/checkpoint-2000/preprocessor_config.json\n",
+ "Configuration saved in wav2vec2-xlsr-1b-et/preprocessor_config.json\n",
+ "Deleting older checkpoint [wav2vec2-xlsr-1b-et/checkpoint-500] due to args.save_total_limit\n",
+ "\n",
+ "\n",
+ "Training completed. Do not forget to share your model on huggingface.co/models =)\n",
+ "\n",
+ "\n",
+ "Loading best model from wav2vec2-xlsr-1b-et/checkpoint-1500 (score: 0.20082018927444795).\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "TrainOutput(global_step=2040, training_loss=0.7346986307817347, metrics={'train_runtime': 10075.7398, 'train_samples_per_second': 6.472, 'train_steps_per_second': 0.202, 'total_flos': 4.170633739317263e+19, 'train_loss': 0.7346986307817347, 'epoch': 10.0})"
+ ]
+ },
+ "execution_count": 55,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "trainer.train()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WpLhQDv26ILB"
+ },
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "accelerator": "GPU",
+ "colab": {
+ "name": "train_xlsr_et_common_voice_8.ipynb",
+ "provenance": []
+ },
+ "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.8"
+ },
+ "widgets": {
+ "application/vnd.jupyter.widget-state+json": {
+ "019d55028f7245f7a1af1dcaf8ce9efa": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_aabd57a7b86948fe95f40db66e04a338",
+ "IPY_MODEL_2830259df5184d19809a6af0381804f0",
+ "IPY_MODEL_9a01e7f579a747afb5cc7d0b6a6e119f"
+ ],
+ "layout": "IPY_MODEL_f8ffedca892a481e8b79b92ccf98e497"
+ }
+ },
+ "035281da59bb41d38b55ad86109d5312": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "045d7cbf85a74078951443a94e33e609": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "04c46d9e45184fdca246dbbab76e02c8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "04d4a5d6b9e14cc9be30f5caaa059567": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "05020a0096864fc58e5946755c857eef": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0588c69428e64537a561b079368142b6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_8d7c7c66485842169988ce66dc064c48",
+ "IPY_MODEL_1f78fb65661945318c678d503eaf687a",
+ "IPY_MODEL_b2007b3777434c39a46b83586061c464"
+ ],
+ "layout": "IPY_MODEL_05020a0096864fc58e5946755c857eef"
+ }
+ },
+ "06358b58b575411f8926c9f055279a46": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "07356cbb5c644aed8eb9de437e8e4691": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "07fbcb908cb84e089298916eb1ef89c7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "08502ae7c7f947d381e7342119ed0c85": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "09b4b107deac41b7995165510b626466": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_241d1dad276a432dadfcb1db92eb3f5d",
+ "placeholder": "",
+ "style": "IPY_MODEL_e07665eaa8534a2b8650c798a2d38855",
+ "value": " 1.53k/1.53k [00:00<00:00, 40.8kB/s]"
+ }
+ },
+ "0a0af685fef64be29d99e3f9b8d6bc44": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_b6f2de905fe4418ea3f1bb836ed76a53",
+ "IPY_MODEL_6c6d262586f84df193b421ef80fb520b",
+ "IPY_MODEL_981d875ba2ca41409ff84b9ad20c66c1"
+ ],
+ "layout": "IPY_MODEL_f72456fb1e3f447e8fbb1bf90fe6446a"
+ }
+ },
+ "0c07d443d4fa4843bb1a70f28a29fa08": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "0d9202a504bb46a09639b8926f11ab8f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "0d95b440cdb5447daaad988bf6aea74c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "0dc42365459344bb94b495a103153b4d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "0f745c9c99b44616a7dc0b41d63d800c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3da34632f24e40f18fc0d78691e58ba6",
+ "placeholder": "",
+ "style": "IPY_MODEL_c8c624a55eeb4398aeb78978f1534073",
+ "value": "100%"
+ }
+ },
+ "149e18fd487b426ca457190d3aa58de7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1510b8ce0fe446b0be63b1bc36314c65": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "15269fa69387499287f996c8b9b3406c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "info",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_36dc65cafc3f48c084af3c84ef61f772",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_4f80dd77268c46e5ab7c3f1e802a0bd6",
+ "value": 1
+ }
+ },
+ "156189bcb95b4a2893d58e4dae6335d7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_b269c11828d8431198f55a0f1825a58c",
+ "placeholder": "",
+ "style": "IPY_MODEL_b8af84200dd44930970a304cc8fbeb8c",
+ "value": ""
+ }
+ },
+ "15798746a3a74e888817580cf339ca72": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "15ed138efd55476da386e8f5ed48d583": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "165523a9439e48f692ce7f8dff6d2009": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "16d1947231f340d89822b4b71b1928e8": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "17e6b65ba76f4b2eb83148730734bddf": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "19aa057986cd46a1bdea803c140a2ac0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "1b2e2e1855a64343b32289ca7a36572e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_db5f5a98b22d4057be52c5ac8a0d58ea",
+ "placeholder": "",
+ "style": "IPY_MODEL_89b67c339aaf450ba20b605ea7ef9790",
+ "value": " 2585/0 [00:10<00:00, 258.01 examples/s]"
+ }
+ },
+ "1b433b3ae9c84d47bd5fb1d3978f4f3a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "1cb79ffb0385495ba396e69add87a5fc": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1cd1ed174b4f4612af2b994e248473e4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "1d55e2f3a462485096bd41e5c0ea13b6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1e7bd26d7af84d579ce27b134b5c0ad4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ButtonModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ButtonModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ButtonView",
+ "button_style": "",
+ "description": "Login",
+ "disabled": false,
+ "icon": "",
+ "layout": "IPY_MODEL_6190087ca74b412e84aa4e2412430e4a",
+ "style": "IPY_MODEL_c6462f9ceb234ec5a0704d6a134060a7",
+ "tooltip": ""
+ }
+ },
+ "1f78fb65661945318c678d503eaf687a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_da3acb63b71b46d6989a71db41480a8f",
+ "max": 1269737156,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_4edf587f189445cf93b5b8f66b3160d8",
+ "value": 1269737156
+ }
+ },
+ "20f1708cf53247578a6116a293058037": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ff043090146b48de83ce764b5d526df9",
+ "placeholder": "",
+ "style": "IPY_MODEL_99704c7a217f47db8112915355c5cb16",
+ "value": "Downloading: 100%"
+ }
+ },
+ "2322e918a1234201baea4d53d759971c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "235e7ecfc401446c9318394f701b344f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "241d1dad276a432dadfcb1db92eb3f5d": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "248e8404d28140c9900ca32d45ea8e5a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "24df39263d1548149d150439d1c76d1f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "24f1bfd43ca34ef9933d19e2b2ee93d6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_b083339d05a645718b9c697c0d3ce2a0",
+ "placeholder": "",
+ "style": "IPY_MODEL_add1cdf7f5904571ba09b696819e6724",
+ "value": ""
+ }
+ },
+ "257c5791a156488ab7d7ba06310327fe": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "25de7fb2d8884be0944822ca28e54363": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "26e1e39eaaa241f2b427be2195f3a6c3": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "271a0f0891644b81b5a684c6756660c9": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2830259df5184d19809a6af0381804f0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_75c3c64306df4185aa4d9a32b0a024c1",
+ "max": 1262087665,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_c999d260928848d08dabff30e9354437",
+ "value": 1262087665
+ }
+ },
+ "2aaa74b624de44a78a55cea202430754": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2ab3aa64564f45fb821c3dbf9201e291": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2dc76918d2634efbb7e901886e536552",
+ "placeholder": "",
+ "style": "IPY_MODEL_a42e87bf245f45fa87a0e889a7e4e561",
+ "value": "Downloading: 100%"
+ }
+ },
+ "2b21a4ca692d4fbcbf3842b3d8a008ae": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2bc9cbecbb5d4c3bbd543393098ff01a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_6505382f04d640379aa6d7ba551c3c8a",
+ "placeholder": "",
+ "style": "IPY_MODEL_793495e0382245bab20edb5d5bae4d73",
+ "value": "Clean file training_args.bin: 100%"
+ }
+ },
+ "2dc76918d2634efbb7e901886e536552": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2f30c5df319c4a48821ec755ee5da56a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "303edca2db32467e92f0b611d01705ed": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "313a4ec6c0c247279c0520aaf1536f47": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "3361dea70d5644fe898a3f95e6ad02d0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "35446b688a374c16a442afc907b51f7e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "36dc65cafc3f48c084af3c84ef61f772": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "36f49be06a7d4c7cb35b331a2c99f20c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "37c68e11a6d748018e1478f583a03051": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_156189bcb95b4a2893d58e4dae6335d7",
+ "IPY_MODEL_a4c60066b2ce4c78acb09269cf3e2894",
+ "IPY_MODEL_515e18bdede14b8f86c3d2b41e4cef00"
+ ],
+ "layout": "IPY_MODEL_990fd8d131e640e6ba0f6ed3613cfc8b"
+ }
+ },
+ "392df3b560104792b77c93a6eedf803b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3ac86f6958ba46f4a53ffa937e66427c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3b0c46e5462a42f6bc6165a42d2764ae": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "3bcfcf297b604930b8324492d41a9217": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "3be13724e2cb452cb86c7e7555aef7d3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_e3df4647d79b4d7fa1ec5956b0e437c8",
+ "placeholder": "",
+ "style": "IPY_MODEL_303edca2db32467e92f0b611d01705ed",
+ "value": " 720/0 [00:09<00:00, 504.15 examples/s]"
+ }
+ },
+ "3da34632f24e40f18fc0d78691e58ba6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3e180fbe28134037897780ea08548c28": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3e6358f2058943f89c665a6abfaae182": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "3fbdad25464044029ebddaa7c4503cb6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "40271b49aaa541e286c5d59432fedff5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "419c6358ded646ae84a1d66cf45a17bb": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_ed1b40fdebee413897ae9743874039ce",
+ "IPY_MODEL_c4484f35cc984a75b2621dcf78b119eb",
+ "IPY_MODEL_1b2e2e1855a64343b32289ca7a36572e"
+ ],
+ "layout": "IPY_MODEL_cd29e585736e4bf59d520296218f3537"
+ }
+ },
+ "430b2d8471f74285b910f96e44f62924": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "432129ee22174ab0935a48e1be94f759": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "433af8fbc3a444f38a7e018a20cb6fd1": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "435be14c703a41148dff1bd6be5a16bf": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8d14f0d27388487aa0f605df23bcb466",
+ "placeholder": "",
+ "style": "IPY_MODEL_ae384809c29d4a2b996d0733fd45ea35",
+ "value": " 7/7 [00:00<00:00, 90.85ba/s]"
+ }
+ },
+ "4558b9a1cfd74888a90987e410a674ec": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4600ff781e2844cbb08ccc8b3026bb7b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "46ad55fad84c4de4967a36a59a154799": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "473f93fbb2b84d1885edf7d24de4ccdd": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "47974c9e252d43c6b516db6853a0d78c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "487de6c785ed46b28db220eb0fdfc968": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "48f3e530a8614e2d965b969290637983": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "496ae52b33aa4fbda8bde8bcb3791c9c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_035281da59bb41d38b55ad86109d5312",
+ "placeholder": "",
+ "style": "IPY_MODEL_a643eaa07fdb480d937fde7e0b3d0d1a",
+ "value": " 1.18G/1.18G [09:00<00:00, 70.7kB/s]"
+ }
+ },
+ "497bde87ca7a415791e24c569f13d046": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4c1a950fe9e2477c898c3deb31bfcdbc": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "4d130fa7abf0464b976a52e7c4fe913f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_6455d194ff7f49fa8787163c6af41448",
+ "placeholder": "",
+ "style": "IPY_MODEL_4c1a950fe9e2477c898c3deb31bfcdbc",
+ "value": " 1.12G/1.12G [00:58<00:00, 23.0MB/s]"
+ }
+ },
+ "4d2580b0ba464e0b84da40f315eeda49": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_9d95fb669a084746a1d0a2d1501592d4",
+ "placeholder": "",
+ "style": "IPY_MODEL_3b0c46e5462a42f6bc6165a42d2764ae",
+ "value": "\n\n
\nThe AI community building the future\n
\nImmediately click login after typing your password or it might be stored in plain text in this notebook file.\n"
+ }
+ },
+ "4d37fe247d7f47f6b68650646a859f96": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4df809cb50b9497cb739c43b6d4fa7ac": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4e598d9ddfbc4b00b99bc378e82ac136": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4eb1abff92784022addb0bf5b31ae373": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_20f1708cf53247578a6116a293058037",
+ "IPY_MODEL_e5460d64f66b45e6b2b53c383ce848ce",
+ "IPY_MODEL_09b4b107deac41b7995165510b626466"
+ ],
+ "layout": "IPY_MODEL_606b15306d5a44e4900407fc381cd166"
+ }
+ },
+ "4edf587f189445cf93b5b8f66b3160d8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "4ee7cab9637241bf99bb8d6c8c4977f8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_97096ab8089a4b898df55c2f9702df5c",
+ "max": 2984,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_57a31ff2a21e480db0bd552296374e79",
+ "value": 2984
+ }
+ },
+ "4f80dd77268c46e5ab7c3f1e802a0bd6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "4fe0e9b46ec34078aa47c19398725307": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3e180fbe28134037897780ea08548c28",
+ "placeholder": "",
+ "style": "IPY_MODEL_69a1d950287f4137862c46b5336cc011",
+ "value": " 3066/0 [00:10<00:00, 180.77 examples/s]"
+ }
+ },
+ "50cadfefcdc04065be814de1b92e0abc": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "515e18bdede14b8f86c3d2b41e4cef00": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_430b2d8471f74285b910f96e44f62924",
+ "placeholder": "",
+ "style": "IPY_MODEL_17e6b65ba76f4b2eb83148730734bddf",
+ "value": " 2613/? [00:01<00:00, 2756.55ex/s]"
+ }
+ },
+ "51ae1caebc9a40b99e3889f79c01db9a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3fbdad25464044029ebddaa7c4503cb6",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_f9ae0de86e4244dd88d97fe64df30d3c",
+ "value": 1
+ }
+ },
+ "51ddca34ad574ae4ba0d5bc644eba8ba": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_8a89bff0a7924b28969f3a821e56f762",
+ "IPY_MODEL_c6549886515848a2acef340ddce345fd",
+ "IPY_MODEL_55eb954145f241b6a9a459334cc96555"
+ ],
+ "layout": "IPY_MODEL_b3e00926fc694b69b5a977ef54d5f761"
+ }
+ },
+ "526c32e64c3745688d02299848392d80": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "535fbef4f8784d2fbd3e78a8a22fdcca": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "55ad365db37744b8aeba007e99ec719e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "55eb954145f241b6a9a459334cc96555": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_876aa02a4ad34a218df5fe7f09fbdf91",
+ "placeholder": "",
+ "style": "IPY_MODEL_0d9202a504bb46a09639b8926f11ab8f",
+ "value": " 5427/0 [00:11<00:00, 403.81 examples/s]"
+ }
+ },
+ "55f0cc288bc14c91be455c732d85cd94": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_2ab3aa64564f45fb821c3dbf9201e291",
+ "IPY_MODEL_ee94e4ff1e8e4c7f9484c4642ce2c630",
+ "IPY_MODEL_4d130fa7abf0464b976a52e7c4fe913f"
+ ],
+ "layout": "IPY_MODEL_7e681d3987d24c76ae31fbd6511ef908"
+ }
+ },
+ "565fb5fc53e948299a961323d77fc4e1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_e71f6211baca4770b4b2276d9340430e",
+ "IPY_MODEL_15269fa69387499287f996c8b9b3406c",
+ "IPY_MODEL_3be13724e2cb452cb86c7e7555aef7d3"
+ ],
+ "layout": "IPY_MODEL_960f5fd18dab46138996394085ac5d78"
+ }
+ },
+ "57a31ff2a21e480db0bd552296374e79": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "584ff634743549e8b2a62f00171bf2aa": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5910ed97074e40fab985770ad3e4312e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "5936155f6318438d9851c5c6bf2b5224": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_afe0ebd170b245d7b0e873dc759896c0",
+ "max": 10069,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_61c2c9383d3740b8ad8ff2613eda6d32",
+ "value": 10069
+ }
+ },
+ "5b11d4b1bdc743ff9b2b384930999db7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5ce68963158f43c6afd697112ae91b86": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_fd832e95e5e545d6ba00375c311f4d6d",
+ "IPY_MODEL_ca3ab0df68934372874e745484f452c8",
+ "IPY_MODEL_8afadf17db944fd8aa3160963d9ce1d3"
+ ],
+ "layout": "IPY_MODEL_9e3f3a604e6a455e96d0b8c2c1ad437b"
+ }
+ },
+ "5dd61df6c0b8424b816ea795425dddd1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "info",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_bbf1cef0bdf644a8bdc76c3c090de3b2",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_0d95b440cdb5447daaad988bf6aea74c",
+ "value": 1
+ }
+ },
+ "5fc18fd71b8d4fd59feb5c8250257255": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "60493e52db344e60afc883249d71c170": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "606b15306d5a44e4900407fc381cd166": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "61368172bb5a431d990ef898bc23d9cc": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "6190087ca74b412e84aa4e2412430e4a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "61c2c9383d3740b8ad8ff2613eda6d32": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "62a3c3d1336f4228acef6f2e5be17b13": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "62cedf4b2e13405b8887285e3e26d46c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_660853d4d7c24ae382226b65d184ab03",
+ "IPY_MODEL_783770935dd54257a14435f05bf29fde",
+ "IPY_MODEL_9e9cc7dc1a1c48239671e313988e55a4"
+ ],
+ "layout": "IPY_MODEL_aa33f0bd617f4c20a54a31dfa5290d8b"
+ }
+ },
+ "63549d0653e34a19a9c8bf2fd5d480e0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "6389d412e77e4ec09f349a917d00dc46": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "63c066860510423db5918e73e0f38888": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6455d194ff7f49fa8787163c6af41448": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "6505382f04d640379aa6d7ba551c3c8a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "660853d4d7c24ae382226b65d184ab03": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_bd6b67d2426b4d7f96a962fce2a657b0",
+ "placeholder": "",
+ "style": "IPY_MODEL_63c066860510423db5918e73e0f38888",
+ "value": "Downloading: 100%"
+ }
+ },
+ "677e23b2add34e2a816757246912cf34": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_36f49be06a7d4c7cb35b331a2c99f20c",
+ "placeholder": "",
+ "style": "IPY_MODEL_48f3e530a8614e2d965b969290637983",
+ "value": " 2.98k/2.98k [00:00<00:00, 68.7kB/s]"
+ }
+ },
+ "679b9ffa836b436c948d480865eb9b9c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6825d36977104f0facdc9216b62ffeb7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_0f745c9c99b44616a7dc0b41d63d800c",
+ "IPY_MODEL_ed001b4d74c24bda8a75e05f1c4cebff",
+ "IPY_MODEL_c854815e32334e88b18b3fc380b9dd01"
+ ],
+ "layout": "IPY_MODEL_85b98111a8f4486d865d5e9213f28ebf"
+ }
+ },
+ "68fe3fd6ec244ad78bcab645a45c0ff1": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "695406f681da405bbef0b96a8bd10f99": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_06358b58b575411f8926c9f055279a46",
+ "placeholder": "",
+ "style": "IPY_MODEL_9cacd728ad8e4a20b7288c7ec07a29a4",
+ "value": " 2.98k/2.98k [09:00<00:00, 15.6kB/s]"
+ }
+ },
+ "6961daf34b9a493ca2d71c9480321189": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_248e8404d28140c9900ca32d45ea8e5a",
+ "placeholder": "",
+ "style": "IPY_MODEL_5b11d4b1bdc743ff9b2b384930999db7",
+ "value": " 2.98k/2.98k [09:00<00:00, 6.43kB/s]"
+ }
+ },
+ "699c71d9472b4a64a993e19bbe6dd735": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "69a1d950287f4137862c46b5336cc011": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6ab9b55b55c94c1c8b8a976d193106aa": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "6b2510387830423f806b960cc6622a9f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_77ae695ea05240ebaff701dfff5f0d79",
+ "placeholder": "",
+ "style": "IPY_MODEL_9f0159dfbd4e4ca39495988466a86585",
+ "value": " 4.67k/4.67k [08:59<00:00, 24.1kB/s]"
+ }
+ },
+ "6c6d262586f84df193b421ef80fb520b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2b21a4ca692d4fbcbf3842b3d8a008ae",
+ "max": 6631,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_63549d0653e34a19a9c8bf2fd5d480e0",
+ "value": 6631
+ }
+ },
+ "6cbb7289891a41d9a99f64ab73b663e0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_497bde87ca7a415791e24c569f13d046",
+ "placeholder": "",
+ "style": "IPY_MODEL_165523a9439e48f692ce7f8dff6d2009",
+ "value": " 6.48k/6.48k [08:59<00:00, 41.8kB/s]"
+ }
+ },
+ "6cc16ec4852a4d4582eaf33d1cff826c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_de951c72061b4336bf75d740af794ca0",
+ "IPY_MODEL_a79cfde642384d619ce5c63f39ecc663",
+ "IPY_MODEL_e5dbc60918ca45da95c182a1dee60b11"
+ ],
+ "layout": "IPY_MODEL_2f30c5df319c4a48821ec755ee5da56a"
+ }
+ },
+ "6f1c70429a8b4a9293edfe0e817b0c85": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6f6a158b6c3f49d486a55842a980f314": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "7051513a70fd45e292b742f8b0e1c24a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f82689a91e3e4962935dd07e20c13426",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_1b433b3ae9c84d47bd5fb1d3978f4f3a",
+ "value": 1
+ }
+ },
+ "72fa78a581c940719c2413ed13325486": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_c9aa429cdfa642db9977fc1df975b6e5",
+ "IPY_MODEL_bf60e3c03f4e4637934fed951b7fd56c",
+ "IPY_MODEL_cbbf6ae8a3ae43f8a4f1b643c327a6db"
+ ],
+ "layout": "IPY_MODEL_f9b99a87657847708fb179ca17325f38"
+ }
+ },
+ "7348ae91f0af4245853d12599942f6f3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_2bc9cbecbb5d4c3bbd543393098ff01a",
+ "IPY_MODEL_8f7dcf3ccd49483695bea0aaeb9c17b7",
+ "IPY_MODEL_695406f681da405bbef0b96a8bd10f99"
+ ],
+ "layout": "IPY_MODEL_faf529ce4601419c88a0c40cd26ff2e9"
+ }
+ },
+ "75c3c64306df4185aa4d9a32b0a024c1": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "76da1df24f4e4501815c8af14e76c9e5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_f427de1a51d0482787f2ebde2d6a5e21",
+ "IPY_MODEL_4ee7cab9637241bf99bb8d6c8c4977f8",
+ "IPY_MODEL_677e23b2add34e2a816757246912cf34"
+ ],
+ "layout": "IPY_MODEL_f11d565252be4ab29df6367ed5ccfcb0"
+ }
+ },
+ "76fb3ff4fbcb42c9a8a236e12267c5c2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "77aaf9fde36a4461be486d9931e6b651": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "77ae695ea05240ebaff701dfff5f0d79": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "783770935dd54257a14435f05bf29fde": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5910ed97074e40fab985770ad3e4312e",
+ "max": 53072,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_d20d163787a74408a9725c838b5ff613",
+ "value": 53072
+ }
+ },
+ "788cdcbedc8a4991a3b534419a0ccd6a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "VBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "VBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "VBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_4d2580b0ba464e0b84da40f315eeda49",
+ "IPY_MODEL_a89d970858d64e8f83877877297cac95",
+ "IPY_MODEL_1e7bd26d7af84d579ce27b134b5c0ad4"
+ ],
+ "layout": "IPY_MODEL_7bab74822a7b44d8ada58e748d77fb2d"
+ }
+ },
+ "793495e0382245bab20edb5d5bae4d73": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "79a24cbc91f64305bc63e438f3b6be2a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "7a1499b32a28488087c951ef8af473a0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "7bab74822a7b44d8ada58e748d77fb2d": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": "center",
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": "flex",
+ "flex": null,
+ "flex_flow": "column",
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "50%"
+ }
+ },
+ "7c276cf6fb6742f8b090172d1ea4503a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "7c5907acf85943b9b430dcea234faf9c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c21f3bdbe18f4602b9373a7d8e77d295",
+ "placeholder": "",
+ "style": "IPY_MODEL_3e6358f2058943f89c665a6abfaae182",
+ "value": "Download file runs/Feb04_21-19-30_33a434cc272d/1644010060.6374886/events.out.tfevents.1644010060.33a434cc272d.34.1: 100%"
+ }
+ },
+ "7dcc2490f1424ed5af5f6736361ac66e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "7e681d3987d24c76ae31fbd6511ef908": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "805c9080eeb64e26859a19405b0529c3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_526c32e64c3745688d02299848392d80",
+ "max": 1262087665,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_432129ee22174ab0935a48e1be94f759",
+ "value": 1262087665
+ }
+ },
+ "82cf273e4c7144f9bcd962d883f39ac3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "85b98111a8f4486d865d5e9213f28ebf": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "85c29a546643497b89b17888f89611fe": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_4d37fe247d7f47f6b68650646a859f96",
+ "placeholder": "",
+ "style": "IPY_MODEL_08502ae7c7f947d381e7342119ed0c85",
+ "value": "Download file training_args.bin: 100%"
+ }
+ },
+ "86f48fe824a4424691ac207bdb9be81c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f1acc768df0c4d50bdb0c1c008aad15e",
+ "placeholder": "",
+ "style": "IPY_MODEL_b8531ca6621a479796636b6f5460240c",
+ "value": ""
+ }
+ },
+ "876aa02a4ad34a218df5fe7f09fbdf91": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "883742d152ef4a0ead4f096a2a7c07f6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_6ab9b55b55c94c1c8b8a976d193106aa",
+ "placeholder": "",
+ "style": "IPY_MODEL_f0d829273d4c4af58281ad9d4a4b8448",
+ "value": " 4.67k/4.67k [09:00<00:00, 4.63kB/s]"
+ }
+ },
+ "89227add654e4d519c7b3064765cb629": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "TextModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "TextModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "TextView",
+ "continuous_update": true,
+ "description": "Username:",
+ "description_tooltip": null,
+ "disabled": false,
+ "layout": "IPY_MODEL_f8b4af22c7ca446998791962c80171c4",
+ "placeholder": "",
+ "style": "IPY_MODEL_3361dea70d5644fe898a3f95e6ad02d0",
+ "value": "RASMUS"
+ }
+ },
+ "89b67c339aaf450ba20b605ea7ef9790": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "8a4049e6a66f4fe99968b8f4550bc8a3": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8a4f8f28ac2940b9a1cb303b9bb8f3ac": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8a89bff0a7924b28969f3a821e56f762": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_76fb3ff4fbcb42c9a8a236e12267c5c2",
+ "placeholder": "",
+ "style": "IPY_MODEL_6f1c70429a8b4a9293edfe0e817b0c85",
+ "value": ""
+ }
+ },
+ "8afadf17db944fd8aa3160963d9ce1d3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_61368172bb5a431d990ef898bc23d9cc",
+ "placeholder": "",
+ "style": "IPY_MODEL_ddb0349a1010496d9ef755fdc0b7960e",
+ "value": " 6521/? [01:55<00:00, 81.92ex/s]"
+ }
+ },
+ "8d14f0d27388487aa0f605df23bcb466": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8d7c7c66485842169988ce66dc064c48": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c78a45f3e3e346f085fd6988a7ee0d26",
+ "placeholder": "",
+ "style": "IPY_MODEL_82cf273e4c7144f9bcd962d883f39ac3",
+ "value": "Downloading: 100%"
+ }
+ },
+ "8e3c6d7df70d47c5bf1ccfc5ce6b490c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "8edad5ac1d974f43b41f25893d517db1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d68cce18010c44058305c29cbf428598",
+ "max": 6631,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_f7fed0712ada4e90bf6f77739d7f36fd",
+ "value": 6631
+ }
+ },
+ "8f7dcf3ccd49483695bea0aaeb9c17b7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_77aaf9fde36a4461be486d9931e6b651",
+ "max": 3055,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_46ad55fad84c4de4967a36a59a154799",
+ "value": 3055
+ }
+ },
+ "9116024606b949029dd9f65f8bbc8f2f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "92089a2dfb794fbe8a6a4b553f281d85": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2aaa74b624de44a78a55cea202430754",
+ "placeholder": "",
+ "style": "IPY_MODEL_699c71d9472b4a64a993e19bbe6dd735",
+ "value": " 6521/? [00:02<00:00, 3123.21ex/s]"
+ }
+ },
+ "930370fb47b5416a9c2d1224103fdf6a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_07fbcb908cb84e089298916eb1ef89c7",
+ "placeholder": "",
+ "style": "IPY_MODEL_b62df41e7c244200bc83e768f6e8ad45",
+ "value": " 10.1k/10.1k [00:00<00:00, 181kB/s]"
+ }
+ },
+ "954014a8b8a84c80a365609dfc2181b7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "957cefe87496428fa0d659763d054e5e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "960f5fd18dab46138996394085ac5d78": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "96bc014498b04db09d99efcf36dd4d34": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "97096ab8089a4b898df55c2f9702df5c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "97ab75061f2548ee9e898ab815dea662": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "981d875ba2ca41409ff84b9ad20c66c1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_b3521a13ed3f4cdeacc9e47e211c1259",
+ "placeholder": "",
+ "style": "IPY_MODEL_679b9ffa836b436c948d480865eb9b9c",
+ "value": " 6.48k/6.48k [09:00<00:00, 5.00B/s]"
+ }
+ },
+ "990fd8d131e640e6ba0f6ed3613cfc8b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "99704c7a217f47db8112915355c5cb16": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9a01e7f579a747afb5cc7d0b6a6e119f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_fb7a264328674db992df5311f41fba41",
+ "placeholder": "",
+ "style": "IPY_MODEL_bac5d5752af5498284b138dbbf69681d",
+ "value": " 1.18G/1.18G [02:30<00:00, 10.2MB/s]"
+ }
+ },
+ "9bc1101beda048109d123fb002d5400c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9cacd728ad8e4a20b7288c7ec07a29a4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9d2413cd1db84267becfa867a1a38e60": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "PasswordModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "PasswordModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "PasswordView",
+ "continuous_update": true,
+ "description": "Password:",
+ "description_tooltip": null,
+ "disabled": false,
+ "layout": "IPY_MODEL_afa4f545b4974675ba5ac137a10b6adb",
+ "placeholder": "",
+ "style": "IPY_MODEL_0c07d443d4fa4843bb1a70f28a29fa08",
+ "value": ""
+ }
+ },
+ "9d95fb669a084746a1d0a2d1501592d4": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9e3f3a604e6a455e96d0b8c2c1ad437b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9e9cc7dc1a1c48239671e313988e55a4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_149e18fd487b426ca457190d3aa58de7",
+ "placeholder": "",
+ "style": "IPY_MODEL_96bc014498b04db09d99efcf36dd4d34",
+ "value": " 53.1k/53.1k [00:00<00:00, 205kB/s]"
+ }
+ },
+ "9ecf7f11f0d342939ee906c4b2beb3e6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8a4049e6a66f4fe99968b8f4550bc8a3",
+ "max": 7,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_0dc42365459344bb94b495a103153b4d",
+ "value": 7
+ }
+ },
+ "9f0159dfbd4e4ca39495988466a86585": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "a12d06dcf0a64868a18634f1f6b6bb54": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_d378de92cbe24153b561cb416219d3ff",
+ "IPY_MODEL_51ae1caebc9a40b99e3889f79c01db9a",
+ "IPY_MODEL_ad09e4d8e90c4537a592a51f55af3858"
+ ],
+ "layout": "IPY_MODEL_79a24cbc91f64305bc63e438f3b6be2a"
+ }
+ },
+ "a1dfee9c96ab446cb1807d6dafadfab5": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a42e87bf245f45fa87a0e889a7e4e561": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "a4c60066b2ce4c78acb09269cf3e2894": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_60493e52db344e60afc883249d71c170",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_ba794f1f60eb4bd99c5a22a20acce667",
+ "value": 1
+ }
+ },
+ "a5ec641870f44cbe9d5c4f2a6caf9e8b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "a643eaa07fdb480d937fde7e0b3d0d1a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "a71a27484afc48d5b26e087780ecf0fb": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a757021c8c2240e788df46ec84a67587": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3ac86f6958ba46f4a53ffa937e66427c",
+ "placeholder": "",
+ "style": "IPY_MODEL_7a1499b32a28488087c951ef8af473a0",
+ "value": " 2613/? [00:46<00:00, 97.34ex/s]"
+ }
+ },
+ "a79cfde642384d619ce5c63f39ecc663": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f6a6332f550741f1813bab57254c631c",
+ "max": 1901,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_6389d412e77e4ec09f349a917d00dc46",
+ "value": 1901
+ }
+ },
+ "a89d970858d64e8f83877877297cac95": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_89227add654e4d519c7b3064765cb629",
+ "IPY_MODEL_9d2413cd1db84267becfa867a1a38e60"
+ ],
+ "layout": "IPY_MODEL_392df3b560104792b77c93a6eedf803b"
+ }
+ },
+ "aa33f0bd617f4c20a54a31dfa5290d8b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "aabd57a7b86948fe95f40db66e04a338": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_235e7ecfc401446c9318394f701b344f",
+ "placeholder": "",
+ "style": "IPY_MODEL_1cd1ed174b4f4612af2b994e248473e4",
+ "value": "Clean file pytorch_model.bin: 100%"
+ }
+ },
+ "abf1daf6e62740a6a391394d50af40a0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_97ab75061f2548ee9e898ab815dea662",
+ "placeholder": "",
+ "style": "IPY_MODEL_50cadfefcdc04065be814de1b92e0abc",
+ "value": ""
+ }
+ },
+ "ad09e4d8e90c4537a592a51f55af3858": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_954014a8b8a84c80a365609dfc2181b7",
+ "placeholder": "",
+ "style": "IPY_MODEL_f63362b3cbad406891125013c655ab92",
+ "value": " 1/1 [00:00<00:00, 5.31ba/s]"
+ }
+ },
+ "add1cdf7f5904571ba09b696819e6724": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "ae384809c29d4a2b996d0733fd45ea35": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "aef3bf3a34d34bba9e1cf4858d65c8d9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "af8d14fecd7545c7978292f333c6b7e1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_bd50420066ea41238c26fa4494303355",
+ "IPY_MODEL_8edad5ac1d974f43b41f25893d517db1",
+ "IPY_MODEL_6cbb7289891a41d9a99f64ab73b663e0"
+ ],
+ "layout": "IPY_MODEL_271a0f0891644b81b5a684c6756660c9"
+ }
+ },
+ "afa4f545b4974675ba5ac137a10b6adb": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "afe0ebd170b245d7b0e873dc759896c0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "aff7e29683e14cb5b1b76ddbf80e528c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_25de7fb2d8884be0944822ca28e54363",
+ "placeholder": "",
+ "style": "IPY_MODEL_40271b49aaa541e286c5d59432fedff5",
+ "value": "Download file pytorch_model.bin: 100%"
+ }
+ },
+ "b083339d05a645718b9c697c0d3ce2a0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b0eaf489949f42d0b81f2a190de9e819": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "b2007b3777434c39a46b83586061c464": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_62a3c3d1336f4228acef6f2e5be17b13",
+ "placeholder": "",
+ "style": "IPY_MODEL_d2f297bc8be84b64adf64455026b8772",
+ "value": " 1.18G/1.18G [00:38<00:00, 37.9MB/s]"
+ }
+ },
+ "b269c11828d8431198f55a0f1825a58c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b3521a13ed3f4cdeacc9e47e211c1259": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b3e00926fc694b69b5a977ef54d5f761": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b62df41e7c244200bc83e768f6e8ad45": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "b64a8d5d660a4faf838c5f03becaf176": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_26e1e39eaaa241f2b427be2195f3a6c3",
+ "placeholder": "",
+ "style": "IPY_MODEL_dbecceb62ccf4ebd94c5b96c4a2aebd7",
+ "value": "100%"
+ }
+ },
+ "b6b9aadad0c84134820285e9b99a2d40": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_68fe3fd6ec244ad78bcab645a45c0ff1",
+ "max": 3055,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_3bcfcf297b604930b8324492d41a9217",
+ "value": 3055
+ }
+ },
+ "b6f2de905fe4418ea3f1bb836ed76a53": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_9116024606b949029dd9f65f8bbc8f2f",
+ "placeholder": "",
+ "style": "IPY_MODEL_7c276cf6fb6742f8b090172d1ea4503a",
+ "value": "Download file runs/Feb04_21-19-30_33a434cc272d/events.out.tfevents.1644010060.33a434cc272d.34.0: 100%"
+ }
+ },
+ "b8531ca6621a479796636b6f5460240c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "b8af84200dd44930970a304cc8fbeb8c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "b9e3a30cafbf4a7ca7bbdf3fe9a636b4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_b64a8d5d660a4faf838c5f03becaf176",
+ "IPY_MODEL_9ecf7f11f0d342939ee906c4b2beb3e6",
+ "IPY_MODEL_435be14c703a41148dff1bd6be5a16bf"
+ ],
+ "layout": "IPY_MODEL_433af8fbc3a444f38a7e018a20cb6fd1"
+ }
+ },
+ "ba794f1f60eb4bd99c5a22a20acce667": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "bac5d5752af5498284b138dbbf69681d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "bbf1cef0bdf644a8bdc76c3c090de3b2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "bd50420066ea41238c26fa4494303355": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c60e7c6ab29149b8988d871df59e493b",
+ "placeholder": "",
+ "style": "IPY_MODEL_c6c6c11852b84383a89c7af1583842ed",
+ "value": "Clean file runs/Feb04_21-19-30_33a434cc272d/events.out.tfevents.1644010060.33a434cc272d.34.0: 100%"
+ }
+ },
+ "bd6b67d2426b4d7f96a962fce2a657b0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "bf60e3c03f4e4637934fed951b7fd56c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "info",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_b0eaf489949f42d0b81f2a190de9e819",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_04d4a5d6b9e14cc9be30f5caaa059567",
+ "value": 1
+ }
+ },
+ "c21f3bdbe18f4602b9373a7d8e77d295": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c3f6e3d62b714bc1bd4324eab09762e6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c4484f35cc984a75b2621dcf78b119eb": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "info",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f8d6b636c590426592dae24a04e90e55",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_045d7cbf85a74078951443a94e33e609",
+ "value": 1
+ }
+ },
+ "c45f7b4056374db59e1214bd853b1156": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c55f7cda5f7a40d18d2782eb77cec5c2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_d422f7c49886416d8fd77c3a30bbcd31",
+ "IPY_MODEL_ee69114c112d48a78022de3026e72b4a",
+ "IPY_MODEL_6b2510387830423f806b960cc6622a9f"
+ ],
+ "layout": "IPY_MODEL_cc51fd8680ce49b9becae846838ce9a2"
+ }
+ },
+ "c60e7c6ab29149b8988d871df59e493b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c6462f9ceb234ec5a0704d6a134060a7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ButtonStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ButtonStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "button_color": null,
+ "font_weight": ""
+ }
+ },
+ "c6549886515848a2acef340ddce345fd": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "info",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_24df39263d1548149d150439d1c76d1f",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_257c5791a156488ab7d7ba06310327fe",
+ "value": 1
+ }
+ },
+ "c6c6c11852b84383a89c7af1583842ed": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "c78a45f3e3e346f085fd6988a7ee0d26": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c854815e32334e88b18b3fc380b9dd01": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_a1dfee9c96ab446cb1807d6dafadfab5",
+ "placeholder": "",
+ "style": "IPY_MODEL_15ed138efd55476da386e8f5ed48d583",
+ "value": " 1/1 [00:00<00:00, 2.68ba/s]"
+ }
+ },
+ "c8c624a55eeb4398aeb78978f1534073": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "c980918aa1e24514a97786f320687a9f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "c999d260928848d08dabff30e9354437": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "c9aa429cdfa642db9977fc1df975b6e5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5fc18fd71b8d4fd59feb5c8250257255",
+ "placeholder": "",
+ "style": "IPY_MODEL_04c46d9e45184fdca246dbbab76e02c8",
+ "value": ""
+ }
+ },
+ "ca3ab0df68934372874e745484f452c8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_fe4b7a51a8454b8c97b66cc5f8a96040",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_d90cdb5e20d643cd939b195f67c6480b",
+ "value": 1
+ }
+ },
+ "cb0f9ca6aadb452caf6b0de7b4a44208": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_f5d4c4321fce413f9fadd396a45f8e33",
+ "IPY_MODEL_5936155f6318438d9851c5c6bf2b5224",
+ "IPY_MODEL_930370fb47b5416a9c2d1224103fdf6a"
+ ],
+ "layout": "IPY_MODEL_c3f6e3d62b714bc1bd4324eab09762e6"
+ }
+ },
+ "cb22cfc078494aebab308a9daef8729b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "cbbf6ae8a3ae43f8a4f1b643c327a6db": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_a71a27484afc48d5b26e087780ecf0fb",
+ "placeholder": "",
+ "style": "IPY_MODEL_487de6c785ed46b28db220eb0fdfc968",
+ "value": " 2568/0 [00:09<00:00, 171.78 examples/s]"
+ }
+ },
+ "cc51fd8680ce49b9becae846838ce9a2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "cd29e585736e4bf59d520296218f3537": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d09f1802735f47c7848aef24b12ba105": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_85c29a546643497b89b17888f89611fe",
+ "IPY_MODEL_b6b9aadad0c84134820285e9b99a2d40",
+ "IPY_MODEL_6961daf34b9a493ca2d71c9480321189"
+ ],
+ "layout": "IPY_MODEL_4df809cb50b9497cb739c43b6d4fa7ac"
+ }
+ },
+ "d0ea9b81b1254e00a3f407d4632ebe50": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8e3c6d7df70d47c5bf1ccfc5ce6b490c",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_a5ec641870f44cbe9d5c4f2a6caf9e8b",
+ "value": 1
+ }
+ },
+ "d20d163787a74408a9725c838b5ff613": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "d2f297bc8be84b64adf64455026b8772": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "d32b18b2918d4c93bea93f36576e3126": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "d378de92cbe24153b561cb416219d3ff": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_cb22cfc078494aebab308a9daef8729b",
+ "placeholder": "",
+ "style": "IPY_MODEL_313a4ec6c0c247279c0520aaf1536f47",
+ "value": "100%"
+ }
+ },
+ "d3a824f5974941beb35aa9d718db3476": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "d422f7c49886416d8fd77c3a30bbcd31": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1d55e2f3a462485096bd41e5c0ea13b6",
+ "placeholder": "",
+ "style": "IPY_MODEL_1510b8ce0fe446b0be63b1bc36314c65",
+ "value": "Clean file runs/Feb04_21-19-30_33a434cc272d/1644010060.6374886/events.out.tfevents.1644010060.33a434cc272d.34.1: 100%"
+ }
+ },
+ "d68cce18010c44058305c29cbf428598": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d90cdb5e20d643cd939b195f67c6480b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "d933f707550f493c9593e71b027ed25e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "da3acb63b71b46d6989a71db41480a8f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "db5f5a98b22d4057be52c5ac8a0d58ea": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "dbecceb62ccf4ebd94c5b96c4a2aebd7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "dcc0badbab394367a5639c05dac0d33d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_aff7e29683e14cb5b1b76ddbf80e528c",
+ "IPY_MODEL_805c9080eeb64e26859a19405b0529c3",
+ "IPY_MODEL_496ae52b33aa4fbda8bde8bcb3791c9c"
+ ],
+ "layout": "IPY_MODEL_16d1947231f340d89822b4b71b1928e8"
+ }
+ },
+ "ddb0349a1010496d9ef755fdc0b7960e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "de951c72061b4336bf75d740af794ca0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2322e918a1234201baea4d53d759971c",
+ "placeholder": "",
+ "style": "IPY_MODEL_d32b18b2918d4c93bea93f36576e3126",
+ "value": "Downloading: "
+ }
+ },
+ "e07665eaa8534a2b8650c798a2d38855": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "e08e6073c6954d3f9e944495008d0429": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_abf1daf6e62740a6a391394d50af40a0",
+ "IPY_MODEL_5dd61df6c0b8424b816ea795425dddd1",
+ "IPY_MODEL_4fe0e9b46ec34078aa47c19398725307"
+ ],
+ "layout": "IPY_MODEL_15798746a3a74e888817580cf339ca72"
+ }
+ },
+ "e0d773078b5f418a82f90f49b982332d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_4558b9a1cfd74888a90987e410a674ec",
+ "max": 4784,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_c980918aa1e24514a97786f320687a9f",
+ "value": 4784
+ }
+ },
+ "e1ded32ac98d45b98a0ea4f96f5f472a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_86f48fe824a4424691ac207bdb9be81c",
+ "IPY_MODEL_7051513a70fd45e292b742f8b0e1c24a",
+ "IPY_MODEL_a757021c8c2240e788df46ec84a67587"
+ ],
+ "layout": "IPY_MODEL_47974c9e252d43c6b516db6853a0d78c"
+ }
+ },
+ "e210bd8662c04b0b96f8736b71463994": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e3df4647d79b4d7fa1ec5956b0e437c8": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e3f4dd7cb7814691b99a98e00e42b413": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_24f1bfd43ca34ef9933d19e2b2ee93d6",
+ "IPY_MODEL_d0ea9b81b1254e00a3f407d4632ebe50",
+ "IPY_MODEL_92089a2dfb794fbe8a6a4b553f281d85"
+ ],
+ "layout": "IPY_MODEL_07356cbb5c644aed8eb9de437e8e4691"
+ }
+ },
+ "e5460d64f66b45e6b2b53c383ce848ce": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c45f7b4056374db59e1214bd853b1156",
+ "max": 1568,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_535fbef4f8784d2fbd3e78a8a22fdcca",
+ "value": 1568
+ }
+ },
+ "e5dbc60918ca45da95c182a1dee60b11": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_e210bd8662c04b0b96f8736b71463994",
+ "placeholder": "",
+ "style": "IPY_MODEL_19aa057986cd46a1bdea803c140a2ac0",
+ "value": " 4.48k/? [00:00<00:00, 92.4kB/s]"
+ }
+ },
+ "e71f6211baca4770b4b2276d9340430e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_473f93fbb2b84d1885edf7d24de4ccdd",
+ "placeholder": "",
+ "style": "IPY_MODEL_957cefe87496428fa0d659763d054e5e",
+ "value": ""
+ }
+ },
+ "ed001b4d74c24bda8a75e05f1c4cebff": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1cb79ffb0385495ba396e69add87a5fc",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_d3a824f5974941beb35aa9d718db3476",
+ "value": 1
+ }
+ },
+ "ed1b40fdebee413897ae9743874039ce": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8a4f8f28ac2940b9a1cb303b9bb8f3ac",
+ "placeholder": "",
+ "style": "IPY_MODEL_aef3bf3a34d34bba9e1cf4858d65c8d9",
+ "value": ""
+ }
+ },
+ "ee69114c112d48a78022de3026e72b4a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d933f707550f493c9593e71b027ed25e",
+ "max": 4784,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_4600ff781e2844cbb08ccc8b3026bb7b",
+ "value": 4784
+ }
+ },
+ "ee6f84d95f6e4d40adbd2c95a2ae0bdf": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ee94e4ff1e8e4c7f9484c4642ce2c630": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_4e598d9ddfbc4b00b99bc378e82ac136",
+ "max": 1118010789,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_f301bd2bfd9247c2b12d5b3ac1e2867e",
+ "value": 1118010789
+ }
+ },
+ "f0d829273d4c4af58281ad9d4a4b8448": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "f11d565252be4ab29df6367ed5ccfcb0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f1acc768df0c4d50bdb0c1c008aad15e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f301bd2bfd9247c2b12d5b3ac1e2867e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "f427de1a51d0482787f2ebde2d6a5e21": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_35446b688a374c16a442afc907b51f7e",
+ "placeholder": "",
+ "style": "IPY_MODEL_6f6a158b6c3f49d486a55842a980f314",
+ "value": "Downloading: 100%"
+ }
+ },
+ "f5d4c4321fce413f9fadd396a45f8e33": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ee6f84d95f6e4d40adbd2c95a2ae0bdf",
+ "placeholder": "",
+ "style": "IPY_MODEL_584ff634743549e8b2a62f00171bf2aa",
+ "value": "Downloading: 100%"
+ }
+ },
+ "f63362b3cbad406891125013c655ab92": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "f6a6332f550741f1813bab57254c631c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f72456fb1e3f447e8fbb1bf90fe6446a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f7fed0712ada4e90bf6f77739d7f36fd": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "f82689a91e3e4962935dd07e20c13426": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "f8b4af22c7ca446998791962c80171c4": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f8d6b636c590426592dae24a04e90e55": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "f8ffedca892a481e8b79b92ccf98e497": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f91ff8ae2cb14451b2a56a5268863624": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_7c5907acf85943b9b430dcea234faf9c",
+ "IPY_MODEL_e0d773078b5f418a82f90f49b982332d",
+ "IPY_MODEL_883742d152ef4a0ead4f096a2a7c07f6"
+ ],
+ "layout": "IPY_MODEL_7dcc2490f1424ed5af5f6736361ac66e"
+ }
+ },
+ "f9ae0de86e4244dd88d97fe64df30d3c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "f9b99a87657847708fb179ca17325f38": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "faf529ce4601419c88a0c40cd26ff2e9": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "fb7a264328674db992df5311f41fba41": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "fd832e95e5e545d6ba00375c311f4d6d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_9bc1101beda048109d123fb002d5400c",
+ "placeholder": "",
+ "style": "IPY_MODEL_55ad365db37744b8aeba007e99ec719e",
+ "value": ""
+ }
+ },
+ "fe4b7a51a8454b8c97b66cc5f8a96040": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": "20px"
+ }
+ },
+ "ff043090146b48de83ce764b5d526df9": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ }
+ }
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}