{ "cells": [ { "cell_type": "markdown", "id": "1e819e2d", "metadata": {}, "source": [ "# Lights\n", "\n", "This test showcases various light sources supported by Lightmetrica. We render images using `renderer::pt`." ] }, { "cell_type": "code", "execution_count": 1, "id": "41c6ffe1", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.178094Z", "iopub.status.busy": "2021-10-22T11:40:53.177444Z", "iopub.status.idle": "2021-10-22T11:40:53.193781Z", "shell.execute_reply": "2021-10-22T11:40:53.193289Z" } }, "outputs": [], "source": [ "%load_ext autoreload\n", "%autoreload 2" ] }, { "cell_type": "code", "execution_count": 2, "id": "85163aea", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.197874Z", "iopub.status.busy": "2021-10-22T11:40:53.197218Z", "iopub.status.idle": "2021-10-22T11:40:53.294511Z", "shell.execute_reply": "2021-10-22T11:40:53.295396Z" } }, "outputs": [], "source": [ "import lmenv\n", "env = lmenv.load('.lmenv')" ] }, { "cell_type": "code", "execution_count": 3, "id": "8a41782d", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.299131Z", "iopub.status.busy": "2021-10-22T11:40:53.298001Z", "iopub.status.idle": "2021-10-22T11:40:53.511924Z", "shell.execute_reply": "2021-10-22T11:40:53.512321Z" } }, "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": "767ba096", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.517614Z", "iopub.status.busy": "2021-10-22T11:40:53.516544Z", "iopub.status.idle": "2021-10-22T11:40:53.530266Z", "shell.execute_reply": "2021-10-22T11:40:53.529866Z" } }, "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": "c6593ee4", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.536361Z", "iopub.status.busy": "2021-10-22T11:40:53.535677Z", "iopub.status.idle": "2021-10-22T11:40:53.546117Z", "shell.execute_reply": "2021-10-22T11:40:53.546484Z" } }, "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=10,\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": "91d87984", "metadata": {}, "source": [ "## Scene setup" ] }, { "cell_type": "code", "execution_count": 6, "id": "04c5d354", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.551276Z", "iopub.status.busy": "2021-10-22T11:40:53.550582Z", "iopub.status.idle": "2021-10-22T11:40:53.562514Z", "shell.execute_reply": "2021-10-22T11:40:53.562911Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|0.033] Loading asset [name='accel']\n", "[I|0.034] .. {\"intcost\":1.0,\"maxBranchingFactor\":2,\"maxDepth\":18,\"maxLeafSize\":32,\"minLeafSize\":1,\"quality\":1,\"sahBlockSize\":1,\"travcost\":1.0}\n", "[I|0.034] .. {\"compact\":false,\"dynamic\":false,\"filter\":false,\"robust\":false}\n", "[I|0.034] Loading asset [name='scene']\n", "[I|0.034] Loading asset [name='mat_ut']\n" ] } ], "source": [ "accel = lm.load_accel('accel', 'embree')\n", "scene = lm.load_scene('scene', 'default', accel=accel)\n", "mat = lm.load_material('mat_ut', 'glossy', Ks=[.8,.2,.2], ax=0.1, ay=0.1)" ] }, { "cell_type": "markdown", "id": "45561626", "metadata": {}, "source": [ "## Rendering" ] }, { "cell_type": "markdown", "id": "0be2d081", "metadata": {}, "source": [ "### Area light\n", "\n", "``light::area``" ] }, { "cell_type": "code", "execution_count": 7, "id": "8236f3b4", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:40:53.567313Z", "iopub.status.busy": "2021-10-22T11:40:53.566605Z", "iopub.status.idle": "2021-10-22T11:41:05.145008Z", "shell.execute_reply": "2021-10-22T11:41:05.145386Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|0.050] Loading asset [name='camera_main']\n", "[I|0.050] Loading asset [name='model_obj']\n", "[I|0.050] .. Loading OBJ file [path='bunny_with_planes.obj']\n", "[I|0.193] Loading asset [name='mat_diffuse_white']\n", "[I|0.193] Loading asset [name='tex_floor']\n", "[I|0.193] .. Loading texture [path='default.png']\n", "[I|0.194] Loading asset [name='mat_floor']\n", "[I|0.194] Loading asset [name='mat_black']\n", "[I|0.194] Loading asset [name='light']\n", "[I|0.198] Building acceleration structure [name='accel']\n", "[I|0.198] .. Flattening scene\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[I|0.205] .. Building\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[I|0.256] Loading asset [name='film']\n", "[I|0.272] Loading asset [name='renderer']\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74316b35764f4cadb25536d3bb2714da", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/10.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "scene.reset()\n", "lmscene.bunny_with_area_light(scene, env.scene_path, mat_knob=mat.loc())\n", "scene.build()\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "6edf39af", "metadata": {}, "source": [ "### Environment light\n", "\n", "`light::env` `light::envconst`" ] }, { "cell_type": "code", "execution_count": 8, "id": "4f0312ab", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:41:05.150612Z", "iopub.status.busy": "2021-10-22T11:41:05.149929Z", "iopub.status.idle": "2021-10-22T11:41:16.343659Z", "shell.execute_reply": "2021-10-22T11:41:16.344082Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|11.633] Loading asset [name='camera_main']\n", "[I|11.634] .. Asset [name='camera_main'] has been already loaded. Replacing..\n", "[I|11.634] Loading asset [name='model_obj']\n", "[I|11.634] .. Asset [name='model_obj'] has been already loaded. Replacing..\n", "[I|11.634] .. Loading OBJ file [path='bunny_with_planes.obj']\n", "[I|11.770] Loading asset [name='mat_diffuse_white']\n", "[I|11.771] .. Asset [name='mat_diffuse_white'] has been already loaded. Replacing..\n", "[I|11.771] Loading asset [name='tex_floor']\n", "[I|11.771] .. Asset [name='tex_floor'] has been already loaded. Replacing..\n", "[I|11.771] .. Loading texture [path='default.png']\n", "[I|11.772] Loading asset [name='mat_floor']\n", "[I|11.773] .. Asset [name='mat_floor'] has been already loaded. Replacing..\n", "[I|11.773] Loading asset [name='light_env']\n", "[I|11.773] .. Loading texture [path='flower_road_1k.hdr']\n", "[I|11.805] Building acceleration structure [name='accel']\n", "[I|11.805] .. Flattening scene\n", "[I|11.810] .. Building\n", "[I|11.857] Loading asset [name='film']\n", "[I|11.857] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|11.873] Loading asset [name='renderer']\n", "[I|11.873] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a63b212bbc6649ba82f0800b1258f36a", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/10.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "scene.reset()\n", "lmscene.bunny_with_env_light(\n", " scene, env.scene_path,\n", " mat_knob=mat.loc(),\n", " path=os.path.join(env.scene_path, 'flower_road_1k.hdr'),\n", " rot=90,\n", " flip=False,\n", " scale=0.1)\n", "scene.build()\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "3fb077a4", "metadata": {}, "source": [ "### Point light\n", "\n", "`light::point`" ] }, { "cell_type": "code", "execution_count": 9, "id": "69862119", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:41:16.348611Z", "iopub.status.busy": "2021-10-22T11:41:16.346769Z", "iopub.status.idle": "2021-10-22T11:41:27.641657Z", "shell.execute_reply": "2021-10-22T11:41:27.641224Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|22.832] Loading asset [name='camera_main']\n", "[I|22.832] .. Asset [name='camera_main'] has been already loaded. Replacing..\n", "[I|22.832] Loading asset [name='model_obj']\n", "[I|22.833] .. Asset [name='model_obj'] has been already loaded. Replacing..\n", "[I|22.833] .. Loading OBJ file [path='bunny_with_planes.obj']\n", "[I|22.967] Loading asset [name='mat_diffuse_white']\n", "[I|22.967] .. Asset [name='mat_diffuse_white'] has been already loaded. Replacing..\n", "[I|22.968] Loading asset [name='tex_floor']\n", "[I|22.968] .. Asset [name='tex_floor'] has been already loaded. Replacing..\n", "[I|22.968] .. Loading texture [path='default.png']\n", "[I|22.968] Loading asset [name='mat_floor']\n", "[I|22.969] .. Asset [name='mat_floor'] has been already loaded. Replacing..\n", "[I|22.969] Loading asset [name='light_point']\n", "[I|22.972] Building acceleration structure [name='accel']\n", "[I|22.973] .. Flattening scene\n", "[I|22.977] .. Building\n", "[I|23.022] Loading asset [name='film']\n", "[I|23.022] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|23.036] Loading asset [name='renderer']\n", "[I|23.036] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dec1875c61214f0dad0ee12db8eb7748", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/10.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "scene.reset()\n", "lmscene.bunny_with_point_light(scene, env.scene_path, mat_knob=mat.loc())\n", "scene.build()\n", "img = render(scene, 'pt')\n", "display_image(img)" ] }, { "cell_type": "markdown", "id": "a8afdf5e", "metadata": {}, "source": [ "### Directional light\n", "\n", "`light::directional`" ] }, { "cell_type": "code", "execution_count": 10, "id": "b026fdfd", "metadata": { "execution": { "iopub.execute_input": "2021-10-22T11:41:27.646669Z", "iopub.status.busy": "2021-10-22T11:41:27.645988Z", "iopub.status.idle": "2021-10-22T11:41:38.809439Z", "shell.execute_reply": "2021-10-22T11:41:38.809881Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[I|34.129] Loading asset [name='camera_main']\n", "[I|34.129] .. Asset [name='camera_main'] has been already loaded. Replacing..\n", "[I|34.129] Loading asset [name='model_obj']\n", "[I|34.129] .. Asset [name='model_obj'] has been already loaded. Replacing..\n", "[I|34.129] .. Loading OBJ file [path='bunny_with_planes.obj']\n", "[I|34.264] Loading asset [name='mat_diffuse_white']\n", "[I|34.264] .. Asset [name='mat_diffuse_white'] has been already loaded. Replacing..\n", "[I|34.264] Loading asset [name='tex_floor']\n", "[I|34.264] .. Asset [name='tex_floor'] has been already loaded. Replacing..\n", "[I|34.264] .. Loading texture [path='default.png']\n", "[I|34.265] Loading asset [name='mat_floor']\n", "[I|34.265] .. Asset [name='mat_floor'] has been already loaded. Replacing..\n", "[I|34.265] Loading asset [name='light_directional']\n", "[I|34.269] Building acceleration structure [name='accel']\n", "[I|34.269] .. Flattening scene\n", "[I|34.273] .. Building\n", "[I|34.318] Loading asset [name='film']\n", "[I|34.318] .. Asset [name='film'] has been already loaded. Replacing..\n", "[I|34.331] Loading asset [name='renderer']\n", "[I|34.331] .. Asset [name='renderer'] has been already loaded. Replacing..\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f89382375a546ce9e985745e1482952", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/10.0 [00:00" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "scene.reset()\n", "lmscene.bunny_with_directional_light(scene, env.scene_path, mat_knob=mat.loc())\n", "scene.build()\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": { "0702a8177d5345a3a68ca516af718c9b": { "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 } }, "1e48652c3cb94d308ba78de881dcf601": { "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 } }, "3bfa8264ccaf4ffbad461d49ae81bdd3": { "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_0702a8177d5345a3a68ca516af718c9b", "placeholder": "​", "style": "IPY_MODEL_43cdb30f5bd54ec1ac1117d8c947d074", "value": "103%" } }, "43cdb30f5bd54ec1ac1117d8c947d074": { "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": "" } }, "44cb623a5c4b4200a4d48035c764feaf": { "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_5685030373d44386a8da098d3cbc6da6", "placeholder": "​", "style": "IPY_MODEL_48ea1f34c72f4cb4a90cd7246c522aa9", "value": " 10.325/10.0 [00:10<00:00, 1.00it/s]" } }, "46758f8433e8490f9abc5ed626a5d615": { "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 } }, "475d9d4ee5cb45f09a91ad7e0aadefe2": { "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_d24c8a15b9d2441099f5fe87e9d80b27", "max": 10.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_a1b6bd63c845496fb1cf996197f6e6f6", "value": 10.0 } }, "48ea1f34c72f4cb4a90cd7246c522aa9": { "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": "" } }, "4c0c56a24f014f61b73a90aa21622807": { "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 } }, "5685030373d44386a8da098d3cbc6da6": { "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 } }, "5837bad167cc4286b6b33a44bc86feef": { "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": "" } }, "5a4b9064f7a54ac4a3b99e23ff672619": { "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": "" } }, "5a50ba060f2e4336812122ed17185b47": { "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 } }, "5def8391fda2467ba9d03afad2058648": { "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": "" } }, "5f89382375a546ce9e985745e1482952": { "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_3bfa8264ccaf4ffbad461d49ae81bdd3", "IPY_MODEL_8beccd6e0df24314b53e3713e68b36e5", "IPY_MODEL_44cb623a5c4b4200a4d48035c764feaf" ], "layout": "IPY_MODEL_7be50b378b1b4d43a21012ff793d30c2" } }, "62d7d8252bf143449786c7c91ec7528d": { "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": "" } }, "6d09534d90f144a88d67650ff6f19a8c": { "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": "" } }, "705962b2f62a4a9cb0dfd7a1a5a3d49f": { "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 } }, "70d0d2a8124740558244ff56ce65d615": { "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 } }, "72a0039dbebd4667a84bfcf0c9b56ac2": { "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 } }, "74316b35764f4cadb25536d3bb2714da": { "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_a0dfe7d42d344ace84321fe3c94d8e48", "IPY_MODEL_475d9d4ee5cb45f09a91ad7e0aadefe2", "IPY_MODEL_a8b8d3abefc2439d99c7213982491b85" ], "layout": "IPY_MODEL_c06156e116c6494a9030e349130335f5" } }, "750a26c66c7742f1a8239ea0a3459c1a": { "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 } }, "7be50b378b1b4d43a21012ff793d30c2": { "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 } }, "7cdb8701576542b7a05e3746bf08b463": { "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_70d0d2a8124740558244ff56ce65d615", "placeholder": "​", "style": "IPY_MODEL_5a4b9064f7a54ac4a3b99e23ff672619", "value": " 10.302/10.0 [00:10<00:00, 1.00it/s]" } }, "8beccd6e0df24314b53e3713e68b36e5": { "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_46758f8433e8490f9abc5ed626a5d615", "max": 10.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_de23ec7f0a8147e09d012ef0c89a9cc9", "value": 10.0 } }, "90298e41a76546f6985abb3794a79743": { "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 } }, "a0dfe7d42d344ace84321fe3c94d8e48": { "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_705962b2f62a4a9cb0dfd7a1a5a3d49f", "placeholder": "​", "style": "IPY_MODEL_62d7d8252bf143449786c7c91ec7528d", "value": "" } }, "a1b6bd63c845496fb1cf996197f6e6f6": { "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": "" } }, "a4d2cb9d64c64e858e2795912447088f": { "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 } }, "a63b212bbc6649ba82f0800b1258f36a": { "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_bc577d048ae64b2aa88faa91874d15ea", "IPY_MODEL_b10f577f3c594848b87e6383a5c24063", "IPY_MODEL_7cdb8701576542b7a05e3746bf08b463" ], "layout": "IPY_MODEL_4c0c56a24f014f61b73a90aa21622807" } }, "a8b8d3abefc2439d99c7213982491b85": { "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_5a50ba060f2e4336812122ed17185b47", "placeholder": "​", "style": "IPY_MODEL_6d09534d90f144a88d67650ff6f19a8c", "value": " 10.699/? [00:10<00:00, 1.00s/it]" } }, "aafb58fb70ab49bcbcf14813868eb2cd": { "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_72a0039dbebd4667a84bfcf0c9b56ac2", "placeholder": "​", "style": "IPY_MODEL_e9edd9ffb7a74d54a445645c28cb8937", "value": " 10.483/10.0 [00:10<00:00, 1.00it/s]" } }, "ac4b7802b0fc426bb867488855c880f4": { "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 } }, "b10f577f3c594848b87e6383a5c24063": { "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_ac4b7802b0fc426bb867488855c880f4", "max": 10.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_5def8391fda2467ba9d03afad2058648", "value": 10.0 } }, "bc577d048ae64b2aa88faa91874d15ea": { "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_a4d2cb9d64c64e858e2795912447088f", "placeholder": "​", "style": "IPY_MODEL_5837bad167cc4286b6b33a44bc86feef", "value": "103%" } }, "c06156e116c6494a9030e349130335f5": { "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 } }, "d24c8a15b9d2441099f5fe87e9d80b27": { "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 } }, "db21cf9fe4684dac8b17525a40d68dfd": { "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_90298e41a76546f6985abb3794a79743", "max": 10.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_df38c78d7dfe48d4a0fd2ecd4ca4b829", "value": 10.0 } }, "de23ec7f0a8147e09d012ef0c89a9cc9": { "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": "" } }, "dec1875c61214f0dad0ee12db8eb7748": { "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_e24d08fcd40a42a0b493b592da1c6231", "IPY_MODEL_db21cf9fe4684dac8b17525a40d68dfd", "IPY_MODEL_aafb58fb70ab49bcbcf14813868eb2cd" ], "layout": "IPY_MODEL_1e48652c3cb94d308ba78de881dcf601" } }, "df38c78d7dfe48d4a0fd2ecd4ca4b829": { "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": "" } }, "e24d08fcd40a42a0b493b592da1c6231": { "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_750a26c66c7742f1a8239ea0a3459c1a", "placeholder": "​", "style": "IPY_MODEL_e489f72ee7ea42f7b6ef9ec9cd928fc1", "value": "105%" } }, "e489f72ee7ea42f7b6ef9ec9cd928fc1": { "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": "" } }, "e9edd9ffb7a74d54a445645c28cb8937": { "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": "" } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }