{ "cells": [ { "cell_type": "markdown", "id": "b53729a3", "metadata": {}, "source": [ "# Materials\n", "\n", "This test showcases rendering with various materials provided by Lightmetrica. We render the images using ``renderer::pt``." ] }, { "cell_type": "code", "execution_count": 1, "id": "5938697a", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:09.892074Z", "iopub.status.busy": "2021-10-22T11:37:09.891421Z", "iopub.status.idle": "2021-10-22T11:37:09.907181Z", "shell.execute_reply": "2021-10-22T11:37:09.906640Z" } }, "outputs": [], "source": [ "%load_ext autoreload\n", "%autoreload 2" ] }, { "cell_type": "code", "execution_count": 2, "id": "b59417d5", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:09.911346Z", "iopub.status.busy": "2021-10-22T11:37:09.910833Z", "iopub.status.idle": "2021-10-22T11:37:10.008330Z", "shell.execute_reply": "2021-10-22T11:37:10.007391Z" } }, "outputs": [], "source": [ "import lmenv\n", "env = lmenv.load('.lmenv')" ] }, { "cell_type": "code", "execution_count": 3, "id": "2ae5860f", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:10.013587Z", "iopub.status.busy": "2021-10-22T11:37:10.012896Z", "iopub.status.idle": "2021-10-22T11:37:10.237862Z", "shell.execute_reply": "2021-10-22T11:37:10.238319Z" } }, "outputs": [], "source": [ "import os\n", "import pickle\n", "import json\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import lightmetrica as lm\n", "%load_ext lightmetrica_jupyter\n", "import lmscene" ] }, { "cell_type": "code", "execution_count": 4, "id": "76706c01", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:10.243427Z", "iopub.status.busy": "2021-10-22T11:37:10.242372Z", "iopub.status.idle": "2021-10-22T11:37:10.256709Z", "shell.execute_reply": "2021-10-22T11:37:10.256144Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|0.000] Lightmetrica -- Version 3.0.0 (rev. 70601db) Linux x64\n", "[I|0.000] Loading plugin [name='accel_embree']\n", "[I|0.001] .. Successfully loaded [name='accel_embree']\n" ] } ], "source": [ "lm.init()\n", "lm.log.init('jupyter')\n", "lm.progress.init('jupyter')\n", "lm.info()\n", "lm.comp.load_plugin(os.path.join(env.bin_path, 'accel_embree'))\n", "if not lm.Release:\n", " lm.parallel.init('openmp', num_threads=1)\n", " lm.debug.attach_to_debugger()" ] }, { "cell_type": "code", "execution_count": 5, "id": "84567780", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:10.262265Z", "iopub.status.busy": "2021-10-22T11:37:10.261354Z", "iopub.status.idle": "2021-10-22T11:37:10.272059Z", "shell.execute_reply": "2021-10-22T11:37:10.272486Z" } }, "outputs": [], "source": [ "def render(scene, name, **kwargs):\n", " w = 854\n", " h = 480\n", " film = lm.load_film('film', 'bitmap', w=w, h=h)\n", " renderer = lm.load_renderer('renderer', name,\n", " scene=scene,\n", " output=film,\n", " max_verts=20,\n", " scheduler='time',\n", " render_time=30,\n", " **kwargs)\n", " renderer.render()\n", " return np.copy(film.buffer())\n", "\n", "def display_image(img, fig_size=15, scale=1):\n", " f = plt.figure(figsize=(fig_size,fig_size))\n", " ax = f.add_subplot(111) \n", " ax.imshow(np.clip(np.power(img*scale,1/2.2),0,1), origin='lower')\n", " ax.axis('off')\n", " plt.show()" ] }, { "cell_type": "markdown", "id": "3ffd96b1", "metadata": {}, "source": [ "## Scene setup" ] }, { "cell_type": "code", "execution_count": 6, "id": "9dfccdf9", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:10.277617Z", "iopub.status.busy": "2021-10-22T11:37:10.276497Z", "iopub.status.idle": "2021-10-22T11:37:10.506846Z", "shell.execute_reply": "2021-10-22T11:37:10.507231Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|0.035] Loading asset [name='accel']\n", "[I|0.035] .. {\"intcost\":1.0,\"maxBranchingFactor\":2,\"maxDepth\":18,\"maxLeafSize\":32,\"minLeafSize\":1,\"quality\":1,\"sahBlockSize\":1,\"travcost\":1.0}\n", "[I|0.035] .. {\"compact\":false,\"dynamic\":false,\"filter\":false,\"robust\":false}\n", "[I|0.035] Loading asset [name='scene']\n", "[I|0.036] Loading asset [name='mat_ut']\n", "[I|0.036] Loading asset [name='camera_main']\n", "[I|0.036] Loading asset [name='model_obj']\n", "[I|0.036] .. Loading OBJ file [path='bunny_with_planes.obj']\n", "[I|0.191] Loading asset [name='mat_diffuse_white']\n", "[I|0.191] Loading asset [name='tex_floor']\n", "[I|0.192] .. Loading texture [path='default.png']\n", "[I|0.192] Loading asset [name='mat_floor']\n", "[I|0.192] Loading asset [name='mat_black']\n", "[I|0.193] Loading asset [name='light']\n", "[I|0.196] Building acceleration structure [name='accel']\n", "[I|0.196] .. Flattening scene\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[I|0.203] .. Building\n" ] } ], "source": [ "# Create scene\n", "accel = lm.load_accel('accel', 'embree')\n", "scene = lm.load_scene('scene', 'default', accel=accel)\n", "mat = lm.load_material('mat_ut', 'diffuse', Kd=[1,1,1])\n", "lmscene.bunny_with_area_light(scene, env.scene_path, mat_knob=mat)\n", "scene.build()" ] }, { "cell_type": "markdown", "id": "59ee1c56", "metadata": {}, "source": [ "## Rendering" ] }, { "cell_type": "markdown", "id": "07545864", "metadata": {}, "source": [ "### Diffse material\n", "\n", "`material::diffuse`" ] }, { "cell_type": "code", "execution_count": 7, "id": "e46faeac", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:10.511364Z", "iopub.status.busy": "2021-10-22T11:37:10.510774Z", "iopub.status.idle": "2021-10-22T11:37:41.651407Z", "shell.execute_reply": "2021-10-22T11:37:41.651821Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|0.269] Loading asset [name='mat_ut']\n", "[I|0.269] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|0.269] Loading asset [name='film']\n", "[I|0.285] Loading asset [name='renderer']\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8820733780e24898bf545e43fbf0a25c", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "lm.load_material('mat_ut', 'diffuse', Kd=[.8,.2,.2])\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "e6959588", "metadata": {}, "source": [ "### Glossy material\n", "\n", "`material::glossy`" ] }, { "cell_type": "code", "execution_count": 8, "id": "398d6218", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:37:41.656512Z", "iopub.status.busy": "2021-10-22T11:37:41.655853Z", "iopub.status.idle": "2021-10-22T11:38:12.707757Z", "shell.execute_reply": "2021-10-22T11:38:12.708148Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|31.413] Loading asset [name='mat_ut']\n", "[I|31.413] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|31.413] Loading asset [name='film']\n", "[I|31.414] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|31.427] Loading asset [name='renderer']\n", "[I|31.427] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21c0efdc1fa841daae28e58f24b20d96", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "lm.load_material('mat_ut', 'glossy', Ks=[.8,.2,.2], ax=0.2, ay=0.2)\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "efb95396", "metadata": {}, "source": [ "### Perfect specular reflection\n", "\n", "`material::mirror`" ] }, { "cell_type": "code", "execution_count": 9, "id": "85957a91", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:38:12.712389Z", "iopub.status.busy": "2021-10-22T11:38:12.710128Z", "iopub.status.idle": "2021-10-22T11:38:43.922210Z", "shell.execute_reply": "2021-10-22T11:38:43.922624Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|62.470] Loading asset [name='mat_ut']\n", "[I|62.470] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|62.470] Loading asset [name='film']\n", "[I|62.470] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|62.483] Loading asset [name='renderer']\n", "[I|62.483] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd0fea199442462ea62a265fbe5c321d", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "lm.load_material('mat_ut', 'mirror')\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "77ddc856", "metadata": {}, "source": [ "### Fresnel reflection / refraction\n", "\n", "`material::fresnel`" ] }, { "cell_type": "code", "execution_count": 10, "id": "68dc751b", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:38:43.926947Z", "iopub.status.busy": "2021-10-22T11:38:43.926294Z", "iopub.status.idle": "2021-10-22T11:39:15.343718Z", "shell.execute_reply": "2021-10-22T11:39:15.344111Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|93.684] Loading asset [name='mat_ut']\n", "[I|93.684] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|93.684] Loading asset [name='film']\n", "[I|93.684] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|93.697] Loading asset [name='renderer']\n", "[I|93.697] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "800e705a3f50409d9226783985393309", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "lm.load_material('mat_ut', 'glass', Ni=1.5)\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "38170ab9", "metadata": {}, "source": [ "### Mixture material with constant weights using RR\n", "\n", "`material::constant_weight_mixture_rr`" ] }, { "cell_type": "code", "execution_count": 11, "id": "e007f98c", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:39:15.347596Z", "iopub.status.busy": "2021-10-22T11:39:15.346868Z", "iopub.status.idle": "2021-10-22T11:39:46.811095Z", "shell.execute_reply": "2021-10-22T11:39:46.811505Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|125.107] Loading asset [name='mat_diffuse']\n", "[I|125.107] Loading asset [name='mat_glossy']\n", "[I|125.107] Loading asset [name='mat_mirror']\n", "[I|125.107] Loading asset [name='mat_ut']\n", "[I|125.108] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|125.108] Loading asset [name='film']\n", "[I|125.108] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|125.121] Loading asset [name='renderer']\n", "[I|125.121] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff60e18a79c043d6becad911a9aadc22", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "mat_diffuse = lm.load_material('mat_diffuse', 'diffuse', Kd=[.1,.8,.1])\n", "mat_glossy = lm.load_material('mat_glossy', 'glossy', Ks=[.8,.1,.1], ax=0.2, ay=0.2)\n", "mat_mirror = lm.load_material('mat_mirror', 'mirror')\n", "mat = lm.load_material('mat_ut', 'constant_weight_mixture_rr', [\n", " {'material': mat_diffuse.loc(), 'weight': 0.2},\n", " {'material': mat_glossy.loc(), 'weight': 0.4},\n", " {'material': mat_mirror.loc(), 'weight': 0.4}\n", "])\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "d4488855", "metadata": {}, "source": [ "### Mixture material with constant weights using marginalization \n", "\n", "`material::constant_weight_mixture_marginalized`" ] }, { "cell_type": "code", "execution_count": 12, "id": "17f16bb4", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:39:46.816559Z", "iopub.status.busy": "2021-10-22T11:39:46.815905Z", "iopub.status.idle": "2021-10-22T11:40:17.925841Z", "shell.execute_reply": "2021-10-22T11:40:17.926274Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|156.573] Loading asset [name='mat_ut']\n", "[I|156.574] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|156.574] Loading asset [name='film']\n", "[I|156.574] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|156.587] Loading asset [name='renderer']\n", "[I|156.587] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7cc62f33d5584670bd5f7cfff3969fb1", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "mat = lm.load_material('mat_ut', 'constant_weight_mixture_marginalized', [\n", " {'material': mat_diffuse.loc(), 'weight': 0.2},\n", " {'material': mat_glossy.loc(), 'weight': 0.4},\n", " {'material': mat_mirror.loc(), 'weight': 0.4}\n", "])\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "ba96346f", "metadata": {}, "source": [ "### Mixture material with alpha texture\n", "\n", "`material::mixture_wavefrontobj`\n", "\n", "This material is the default material converted from MTL format of Wavefront OBJ." ] }, { "cell_type": "code", "execution_count": 13, "id": "4ed4a33c", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:17.932102Z", "iopub.status.busy": "2021-10-22T11:40:17.931395Z", "iopub.status.idle": "2021-10-22T11:40:49.277934Z", "shell.execute_reply": "2021-10-22T11:40:49.277485Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|187.689] Loading asset [name='tex']\n", "[I|187.689] .. Loading texture [path='leaf.png']\n", "[I|187.692] Loading asset [name='mat_ut']\n", "[I|187.692] .. Asset [name='mat_ut'] has been already loaded. Replacing..\n", "[I|187.692] Loading asset [name='film']\n", "[I|187.693] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|187.706] Loading asset [name='renderer']\n", "[I|187.706] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d5f1ca73dcb488da24abb0161375148", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/30.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "tex = lm.load_texture('tex', 'bitmap',\n", " path=os.path.join(env.scene_path, 'fireplace_room', 'textures', 'leaf.png'))\n", "lm.load_material('mat_ut', 'mixture_wavefrontobj',\n", " Kd=[.8,.8,.8],\n", " mapKd=tex,\n", " Ks=[0,0,0],\n", " ax=0.2,\n", " ay=0.2,\n", " no_alpha_mask=False)\n", "img = render(scene, 'pt')\n", "display_image(img)" ] } ], "metadata": { "jupytext": { "formats": "ipynb,py:light", "text_representation": { "extension": ".py", "format_name": "light", "format_version": "1.5", "jupytext_version": "1.3.3" } }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.10" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "006b4c89820e44b79d8f9c155679c61f": { "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 } }, "05c23deb9b364f619d209b3642ccebc4": { "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 } }, "0f60b4e3d89743d9b891fb0608b84f4a": { "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": "" } }, "12a0b81638eb481d803ffcf57017191d": { "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 } }, "1424bb48ae774e328f8d62723818c4af": { "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 } }, "1f8dc62469254bbba825273d2dbf5925": { "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_fea8c8fad68d4008b31247985993b0fa", "placeholder": "​", "style": "IPY_MODEL_b9bb37a76dad479e8a7339495484a875", "value": "101%" } }, "2138c89df9ab49e2b76d633e5e9d3500": { "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": "" } }, "21c0efdc1fa841daae28e58f24b20d96": { "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_1f8dc62469254bbba825273d2dbf5925", "IPY_MODEL_dba4697ef71b4586809c10f29c2abf1f", "IPY_MODEL_72249dd77d964937b01c2447dc9ff17e" ], "layout": "IPY_MODEL_c831704b9d264bc3adc6111f22f21eaf" } }, "26dc366c4c9b420c9a7bf588a2588a08": { "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 } }, "28240e1d961f4bb582c6beb3c6d3c5b2": { "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 } }, "29eab19536bc4a97ba9cc1a2fc34bbb6": { "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": "" } }, "309bd22d803a4d2ab4f4fa2307b59840": { "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": "" } }, "37046897e2a64d17aad11a08406c3433": { "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 } }, "3c2ed2d155a84f478625d0f9a8da592b": { "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 } }, "3caa77a6ef0e4684a6ebcf4bf0569d69": { "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_8cd843fecd4645b4a677ae574c437f1a", "placeholder": "​", "style": "IPY_MODEL_65c13439532e4fe2ad662b92a1bf9e47", "value": " 30.473/30.0 [00:30<00:00, 1.00s/it]" } }, "3ea16d714e1942b1b983eaa367344606": { "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": "" } }, "3fa2311c29c44ffdbb5d0614d9c85131": { "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": "" } }, "426436a6e9494ce4a0b807731525b111": { "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 } }, "4f4fb36ae3c24ec791459bb7d54eccce": { "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 } }, "51770939d23646b1b32321c0b6dfc979": { "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_5207052cbc6d429bad30a53c0d28f374", "placeholder": "​", "style": "IPY_MODEL_f0b7ff844d0643da90e7d8a0542fa594", "value": " 30.499/30.0 [00:30<00:00, 1.00s/it]" } }, "5207052cbc6d429bad30a53c0d28f374": { "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 } }, "52c27425f5b3428ea7c24c34e418fff8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_843609bde8344cfc881be32e72cd3757", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_702e9a6e273542259ad002719d1e77ab", "value": 30.0 } }, "5923c6cea2254ee19c0efead7a0f6bfc": { "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": "" } }, "592753f21c18476da70b88acd77e94d4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3c2ed2d155a84f478625d0f9a8da592b", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_6fa666f61bd640988ca3e18483be01eb", "value": 30.0 } }, "5974661551914be89edadecf868a3dac": { "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": "" } }, "59cf7ed521cb4311b2ccdf17e88d436e": { "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 } }, "5b6fdd18a03c4720bc35ccc6632e42bc": { "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 } }, "5c53af96dee3412fa42bf63a27b20912": { "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": "" } }, "5c6868354cda4050a1f0c4cc0545a874": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ab368d685bd24fe7a6cc6ebc03559ee3", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_309bd22d803a4d2ab4f4fa2307b59840", "value": 30.0 } }, "5d5f1ca73dcb488da24abb0161375148": { "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_b4028c7338b54f229eae433b6d48c55d", "IPY_MODEL_80860e69f91949cb8dc11ab4ad03c84e", "IPY_MODEL_ad4a94fbc00841938c2f2e31ead818b6" ], "layout": "IPY_MODEL_426436a6e9494ce4a0b807731525b111" } }, "6177de2806db4a17bdd5fba198ee2282": { "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": "" } }, "65c13439532e4fe2ad662b92a1bf9e47": { "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": "" } }, "65e1509044dc4b7fa759bdb0b6be555b": { "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_97be97310d034fb9aa7e4bf84122e410", "placeholder": "​", "style": "IPY_MODEL_a70a25a8af91471eadd47364bf2cbf7a", "value": "102%" } }, "6f4842fcbb674f809d520b3ca0e65b45": { "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_26dc366c4c9b420c9a7bf588a2588a08", "placeholder": "​", "style": "IPY_MODEL_5923c6cea2254ee19c0efead7a0f6bfc", "value": " 30.836/? [00:30<00:00, 1.00it/s]" } }, "6fa666f61bd640988ca3e18483be01eb": { "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": "" } }, "702e9a6e273542259ad002719d1e77ab": { "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": "" } }, "72249dd77d964937b01c2447dc9ff17e": { "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_12a0b81638eb481d803ffcf57017191d", "placeholder": "​", "style": "IPY_MODEL_2138c89df9ab49e2b76d633e5e9d3500", "value": " 30.437/30.0 [00:30<00:00, 1.00s/it]" } }, "78f7f4c2f66d453e832fa27a1c861f04": { "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": "" } }, "7cc62f33d5584670bd5f7cfff3969fb1": { "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_65e1509044dc4b7fa759bdb0b6be555b", "IPY_MODEL_90034c1cec724029966f9d4f5619281a", "IPY_MODEL_51770939d23646b1b32321c0b6dfc979" ], "layout": "IPY_MODEL_fae83cd7d9a3439780aa52c3e3b0c184" } }, "800e705a3f50409d9226783985393309": { "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_a0359f97c03a45a493440eba95c6fde4", "IPY_MODEL_592753f21c18476da70b88acd77e94d4", "IPY_MODEL_6f4842fcbb674f809d520b3ca0e65b45" ], "layout": "IPY_MODEL_5b6fdd18a03c4720bc35ccc6632e42bc" } }, "80860e69f91949cb8dc11ab4ad03c84e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_94b5a48d9a5f418d8f129ffd03dcb50a", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_0f60b4e3d89743d9b891fb0608b84f4a", "value": 30.0 } }, "815d87367e024718b9f03dd34d7db7ce": { "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_ffd35b47732348f692b2f3efdfda7f1e", "placeholder": "​", "style": "IPY_MODEL_d82ef5cfe2a542cd88bf3a1ad49f420d", "value": "102%" } }, "843609bde8344cfc881be32e72cd3757": { "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 } }, "8820733780e24898bf545e43fbf0a25c": { "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_815d87367e024718b9f03dd34d7db7ce", "IPY_MODEL_ea3b4f3a82e14646b967666810257dc6", "IPY_MODEL_3caa77a6ef0e4684a6ebcf4bf0569d69" ], "layout": "IPY_MODEL_ab2f33210b7f44a8b8568cc0670d66ce" } }, "8cd843fecd4645b4a677ae574c437f1a": { "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 } }, "90034c1cec724029966f9d4f5619281a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_05c23deb9b364f619d209b3642ccebc4", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_5c53af96dee3412fa42bf63a27b20912", "value": 30.0 } }, "94b5a48d9a5f418d8f129ffd03dcb50a": { "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 } }, "96d0ad6f2f704e1e8651420a13100862": { "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_c3b564e5f46346ea885938d857e9379e", "placeholder": "​", "style": "IPY_MODEL_3fa2311c29c44ffdbb5d0614d9c85131", "value": "" } }, "97be97310d034fb9aa7e4bf84122e410": { "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 } }, "9e4ac559448640cb93326c5d2fe9744f": { "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 } }, "a0359f97c03a45a493440eba95c6fde4": { "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_ab60b367eafd45288b440e8b1501fc04", "placeholder": "​", "style": "IPY_MODEL_78f7f4c2f66d453e832fa27a1c861f04", "value": "" } }, "a223ef7c756d4b20909775637e11adad": { "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": "" } }, "a3b9ed92dcc643a596a9b920ef599634": { "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 } }, "a70a25a8af91471eadd47364bf2cbf7a": { "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": "" } }, "ab2f33210b7f44a8b8568cc0670d66ce": { "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 } }, "ab368d685bd24fe7a6cc6ebc03559ee3": { "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 } }, "ab60b367eafd45288b440e8b1501fc04": { "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 } }, "ad4a94fbc00841938c2f2e31ead818b6": { "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_a3b9ed92dcc643a596a9b920ef599634", "placeholder": "​", "style": "IPY_MODEL_3ea16d714e1942b1b983eaa367344606", "value": " 30.755/? [00:30<00:00, 1.00s/it]" } }, "b4028c7338b54f229eae433b6d48c55d": { "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_59cf7ed521cb4311b2ccdf17e88d436e", "placeholder": "​", "style": "IPY_MODEL_6177de2806db4a17bdd5fba198ee2282", "value": "" } }, "b9bb37a76dad479e8a7339495484a875": { "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": "" } }, "c054a37ad9c340298202fdd86582395b": { "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_28240e1d961f4bb582c6beb3c6d3c5b2", "placeholder": "​", "style": "IPY_MODEL_a223ef7c756d4b20909775637e11adad", "value": " 30.858/? [00:30<00:00, 1.00s/it]" } }, "c3b564e5f46346ea885938d857e9379e": { "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 } }, "c46398edcef845c9831b563d9f6cfd8b": { "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": "" } }, "c831704b9d264bc3adc6111f22f21eaf": { "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 } }, "cd0fea199442462ea62a265fbe5c321d": { "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_96d0ad6f2f704e1e8651420a13100862", "IPY_MODEL_52c27425f5b3428ea7c24c34e418fff8", "IPY_MODEL_f6d1bc10b3af48aebf9ea04fa4ce9626" ], "layout": "IPY_MODEL_006b4c89820e44b79d8f9c155679c61f" } }, "cf10dfa9986f42ceb9df5e5e3c0529c3": { "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 } }, "d82ef5cfe2a542cd88bf3a1ad49f420d": { "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": "" } }, "dba4697ef71b4586809c10f29c2abf1f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9e4ac559448640cb93326c5d2fe9744f", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_5974661551914be89edadecf868a3dac", "value": 30.0 } }, "ddfd1dd11c1344e4a7bae7037e59bb2b": { "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_1424bb48ae774e328f8d62723818c4af", "placeholder": "​", "style": "IPY_MODEL_f9887541eebe42c794f01bf49ab16c98", "value": "" } }, "ea3b4f3a82e14646b967666810257dc6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4f4fb36ae3c24ec791459bb7d54eccce", "max": 30.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_c46398edcef845c9831b563d9f6cfd8b", "value": 30.0 } }, "f0b7ff844d0643da90e7d8a0542fa594": { "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": "" } }, "f6d1bc10b3af48aebf9ea04fa4ce9626": { "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_37046897e2a64d17aad11a08406c3433", "placeholder": "​", "style": "IPY_MODEL_29eab19536bc4a97ba9cc1a2fc34bbb6", "value": " 30.685/? [00:30<00:00, 1.00it/s]" } }, "f9887541eebe42c794f01bf49ab16c98": { "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": "" } }, "fae83cd7d9a3439780aa52c3e3b0c184": { "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 } }, "fea8c8fad68d4008b31247985993b0fa": { "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 } }, "ff60e18a79c043d6becad911a9aadc22": { "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_ddfd1dd11c1344e4a7bae7037e59bb2b", "IPY_MODEL_5c6868354cda4050a1f0c4cc0545a874", "IPY_MODEL_c054a37ad9c340298202fdd86582395b" ], "layout": "IPY_MODEL_cf10dfa9986f42ceb9df5e5e3c0529c3" } }, "ffd35b47732348f692b2f3efdfda7f1e": { "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 } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }