{
"cells": [
{
"cell_type": "markdown",
"id": "50f3283e",
"metadata": {},
"source": [
"(sec-tutorial-compiling)=\n",
"\n",
"# Tutorial: Compiling to Hardware\n",
"\n",
"```{seealso}\n",
"The complete source code of this tutorial can be found in\n",
"\n",
"{nb-download}`Compiling to Hardware.ipynb`\n",
"```\n",
"\n",
"Compilation allows converting the schedules introduced in {ref}`sec-tutorial-sched-pulse` into a set of instructions that can be executed on the control hardware.\n",
"\n",
"In this notebook, we will define an example schedule, demonstrate how to compile it, and run it on a virtual hardware setup.\n",
"\n",
"## Schedule definition\n",
"\n",
"We start by defining an example schedule."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "280c02ff",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Schedule \"Simple schedule\" containing (2) 2 (unique) operations."
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from quantify_scheduler import ClockResource, Schedule\n",
"from quantify_scheduler.operations import SquarePulse\n",
"\n",
"sched = Schedule(\"Simple schedule\")\n",
"sched.add(SquarePulse(amp=0.2, duration=8e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"sched.add(SquarePulse(amp=0.1, duration=12e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"\n",
"readout_clock = ClockResource(name=\"q0.ro\", freq=7e9)\n",
"sched.add_resource(readout_clock)\n",
"\n",
"sched\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "64f35d90",
"metadata": {},
"source": [
"## Hardware compilation configuration\n",
"\n",
"In our example setup, we will use a Qblox Cluster containing an RF control module (QCM-RF). To compile the schedule, we will need to provide the compiler with a dictionary detailing the hardware compilation configuration.\n",
"\n",
"Please check the documentation on how to properly create such a configuration for the supported backends:\n",
"\n",
"- {ref}`sec-backend-qblox`\n",
"- {ref}`sec-backend-zhinst`\n",
"\n",
"```{admonition} Creating an example Qblox hardware compilation configuration\n",
":class: dropdown\n",
"\n",
"Below we create an example hardware configuration dictionary, for the Qblox backend.\n",
"In this configuration, we include:\n",
"\n",
"- The `\"config_type\"`, which points to the specific {class}`~quantify_scheduler.backends.types.common.HardwareCompilationConfig` datastructure for the backend we want to use (the Qblox backend, in this case).\n",
"- The description of the setup, including:\n",
" - A Cluster containing a QCM-RF module (in the 2nd slot).\n",
"- The hardware options we want to use in the compilation.\n",
"- The connectivity between the control hardware and the quantum device.\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "067aeda7",
"metadata": {
"mystnb": {
"code_prompt_show": "Example hardware configuration"
},
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"hardware_comp_cfg = {\n",
" \"config_type\": \"quantify_scheduler.backends.qblox_backend.QbloxHardwareCompilationConfig\",\n",
" \"hardware_description\": {\n",
" \"cluster0\": {\n",
" \"instrument_type\": \"Cluster\",\n",
" \"ref\": \"internal\",\n",
" \"modules\": {\n",
" \"2\": {\n",
" \"instrument_type\": \"QCM_RF\"\n",
" },\n",
" },\n",
" },\n",
" },\n",
" \"hardware_options\": {\n",
" \"modulation_frequencies\": {\n",
" \"q0:res-q0.ro\": {\"interm_freq\": 50e6},\n",
" },\n",
" \"mixer_corrections\": {\n",
" \"q0:res-q0.ro\": {\n",
" \"dc_offset_i\": -0.00552,\n",
" \"dc_offset_q\": -0.00556,\n",
" \"amp_ratio\": 0.9998,\n",
" \"phase_error\": -4.1\n",
" }\n",
" }\n",
" },\n",
" \"connectivity\": {\n",
" \"graph\": [\n",
" (\"cluster0.module2.complex_output_0\", \"q0:res\"),\n",
" ]\n",
" },\n",
"}"
]
},
{
"cell_type": "markdown",
"id": "eb667012",
"metadata": {},
"source": [
"(sec-tutorial-compiling-to-hardware-compilation)=\n",
"## Compilation\n",
"\n",
"Now we are ready to proceed to the compilation stage. For each of the control stack's instruments, the compilation generates:\n",
"\n",
"- The schedule's absolute timing. During the schedule's definition, we didn't assign absolute times to the operations. Instead, only the duration was defined. For the instruments to know how to execute the schedule, the absolute timing of the operations is calculated.\n",
"- A set of parameters that are used to properly configure each instrument for the execution of the schedule. These parameters typically don't change during the execution of the schedule.\n",
"- A compiled program that contains instructions on what the instrument must do in order for the schedule to be executed.\n",
"\n",
"We perform the compilation via {func}`~quantify_scheduler.backends.graph_compilation.QuantifyCompiler.compile`.\n",
"\n",
"We start by setting the directory where the compiled schedule files will be stored, via [set_datadir](https://quantify-os.org/docs/quantify-core/dev/user/concepts.html#data-directory)."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "f906e37a",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data will be saved in:\n",
"/root/quantify-data\n"
]
}
],
"source": [
"from quantify_core.data import handling as dh\n",
"\n",
"dh.set_datadir(dh.default_datadir())\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "1c34b8f5",
"metadata": {},
"source": [
"Next, we create a device configuration that contains all knowledge of the physical device under test (DUT). To generate it we use the {class}`~quantify_scheduler.device_under_test.quantum_device.QuantumDevice` class.\n",
"\n",
"The schedule defined at the beginning of this tutorial consists of 2 pulse operations. As such, the hardware compilation configuration must contain the necessary information to execute the schedule. We add the hardware compilation configuration to the `QuantumDevice` object and compile the schedule using this information. We visualize the compiled schedule in a {meth}`pulse diagram <.plot_pulse_diagram>`."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "1089747e",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "0",
"line": {
"color": "#636EFA"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "lmR54X/9pb0AAAAAAAAAAJXWJugLLhE+ldYm6AsuIT7gQTrcEcUpPpXWJugLLjE+Ooww4o55NT7gQTrcEcU5PoX3Q9aUED4+PHguiIwoQT6V1iboCy5BPg==",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT8AAAAAAAAAAA==",
"dtype": "f8"
},
"yaxis": "y"
},
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "1",
"line": {
"color": "#EF553B"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "PHguiIwoQT6V1iboCy5BPmixK2XNU0M+O4ww4o55RT4OZzVfUJ9HPuFBOtwRxUk+tBw/WdPqSz6H90PWlBBOPi1ppCkrG1A+ltYm6AsuUT4ARKmm7EBSPmqxK2XNU1M+0x6uI65mVD4QXTQyz3ZVPj2MMOKOeVU+",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5PwAAAAAAAAAA",
"dtype": "f8"
},
"yaxis": "y"
}
],
"layout": {
"height": 300,
"showlegend": false,
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermap": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermap"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "Simple schedule"
},
"width": 1000,
"xaxis": {
"anchor": "y",
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"showgrid": true,
"tickformat": ".2s",
"tickformatstops": [
{
"dtickrange": [
null,
1e-09
],
"value": ".10s"
},
{
"dtickrange": [
1e-09,
1e-06
],
"value": ".7s"
},
{
"dtickrange": [
1e-06,
0.001
],
"value": ".4s"
}
],
"ticksuffix": "s",
"title": {
"text": "Time"
}
},
"yaxis": {
"anchor": "x",
"autorange": true,
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"tickformat": ".2s",
"ticksuffix": "V",
"title": {
"text": "q0:res"
}
}
}
},
"text/html": [
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from quantify_scheduler import QuantumDevice, SerialCompiler\n",
"\n",
"quantum_device = QuantumDevice(\"DUT\")\n",
"\n",
"quantum_device.hardware_config(hardware_comp_cfg)\n",
"compiler = SerialCompiler(name=\"compiler\")\n",
"compiled_sched = compiler.compile(\n",
" schedule=sched, config=quantum_device.generate_compilation_config()\n",
")\n",
"\n",
"compiled_sched.plot_pulse_diagram(plot_backend='plotly')\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "30acd51c",
"metadata": {},
"source": [
"The cell above compiles the schedule, returning a {class}`~quantify_scheduler.schedules.schedule.CompiledSchedule` object. This class differs from {class}`~quantify_scheduler.schedules.schedule.Schedule` in that it is immutable and contains the {attr}`~quantify_scheduler.schedules.schedule.CompiledSchedule.compiled_instructions` attribute. We inspect these instructions below."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "a7e5ccaa",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "499448650b3b43c1bba47245651a673d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('other values',)), Tab(childre…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"compiled_sched.compiled_instructions\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "fffbbf6f",
"metadata": {},
"source": [
"## Execution on the hardware\n",
"\n",
"In the compiled schedule, we have all the information necessary to execute the schedule.\n",
"In this specific case, only sequencer {code}`seq0` of the RF control module (QCM-RF) is needed. The compiled schedule contains the file path where the sequencer's program is stored, as well as the QCoDeS parameters that need to be set in the device.\n",
"\n",
"Now that we have compiled the schedule, we are almost ready to execute it with our control setup.\n",
"\n",
"We start by connecting to a dummy cluster device by passing a `dummy_cfg` argument when initializing a `Cluster`:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "80e85b01",
"metadata": {},
"outputs": [],
"source": [
"from qblox_instruments import Cluster, ClusterType\n",
"\n",
"Cluster.close_all() # Closes all registered instruments (not just Clusters)\n",
"\n",
"cluster0 = Cluster(\"cluster0\", dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF})\n"
]
},
{
"cell_type": "markdown",
"id": "ea70d7e2",
"metadata": {},
"source": [
"Here, {code}`dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF}` initializes a dummy cluster instrument that contains an RF control module in slot 2, as specified by the example hardware config.\n",
"\n",
"We attach these instruments to the {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` via the appropriate {class}`~quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase` component wrapper class. More information on the scheduler execution can be found in the {ref}`Execution section of User guide `."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "70285484",
"metadata": {},
"outputs": [],
"source": [
"from quantify_scheduler import InstrumentCoordinator\n",
"from quantify_scheduler.qblox import ClusterComponent\n",
"\n",
"ic = InstrumentCoordinator(\"ic\")\n",
"ic.add_component(ClusterComponent(cluster0))\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "1dfc38b7",
"metadata": {},
"source": [
"The {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` object is responsible for the smooth and in-concert operation of the different instruments, so that the provided schedule is correctly executed.\n",
"Essentially, it \"coordinates\" the control stack instruments, giving the relevant commands to the different instruments of the control stack at each point in time.\n",
"\n",
"The experiment can now be conducted using the methods of {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator`:\n",
"\n",
"1. We prepare the instruments with the appropriate settings and upload the schedule program by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.prepare` method and passing the compiled schedule as an argument.\n",
"2. We start the hardware execution by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.start` method.\n",
"\n",
"Additionally, the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.wait_done` method is useful to wait for the experiment to finish and assure the synchronicity of the python script."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "98bd4ad7",
"metadata": {},
"outputs": [],
"source": [
"# Set the qcodes parameters and upload the schedule program\n",
"ic.prepare(compiled_sched)\n",
"\n",
"# Start the hardware execution\n",
"ic.start()\n",
"\n",
"# Wait for the experiment to finish or for a timeout\n",
"ic.wait_done(timeout_sec=10)\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "dc82502a",
"metadata": {},
"source": [
"The {class}`~~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` has two more methods that were not covered in this experiment:\n",
"\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.retrieve_acquisition`\n",
" \\- In case the schedule contained acquisitions, this method retrieves the acquired data.\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.stop`\n",
" \\- Stops all running instruments.\n",
"\n",
"Note that the schedule used in this tutorial was defined purely in terms of pulses.\n",
"However, `quantify-scheduler` also supports the usage of quantum gates in schedules. Given that gates may require different pulses depending on the type of quantum system, an extra step of defining the quantum device configuration, i.e. the qubits, is necessary. This use case is covered in the {ref}`sec-tutorial-ops-qubits` tutorial."
]
}
],
"metadata": {
"file_format": "mystnb",
"kernelspec": {
"display_name": "python3",
"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.9.22"
},
"source_map": [
6,
25,
40,
64,
102,
117,
124,
130,
145,
149,
154,
165,
173,
178,
187,
199,
211
],
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"00a66773df8646d595dac807279d22a6": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_a1c1a7b3f6ee4b3596dd85d8ab19ff8d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"01d2315f04fc4b8ca493e1535ee3bf5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"03b1934bf571407a82ab3996058629e1": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_781783a6c49841d18ab663e24d784215",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"05fdbe41195b418792ac214b905f627a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_9ff38dea7b874f68b505669a508e1ab1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0620f7d9d64a4ec0bc977b4f5c5032a9": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_8a27dfd99ceb4cfbb8e9861f11c2a2aa",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"08773d52593545a2bd9b15be3dda18ce": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7a69c5a711634a7a82b8e12ac139cb3e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0908d60dafbc43e88caae37379709a1a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d1b882aeb7944496906989295c28636a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0aa6f09e8fea46c6afa3a22eccf01ee6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_d9c82d8f1ac04eb1ba060d8bba52ca5c",
"IPY_MODEL_2168d74df11644d5a64521f2a21b4fb3"
],
"layout": "IPY_MODEL_57e4101dace44a8dbcb0e26c522dcd82",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequence",
"settings"
],
"tooltip": null
}
},
"0ac527c8c82b48e5b02d3ae2e010c692": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_86036f3114784861abd1d012516b9929",
"msg_id": "",
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": " \n set_mrk 1 # set markers to 1 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 1,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_awg_gain 6554,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (8 ns) \n wait 4 # auto generated wait (4 ns) \n set_awg_gain 3277,0 # setting gain for SquarePulse \n play 1,1,4 # play SquarePulse (12 ns) \n wait 8 # auto generated wait (8 ns) \n loop R0,@start \n stop \n \n\n"
}
],
"tabbable": null,
"tooltip": null
}
},
"0ce5b66ef61e46e1b32f82eb96816649": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_48b4c5d5fd484716aac96fd2f48f80a9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0cefc475266549c0a6e29993e0439e5d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ebf2f483bc424817bffabdb889a890d8",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "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rur91+AvXLjg1WAPKi8vT8nJyR5rKSkpSk9PlyTdunVLx44d06xZs9zXBwQEKDk5WXl5effcb1VVlaqqqtyXHQ6Hbwf/P1/frla3eZ/Uy74BAPA3pxam6KEgr1LkgdX6XleuXKl/+Id/UHBwsFauXHnfbadMmfLAg9WkpKREERERHmsRERFyOBz6+uuvdf36dVVXV9e4zenTp++536ysLL366qv1MjMAAGh8ah1Ab731lsaOHavg4OB7/hiq9O1bWfUVQPVl1qxZysjIcF92OByKjo72+f2ENA3UqYUpPt8vAAD+KKRpoGX3XesA+uu3vax6CywyMlKlpaUea6WlpQoLC1NISIgCAwMVGBhY4zaRkZH33K/dbpfdbq+Xmf+azWaz7FAfAAD4C5/+GGp969+/v3Jzcz3WcnJy1L9/f0lSUFCQ+vTp47GN0+lUbm6uexsAAIBaH47467eIvs+yZctqtV1FRYXOnTvnvnzhwgUVFBSoVatWiomJ0axZs3Tp0iX99re/lSRNnDhRq1ev1owZMzRhwgTt2bNH27Zt065duzzmTE1NVWJiovr166fly5ersrJS48ePr/X8AADgh63WAZSfn1+r7erycbajR49q0KBB7svfRVZqaqo2btyoK1euqKioyH19XFycdu3apWnTpmnFihXq0KGDfv3rX7u/A0iSRo8eratXr2revHkqKSlRr169tHv37rtOjAYAAOby6nuAfujq63uAAABA/anL6/cDnwNUXFys4uLiB90NAABAg/EqgO7cuaO5c+cqPDxcsbGxio2NVXh4uObMmaPbt2/7ekYAAACf8uoz2ZMnT9b27du1ZMkS96er8vLytGDBAl27dk1r16716ZAAAAC+5NU5QOHh4dqyZYuGDh3qsf7RRx/pueeeU3l5uc8GtALnAAEA4H/q/Rwgu92u2NjYu9bj4uIUFBTkzS4BAAAajFcBNGnSJL322msePyBaVVWlRYsWadKkST4bDgAAoD54dQ5Qfn6+cnNz1aFDB8XHx0uSTpw4oVu3bmnw4MEaNWqUe9vt27f7ZlIAAAAf8SqAWrRooaefftpjrT5+PBQAAKA+eBVAGzZs8PUcAAAADcavfgwVAADAF7w6AnTt2jXNmzdPe/fuVVlZmZxOp8f1X375pU+GAwAAqA9eBdALL7ygc+fO6aWXXlJERESdfgAVAADA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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"0e1bf274b1384ce8bc8a003b45608394": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1006d5ec47594fa9aa2549d37b75e15b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1381dc02dcc64c7a83d7e4cd1d7637c4": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1d57172f99e7475dbda3628d7cb58a45",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"14455018831a4bfeb40417eb54e2cfb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1656c39522474538a56aa11f61aa5733": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"173e4ea48a334270aba00e91f1071b18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_adb01c912a4e40ed881102cc12633c5a",
"IPY_MODEL_c4b8fc53fc6542e88362f24afbad3299",
"IPY_MODEL_3918d9bc691e4ae3b2ef4cd983870bc8"
],
"layout": "IPY_MODEL_1e191e4be0b846718bc656688ba47f8d",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequencers",
"settings",
"other values"
],
"tooltip": null
}
},
"17ea21aa198545d1b8a486fa7572d4cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"18949e68168749efadf2b2899917b7f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"197ef0d0f4c943d7b4a275dcd4f43cb2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d125cd2ed74641afa59ae38dc450ca7b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"1a7d9f68fb11415da35d03c9af7c8c25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1b739c3dfb914c8496d1586056ac90e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1c6ec4c4530342f983ed06996ad2d696": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [],
"layout": "IPY_MODEL_d709bdc3477547ecaf5b0f9fe8a56279",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"1d57172f99e7475dbda3628d7cb58a45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1dcd4de760b4473b93c13b9bcdcc1cc3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1e191e4be0b846718bc656688ba47f8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1e66fe24568645cdaf9c3c90fdb32aa2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_18949e68168749efadf2b2899917b7f0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"1f5babefc4714a038dd621057a59484d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"21593dec7c484f99a58ee1712cddc3a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2168d74df11644d5a64521f2a21b4fb3": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1a7d9f68fb11415da35d03c9af7c8c25",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n sync_en | \n True | \n
\n \n channel_name | \n complex_output_0 | \n
\n \n channel_name_measure | \n None | \n
\n \n connected_output_indices | \n (0, 1) | \n
\n \n connected_input_indices | \n () | \n
\n \n seq_fn | \n None | \n
\n \n thresholded_acq_trigger_write_en | \n None | \n
\n \n thresholded_acq_trigger_write_address | \n None | \n
\n \n thresholded_acq_trigger_write_invert | \n False | \n
\n \n nco_en | \n True | \n
\n \n init_offset_awg_path_I | \n 0.0 | \n
\n \n init_offset_awg_path_Q | \n 0.0 | \n
\n \n init_gain_awg_path_I | \n 1.0 | \n
\n \n init_gain_awg_path_Q | \n 1.0 | \n
\n \n modulation_freq | \n 50000000.0 | \n
\n \n mixer_corr_phase_offset_degree | \n -4.1 | \n
\n \n mixer_corr_gain_ratio | \n 0.9998 | \n
\n \n auto_sideband_cal | \n SidebandCalEnum.OFF | \n
\n \n integration_length_acq | \n None | \n
\n \n thresholded_acq_threshold | \n None | \n
\n \n thresholded_acq_rotation | \n None | \n
\n \n ttl_acq_input_select | \n None | \n
\n \n ttl_acq_threshold | \n None | \n
\n \n ttl_acq_auto_bin_incr_en | \n None | \n
\n \n
\n
",
"text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure None\nconnected_output_indices (0, 1)\nconnected_input_indices ()\nseq_fn None\nthresholded_acq_trigger_write_en None\nthresholded_acq_trigger_write_address None\nthresholded_acq_trigger_write_invert False\nnco_en True\ninit_offset_awg_path_I 0.0\ninit_offset_awg_path_Q 0.0\ninit_gain_awg_path_I 1.0\ninit_gain_awg_path_Q 1.0\nmodulation_freq 50000000.0\nmixer_corr_phase_offset_degree -4.1\nmixer_corr_gain_ratio 0.9998\nauto_sideband_cal SidebandCalEnum.OFF\nintegration_length_acq None\nthresholded_acq_threshold None\nthresholded_acq_rotation None\nttl_acq_input_select None\nttl_acq_threshold None\nttl_acq_auto_bin_incr_en None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"2261789e37fd47b7ac6dcacd23ae16a8": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1dcd4de760b4473b93c13b9bcdcc1cc3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2287f733e1f64ebda41a4f5921e9b27c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_dac42533ee7849799b1b180d41f8a809",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"254290b33f4a4dec9bc472571afbd50c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"285372774ca042d7b8b6eb0f65ab43cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2a656d84585247a99aea9257993b0d3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2adb16e9a8264180ad5b559ce44b7995": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2b5301018a1945199ecba3395f444dc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_d5a07f5cbe5c4582a22228f624a5cd2c",
"IPY_MODEL_0cefc475266549c0a6e29993e0439e5d"
],
"layout": "IPY_MODEL_fc5d840a8eb84c9a9f1231884cc03efa",
"selected_index": 0,
"tabbable": null,
"titles": [
"0",
"1"
],
"tooltip": null
}
},
"2de16101c82a467eab32067493404845": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"36cd91d441084f819fa73d3267efc0f0": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1656c39522474538a56aa11f61aa5733",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"37496b66ed444ded9a17738dd73306db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3910822f6a7f46daa35a189ba18ab191": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_2de16101c82a467eab32067493404845",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3918d9bc691e4ae3b2ef4cd983870bc8": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_4b3de85b36bc4d7395f77bdb727c7d1f",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n repetitions | \n 1 | \n
\n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"3a45ace619384248a907250949e38c08": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3a6bee7607274716807ce05c4c0e743e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ff8fe81005914a48922340100bb8d2c7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3c6ae012435345c797445ad2c0b8c073": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_74ec79d72b464b6a9bad5c7fa5dbfd13",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3d1671151ae242139b6e3481852015cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3eaea09b38424c8585ad30fcb448e1c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"424cc4e25e874d45997771db9489a007": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_3a45ace619384248a907250949e38c08",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"46e482a8a35a4235a04fb3b241a91347": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"48b4c5d5fd484716aac96fd2f48f80a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"499448650b3b43c1bba47245651a673d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_95517f37a0d24eac83c26bdfb9134928"
],
"layout": "IPY_MODEL_bae9497dc22e43db80cba3aba5bed797",
"selected_index": 0,
"tabbable": null,
"titles": [
"cluster0"
],
"tooltip": null
}
},
"4afb6075a2d5447dad53edf80dcb3d2a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_8883fb07ea8e4c72b8c45cfeda43b77d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4b3de85b36bc4d7395f77bdb727c7d1f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4d062e06be45443fbe0525fddc878c71": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4de1c1d5e8f146ea8b0923295867a169": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d1c80dea5ce7409da20bf04c32d10017",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"51623139fcb8425bbfd21adc0c41f3d8": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1006d5ec47594fa9aa2549d37b75e15b",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n offset_ch0_path_I | \n -5.52 | \n
\n \n offset_ch0_path_Q | \n -5.56 | \n
\n \n offset_ch1_path_I | \n None | \n
\n \n offset_ch1_path_Q | \n None | \n
\n \n in0_gain | \n None | \n
\n \n in1_gain | \n None | \n
\n \n distortion_corrections | \n [{'bt': {'coeffs': None, 'config': 'QbloxFilte... | \n
\n \n out0_lo_freq_cal_type_default | \n LoCalEnum.OFF | \n
\n \n out1_lo_freq_cal_type_default | \n LoCalEnum.OFF | \n
\n \n lo0_freq | \n 6950000000.0 | \n
\n \n lo1_freq | \n None | \n
\n \n lo2_freq | \n None | \n
\n \n lo3_freq | \n None | \n
\n \n lo4_freq | \n None | \n
\n \n lo5_freq | \n None | \n
\n \n out0_att | \n None | \n
\n \n out1_att | \n None | \n
\n \n out2_att | \n None | \n
\n \n out3_att | \n None | \n
\n \n out4_att | \n None | \n
\n \n out5_att | \n None | \n
\n \n in0_att | \n None | \n
\n \n in1_att | \n None | \n
\n \n
\n
",
"text/plain": "setting value\noffset_ch0_path_I -5.52\noffset_ch0_path_Q -5.56\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'bt': {'coeffs': None, 'config': 'QbloxFilte...\nout0_lo_freq_cal_type_default LoCalEnum.OFF\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 6950000000.0\nlo1_freq None\nlo2_freq None\nlo3_freq None\nlo4_freq None\nlo5_freq None\nout0_att None\nout1_att None\nout2_att None\nout3_att None\nout4_att None\nout5_att None\nin0_att None\nin1_att None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"525efc3b21ed435ebb1c38c15833198e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_acbd84002d474fd38ba5b9214934a950",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"52d768f024f64668a419adc9ed935985": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_cc25cce9aa5f48ea8883e4277a6eaa0f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"57e4101dace44a8dbcb0e26c522dcd82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"58ed768f9436492198edeb0768182b72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5a5ef4803379449881769bb739638152": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1f5babefc4714a038dd621057a59484d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5d1b67404e48412dbc338f8ee5e34bbc": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_58ed768f9436492198edeb0768182b72",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"62725ae8d85542d0bb17cad49e5e382b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"659f667a3c714a4a9d3981b6f8bf471b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_67a04b953ce148ab83a25b124fcc95fa",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"664d8f2326e04c74a0d4adf8906b8aa6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"67a04b953ce148ab83a25b124fcc95fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6adcd7d6740f48acad54367071be3580": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6b25b88704d84947a786c9119eb78c45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"707698257466444aa9579c69a94cb61a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"74ec79d72b464b6a9bad5c7fa5dbfd13": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"75441b491e5640ddab777adb2dd98fac": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7a4cd7d9fa8c499a84bbfef4f54aaacc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"76dec400943043bf86e7624dc57bddbb": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_21593dec7c484f99a58ee1712cddc3a0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"776b457399514aa4b76768acea67bb03": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_aa64388de69846fb8c6cbb42ce6c27d9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"77d01c5b73bc4b238fb5cd9aac8e4b86": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_b520220d65354dccb24e9d55b34a8076",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"781783a6c49841d18ab663e24d784215": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7a4cd7d9fa8c499a84bbfef4f54aaacc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7a69c5a711634a7a82b8e12ac139cb3e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7c26735dc4bc455ca15cf1d4d07fcf77": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7fbf219c42214283a403da9155795602": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"86036f3114784861abd1d012516b9929": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8778796b83f548ac81ccd8c040b594ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"88186b6c459a4aed9eeac78a0a4e667a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_285372774ca042d7b8b6eb0f65ab43cd",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8883fb07ea8e4c72b8c45cfeda43b77d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"888ac28714314a7cbb4e0ddb02bc3751": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7c26735dc4bc455ca15cf1d4d07fcf77",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"891e1aa2428f43af84729c2ebfd74180": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_8778796b83f548ac81ccd8c040b594ac",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8a27dfd99ceb4cfbb8e9861f11c2a2aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"95517f37a0d24eac83c26bdfb9134928": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_c616532887d0453293fd6b3569af2973",
"IPY_MODEL_173e4ea48a334270aba00e91f1071b18"
],
"layout": "IPY_MODEL_1b739c3dfb914c8496d1586056ac90e9",
"selected_index": 0,
"tabbable": null,
"titles": [
"settings",
"cluster0_module2"
],
"tooltip": null
}
},
"95531b73676b42b3bad4007a54532e5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9908b038922844c0a1e240758a5b3996": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9a288c2f048943b3891e3c52f24c5b40": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7fbf219c42214283a403da9155795602",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9c3451624eea48819ba56f0058c29fab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9cc9173bf5da4db5846cf0c2382f0f82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9f2c209c2f414795bdedcaa6e17534d4": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_a2eef181d09f43689b7e3057deb2ed82",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9f78f2a8a96a4559b047c15e065f3771": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d2d0803248654c61a07b840307ffba83",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9ff38dea7b874f68b505669a508e1ab1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a089370cc76646df88ca95a098515b11": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_3d1671151ae242139b6e3481852015cd",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a1c1a7b3f6ee4b3596dd85d8ab19ff8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a2eef181d09f43689b7e3057deb2ed82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a37ec74e746143d2a7e37e93d212bd40": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_95531b73676b42b3bad4007a54532e5f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a6fc0089f47b46af8ad24d84e57fe563": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_4d062e06be45443fbe0525fddc878c71",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a8619d328905430bad503248af5fb66d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"aa64388de69846fb8c6cbb42ce6c27d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"acbd84002d474fd38ba5b9214934a950": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"adb01c912a4e40ed881102cc12633c5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_0aa6f09e8fea46c6afa3a22eccf01ee6"
],
"layout": "IPY_MODEL_2adb16e9a8264180ad5b559ce44b7995",
"selected_index": 0,
"tabbable": null,
"titles": [
"seq0"
],
"tooltip": null
}
},
"aec6b21718e749d793afbb06e1cead6f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"af00ecef4cf3435b8cd0e7d0e3f448ef": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d54dab294994487dad0ab0a1553b7a1a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"aff438b37598442db50c66f41910e73d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_e32a309bbbe94ec391b149fd96daa0c5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b1d81e696ad04522b30ca68b42e4856f": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_de823377718f413aacb2607750aa2684",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b32283ff10e148df9d8c4798a676bf69": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b520220d65354dccb24e9d55b34a8076": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b9fdd8f20d4040dc84b169b16a5d10fa": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_9908b038922844c0a1e240758a5b3996",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bae9497dc22e43db80cba3aba5bed797": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"bc9ccadeed554500a350fb1dd45a70dc": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_a8619d328905430bad503248af5fb66d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bea88e247df94481bd0f8aeefe90cb1b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_b32283ff10e148df9d8c4798a676bf69",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bf622b3320e542daa521f34aabae4381": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_62725ae8d85542d0bb17cad49e5e382b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c436302c8f4c41999df5d33ef275d7d3": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_17ea21aa198545d1b8a486fa7572d4cd",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c4b8fc53fc6542e88362f24afbad3299": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_51623139fcb8425bbfd21adc0c41f3d8"
],
"layout": "IPY_MODEL_e85b163a4a2140caab72e34db54e362e",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"c616532887d0453293fd6b3569af2973": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_edfb8f427cba4b3aa8c422e923787d76"
],
"layout": "IPY_MODEL_e81e85764dd34855a9909bd9d511cf30",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"c61bb4b7a34048e6a7fc90d05204ee5e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_707698257466444aa9579c69a94cb61a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cb078eb28fa748f29fecf6af572e3537": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"cb2b9972ee2348dfb12d35313f37ca03": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_46e482a8a35a4235a04fb3b241a91347",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cc25cce9aa5f48ea8883e4277a6eaa0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ce1a169012ae45aa845f42378bd8dc3b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_01d2315f04fc4b8ca493e1535ee3bf5f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cf0e652f2ec149a3ad4acc7b0f7ae86a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_14455018831a4bfeb40417eb54e2cfb0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d125cd2ed74641afa59ae38dc450ca7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d1b882aeb7944496906989295c28636a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d1c80dea5ce7409da20bf04c32d10017": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d2d0803248654c61a07b840307ffba83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d54dab294994487dad0ab0a1553b7a1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d5a07f5cbe5c4582a22228f624a5cd2c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_aec6b21718e749d793afbb06e1cead6f",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"d709bdc3477547ecaf5b0f9fe8a56279": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d9c82d8f1ac04eb1ba060d8bba52ca5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_2b5301018a1945199ecba3395f444dc5",
"IPY_MODEL_0ac527c8c82b48e5b02d3ae2e010c692"
],
"layout": "IPY_MODEL_f6c7825786794315868233b8eac5300b",
"selected_index": 0,
"tabbable": null,
"titles": [
"waveforms",
"program"
],
"tooltip": null
}
},
"dac42533ee7849799b1b180d41f8a809": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"de823377718f413aacb2607750aa2684": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e263568d1aa543c4a430fee6724607c2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f094172c9d4d48ff87fdc6e62cba34f7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e32a309bbbe94ec391b149fd96daa0c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e3cc82999e254661b7e031c8242add3e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_cb078eb28fa748f29fecf6af572e3537",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e442cb36a9df4f7994fecf4ac40c99d6": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_0e1bf274b1384ce8bc8a003b45608394",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e4d9c597a5b54489abd2b5550898a855": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_37496b66ed444ded9a17738dd73306db",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e81e85764dd34855a9909bd9d511cf30": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e85b163a4a2140caab72e34db54e362e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ebf2f483bc424817bffabdb889a890d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"edfb8f427cba4b3aa8c422e923787d76": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_9cc9173bf5da4db5846cf0c2382f0f82",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n reference_source | \n internal | \n
\n \n sync_on_external_trigger | \n None | \n
\n \n
\n
",
"text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"f094172c9d4d48ff87fdc6e62cba34f7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f2766b1365b141a7b876929f668a5035": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6b25b88704d84947a786c9119eb78c45",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f28e14faec624efcaa6893a6c2fbef6b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6adcd7d6740f48acad54367071be3580",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f363ab2d327d495ba9ac66676c71674e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_9c3451624eea48819ba56f0058c29fab",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f6c7825786794315868233b8eac5300b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"fa97cb641c804a698aad01b1b0b9ced6": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_254290b33f4a4dec9bc472571afbd50c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"faec13a3c4b2462d9763125ac16e46d6": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_664d8f2326e04c74a0d4adf8906b8aa6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fc5d840a8eb84c9a9f1231884cc03efa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"fd6b8db59d7a4848afdc139ad9bf37a3": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_3eaea09b38424c8585ad30fcb448e1c9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ff8fe81005914a48922340100bb8d2c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": 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,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ff9b7209bf9b413e800e6760f5243023": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_2a656d84585247a99aea9257993b0d3f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}