commit 5a08768b6f4fbdd52f9f79d741e9f340217e95f1
parent 09e72a2d068c048ecbec0ca1185db04058643137
Author: Steven Atkinson <steven@atkinson.mn>
Date: Sat, 3 Dec 2022 13:16:23 -0800
Fix bugs in Colab notebook
Diffstat:
M | bin/train/colab.ipynb | | | 1915 | +++++++++++++++++++++++++------------------------------------------------------ |
1 file changed, 606 insertions(+), 1309 deletions(-)
diff --git a/bin/train/colab.ipynb b/bin/train/colab.ipynb
@@ -22,13 +22,56 @@
"Plan your training accordingly!\n",
"\n",
"## Steps:\n",
- "0. Install everything\n",
"1. Upload audio files\n",
- "2. Settings\n",
- "3. Run!\n",
- "4. Check\n",
- "5. Export\n",
- "6. Download your files"
+ "2. Installation\n",
+ "3. Settings\n",
+ "4. Run!\n",
+ "5. Check\n",
+ "6. Export\n",
+ "7. Download your files"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5CQleTk7GJV8"
+ },
+ "source": [
+ "## Step 1: Upload audio files\n",
+ "We're gonna need data. **Read this because it's important. Your model lives and dies with its data!**\n",
+ "\n",
+ "### Some tips for making good data:\n",
+ "I'm going to assume you know about proper gain staging for reamping. Beyond that, here are a few things that are less obvious:\n",
+ "* **Show your model everything!** The model is going to learn from your examples, so demonstrate everything! Play loud, play soft, play single notes, chords, different pickups, play through an overdrive pedal (you wanted your model to understand how pedals sound, right?), etc etc. Just think: You'll ask \"But can the model clean up like the real thing?\" _Just show it!_ (**Don't riff(!!!)** It sounds weird, but riffs are repetitive, and repetition is wasted data. Instead, just play every fret up and down every string. It's boring, but it's good data!)\n",
+ "* **\"How much data?\"** More is better, but there's diminishing returns. About 3 minutes is a good compromise, but up to maybe 15 minutes can still help if you really want the best model possible.\n",
+ "* 🔶**Measure the latency!**🔶 Most interfaces will have a little lag between when they send the signal and when the reamp comes back. Use your DAW to figure out how many samples it is--I'll ask you for it below. _This is important--If there's too much delay, then the model may not learn well. The closer you get this, the better the results will be, but don't over-compensate or else you're effectively asking the model to predict the future!_\n",
+ "\n",
+ "### What you need\n",
+ "You'll need two pairs of files (4 in total):\n",
+ "* A training pair (`x_train.wav`, `y_train.wav`) for the model to fit to.\n",
+ "* A validation pair, (`x_test.wav`, `y_test.wav`) to check how the model's doing on something new.\n",
+ "\n",
+ "`x_train.py` and `x_test.py` should be two (different!) DI files, and `y_train.wav` and `y_test.wav` should be their corresponding outputs that you reamped. **The train files should hold most of the data; the test files can be just a few seconds long.** The point of the test files is to just quickly check if your model gets it right if it sees something new (but not _too_ new--shouldn't you be training on those? ⬆)\n",
+ "\n",
+ "### What to do\n",
+ "Upload the input (DI) and output (amped) files you want to use by clicking the Folder icon on the left ⬅ and then clicking the upload icon.\n",
+ "\n",
+ "Once you're done, run the next cell and I'll check that everything looks good."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "R_filL-5F8HR"
+ },
+ "outputs": [],
+ "source": [
+ "from pathlib import Path\n",
+ "# I'm just gonna check that you were paying attention ;)\n",
+ "for name in (\"x_train.wav\", \"y_train.wav\", \"x_test.wav\", \"y_test.wav\"):\n",
+ " if not Path(name).exists():\n",
+ " raise RuntimeError(f\"I didn't find all of your data files. Where is {name}?\")"
]
},
{
@@ -37,8 +80,8 @@
"id": "2g_4GtFuGlO8"
},
"source": [
- "## Step 0: Install\n",
- "Install `nam` and the other Python packages it depends on."
+ "## Step 2: Installation\n",
+ "Install `nam` into this Colab instance."
]
},
{
@@ -49,7 +92,7 @@
"base_uri": "https://localhost:8080/"
},
"id": "vYQIpWr5EYRb",
- "outputId": "1b5db1b0-af68-4ed2-88af-82216a5ab1ef"
+ "outputId": "9099af59-62ae-45b2-8cb6-415db054a73a"
},
"outputs": [],
"source": [
@@ -64,7 +107,6 @@
},
"outputs": [],
"source": [
- "from pathlib import Path\n",
"from time import time\n",
"from typing import Optional, Union\n",
"\n",
@@ -81,50 +123,10 @@
{
"cell_type": "markdown",
"metadata": {
- "id": "5CQleTk7GJV8"
- },
- "source": [
- "## Step 1: Upload audio files\n",
- "We're gonna need data. **Read this because it's important. Your model lives and dies with its data!**\n",
- "\n",
- "### Some tips for making good data:\n",
- "I'm going to assume you know about proper gain staging for reamping. Beyond that, here are a few things that are less obvious:\n",
- "* **Show your model everything!** The model is going to learn from your examples, so demonstrate everything! Play loud, play soft, play single notes, chords, different pickups, play through an overdrive pedal (you wanted your model to understand how pedals sound, right?), etc etc. Just think: You'll ask \"But can the model clean up like the real thing?\" _Just show it!_ (**Don't riff(!!!)** It sounds weird, but riffs are repetitive, and repetition is wasted data. Instead, just play every fret up and down every string. It's boring, but it's good data!)\n",
- "* **\"How much data?\"** More is better, but there's diminishing returns. About 3 minutes is a good compromise, but up to maybe 15 minutes can still help if you really want the best model possible.\n",
- "* 🔶**Measure the latency!**🔶 Most interfaces will have a little lag between when they send the signal and when the reamp comes back. Use your DAW to figure out how many samples it is--I'll ask you for it below. _This is important--If there's too much delay, then the model may not learn well. The closer you get this, the better the results will be, but don't over-compensate or else you're effectively asking the model to predict the future!_\n",
- "\n",
- "### What you need\n",
- "You'll need two pairs of files (4 in total):\n",
- "* A training pair (`x_train.wav`, `y_train.wav`) for the model to fit to.\n",
- "* A validation pair, (`x_test.wav`, `y_test.wav`) to check how the model's doing on something new.\n",
- "\n",
- "`x_train.py` and `x_test.py` should be two (different!) DI files, and `y_train.wav` and `y_test.wav` should be their corresponding outputs that you reamped. **The train files should hold most of the data; the test files can be just a few seconds long.** The point of the test files is to just quickly check if your model gets it right if it sees something new (but not _too_ new--shouldn't you be training on those? ⬆)\n",
- "\n",
- "### What to do\n",
- "Upload the input (DI) and output (amped) files you want to use by clicking the Folder icon on the left ⬅ and then clicking the upload icon."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "R_filL-5F8HR"
- },
- "outputs": [],
- "source": [
- "# I'm just gonna check that you were paying attention ;)\n",
- "for name in (\"x_train.wav\", \"y_train.wav\", \"x_test.wav\", \"y_test.wav\"):\n",
- " if not Path(name).exists():\n",
- " raise RuntimeError(f\"I didn't find all of your data files. Where is {name}?\")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
"id": "j5fN10s3GwVz"
},
"source": [
- "## Step 2: Settings\n",
+ "## Step 3: Settings\n",
"The defaults are what I tend to start with and should usually work well, but if you'd like, you can make changes."
]
},
@@ -136,7 +138,7 @@
"base_uri": "https://localhost:8080/"
},
"id": "Y6gl6RoNJ_6I",
- "outputId": "6a9cb51d-218d-48ad-ac08-33b8d2fcfb65"
+ "outputId": "1f6166d6-87eb-4dfb-9619-3c4a4a7e5147"
},
"outputs": [],
"source": [
@@ -198,8 +200,7 @@
" \"kwargs\": {\n",
" \"gamma\": 0.993\n",
" }\n",
- " },\n",
- " \"checkpoint_path\": \"lightning_logs/version_5/checkpoints/epoch=0099_step=6500_ESR=2.990e-02_MSE=1.805e-04.ckpt\"\n",
+ " }\n",
"}\n",
"learning_config = {\n",
" \"train_dataloader\": {\n",
@@ -223,7 +224,7 @@
"id": "pNga-MNTMQAa"
},
"source": [
- "## Step 3: Run!\n",
+ "## Step 4: Run!\n",
"Let's rock"
]
},
@@ -271,7 +272,7 @@
"base_uri": "https://localhost:8080/"
},
"id": "vyhMf0ZyM4kt",
- "outputId": "a7a9e60d-89d4-4a13-987b-c79195a02626"
+ "outputId": "b367dbe3-624a-4e37-ce29-87b70f07424e"
},
"outputs": [],
"source": [
@@ -312,89 +313,67 @@
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
- "height": 283,
+ "height": 301,
"referenced_widgets": [
- "bf45be9177184918b71218945c14fc20",
- "62ddf153cbf8430badb48f614dd3f7dd",
- "88eb64fcfefb42259e30d0875e783f5e",
- "f13057d5f58443f8875f8ac534f2a28f",
- "f8e306038d704c59ac136ef64bea0fe0",
- "43ef5324fbc942edb8456365801a7aa0",
- "c8691aa159194023b2293e55c4c68817",
- "c7f4d7c0969542039b1003756643171c",
- "93c04a9847f843a7b72a9ece25424edb",
- "906705fb1b7f40c4a573ec0a12ab729a",
- "767d3f99f3f84c4e9bf77bb1bcd1ab11",
- "37334126cfb64f2799f1461095ca2c45",
- "a8e810d8e7c94e079409f5b62f583763",
- "45e51921c7594d5e9ae1d76a52e7dff6",
- "c010016c34f2418b8cece0703db1605b",
- "34133793632d4cb59c841190aa246fcb",
- "5c19a29f1659467a94ded128dacf65d0",
- "f94cddc32c834f2e941c03ec31891674",
- "ebbaa425d6ec41888fcee7316aeb22ff",
- "fbc8bf0195254d79934970393fb3799a",
- "5442ca3b33204e2091313ef2927b92b7",
- "8a1d4cfca9074d7ab4e42ed1c0f74461",
- "5dd33d6142f342dbaf705063a337a72c",
- "74942d363a5d412db302d2f7bbbf63b5",
- "d2eac4adf0b149db8ef590aa655728e6",
- "e0e6818dc13a46e491d85d8589d468c7",
- "a37c04005d2f4dfc849f2f0634e4b726",
- "994bcca81ff14c2faff8ff5462e55eaa",
- "6545d591601e4b04815844b0d1528fd4",
- "746412b524db4037be41ec55be0853f0",
- "991391555c45468cb7a9b733ac8d0917",
- "2431a564a1be405c8aea25539b9b7350",
- "9b56a25e58814d63bb73c158aa803eac",
- "fbd27179f8e44876b64372609c6a2e1a",
- "409b527bb26544a78b3c18d297a194e2",
- "91e1402e972a4351a59eb567f562b62f",
- "bee507d4ff504c0d86ff29420e0ed1e1",
- "5d6373004f2f4c13b0d6c2340ffe27d5",
- "7356a1140a6649e08cc0f0fdc272b186",
- "2748d196b8fd49c4baeb0cdb247caa76",
- "bed3f8c799ea4308bd52425716111d58",
- "e4e50fdb042e4afe96753a796ef821ad",
- "b0a6974df3f54c07bf32976482039a8f",
- "de2ad60565db48ee90bda4874fe12163",
- "67c0152f8a7c41a3adb3fce9b14d594d",
- "e5fb449991cd4aef8886de3aa8de0c1b",
- "a8b118d4987e42958bf8e55f686322b6",
- "4cff183af63f4d7cb35c3229b5693985",
- "7cc1b6dc37e94de7a79621f876e88d71",
- "f6bcd89ca8004c85833cf830547702ad",
- "c10aa036760844958f439b83675c3160",
- "8785506e5dd6458a8d9c2f12babb02da",
- "4ed9189e4d4c4f3aa6c89a60cc21e1b1",
- "ed965213128249d9a5963437fd640d73",
- "8e47728f66de425eb31324bb74cec8f0",
- "b7c2d7bd216b4caab740393545d85213",
- "b5c6d5f6a0ad457481bddb0c9a6a634f",
- "7c01ac73973743ceb27ed32ca5e864eb",
- "519643db0c354749baf6867e7f5edb67",
- "fc41e598f1b24d7e957d1ed983ffd6b0",
- "bb9632b252224598a62b9f45d73d0d82",
- "4c3a0e8a9ed94d8383808ab2dea6a30b",
- "d756055630e844e3984d79fbc3b0a102",
- "34b3d51b030e441c9b102ae587119ac5",
- "68514259ca1940668016fdc184a5e7e1",
- "298f367934954fdfaac4248e5775da98",
- "dd40672cd0804986a5031ac4b2ccbd5b",
- "a3d124de19c14ba2b005d5ac8de6adc9",
- "ebe52a1e086142a78882670083bf3890",
- "cc78e489fb244860932b36f3504eb24a",
- "c88ecc76ed814bbd8c1e2f8bbc90c51f",
- "da165723bbcb4896bec7ace58410512c",
- "d83273a13858416fb6081e9d0ace26a5",
- "cf3a4f266d5d4a2d9f4d4ea25e3a2770",
- "f6897ef4d5bf422eaf9334cd51a220ed",
- "f0c7c18d44284e159740425b381e619c",
- "93fc57555d7545a89af59d933922f575"
+ "d7513d16f8c0440b813e8a05fdce3a6a",
+ "936c88fd53024c54b03e70c458744ec1",
+ "267c776505af4500a78055da11d048c3",
+ "f2020a5340784d01aa1316eb0489ab10",
+ "22ddf8419783483c8f028e7864f70a01",
+ "375d8e834c5b4ef4ae07918107b7b88d",
+ "307f75cef4f44ad58a710badda886e37",
+ "c8cbf6d2083c482ca05956b1cca62d8f",
+ "0ca1b22f10094010b1de29208e9dc446",
+ "e626966e9c38471fa6e314d1ad1ac3e2",
+ "1b99071c17b24eb38edc8156e6ce5c82",
+ "fd2997ef94a94998956a256fe0522cd9",
+ "976be174250042ffb82603a8747c4e55",
+ "c2621945d38c48f6910abc5dbb9ecbc2",
+ "be9d778184e4429c92a6362baf0404b0",
+ "7b2cbe78308b43ada8d2d51d8cc33988",
+ "dcec65e867484ec9b110ce76055eaf85",
+ "cd773c524372402a88138b21a25f09bf",
+ "d0efa8f7a027477f8359b1b0af1695b7",
+ "b8f78af1fd9641b08f6ff26dddd45eee",
+ "67efb4a21bfb42cfb6aa9fca9652e476",
+ "06d6093b2de54471b6d8ed706a3ec134",
+ "35a2785ec34841faa4a42740859a1787",
+ "e73493ee7ea54e9e90e97d8235c0d034",
+ "bb9f87963c094647aba5a9fe9f658a7c",
+ "99d70d6c342241208b9e82b077e7992a",
+ "e8210bfbf84248c8ba908837a8d991a9",
+ "ccc46a9dc19846ef969fdf06c9c82176",
+ "3d31c1682afa4d7ab79a8a3631b8aad9",
+ "afd14c8a8a87404da80e146a794b0263",
+ "a79743b7948f44e48de0c95ce6a8d337",
+ "445e26349f454e8293424e1685f0091a",
+ "c0979cfc05374f68bea9e8d81aad87b3",
+ "d5d9d5da8a544cbe8a3269db2e68281b",
+ "450603dc0c8c41e5894d4b9c5795b260",
+ "5e4ef9e9ca8b4134a395aac882b40577",
+ "a69bf48d53dd417cbd06f7442c27649d",
+ "681bb4a793864358a5290ca85ae7c84b",
+ "bd6b703d97394a4dbc1ae95eec47aba2",
+ "a75349bcbe9f484c823d650542b9e003",
+ "ce4c4bbd8fd14beab87287b33ca3dcc4",
+ "5c59d810fd084268afc9e301b6527a74",
+ "85e37359486d4ea0981b97af675c6261",
+ "4506d1d24cc94655b3f04722c5cc4d7e",
+ "e17f3521a9ab43c7b0c5b21109c3be21",
+ "464621ad83404012844fc51e5bbc233a",
+ "3e176bf207e9462aaf411acd01b07df2",
+ "751d6a7ad60749f3bce1b3055253b56e",
+ "70b9099e79fc430699493b4ac64e8952",
+ "8a9dfc6232774eb783dc7e6330cd5258",
+ "91498ce3e7fe4d67b519df20d89dca89",
+ "5cc41ab2a3a245268826d42cdfc8bcf3",
+ "5c2acdd3a6cd457e8f7ad2d79284a7a6",
+ "8232a7f579b64fb386392ed3b283690b",
+ "894ef60aacff4a6ea1e55d9e3046c17f"
]
},
"id": "a8WLIx33M7c6",
- "outputId": "35e925bd-90b8-4ac1-ba93-bff3f2cfe825"
+ "outputId": "bd57b7ae-5831-4900-c578-b4070f6a6d1a"
},
"outputs": [],
"source": [
@@ -413,7 +392,7 @@
"base_uri": "https://localhost:8080/"
},
"id": "JzGltwwJNAkI",
- "outputId": "a4c4c0ae-ddb9-4f83-e0ca-a7a2a49b70c1"
+ "outputId": "4e2651d1-0048-4c17-9073-b3180240b9aa"
},
"outputs": [],
"source": [
@@ -433,7 +412,7 @@
"id": "QvuJEYxJNGn7"
},
"source": [
- "# Step 4: Check\n",
+ "# Step 5: Check\n",
"Let's look at how well our model matches the real thing."
]
},
@@ -486,10 +465,10 @@
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
- "height": 338
+ "height": 372
},
"id": "C_NsBdp5NQMC",
- "outputId": "b074ce12-82fe-4e23-c216-238126d5c079"
+ "outputId": "3e3c1812-4520-4943-bd31-d6de579decec"
},
"outputs": [],
"source": [
@@ -507,7 +486,7 @@
"id": "R__jJFwgNkAl"
},
"source": [
- "## Step 5: Export your model\n",
+ "## Step 6: Export your model\n",
"Now we'll use NAM's exporting utility to convert the model from its PyTorch representation to something that you can put into the plugin."
]
},
@@ -529,9 +508,11 @@
"id": "823KJ_L0Rchp"
},
"source": [
- "## Step 6: Download your artifacts\n",
+ "## Step 7: Download your artifacts\n",
"We're done! \n",
- "Go to the file browser on the left panel ⬅ and download the contents of `exported_model`. You'll need `config.json` (the architecture) and `weights.npy` (the weights)--these are the information that the NAM plugin needs to run your model!\n",
+ "Go to the file browser on the left panel ⬅ and download the contents of `exported_model` (you may need to hit the refresh button).\n",
+ "\n",
+ "You'll need `config.json` (the architecture) and `weights.npy` (the weights)--these are the information that the NAM plugin needs to run your model!\n",
"\n",
"Additionally, if you want to continue to train this model later you can download the lightning model artifacts from `lightning_logs`. If not, that's fine.\n",
"\n",
@@ -563,7 +544,53 @@
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
- "2431a564a1be405c8aea25539b9b7350": {
+ "06d6093b2de54471b6d8ed706a3ec134": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "0ca1b22f10094010b1de29208e9dc446": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "1b99071c17b24eb38edc8156e6ce5c82": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "22ddf8419783483c8f028e7864f70a01": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -580,9 +607,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": null,
+ "display": "inline-flex",
"flex": null,
- "flex_flow": null,
+ "flex_flow": "row wrap",
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -611,26 +638,35 @@
"padding": null,
"right": null,
"top": null,
- "visibility": null,
- "width": null
+ "visibility": "hidden",
+ "width": "100%"
}
},
- "2748d196b8fd49c4baeb0cdb247caa76": {
+ "267c776505af4500a78055da11d048c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
+ "model_name": "FloatProgressModel",
"state": {
+ "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
+ "_model_name": "FloatProgressModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c8cbf6d2083c482ca05956b1cca62d8f",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_0ca1b22f10094010b1de29208e9dc446",
+ "value": 1
}
},
- "298f367934954fdfaac4248e5775da98": {
+ "307f75cef4f44ad58a710badda886e37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
@@ -645,7 +681,29 @@
"description_width": ""
}
},
- "34133793632d4cb59c841190aa246fcb": {
+ "35a2785ec34841faa4a42740859a1787": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_e73493ee7ea54e9e90e97d8235c0d034",
+ "IPY_MODEL_bb9f87963c094647aba5a9fe9f658a7c",
+ "IPY_MODEL_99d70d6c342241208b9e82b077e7992a"
+ ],
+ "layout": "IPY_MODEL_e8210bfbf84248c8ba908837a8d991a9"
+ }
+ },
+ "375d8e834c5b4ef4ae07918107b7b88d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -662,9 +720,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": "inline-flex",
+ "display": null,
"flex": null,
- "flex_flow": "row wrap",
+ "flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -694,69 +752,49 @@
"right": null,
"top": null,
"visibility": null,
- "width": "100%"
+ "width": null
}
},
- "34b3d51b030e441c9b102ae587119ac5": {
+ "3d31c1682afa4d7ab79a8a3631b8aad9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "ProgressStyleModel",
+ "model_name": "DescriptionStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
+ "_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
- "bar_color": null,
"description_width": ""
}
},
- "37334126cfb64f2799f1461095ca2c45": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HBoxModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_a8e810d8e7c94e079409f5b62f583763",
- "IPY_MODEL_45e51921c7594d5e9ae1d76a52e7dff6",
- "IPY_MODEL_c010016c34f2418b8cece0703db1605b"
- ],
- "layout": "IPY_MODEL_34133793632d4cb59c841190aa246fcb"
- }
- },
- "409b527bb26544a78b3c18d297a194e2": {
+ "3e176bf207e9462aaf411acd01b07df2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HTMLModel",
+ "model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
+ "_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
+ "_view_name": "ProgressView",
+ "bar_style": "",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_7356a1140a6649e08cc0f0fdc272b186",
- "placeholder": "​",
- "style": "IPY_MODEL_2748d196b8fd49c4baeb0cdb247caa76",
- "value": "Validation DataLoader 0: 100%"
+ "layout": "IPY_MODEL_5cc41ab2a3a245268826d42cdfc8bcf3",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_5c2acdd3a6cd457e8f7ad2d79284a7a6",
+ "value": 1
}
},
- "43ef5324fbc942edb8456365801a7aa0": {
+ "445e26349f454e8293424e1685f0091a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -808,31 +846,28 @@
"width": null
}
},
- "45e51921c7594d5e9ae1d76a52e7dff6": {
+ "450603dc0c8c41e5894d4b9c5795b260": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
+ "model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
+ "_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_ebbaa425d6ec41888fcee7316aeb22ff",
- "max": 66,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_fbc8bf0195254d79934970393fb3799a",
- "value": 54
+ "layout": "IPY_MODEL_bd6b703d97394a4dbc1ae95eec47aba2",
+ "placeholder": "​",
+ "style": "IPY_MODEL_a75349bcbe9f484c823d650542b9e003",
+ "value": "Validation DataLoader 0: 100%"
}
},
- "4c3a0e8a9ed94d8383808ab2dea6a30b": {
+ "4506d1d24cc94655b3f04722c5cc4d7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
@@ -847,7 +882,7 @@
"description_width": ""
}
},
- "4cff183af63f4d7cb35c3229b5693985": {
+ "464621ad83404012844fc51e5bbc233a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
@@ -862,13 +897,13 @@
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_ed965213128249d9a5963437fd640d73",
+ "layout": "IPY_MODEL_8a9dfc6232774eb783dc7e6330cd5258",
"placeholder": "​",
- "style": "IPY_MODEL_8e47728f66de425eb31324bb74cec8f0",
- "value": " 1/1 [00:00<00:00, 26.04it/s]"
+ "style": "IPY_MODEL_91498ce3e7fe4d67b519df20d89dca89",
+ "value": "Validation DataLoader 0: 100%"
}
},
- "4ed9189e4d4c4f3aa6c89a60cc21e1b1": {
+ "5c2acdd3a6cd457e8f7ad2d79284a7a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ProgressStyleModel",
@@ -884,28 +919,23 @@
"description_width": ""
}
},
- "519643db0c354749baf6867e7f5edb67": {
+ "5c59d810fd084268afc9e301b6527a74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HTMLModel",
+ "model_name": "ProgressStyleModel",
"state": {
- "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
+ "_model_name": "ProgressStyleModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_68514259ca1940668016fdc184a5e7e1",
- "placeholder": "​",
- "style": "IPY_MODEL_298f367934954fdfaac4248e5775da98",
- "value": " 1/1 [00:00<00:00, 21.72it/s]"
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
}
},
- "5442ca3b33204e2091313ef2927b92b7": {
+ "5cc41ab2a3a245268826d42cdfc8bcf3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -923,7 +953,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": null,
+ "flex": "2",
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -957,14 +987,38 @@
"width": null
}
},
- "5c19a29f1659467a94ded128dacf65d0": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
+ "5e4ef9e9ca8b4134a395aac882b40577": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
"state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
+ "_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": "",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ce4c4bbd8fd14beab87287b33ca3dcc4",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_5c59d810fd084268afc9e301b6527a74",
+ "value": 1
+ }
+ },
+ "67efb4a21bfb42cfb6aa9fca9652e476": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
@@ -1009,7 +1063,7 @@
"width": null
}
},
- "5d6373004f2f4c13b0d6c2340ffe27d5": {
+ "681bb4a793864358a5290ca85ae7c84b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1061,87 +1115,7 @@
"width": "100%"
}
},
- "5dd33d6142f342dbaf705063a337a72c": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HBoxModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_74942d363a5d412db302d2f7bbbf63b5",
- "IPY_MODEL_d2eac4adf0b149db8ef590aa655728e6",
- "IPY_MODEL_e0e6818dc13a46e491d85d8589d468c7"
- ],
- "layout": "IPY_MODEL_a37c04005d2f4dfc849f2f0634e4b726"
- }
- },
- "62ddf153cbf8430badb48f614dd3f7dd": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_43ef5324fbc942edb8456365801a7aa0",
- "placeholder": "​",
- "style": "IPY_MODEL_c8691aa159194023b2293e55c4c68817",
- "value": "Sanity Checking DataLoader 0: 100%"
- }
- },
- "6545d591601e4b04815844b0d1528fd4": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "67c0152f8a7c41a3adb3fce9b14d594d": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HBoxModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_e5fb449991cd4aef8886de3aa8de0c1b",
- "IPY_MODEL_a8b118d4987e42958bf8e55f686322b6",
- "IPY_MODEL_4cff183af63f4d7cb35c3229b5693985"
- ],
- "layout": "IPY_MODEL_7cc1b6dc37e94de7a79621f876e88d71"
- }
- },
- "68514259ca1940668016fdc184a5e7e1": {
+ "70b9099e79fc430699493b4ac64e8952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1158,9 +1132,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": null,
+ "display": "inline-flex",
"flex": null,
- "flex_flow": null,
+ "flex_flow": "row wrap",
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -1189,11 +1163,32 @@
"padding": null,
"right": null,
"top": null,
- "visibility": null,
- "width": null
+ "visibility": "hidden",
+ "width": "100%"
+ }
+ },
+ "751d6a7ad60749f3bce1b3055253b56e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8232a7f579b64fb386392ed3b283690b",
+ "placeholder": "​",
+ "style": "IPY_MODEL_894ef60aacff4a6ea1e55d9e3046c17f",
+ "value": " 1/1 [00:00<00:00, 27.35it/s]"
}
},
- "7356a1140a6649e08cc0f0fdc272b186": {
+ "7b2cbe78308b43ada8d2d51d8cc33988": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1210,9 +1205,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": null,
+ "display": "inline-flex",
"flex": null,
- "flex_flow": null,
+ "flex_flow": "row wrap",
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -1242,10 +1237,10 @@
"right": null,
"top": null,
"visibility": null,
- "width": null
+ "width": "100%"
}
},
- "746412b524db4037be41ec55be0853f0": {
+ "8232a7f579b64fb386392ed3b283690b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1263,7 +1258,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": "2",
+ "flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -1297,67 +1292,7 @@
"width": null
}
},
- "74942d363a5d412db302d2f7bbbf63b5": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_994bcca81ff14c2faff8ff5462e55eaa",
- "placeholder": "​",
- "style": "IPY_MODEL_6545d591601e4b04815844b0d1528fd4",
- "value": "Validation DataLoader 0: 100%"
- }
- },
- "767d3f99f3f84c4e9bf77bb1bcd1ab11": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "7c01ac73973743ceb27ed32ca5e864eb": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_d756055630e844e3984d79fbc3b0a102",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_34b3d51b030e441c9b102ae587119ac5",
- "value": 1
- }
- },
- "7cc1b6dc37e94de7a79621f876e88d71": {
+ "85e37359486d4ea0981b97af675c6261": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1374,9 +1309,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": "inline-flex",
+ "display": null,
"flex": null,
- "flex_flow": "row wrap",
+ "flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -1405,11 +1340,26 @@
"padding": null,
"right": null,
"top": null,
- "visibility": "hidden",
- "width": "100%"
+ "visibility": null,
+ "width": null
+ }
+ },
+ "894ef60aacff4a6ea1e55d9e3046c17f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
}
},
- "8785506e5dd6458a8d9c2f12babb02da": {
+ "8a9dfc6232774eb783dc7e6330cd5258": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1427,7 +1377,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": "2",
+ "flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -1461,153 +1411,106 @@
"width": null
}
},
- "88eb64fcfefb42259e30d0875e783f5e": {
+ "91498ce3e7fe4d67b519df20d89dca89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "936c88fd53024c54b03e70c458744ec1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
+ "_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_c7f4d7c0969542039b1003756643171c",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_93c04a9847f843a7b72a9ece25424edb",
- "value": 1
+ "layout": "IPY_MODEL_375d8e834c5b4ef4ae07918107b7b88d",
+ "placeholder": "​",
+ "style": "IPY_MODEL_307f75cef4f44ad58a710badda886e37",
+ "value": "Sanity Checking DataLoader 0: 100%"
}
},
- "8a1d4cfca9074d7ab4e42ed1c0f74461": {
+ "976be174250042ffb82603a8747c4e55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
+ "model_name": "HTMLModel",
"state": {
+ "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_dcec65e867484ec9b110ce76055eaf85",
+ "placeholder": "​",
+ "style": "IPY_MODEL_cd773c524372402a88138b21a25f09bf",
+ "value": "Epoch 3: 14%"
}
},
- "8e47728f66de425eb31324bb74cec8f0": {
+ "99d70d6c342241208b9e82b077e7992a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
+ "model_name": "HTMLModel",
"state": {
+ "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_445e26349f454e8293424e1685f0091a",
+ "placeholder": "​",
+ "style": "IPY_MODEL_c0979cfc05374f68bea9e8d81aad87b3",
+ "value": " 1/1 [00:00<00:00, 27.40it/s]"
}
},
- "906705fb1b7f40c4a573ec0a12ab729a": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "91e1402e972a4351a59eb567f562b62f": {
+ "a69bf48d53dd417cbd06f7442c27649d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
+ "model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
+ "_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_bed3f8c799ea4308bd52425716111d58",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_e4e50fdb042e4afe96753a796ef821ad",
- "value": 1
- }
- },
- "93c04a9847f843a7b72a9ece25424edb": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "ProgressStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
+ "layout": "IPY_MODEL_85e37359486d4ea0981b97af675c6261",
+ "placeholder": "​",
+ "style": "IPY_MODEL_4506d1d24cc94655b3f04722c5cc4d7e",
+ "value": " 1/1 [00:00<00:00, 24.37it/s]"
}
},
- "93fc57555d7545a89af59d933922f575": {
+ "a75349bcbe9f484c823d650542b9e003": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
@@ -1622,7 +1525,7 @@
"description_width": ""
}
},
- "991391555c45468cb7a9b733ac8d0917": {
+ "a79743b7948f44e48de0c95ce6a8d337": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ProgressStyleModel",
@@ -1638,7 +1541,7 @@
"description_width": ""
}
},
- "994bcca81ff14c2faff8ff5462e55eaa": {
+ "afd14c8a8a87404da80e146a794b0263": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -1656,7 +1559,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": null,
+ "flex": "2",
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -1690,95 +1593,23 @@
"width": null
}
},
- "9b56a25e58814d63bb73c158aa803eac": {
+ "b8f78af1fd9641b08f6ff26dddd45eee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
+ "model_name": "ProgressStyleModel",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
+ "_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": ""
}
},
- "a37c04005d2f4dfc849f2f0634e4b726": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": "inline-flex",
- "flex": null,
- "flex_flow": "row wrap",
- "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": "hidden",
- "width": "100%"
- }
- },
- "a3d124de19c14ba2b005d5ac8de6adc9": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_da165723bbcb4896bec7ace58410512c",
- "placeholder": "​",
- "style": "IPY_MODEL_d83273a13858416fb6081e9d0ace26a5",
- "value": "Validation DataLoader 0: 100%"
- }
- },
- "a8b118d4987e42958bf8e55f686322b6": {
+ "bb9f87963c094647aba5a9fe9f658a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatProgressModel",
@@ -1791,600 +1622,18 @@
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
- "bar_style": "",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_8785506e5dd6458a8d9c2f12babb02da",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_4ed9189e4d4c4f3aa6c89a60cc21e1b1",
- "value": 1
- }
- },
- "a8e810d8e7c94e079409f5b62f583763": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_5c19a29f1659467a94ded128dacf65d0",
- "placeholder": "​",
- "style": "IPY_MODEL_f94cddc32c834f2e941c03ec31891674",
- "value": "Epoch 5: 82%"
- }
- },
- "b0a6974df3f54c07bf32976482039a8f": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "b5c6d5f6a0ad457481bddb0c9a6a634f": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_bb9632b252224598a62b9f45d73d0d82",
- "placeholder": "​",
- "style": "IPY_MODEL_4c3a0e8a9ed94d8383808ab2dea6a30b",
- "value": "Validation DataLoader 0: 100%"
- }
- },
- "b7c2d7bd216b4caab740393545d85213": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HBoxModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_b5c6d5f6a0ad457481bddb0c9a6a634f",
- "IPY_MODEL_7c01ac73973743ceb27ed32ca5e864eb",
- "IPY_MODEL_519643db0c354749baf6867e7f5edb67"
- ],
- "layout": "IPY_MODEL_fc41e598f1b24d7e957d1ed983ffd6b0"
- }
- },
- "bb9632b252224598a62b9f45d73d0d82": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": null,
- "flex_flow": null,
- "grid_area": null,
- "grid_auto_columns": null,
- "grid_auto_flow": null,
- "grid_auto_rows": null,
- "grid_column": null,
- "grid_gap": null,
- "grid_row": null,
- "grid_template_areas": null,
- "grid_template_columns": null,
- "grid_template_rows": null,
- "height": null,
- "justify_content": null,
- "justify_items": null,
- "left": null,
- "margin": null,
- "max_height": null,
- "max_width": null,
- "min_height": null,
- "min_width": null,
- "object_fit": null,
- "object_position": null,
- "order": null,
- "overflow": null,
- "overflow_x": null,
- "overflow_y": null,
- "padding": null,
- "right": null,
- "top": null,
- "visibility": null,
- "width": null
- }
- },
- "bed3f8c799ea4308bd52425716111d58": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": "2",
- "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
- }
- },
- "bee507d4ff504c0d86ff29420e0ed1e1": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_b0a6974df3f54c07bf32976482039a8f",
- "placeholder": "​",
- "style": "IPY_MODEL_de2ad60565db48ee90bda4874fe12163",
- "value": " 1/1 [00:00<00:00, 22.70it/s]"
- }
- },
- "bf45be9177184918b71218945c14fc20": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HBoxModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_62ddf153cbf8430badb48f614dd3f7dd",
- "IPY_MODEL_88eb64fcfefb42259e30d0875e783f5e",
- "IPY_MODEL_f13057d5f58443f8875f8ac534f2a28f"
- ],
- "layout": "IPY_MODEL_f8e306038d704c59ac136ef64bea0fe0"
- }
- },
- "c010016c34f2418b8cece0703db1605b": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_5442ca3b33204e2091313ef2927b92b7",
- "placeholder": "​",
- "style": "IPY_MODEL_8a1d4cfca9074d7ab4e42ed1c0f74461",
- "value": " 54/66 [00:05<00:01, 10.65it/s, loss=1.98e-05, v_num=6]"
- }
- },
- "c10aa036760844958f439b83675c3160": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "c7f4d7c0969542039b1003756643171c": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": "2",
- "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
- }
- },
- "c8691aa159194023b2293e55c4c68817": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "c88ecc76ed814bbd8c1e2f8bbc90c51f": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": "inline-flex",
- "flex": null,
- "flex_flow": "row wrap",
- "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": "hidden",
- "width": "100%"
- }
- },
- "cc78e489fb244860932b36f3504eb24a": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_f0c7c18d44284e159740425b381e619c",
- "placeholder": "​",
- "style": "IPY_MODEL_93fc57555d7545a89af59d933922f575",
- "value": " 1/1 [00:00<00:00, 24.12it/s]"
- }
- },
- "cf3a4f266d5d4a2d9f4d4ea25e3a2770": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": "2",
- "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
- }
- },
- "d2eac4adf0b149db8ef590aa655728e6": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_746412b524db4037be41ec55be0853f0",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_991391555c45468cb7a9b733ac8d0917",
- "value": 1
- }
- },
- "d756055630e844e3984d79fbc3b0a102": {
- "model_module": "@jupyter-widgets/base",
- "model_module_version": "1.2.0",
- "model_name": "LayoutModel",
- "state": {
- "_model_module": "@jupyter-widgets/base",
- "_model_module_version": "1.2.0",
- "_model_name": "LayoutModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "LayoutView",
- "align_content": null,
- "align_items": null,
- "align_self": null,
- "border": null,
- "bottom": null,
- "display": null,
- "flex": "2",
- "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
- }
- },
- "d83273a13858416fb6081e9d0ace26a5": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
+ "bar_style": "",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_afd14c8a8a87404da80e146a794b0263",
+ "max": 1,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_a79743b7948f44e48de0c95ce6a8d337",
+ "value": 1
}
},
- "da165723bbcb4896bec7ace58410512c": {
+ "bd6b703d97394a4dbc1ae95eec47aba2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2436,29 +1685,28 @@
"width": null
}
},
- "dd40672cd0804986a5031ac4b2ccbd5b": {
+ "be9d778184e4429c92a6362baf0404b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HBoxModel",
+ "model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_a3d124de19c14ba2b005d5ac8de6adc9",
- "IPY_MODEL_ebe52a1e086142a78882670083bf3890",
- "IPY_MODEL_cc78e489fb244860932b36f3504eb24a"
- ],
- "layout": "IPY_MODEL_c88ecc76ed814bbd8c1e2f8bbc90c51f"
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_67efb4a21bfb42cfb6aa9fca9652e476",
+ "placeholder": "​",
+ "style": "IPY_MODEL_06d6093b2de54471b6d8ed706a3ec134",
+ "value": " 9/66 [00:00<00:05, 10.77it/s, loss=0.00196, v_num=0]"
}
},
- "de2ad60565db48ee90bda4874fe12163": {
+ "c0979cfc05374f68bea9e8d81aad87b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
@@ -2473,65 +1721,83 @@
"description_width": ""
}
},
- "e0e6818dc13a46e491d85d8589d468c7": {
+ "c2621945d38c48f6910abc5dbb9ecbc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HTMLModel",
+ "model_name": "FloatProgressModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
+ "_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
+ "_view_name": "ProgressView",
+ "bar_style": "",
"description": "",
"description_tooltip": null,
- "layout": "IPY_MODEL_2431a564a1be405c8aea25539b9b7350",
- "placeholder": "​",
- "style": "IPY_MODEL_9b56a25e58814d63bb73c158aa803eac",
- "value": " 1/1 [00:00<00:00, 23.31it/s]"
+ "layout": "IPY_MODEL_d0efa8f7a027477f8359b1b0af1695b7",
+ "max": 66,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_b8f78af1fd9641b08f6ff26dddd45eee",
+ "value": 9
}
},
- "e4e50fdb042e4afe96753a796ef821ad": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "ProgressStyleModel",
+ "c8cbf6d2083c482ca05956b1cca62d8f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
"state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
+ "_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": "StyleView",
- "bar_color": null,
- "description_width": ""
- }
- },
- "e5fb449991cd4aef8886de3aa8de0c1b": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "HTMLModel",
- "state": {
- "_dom_classes": [],
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_f6bcd89ca8004c85833cf830547702ad",
- "placeholder": "​",
- "style": "IPY_MODEL_c10aa036760844958f439b83675c3160",
- "value": "Validation DataLoader 0: 100%"
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": null,
+ "bottom": null,
+ "display": null,
+ "flex": "2",
+ "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
}
},
- "ebbaa425d6ec41888fcee7316aeb22ff": {
+ "ccc46a9dc19846ef969fdf06c9c82176": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2549,7 +1815,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": "2",
+ "flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -2583,31 +1849,22 @@
"width": null
}
},
- "ebe52a1e086142a78882670083bf3890": {
+ "cd773c524372402a88138b21a25f09bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "FloatProgressModel",
+ "model_name": "DescriptionStyleModel",
"state": {
- "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "FloatProgressModel",
+ "_model_name": "DescriptionStyleModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/controls",
- "_view_module_version": "1.5.0",
- "_view_name": "ProgressView",
- "bar_style": "",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_cf3a4f266d5d4a2d9f4d4ea25e3a2770",
- "max": 1,
- "min": 0,
- "orientation": "horizontal",
- "style": "IPY_MODEL_f6897ef4d5bf422eaf9334cd51a220ed",
- "value": 1
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
}
},
- "ed965213128249d9a5963437fd640d73": {
+ "ce4c4bbd8fd14beab87287b33ca3dcc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2625,7 +1882,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": null,
+ "flex": "2",
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -2659,7 +1916,7 @@
"width": null
}
},
- "f0c7c18d44284e159740425b381e619c": {
+ "d0efa8f7a027477f8359b1b0af1695b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2677,7 +1934,7 @@
"border": null,
"bottom": null,
"display": null,
- "flex": null,
+ "flex": "2",
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
@@ -2711,44 +1968,51 @@
"width": null
}
},
- "f13057d5f58443f8875f8ac534f2a28f": {
+ "d5d9d5da8a544cbe8a3269db2e68281b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HTMLModel",
+ "model_name": "HBoxModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HTMLModel",
+ "_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "HTMLView",
- "description": "",
- "description_tooltip": null,
- "layout": "IPY_MODEL_906705fb1b7f40c4a573ec0a12ab729a",
- "placeholder": "​",
- "style": "IPY_MODEL_767d3f99f3f84c4e9bf77bb1bcd1ab11",
- "value": " 1/1 [00:00<00:00, 23.53it/s]"
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_450603dc0c8c41e5894d4b9c5795b260",
+ "IPY_MODEL_5e4ef9e9ca8b4134a395aac882b40577",
+ "IPY_MODEL_a69bf48d53dd417cbd06f7442c27649d"
+ ],
+ "layout": "IPY_MODEL_681bb4a793864358a5290ca85ae7c84b"
}
},
- "f6897ef4d5bf422eaf9334cd51a220ed": {
+ "d7513d16f8c0440b813e8a05fdce3a6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "ProgressStyleModel",
+ "model_name": "HBoxModel",
"state": {
+ "_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
+ "_model_name": "HBoxModel",
"_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_936c88fd53024c54b03e70c458744ec1",
+ "IPY_MODEL_267c776505af4500a78055da11d048c3",
+ "IPY_MODEL_f2020a5340784d01aa1316eb0489ab10"
+ ],
+ "layout": "IPY_MODEL_22ddf8419783483c8f028e7864f70a01"
}
},
- "f6bcd89ca8004c85833cf830547702ad": {
+ "dcec65e867484ec9b110ce76055eaf85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2800,7 +2064,29 @@
"width": null
}
},
- "f8e306038d704c59ac136ef64bea0fe0": {
+ "e17f3521a9ab43c7b0c5b21109c3be21": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_464621ad83404012844fc51e5bbc233a",
+ "IPY_MODEL_3e176bf207e9462aaf411acd01b07df2",
+ "IPY_MODEL_751d6a7ad60749f3bce1b3055253b56e"
+ ],
+ "layout": "IPY_MODEL_70b9099e79fc430699493b4ac64e8952"
+ }
+ },
+ "e626966e9c38471fa6e314d1ad1ac3e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2817,9 +2103,9 @@
"align_self": null,
"border": null,
"bottom": null,
- "display": "inline-flex",
+ "display": null,
"flex": null,
- "flex_flow": "row wrap",
+ "flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
@@ -2848,64 +2134,32 @@
"padding": null,
"right": null,
"top": null,
- "visibility": "hidden",
- "width": "100%"
- }
- },
- "f94cddc32c834f2e941c03ec31891674": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "DescriptionStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "DescriptionStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "description_width": ""
- }
- },
- "fbc8bf0195254d79934970393fb3799a": {
- "model_module": "@jupyter-widgets/controls",
- "model_module_version": "1.5.0",
- "model_name": "ProgressStyleModel",
- "state": {
- "_model_module": "@jupyter-widgets/controls",
- "_model_module_version": "1.5.0",
- "_model_name": "ProgressStyleModel",
- "_view_count": null,
- "_view_module": "@jupyter-widgets/base",
- "_view_module_version": "1.2.0",
- "_view_name": "StyleView",
- "bar_color": null,
- "description_width": ""
+ "visibility": null,
+ "width": null
}
},
- "fbd27179f8e44876b64372609c6a2e1a": {
+ "e73493ee7ea54e9e90e97d8235c0d034": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
- "model_name": "HBoxModel",
+ "model_name": "HTMLModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
- "_model_name": "HBoxModel",
+ "_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
- "_view_name": "HBoxView",
- "box_style": "",
- "children": [
- "IPY_MODEL_409b527bb26544a78b3c18d297a194e2",
- "IPY_MODEL_91e1402e972a4351a59eb567f562b62f",
- "IPY_MODEL_bee507d4ff504c0d86ff29420e0ed1e1"
- ],
- "layout": "IPY_MODEL_5d6373004f2f4c13b0d6c2340ffe27d5"
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ccc46a9dc19846ef969fdf06c9c82176",
+ "placeholder": "​",
+ "style": "IPY_MODEL_3d31c1682afa4d7ab79a8a3631b8aad9",
+ "value": "Validation DataLoader 0: 100%"
}
},
- "fc41e598f1b24d7e957d1ed983ffd6b0": {
+ "e8210bfbf84248c8ba908837a8d991a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
@@ -2956,6 +2210,49 @@
"visibility": "hidden",
"width": "100%"
}
+ },
+ "f2020a5340784d01aa1316eb0489ab10": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_e626966e9c38471fa6e314d1ad1ac3e2",
+ "placeholder": "​",
+ "style": "IPY_MODEL_1b99071c17b24eb38edc8156e6ce5c82",
+ "value": " 1/1 [00:05<00:00, 5.62s/it]"
+ }
+ },
+ "fd2997ef94a94998956a256fe0522cd9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_976be174250042ffb82603a8747c4e55",
+ "IPY_MODEL_c2621945d38c48f6910abc5dbb9ecbc2",
+ "IPY_MODEL_be9d778184e4429c92a6362baf0404b0"
+ ],
+ "layout": "IPY_MODEL_7b2cbe78308b43ada8d2d51d8cc33988"
+ }
}
}
}