diff --git a/MetaAugment/Baseline_JC.ipynb b/MetaAugment/Baseline_JC.ipynb
index fbb62a3fbc9f3fa20077a071a49db636079cd398..5edf2a523cf3c23888578f81c20b89d620c3978c 100644
--- a/MetaAugment/Baseline_JC.ipynb
+++ b/MetaAugment/Baseline_JC.ipynb
@@ -2,7 +2,7 @@
   "cells": [
     {
       "cell_type": "code",
-      "execution_count": null,
+      "execution_count": 1,
       "metadata": {
         "id": "U_ZJ2LqDiu_v"
       },
@@ -21,7 +21,7 @@
     },
     {
       "cell_type": "code",
-      "execution_count": null,
+      "execution_count": 2,
       "metadata": {
         "id": "4ksS_duLFADW"
       },
@@ -84,7 +84,7 @@
       "metadata": {
         "id": "ukf2-C94UWzs"
       },
-      "execution_count": null,
+      "execution_count": 3,
       "outputs": []
     },
     {
@@ -106,12 +106,12 @@
       "metadata": {
         "id": "Fd9_36R3zx5B"
       },
-      "execution_count": null,
+      "execution_count": 4,
       "outputs": []
     },
     {
       "cell_type": "code",
-      "execution_count": null,
+      "execution_count": 5,
       "metadata": {
         "id": "xujQtvVWBgMH"
       },
@@ -142,7 +142,7 @@
     },
     {
       "cell_type": "code",
-      "execution_count": null,
+      "execution_count": 6,
       "metadata": {
         "id": "vu_4I4qkbx73"
       },
@@ -186,12 +186,13 @@
         "    train_loader, test_loader = create_toy(train_dataset, test_dataset, batch_size, toy_size)\n",
         "\n",
         "    # create model\n",
+        "    device = 'cuda' if torch.cuda.is_available() else 'cpu'\n",
         "    if IsLeNet == \"LeNet\":\n",
-        "        model = LeNet(img_height, img_width, num_labels, img_channels)\n",
+        "        model = LeNet(img_height, img_width, num_labels, img_channels).to(device) # added .to(device)\n",
         "    elif IsLeNet == \"EasyNet\":\n",
-        "        model = EasyNet(img_height, img_width, num_labels, img_channels)\n",
+        "        model = EasyNet(img_height, img_width, num_labels, img_channels).to(device) # added .to(device)\n",
         "    else:\n",
-        "        model = SimpleNet(img_height, img_width, num_labels, img_channels)\n",
+        "        model = SimpleNet(img_height, img_width, num_labels, img_channels).to(device) # added .to(device)\n",
         "    sgd = optim.SGD(model.parameters(), lr=learning_rate)\n",
         "    cost = nn.CrossEntropyLoss()\n",
         "\n",
@@ -206,6 +207,7 @@
         "        # train model\n",
         "        model.train()\n",
         "        for idx, (train_x, train_label) in enumerate(train_loader):\n",
+        "            train_x, train_label = train_x.to(device), train_label.to(device)\n",
         "            label_np = np.zeros((train_label.shape[0], num_labels))\n",
         "            sgd.zero_grad()\n",
         "            predict_y = model(train_x.float())\n",
@@ -218,11 +220,14 @@
         "        _sum = 0\n",
         "        model.eval()\n",
         "        for idx, (test_x, test_label) in enumerate(test_loader):\n",
+        "            test_x, test_label = test_x.to(device), test_label.to(device) # new code \n",
         "            predict_y = model(test_x.float()).detach()\n",
-        "            predict_ys = np.argmax(predict_y, axis=-1)\n",
-        "            label_np = test_label.numpy()\n",
+        "            #predict_ys = np.argmax(predict_y, axis=-1)\n",
+        "            predict_ys = torch.argmax(predict_y, axis=-1) # changed np to torch\n",
+        "            #label_np = test_label.numpy()\n",
         "            _ = predict_ys == test_label\n",
-        "            correct += np.sum(_.numpy(), axis=-1)\n",
+        "            #correct += np.sum(_.numpy(), axis=-1)\n",
+        "            correct += np.sum(_.cpu().numpy(), axis=-1) # added .cpu()\n",
         "            _sum += _.shape[0]\n",
         "\n",
         "        acc = correct / _sum\n",
@@ -250,16 +255,18 @@
     {
       "cell_type": "code",
       "source": [
+        "%%time\n",
+        "\n",
         "batch_size = 32               # size of batch the inner NN is trained with\n",
         "learning_rate = 1e-1          # fix learning rate\n",
-        "ds = \"CIFAR100\"               # pick dataset (MNIST, KMNIST, FashionMNIST, CIFAR10,...)\n",
+        "ds = \"MNIST\"               # pick dataset (MNIST, KMNIST, FashionMNIST, CIFAR10,...)\n",
         "toy_size = 0.02               # total propeortion of training and test set we use\n",
         "max_epochs = 100              # max number of epochs that is run if early stopping is not hit\n",
         "early_stop_num = 10           # max number of worse validation scores before early stopping is triggered\n",
         "early_stop_flag = True        # implement early stopping or not\n",
         "average_validation = [15,25]  # if not implementing early stopping, what epochs are we averaging over\n",
-        "num_iterations = 5            # how many iterations are we averaging over\n",
-        "IsLeNet = \"LeNet\"             # using LeNet or EasyNet or SimpleNet\n",
+        "num_iterations = 10            # how many iterations are we averaging over\n",
+        "IsLeNet = \"SimpleNet\"             # using LeNet or EasyNet or SimpleNet\n",
         "\n",
         "# run using early stopping\n",
         "best_accuracies = []\n",
@@ -283,61 +290,128 @@
       "metadata": {
         "colab": {
           "base_uri": "https://localhost:8080/",
-          "height": 628,
+          "height": 1000,
           "referenced_widgets": [
-            "3444759606834a61b3e1600265be1209",
-            "5bc0168880224bcf80e24f063092dd5c",
-            "e5f811f9dda3441dbe65720445f65a2a",
-            "2e6d4b79fe44499ea169b2bc4b19dbf9",
-            "74698cccbe58479099794d1225c20845",
-            "4d2518608b744df4a01c1054c946f7b7",
-            "7f56d005bba744c99616b0de1a04edd7",
-            "2751bf11c3f642caa95e4fd3d984f587",
-            "f22c99aefa3a481a9684c7e3499a2cf7",
-            "f21e438dfe574505a197bf6e79ac5b81",
-            "f31f480d91044a1a9e9ca29d28aa602e",
-            "9e520f656fa142f49eca4f18ba7e6925",
-            "d93cea42368d471a88b415c81547902f",
-            "d4b1a281cb004fd58322007e93624e8d",
-            "580c2f044ee44d5bb713723164924742",
-            "d2f8a05ad2994e1ebfc2c26f8271b689",
-            "7b268a2bfa824057b9d79fc15a92bea5",
-            "a8c801adeed34526902c1c4b50b98586",
-            "179583ccc6c4403b8ecc114b9d14b449",
-            "a919f3d64c654ee69661c6e1c65eae88",
-            "0f8499130e7f4b07b25ff8df6ccbe195",
-            "4aaa1d729df34f9ab8ae8f07df8ba0e2"
+            "bcbc913a6c3642dbb96dff550f5d66e6",
+            "0873bab106ce479da9fb7206f4801a47",
+            "64c3533fd61a400a9d30997e636f1471",
+            "7f6c45b22f3845378b7b847ce21f1962",
+            "812dc9c854ad4daea90212cd0d7a3579",
+            "ae57ccefa11b4838915518fd22c57524",
+            "b584e1cf0edd49bdbfb86b8b97bf5008",
+            "3ace12a047d4488a89db04dcad69d83f",
+            "351212c398dc4c9a8503f86833a9ba60",
+            "9bf5a1834e3044929bdb0f692913e155",
+            "ee4a5af70d2744568c6dee1dd92729a9",
+            "ec2cbf2353b14d688e177602f0165abd",
+            "57a850849ce14d5f9149ff89300c7742",
+            "52711f55ef6b40c19a7b41bbffabae01",
+            "7c85312986244bd5a5269afba7c7e955",
+            "c99c620876a745bf91ecdab525e7ad5f",
+            "3822da4fea3e432a923d13c334e9c3d9",
+            "b6961533b2214282973b00768cf20c74",
+            "1ce285474d20428582179d53b185b092",
+            "330e1a0f579c47619693773177a17ac4",
+            "cca1dfae30984e099493396e86ab9919",
+            "cfc55c07a999409f813b182b760256df",
+            "2e161aa0ca2349bf8dbe65649fb4ca56",
+            "c541261978184fce8c4de8e2d9be943e",
+            "15f2530f03da48f785c41aa8083df8bb",
+            "22f800b9ce1e4d478863267239d81a08",
+            "25e9d0cc377f47d2adaba6c5dbbf678e",
+            "76520d31b93e476b880eb388e00f3ce2",
+            "9069d655a97f488d8f96b530dd622658",
+            "7703f2d19f2246ac89d9df1e49d42669",
+            "3d5cb16ec36e4c68842197aa70fc6c9b",
+            "f69ce5bc13654dc18f4a5f71b906ef8f",
+            "4eccb6179fa84955b78a255a32ede8e4",
+            "f0bd92d5abbf4dbb9a90d131eb5bf4b1",
+            "2e307a3fb1a74f89a3589e6d6656fac8",
+            "65e5d46ba544477f881093b1f713e8de",
+            "1bb4eea06db646d782fbdae2af869762",
+            "840bc851bd9d402b8f21d6c86a28bc03",
+            "361122cefe0843f6899ebb4596789eaf",
+            "3ef04926ce2c4a83a83042f0290a2022",
+            "6b8cc1d945924ecea395e9f098888197",
+            "c7b0e2052b1b4cbab02242b59cd374ca",
+            "954eb16e03e648d789990fb567579741",
+            "a1c3f9ca859c46b3a3b848a709735f27",
+            "0396266d973248bdad617b8781e5d275",
+            "ebe7ef1c0cd44014a792fe42c89bcc0f",
+            "d623753cff4e4c9390d4b1544e97ac7e",
+            "23a8175537344bf69c1939f0ded70034",
+            "cee302836f8140438e4d2ac1b416280f",
+            "c904e3fadc274f31bb15c21d5f430502",
+            "3b006c2184c746609b9e1f20fc07e42e",
+            "32f8b1395ecd43ebb783de565b04b73e",
+            "c5e4cb9aca3b47d381e74c124145e06e",
+            "cd2033d0559f4f1bb7489b37386f8f10",
+            "c2fbf4b2fe4647f39908ed98a4f3a232",
+            "8286d534cbe14527a46aa7a0be632661",
+            "7e559ac323bc4e64a53a3f18eb2dd3f6",
+            "cde2cac15c3c4c609c6352dd9b683a1b",
+            "74293a4d7260461787feb360532db189",
+            "4bcb760c69004efea83701eefe67713e",
+            "fd47d886e13d42cd8c2993146e81e653",
+            "ec1bb88dd3cd4dffa2a9f1b38bf13379",
+            "2a90c00af7434eb8899c1d01fd6cb9b6",
+            "7e75ef6894814ba189289fd4ee093a04",
+            "46783cc1e2f241ed9a1a0f3160b03198",
+            "b7d88f42a0224666857714f7982426d6",
+            "10213db38b8246a3822f24c33415df5e",
+            "3d018be847f444e39bb92e5b8a7ca0f2",
+            "4dce522f9a644e95b6a5239c5b6650c4",
+            "9f8ec848584e45ab8401fb5908ef7c75",
+            "6634fe0857ca4145ac87ff553b6ecadf",
+            "b4e4fcdb66fb4eeeb40eebef09225cea",
+            "89f20579729a49f38267f0db4602141f",
+            "4f3a6394ee1b460886eda95d9f1371a7",
+            "b2c666a3a59c4fe98b353e8e9b828f2f",
+            "5b564189f0fd46b7b156aeea0ca348c2",
+            "d77598565b8b4e0e9cd1ef3017e5a51c",
+            "8f2cc891f97b4458b550a053fe817f9c",
+            "e7c3e2849a304c2681151edac0fc49e9",
+            "1448e0cb5b424ae1af3e86ed7121dae4",
+            "aca8d3c965d046738d232d6faf1900b6",
+            "b8f0be601a9e44c1b6f31cb144a36c02",
+            "ae6e789ca53548b8838743d478ad72ce",
+            "910fd81c41884aad985b210c653c5b63",
+            "0359ced0ae6241b698a2683e52a647f2",
+            "7eefb17bb4864694a456d191759a131c",
+            "a343b8c6fc824410a9a8d32103a8383f",
+            "2073c333f53043fe938e3ac22c919624"
           ]
         },
         "id": "KVhYheLfBP33",
-        "outputId": "a81aee8f-4c8d-4f8c-9304-4a93ce77535e"
+        "outputId": "acd383d5-52f4-43bd-a36e-103bc70f54cc"
       },
-      "execution_count": null,
+      "execution_count": 7,
       "outputs": [
         {
           "output_type": "stream",
           "name": "stderr",
           "text": [
-            "\r  0%|          | 0/5 [00:00<?, ?it/s]"
+            "\r  0%|          | 0/10 [00:00<?, ?it/s]"
           ]
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Downloading https://www.cs.toronto.edu/~kriz/cifar-100-python.tar.gz to ./MetaAugment/train/cifar-100-python.tar.gz\n"
+            "Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz to ./MetaAugment/train/MNIST/raw/train-images-idx3-ubyte.gz\n"
           ]
         },
         {
           "output_type": "display_data",
           "data": {
             "text/plain": [
-              "  0%|          | 0/169001437 [00:00<?, ?it/s]"
+              "  0%|          | 0/9912422 [00:00<?, ?it/s]"
             ],
             "application/vnd.jupyter.widget-view+json": {
               "version_major": 2,
               "version_minor": 0,
-              "model_id": "3444759606834a61b3e1600265be1209"
+              "model_id": "bcbc913a6c3642dbb96dff550f5d66e6"
             }
           },
           "metadata": {}
@@ -346,20 +420,22 @@
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Extracting ./MetaAugment/train/cifar-100-python.tar.gz to ./MetaAugment/train\n",
-            "Downloading https://www.cs.toronto.edu/~kriz/cifar-100-python.tar.gz to ./MetaAugment/test/cifar-100-python.tar.gz\n"
+            "Extracting ./MetaAugment/train/MNIST/raw/train-images-idx3-ubyte.gz to ./MetaAugment/train/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz to ./MetaAugment/train/MNIST/raw/train-labels-idx1-ubyte.gz\n"
           ]
         },
         {
           "output_type": "display_data",
           "data": {
             "text/plain": [
-              "  0%|          | 0/169001437 [00:00<?, ?it/s]"
+              "  0%|          | 0/28881 [00:00<?, ?it/s]"
             ],
             "application/vnd.jupyter.widget-view+json": {
               "version_major": 2,
               "version_minor": 0,
-              "model_id": "9e520f656fa142f49eca4f18ba7e6925"
+              "model_id": "ec2cbf2353b14d688e177602f0165abd"
             }
           },
           "metadata": {}
@@ -368,174 +444,212 @@
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Extracting ./MetaAugment/test/cifar-100-python.tar.gz to ./MetaAugment/test\n"
-          ]
-        },
-        {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r 20%|██        | 1/5 [00:19<01:16, 19.24s/it]"
-          ]
-        },
-        {
-          "output_type": "stream",
-          "name": "stdout",
-          "text": [
-            "0\tBest accuracy: 1.00%\n",
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/train/MNIST/raw/train-labels-idx1-ubyte.gz to ./MetaAugment/train/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz to ./MetaAugment/train/MNIST/raw/t10k-images-idx3-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r 40%|████      | 2/5 [00:35<00:51, 17.21s/it]"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/1648877 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "2e161aa0ca2349bf8dbe65649fb4ca56"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/train/MNIST/raw/t10k-images-idx3-ubyte.gz to ./MetaAugment/train/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz to ./MetaAugment/train/MNIST/raw/t10k-labels-idx1-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r 60%|██████    | 3/5 [00:43<00:26, 13.33s/it]"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/4542 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "f0bd92d5abbf4dbb9a90d131eb5bf4b1"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/train/MNIST/raw/t10k-labels-idx1-ubyte.gz to ./MetaAugment/train/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz to ./MetaAugment/test/MNIST/raw/train-images-idx3-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r 80%|████████  | 4/5 [01:12<00:19, 19.50s/it]"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/9912422 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "0396266d973248bdad617b8781e5d275"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/test/MNIST/raw/train-images-idx3-ubyte.gz to ./MetaAugment/test/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz to ./MetaAugment/test/MNIST/raw/train-labels-idx1-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "100%|██████████| 5/5 [01:18<00:00, 15.67s/it]\n"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/28881 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "8286d534cbe14527a46aa7a0be632661"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Average best accuracy: 4.00%\n",
-            "\n"
+            "Extracting ./MetaAugment/test/MNIST/raw/train-labels-idx1-ubyte.gz to ./MetaAugment/test/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz to ./MetaAugment/test/MNIST/raw/t10k-images-idx3-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r  0%|          | 0/5 [00:00<?, ?it/s]"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/1648877 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "10213db38b8246a3822f24c33415df5e"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/test/MNIST/raw/t10k-images-idx3-ubyte.gz to ./MetaAugment/test/MNIST/raw\n",
+            "\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz\n",
+            "Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz to ./MetaAugment/test/MNIST/raw/t10k-labels-idx1-ubyte.gz\n"
           ]
         },
         {
-          "output_type": "stream",
-          "name": "stderr",
-          "text": [
-            "\r 20%|██        | 1/5 [00:11<00:44, 11.15s/it]"
-          ]
+          "output_type": "display_data",
+          "data": {
+            "text/plain": [
+              "  0%|          | 0/4542 [00:00<?, ?it/s]"
+            ],
+            "application/vnd.jupyter.widget-view+json": {
+              "version_major": 2,
+              "version_minor": 0,
+              "model_id": "8f2cc891f97b4458b550a053fe817f9c"
+            }
+          },
+          "metadata": {}
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "0\tAverage accuracy: 1.86%\n",
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Extracting ./MetaAugment/test/MNIST/raw/t10k-labels-idx1-ubyte.gz to ./MetaAugment/test/MNIST/raw\n",
+            "\n"
           ]
         },
         {
           "output_type": "stream",
           "name": "stderr",
           "text": [
-            "\r 40%|████      | 2/5 [00:22<00:33, 11.04s/it]"
+            "\r 10%|â–ˆ         | 1/10 [00:17<02:34, 17.17s/it]"
           ]
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "0\tBest accuracy: 62.00%\n"
           ]
         },
         {
           "output_type": "stream",
           "name": "stderr",
           "text": [
-            "\r 60%|██████    | 3/5 [00:33<00:21, 10.98s/it]"
+            "100%|██████████| 10/10 [01:13<00:00,  7.40s/it]\n"
           ]
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "Average best accuracy: 78.95%\n",
+            "\n"
           ]
         },
         {
           "output_type": "stream",
           "name": "stderr",
           "text": [
-            "\r 80%|████████  | 4/5 [00:44<00:11, 11.05s/it]"
+            " 10%|â–ˆ         | 1/10 [00:07<01:03,  7.02s/it]"
           ]
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Files already downloaded and verified\n",
-            "Files already downloaded and verified\n"
+            "0\tAverage accuracy: 84.05%\n"
           ]
         },
         {
           "output_type": "stream",
           "name": "stderr",
           "text": [
-            "100%|██████████| 5/5 [00:55<00:00, 11.06s/it]"
+            "100%|██████████| 10/10 [01:09<00:00,  6.95s/it]"
           ]
         },
         {
           "output_type": "stream",
           "name": "stdout",
           "text": [
-            "Average average accuracy: 1.97%\n",
-            "\n"
+            "Average average accuracy: 81.36%\n",
+            "\n",
+            "CPU times: user 2min 12s, sys: 3.91 s, total: 2min 16s\n",
+            "Wall time: 2min 23s\n"
           ]
         },
         {
@@ -574,7 +688,2059 @@
     "accelerator": "GPU",
     "widgets": {
       "application/vnd.jupyter.widget-state+json": {
-        "3444759606834a61b3e1600265be1209": {
+        "bcbc913a6c3642dbb96dff550f5d66e6": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_0873bab106ce479da9fb7206f4801a47",
+              "IPY_MODEL_64c3533fd61a400a9d30997e636f1471",
+              "IPY_MODEL_7f6c45b22f3845378b7b847ce21f1962"
+            ],
+            "layout": "IPY_MODEL_812dc9c854ad4daea90212cd0d7a3579"
+          }
+        },
+        "0873bab106ce479da9fb7206f4801a47": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_ae57ccefa11b4838915518fd22c57524",
+            "placeholder": "​",
+            "style": "IPY_MODEL_b584e1cf0edd49bdbfb86b8b97bf5008",
+            "value": ""
+          }
+        },
+        "64c3533fd61a400a9d30997e636f1471": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_3ace12a047d4488a89db04dcad69d83f",
+            "max": 9912422,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_351212c398dc4c9a8503f86833a9ba60",
+            "value": 9912422
+          }
+        },
+        "7f6c45b22f3845378b7b847ce21f1962": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_9bf5a1834e3044929bdb0f692913e155",
+            "placeholder": "​",
+            "style": "IPY_MODEL_ee4a5af70d2744568c6dee1dd92729a9",
+            "value": " 9913344/? [00:00&lt;00:00, 25523032.36it/s]"
+          }
+        },
+        "812dc9c854ad4daea90212cd0d7a3579": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "ae57ccefa11b4838915518fd22c57524": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "b584e1cf0edd49bdbfb86b8b97bf5008": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "3ace12a047d4488a89db04dcad69d83f": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "351212c398dc4c9a8503f86833a9ba60": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "9bf5a1834e3044929bdb0f692913e155": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "ee4a5af70d2744568c6dee1dd92729a9": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "ec2cbf2353b14d688e177602f0165abd": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_57a850849ce14d5f9149ff89300c7742",
+              "IPY_MODEL_52711f55ef6b40c19a7b41bbffabae01",
+              "IPY_MODEL_7c85312986244bd5a5269afba7c7e955"
+            ],
+            "layout": "IPY_MODEL_c99c620876a745bf91ecdab525e7ad5f"
+          }
+        },
+        "57a850849ce14d5f9149ff89300c7742": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_3822da4fea3e432a923d13c334e9c3d9",
+            "placeholder": "​",
+            "style": "IPY_MODEL_b6961533b2214282973b00768cf20c74",
+            "value": ""
+          }
+        },
+        "52711f55ef6b40c19a7b41bbffabae01": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_1ce285474d20428582179d53b185b092",
+            "max": 28881,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_330e1a0f579c47619693773177a17ac4",
+            "value": 28881
+          }
+        },
+        "7c85312986244bd5a5269afba7c7e955": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_cca1dfae30984e099493396e86ab9919",
+            "placeholder": "​",
+            "style": "IPY_MODEL_cfc55c07a999409f813b182b760256df",
+            "value": " 29696/? [00:00&lt;00:00, 669976.83it/s]"
+          }
+        },
+        "c99c620876a745bf91ecdab525e7ad5f": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "3822da4fea3e432a923d13c334e9c3d9": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "b6961533b2214282973b00768cf20c74": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "1ce285474d20428582179d53b185b092": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "330e1a0f579c47619693773177a17ac4": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "cca1dfae30984e099493396e86ab9919": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "cfc55c07a999409f813b182b760256df": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "2e161aa0ca2349bf8dbe65649fb4ca56": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_c541261978184fce8c4de8e2d9be943e",
+              "IPY_MODEL_15f2530f03da48f785c41aa8083df8bb",
+              "IPY_MODEL_22f800b9ce1e4d478863267239d81a08"
+            ],
+            "layout": "IPY_MODEL_25e9d0cc377f47d2adaba6c5dbbf678e"
+          }
+        },
+        "c541261978184fce8c4de8e2d9be943e": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_76520d31b93e476b880eb388e00f3ce2",
+            "placeholder": "​",
+            "style": "IPY_MODEL_9069d655a97f488d8f96b530dd622658",
+            "value": ""
+          }
+        },
+        "15f2530f03da48f785c41aa8083df8bb": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_7703f2d19f2246ac89d9df1e49d42669",
+            "max": 1648877,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_3d5cb16ec36e4c68842197aa70fc6c9b",
+            "value": 1648877
+          }
+        },
+        "22f800b9ce1e4d478863267239d81a08": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_f69ce5bc13654dc18f4a5f71b906ef8f",
+            "placeholder": "​",
+            "style": "IPY_MODEL_4eccb6179fa84955b78a255a32ede8e4",
+            "value": " 1649664/? [00:00&lt;00:00, 18286020.17it/s]"
+          }
+        },
+        "25e9d0cc377f47d2adaba6c5dbbf678e": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "76520d31b93e476b880eb388e00f3ce2": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "9069d655a97f488d8f96b530dd622658": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "7703f2d19f2246ac89d9df1e49d42669": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "3d5cb16ec36e4c68842197aa70fc6c9b": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "f69ce5bc13654dc18f4a5f71b906ef8f": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "4eccb6179fa84955b78a255a32ede8e4": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "f0bd92d5abbf4dbb9a90d131eb5bf4b1": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_2e307a3fb1a74f89a3589e6d6656fac8",
+              "IPY_MODEL_65e5d46ba544477f881093b1f713e8de",
+              "IPY_MODEL_1bb4eea06db646d782fbdae2af869762"
+            ],
+            "layout": "IPY_MODEL_840bc851bd9d402b8f21d6c86a28bc03"
+          }
+        },
+        "2e307a3fb1a74f89a3589e6d6656fac8": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_361122cefe0843f6899ebb4596789eaf",
+            "placeholder": "​",
+            "style": "IPY_MODEL_3ef04926ce2c4a83a83042f0290a2022",
+            "value": ""
+          }
+        },
+        "65e5d46ba544477f881093b1f713e8de": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_6b8cc1d945924ecea395e9f098888197",
+            "max": 4542,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_c7b0e2052b1b4cbab02242b59cd374ca",
+            "value": 4542
+          }
+        },
+        "1bb4eea06db646d782fbdae2af869762": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_954eb16e03e648d789990fb567579741",
+            "placeholder": "​",
+            "style": "IPY_MODEL_a1c3f9ca859c46b3a3b848a709735f27",
+            "value": " 5120/? [00:00&lt;00:00, 115844.75it/s]"
+          }
+        },
+        "840bc851bd9d402b8f21d6c86a28bc03": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "361122cefe0843f6899ebb4596789eaf": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "3ef04926ce2c4a83a83042f0290a2022": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "6b8cc1d945924ecea395e9f098888197": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "c7b0e2052b1b4cbab02242b59cd374ca": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "954eb16e03e648d789990fb567579741": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "a1c3f9ca859c46b3a3b848a709735f27": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "0396266d973248bdad617b8781e5d275": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_ebe7ef1c0cd44014a792fe42c89bcc0f",
+              "IPY_MODEL_d623753cff4e4c9390d4b1544e97ac7e",
+              "IPY_MODEL_23a8175537344bf69c1939f0ded70034"
+            ],
+            "layout": "IPY_MODEL_cee302836f8140438e4d2ac1b416280f"
+          }
+        },
+        "ebe7ef1c0cd44014a792fe42c89bcc0f": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_c904e3fadc274f31bb15c21d5f430502",
+            "placeholder": "​",
+            "style": "IPY_MODEL_3b006c2184c746609b9e1f20fc07e42e",
+            "value": ""
+          }
+        },
+        "d623753cff4e4c9390d4b1544e97ac7e": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_32f8b1395ecd43ebb783de565b04b73e",
+            "max": 9912422,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_c5e4cb9aca3b47d381e74c124145e06e",
+            "value": 9912422
+          }
+        },
+        "23a8175537344bf69c1939f0ded70034": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_cd2033d0559f4f1bb7489b37386f8f10",
+            "placeholder": "​",
+            "style": "IPY_MODEL_c2fbf4b2fe4647f39908ed98a4f3a232",
+            "value": " 9913344/? [00:00&lt;00:00, 29346538.60it/s]"
+          }
+        },
+        "cee302836f8140438e4d2ac1b416280f": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "c904e3fadc274f31bb15c21d5f430502": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "3b006c2184c746609b9e1f20fc07e42e": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "32f8b1395ecd43ebb783de565b04b73e": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "c5e4cb9aca3b47d381e74c124145e06e": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "cd2033d0559f4f1bb7489b37386f8f10": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "c2fbf4b2fe4647f39908ed98a4f3a232": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "8286d534cbe14527a46aa7a0be632661": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HBoxModel",
+          "model_module_version": "1.5.0",
+          "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_7e559ac323bc4e64a53a3f18eb2dd3f6",
+              "IPY_MODEL_cde2cac15c3c4c609c6352dd9b683a1b",
+              "IPY_MODEL_74293a4d7260461787feb360532db189"
+            ],
+            "layout": "IPY_MODEL_4bcb760c69004efea83701eefe67713e"
+          }
+        },
+        "7e559ac323bc4e64a53a3f18eb2dd3f6": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_fd47d886e13d42cd8c2993146e81e653",
+            "placeholder": "​",
+            "style": "IPY_MODEL_ec1bb88dd3cd4dffa2a9f1b38bf13379",
+            "value": ""
+          }
+        },
+        "cde2cac15c3c4c609c6352dd9b683a1b": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "FloatProgressModel",
+          "model_module_version": "1.5.0",
+          "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_2a90c00af7434eb8899c1d01fd6cb9b6",
+            "max": 28881,
+            "min": 0,
+            "orientation": "horizontal",
+            "style": "IPY_MODEL_7e75ef6894814ba189289fd4ee093a04",
+            "value": 28881
+          }
+        },
+        "74293a4d7260461787feb360532db189": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "HTMLModel",
+          "model_module_version": "1.5.0",
+          "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_46783cc1e2f241ed9a1a0f3160b03198",
+            "placeholder": "​",
+            "style": "IPY_MODEL_b7d88f42a0224666857714f7982426d6",
+            "value": " 29696/? [00:00&lt;00:00, 778939.92it/s]"
+          }
+        },
+        "4bcb760c69004efea83701eefe67713e": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "fd47d886e13d42cd8c2993146e81e653": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "ec1bb88dd3cd4dffa2a9f1b38bf13379": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "2a90c00af7434eb8899c1d01fd6cb9b6": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "7e75ef6894814ba189289fd4ee093a04": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "ProgressStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "46783cc1e2f241ed9a1a0f3160b03198": {
+          "model_module": "@jupyter-widgets/base",
+          "model_name": "LayoutModel",
+          "model_module_version": "1.2.0",
+          "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
+          }
+        },
+        "b7d88f42a0224666857714f7982426d6": {
+          "model_module": "@jupyter-widgets/controls",
+          "model_name": "DescriptionStyleModel",
+          "model_module_version": "1.5.0",
+          "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": ""
+          }
+        },
+        "10213db38b8246a3822f24c33415df5e": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HBoxModel",
           "model_module_version": "1.5.0",
@@ -589,14 +2755,14 @@
             "_view_name": "HBoxView",
             "box_style": "",
             "children": [
-              "IPY_MODEL_5bc0168880224bcf80e24f063092dd5c",
-              "IPY_MODEL_e5f811f9dda3441dbe65720445f65a2a",
-              "IPY_MODEL_2e6d4b79fe44499ea169b2bc4b19dbf9"
+              "IPY_MODEL_3d018be847f444e39bb92e5b8a7ca0f2",
+              "IPY_MODEL_4dce522f9a644e95b6a5239c5b6650c4",
+              "IPY_MODEL_9f8ec848584e45ab8401fb5908ef7c75"
             ],
-            "layout": "IPY_MODEL_74698cccbe58479099794d1225c20845"
+            "layout": "IPY_MODEL_6634fe0857ca4145ac87ff553b6ecadf"
           }
         },
-        "5bc0168880224bcf80e24f063092dd5c": {
+        "3d018be847f444e39bb92e5b8a7ca0f2": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HTMLModel",
           "model_module_version": "1.5.0",
@@ -611,13 +2777,13 @@
             "_view_name": "HTMLView",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_4d2518608b744df4a01c1054c946f7b7",
+            "layout": "IPY_MODEL_b4e4fcdb66fb4eeeb40eebef09225cea",
             "placeholder": "​",
-            "style": "IPY_MODEL_7f56d005bba744c99616b0de1a04edd7",
+            "style": "IPY_MODEL_89f20579729a49f38267f0db4602141f",
             "value": ""
           }
         },
-        "e5f811f9dda3441dbe65720445f65a2a": {
+        "4dce522f9a644e95b6a5239c5b6650c4": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "FloatProgressModel",
           "model_module_version": "1.5.0",
@@ -633,15 +2799,15 @@
             "bar_style": "success",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_2751bf11c3f642caa95e4fd3d984f587",
-            "max": 169001437,
+            "layout": "IPY_MODEL_4f3a6394ee1b460886eda95d9f1371a7",
+            "max": 1648877,
             "min": 0,
             "orientation": "horizontal",
-            "style": "IPY_MODEL_f22c99aefa3a481a9684c7e3499a2cf7",
-            "value": 169001437
+            "style": "IPY_MODEL_b2c666a3a59c4fe98b353e8e9b828f2f",
+            "value": 1648877
           }
         },
-        "2e6d4b79fe44499ea169b2bc4b19dbf9": {
+        "9f8ec848584e45ab8401fb5908ef7c75": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HTMLModel",
           "model_module_version": "1.5.0",
@@ -656,13 +2822,13 @@
             "_view_name": "HTMLView",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_f21e438dfe574505a197bf6e79ac5b81",
+            "layout": "IPY_MODEL_5b564189f0fd46b7b156aeea0ca348c2",
             "placeholder": "​",
-            "style": "IPY_MODEL_f31f480d91044a1a9e9ca29d28aa602e",
-            "value": " 169001984/? [00:03&lt;00:00, 51293490.50it/s]"
+            "style": "IPY_MODEL_d77598565b8b4e0e9cd1ef3017e5a51c",
+            "value": " 1649664/? [00:00&lt;00:00, 4382609.24it/s]"
           }
         },
-        "74698cccbe58479099794d1225c20845": {
+        "6634fe0857ca4145ac87ff553b6ecadf": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -714,7 +2880,7 @@
             "width": null
           }
         },
-        "4d2518608b744df4a01c1054c946f7b7": {
+        "b4e4fcdb66fb4eeeb40eebef09225cea": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -766,7 +2932,7 @@
             "width": null
           }
         },
-        "7f56d005bba744c99616b0de1a04edd7": {
+        "89f20579729a49f38267f0db4602141f": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "DescriptionStyleModel",
           "model_module_version": "1.5.0",
@@ -781,7 +2947,7 @@
             "description_width": ""
           }
         },
-        "2751bf11c3f642caa95e4fd3d984f587": {
+        "4f3a6394ee1b460886eda95d9f1371a7": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -833,7 +2999,7 @@
             "width": null
           }
         },
-        "f22c99aefa3a481a9684c7e3499a2cf7": {
+        "b2c666a3a59c4fe98b353e8e9b828f2f": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "ProgressStyleModel",
           "model_module_version": "1.5.0",
@@ -849,7 +3015,7 @@
             "description_width": ""
           }
         },
-        "f21e438dfe574505a197bf6e79ac5b81": {
+        "5b564189f0fd46b7b156aeea0ca348c2": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -901,7 +3067,7 @@
             "width": null
           }
         },
-        "f31f480d91044a1a9e9ca29d28aa602e": {
+        "d77598565b8b4e0e9cd1ef3017e5a51c": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "DescriptionStyleModel",
           "model_module_version": "1.5.0",
@@ -916,7 +3082,7 @@
             "description_width": ""
           }
         },
-        "9e520f656fa142f49eca4f18ba7e6925": {
+        "8f2cc891f97b4458b550a053fe817f9c": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HBoxModel",
           "model_module_version": "1.5.0",
@@ -931,14 +3097,14 @@
             "_view_name": "HBoxView",
             "box_style": "",
             "children": [
-              "IPY_MODEL_d93cea42368d471a88b415c81547902f",
-              "IPY_MODEL_d4b1a281cb004fd58322007e93624e8d",
-              "IPY_MODEL_580c2f044ee44d5bb713723164924742"
+              "IPY_MODEL_e7c3e2849a304c2681151edac0fc49e9",
+              "IPY_MODEL_1448e0cb5b424ae1af3e86ed7121dae4",
+              "IPY_MODEL_aca8d3c965d046738d232d6faf1900b6"
             ],
-            "layout": "IPY_MODEL_d2f8a05ad2994e1ebfc2c26f8271b689"
+            "layout": "IPY_MODEL_b8f0be601a9e44c1b6f31cb144a36c02"
           }
         },
-        "d93cea42368d471a88b415c81547902f": {
+        "e7c3e2849a304c2681151edac0fc49e9": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HTMLModel",
           "model_module_version": "1.5.0",
@@ -953,13 +3119,13 @@
             "_view_name": "HTMLView",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_7b268a2bfa824057b9d79fc15a92bea5",
+            "layout": "IPY_MODEL_ae6e789ca53548b8838743d478ad72ce",
             "placeholder": "​",
-            "style": "IPY_MODEL_a8c801adeed34526902c1c4b50b98586",
+            "style": "IPY_MODEL_910fd81c41884aad985b210c653c5b63",
             "value": ""
           }
         },
-        "d4b1a281cb004fd58322007e93624e8d": {
+        "1448e0cb5b424ae1af3e86ed7121dae4": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "FloatProgressModel",
           "model_module_version": "1.5.0",
@@ -975,15 +3141,15 @@
             "bar_style": "success",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_179583ccc6c4403b8ecc114b9d14b449",
-            "max": 169001437,
+            "layout": "IPY_MODEL_0359ced0ae6241b698a2683e52a647f2",
+            "max": 4542,
             "min": 0,
             "orientation": "horizontal",
-            "style": "IPY_MODEL_a919f3d64c654ee69661c6e1c65eae88",
-            "value": 169001437
+            "style": "IPY_MODEL_7eefb17bb4864694a456d191759a131c",
+            "value": 4542
           }
         },
-        "580c2f044ee44d5bb713723164924742": {
+        "aca8d3c965d046738d232d6faf1900b6": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "HTMLModel",
           "model_module_version": "1.5.0",
@@ -998,13 +3164,13 @@
             "_view_name": "HTMLView",
             "description": "",
             "description_tooltip": null,
-            "layout": "IPY_MODEL_0f8499130e7f4b07b25ff8df6ccbe195",
+            "layout": "IPY_MODEL_a343b8c6fc824410a9a8d32103a8383f",
             "placeholder": "​",
-            "style": "IPY_MODEL_4aaa1d729df34f9ab8ae8f07df8ba0e2",
-            "value": " 169001984/? [00:05&lt;00:00, 52602275.30it/s]"
+            "style": "IPY_MODEL_2073c333f53043fe938e3ac22c919624",
+            "value": " 5120/? [00:00&lt;00:00, 112235.67it/s]"
           }
         },
-        "d2f8a05ad2994e1ebfc2c26f8271b689": {
+        "b8f0be601a9e44c1b6f31cb144a36c02": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -1056,7 +3222,7 @@
             "width": null
           }
         },
-        "7b268a2bfa824057b9d79fc15a92bea5": {
+        "ae6e789ca53548b8838743d478ad72ce": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -1108,7 +3274,7 @@
             "width": null
           }
         },
-        "a8c801adeed34526902c1c4b50b98586": {
+        "910fd81c41884aad985b210c653c5b63": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "DescriptionStyleModel",
           "model_module_version": "1.5.0",
@@ -1123,7 +3289,7 @@
             "description_width": ""
           }
         },
-        "179583ccc6c4403b8ecc114b9d14b449": {
+        "0359ced0ae6241b698a2683e52a647f2": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -1175,7 +3341,7 @@
             "width": null
           }
         },
-        "a919f3d64c654ee69661c6e1c65eae88": {
+        "7eefb17bb4864694a456d191759a131c": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "ProgressStyleModel",
           "model_module_version": "1.5.0",
@@ -1191,7 +3357,7 @@
             "description_width": ""
           }
         },
-        "0f8499130e7f4b07b25ff8df6ccbe195": {
+        "a343b8c6fc824410a9a8d32103a8383f": {
           "model_module": "@jupyter-widgets/base",
           "model_name": "LayoutModel",
           "model_module_version": "1.2.0",
@@ -1243,7 +3409,7 @@
             "width": null
           }
         },
-        "4aaa1d729df34f9ab8ae8f07df8ba0e2": {
+        "2073c333f53043fe938e3ac22c919624": {
           "model_module": "@jupyter-widgets/controls",
           "model_name": "DescriptionStyleModel",
           "model_module_version": "1.5.0",