{
"cells": [
{
"cell_type": "markdown",
"id": "acbd785a",
"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": "0ddfe58b",
"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": "5e3c1c3a",
"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": "f7e5bca6",
"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": "8b790505",
"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": "66cc72e0",
"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": "e6d4136c",
"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": "113844c3",
"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": "632562e1",
"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": "91acd3b1",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4be726afc81843ae90cef219ef1fdd2b",
"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": "c5f2a432",
"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": "10752ce9",
"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": "199de202",
"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": "9a270029",
"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": "83c71ffb",
"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": "0e3f443d",
"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": "b9d986aa",
"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.23"
},
"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": {
"007d2bc2b36b477f95cb8d76ce24601f": {
"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_0325fbea6204483a991c845180a0650a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"00a8e14c7fed4a0888fd4cb832b3a9cd": {
"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_db8f7f801244493c9c6987d4de937231",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"00b88cb42ba94c9096e722a743d2701b": {
"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
}
},
"0325fbea6204483a991c845180a0650a": {
"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
}
},
"0384abd9cb4a4be7ac77fc02604a5ca3": {
"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
}
},
"04f3a63703d84a85b8a783e0bd0da568": {
"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_ea3e65fc32c445dcbe36572c9a15429f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"05e826f472be47c185248696dce03993": {
"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
}
},
"05f2a209ce524017bb4a8de89c109ef1": {
"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_c820ad3ccc8e458a8b3b29d848654922",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"066d89e44f51412c96b5e37a6ade7aa6": {
"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
}
},
"088e7dc8968a480d8ce11bc57ad4ff89": {
"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_51fc687143be43daa1530c9e02f86912",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0c6bca45fccc476ab83f8a3a7400e913": {
"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
}
},
"0cba0dfb6e2947fcb8b99ade25c019ce": {
"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
}
},
"0e515c1dd3154dd5928793b4f718b669": {
"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_b55442dae2e44c608db67b797e93a6ab"
],
"layout": "IPY_MODEL_c4a1f144fe4740bf9a49873b518dc97e",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"10f4f35f099040ab93b3e747bc643fa2": {
"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
}
},
"1114c3fcece54849907e18327199c8bb": {
"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
}
},
"161366a0c8b844e68270a4524d471d1f": {
"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_e03244a898494306a1a5791403cd30f7",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"1773920c77f7437cb5f0ad45ddcbe6f7": {
"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_5e6e162e181747bcb2477b6c553bfcd5",
"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
}
},
"193cfdacacb840939824c3a50dc105a2": {
"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_dea5f982b6544d258a9bf633ab7e21f1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"21618cbc06394e6ca084dfa7682617f6": {
"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
}
},
"22a57d7b87a54e7e87ebf2a8d2244773": {
"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_6f8ae94cebd9410bb46b0b42ba177ecc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"282cea23ee2e4d4c8e0b6e4fa94d7b6a": {
"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
}
},
"28d43c230cfa495da8fa970683b906e7": {
"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
}
},
"2bf6aa040de64717a185331bfc2132e1": {
"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_d430e6c39c7946f98b2daf1dc7c6cd1b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2d8ce4e41ac048239573c5cde8e2b20c": {
"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
}
},
"3377a3e9b4ea401294b2d542f64ca080": {
"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
}
},
"37d151725294418686fe0d156f02004e": {
"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
}
},
"3a0d509b6f0d49a6bedc689983a2488d": {
"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
}
},
"3c390088aca041e19188b76f98e1117c": {
"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
}
},
"3e18b1a9a6ad4b1ab5716a4ea23811d5": {
"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_77ef8d7443574d0bb485f49a88e0731d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3e3067aedaff4c50a958691fd135c52f": {
"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_c5a4dfe5c45c4cb6b2751ccba60b2358",
"IPY_MODEL_47186187f5e443f5866c11cbca1b9aed"
],
"layout": "IPY_MODEL_2d8ce4e41ac048239573c5cde8e2b20c",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequence",
"settings"
],
"tooltip": null
}
},
"3fa2c9357d674dc180fad7cbe1d20c23": {
"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
}
},
"40437ce6b8574b9c87094cb69a275dc9": {
"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
}
},
"42f44325ebbd48b0afd76ad43ac42d2b": {
"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_81c4464e6b6146b5903a31d97ef9291d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"436c063ff6a6435bbd9f99a4c6f911de": {
"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
}
},
"43a07789ee3c4f87a8200ad27c5dba09": {
"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_c2ae4e7f809440009b952d703cd475ef",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"45bb9d5d688f457783b04ef2ef9f4100": {
"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
}
},
"45dbd9d1a9164034abc1fb5dbf979812": {
"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_5a8c5392f8014826ab8b0e8d64e6be02",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"46372c82db6341778a417cac947789ec": {
"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_5a43d03e970048ad8b4a94e131ced824",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"47186187f5e443f5866c11cbca1b9aed": {
"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_0c6bca45fccc476ab83f8a3a7400e913",
"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
}
},
"47e78c91544641748a8b949110d73ac7": {
"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_40437ce6b8574b9c87094cb69a275dc9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4be726afc81843ae90cef219ef1fdd2b": {
"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_96fbe7bbd03e4a9898ca6ab7163f5caf"
],
"layout": "IPY_MODEL_37d151725294418686fe0d156f02004e",
"selected_index": 0,
"tabbable": null,
"titles": [
"cluster0"
],
"tooltip": null
}
},
"4c51679263804ddc8832448bbce53319": {
"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
}
},
"4d321f5bbdf94d94a116bc309384a187": {
"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_74371f342f664a09b52962e3f4a9dc97",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4dadfe35e87c4e22a1b0f0408b035439": {
"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_f9b68a4860aa4dbcbae0ffe49e959fcc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4e8274016a9e4c38b50e289ab775a020": {
"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_8fc775967aee46eabfbdf2e8f347b05c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4eec86514f4643daa9fe71acc0495fc7": {
"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
}
},
"51d29cbee5834a7cbbb712b6787b560a": {
"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_9fe4a3b2117c44a3a84b22448a35e733",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"51fc687143be43daa1530c9e02f86912": {
"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
}
},
"5208dc705d2749f6b9f8a4b2cba3ae64": {
"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_62f84250475547b3b82a1037bf562186",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"55098908dc7c484f84411d0c4f1077dc": {
"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_d7031ad97aa444f899fdadfd6c635f16",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"57a8982540bb458285c8692e4e357f31": {
"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_066d89e44f51412c96b5e37a6ade7aa6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"59b1f11d249c4a17b92d929a8cc1a0e2": {
"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
}
},
"5a43d03e970048ad8b4a94e131ced824": {
"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
}
},
"5a8c5392f8014826ab8b0e8d64e6be02": {
"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
}
},
"5af58d475fe443719fb11a90c20294b5": {
"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_5c606a0ec307400d96e9a779363842d6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5c606a0ec307400d96e9a779363842d6": {
"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
}
},
"5e6e162e181747bcb2477b6c553bfcd5": {
"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
}
},
"618fabd6625d4618a4ed24a908814dc2": {
"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_7001c61cba8a43aebb4d44afa8f6ee96",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"62f84250475547b3b82a1037bf562186": {
"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
}
},
"6340f7c28ca144ebbba0fa3d3d73c614": {
"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_05e826f472be47c185248696dce03993",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6569c568b2a349208e482d6f88085b41": {
"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_c39a7192084f4a1086c044d1b0c29bf5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"65d3aae1a2434f72897e0bc5acb0ab8a": {
"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_f0ef9485bee1468bb87f56ebb7ef9146",
"IPY_MODEL_0e515c1dd3154dd5928793b4f718b669",
"IPY_MODEL_ff8936d653a7426ebedc354bdb83db3f"
],
"layout": "IPY_MODEL_3c390088aca041e19188b76f98e1117c",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequencers",
"settings",
"other values"
],
"tooltip": null
}
},
"67a89bc9b64a40e8ab212281b1520355": {
"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
}
},
"6941494b6c1240d5873ac489eec1e313": {
"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_0384abd9cb4a4be7ac77fc02604a5ca3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6a824024beeb427a83db49e4d892627a": {
"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
}
},
"6a95a8e8fc7c4631ac5bea2f156df38b": {
"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
}
},
"6b7d92f1848848b5bde3a2abed833fe6": {
"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_d40c8884dcae4b1e8f2d8fd80b4450ed",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6f347d7adfc54fb2b4c548e081d5d194": {
"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
}
},
"6f8ae94cebd9410bb46b0b42ba177ecc": {
"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
}
},
"6f90216235764cb6bee50e676b8f73ad": {
"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_ff5a4eba2ced4e2ab762c76afb054768",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7001c61cba8a43aebb4d44afa8f6ee96": {
"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
}
},
"71e5818bedef4c13b33cc28735b56ab1": {
"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_4eec86514f4643daa9fe71acc0495fc7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"74371f342f664a09b52962e3f4a9dc97": {
"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
}
},
"745d0fc856304447b9dd5009e89f79fc": {
"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_161366a0c8b844e68270a4524d471d1f",
"IPY_MODEL_1773920c77f7437cb5f0ad45ddcbe6f7"
],
"layout": "IPY_MODEL_e6c4dcd2fdac4a8f81c4679962db281e",
"selected_index": 0,
"tabbable": null,
"titles": [
"0",
"1"
],
"tooltip": null
}
},
"7539d5d8f6174213848feb2bfdb4b32f": {
"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_d49c9ed61e26473d99908bbd3415f3c4"
],
"layout": "IPY_MODEL_7b3a3b9db17e4c61a8f7b6ed85b6c4a8",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"77ef8d7443574d0bb485f49a88e0731d": {
"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
}
},
"78d78164f7e04eb99df3659016ba680e": {
"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
}
},
"7b3a3b9db17e4c61a8f7b6ed85b6c4a8": {
"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
}
},
"7b425b40067d49e68437dfe23a7e50cf": {
"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
}
},
"7daaec8864b3477490a8d0c3a87dc342": {
"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
}
},
"80fb33d342ad4e65a2d33bb6d4ef7a9c": {
"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_67a89bc9b64a40e8ab212281b1520355",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"81c4464e6b6146b5903a31d97ef9291d": {
"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
}
},
"8b8becb0788b43069c07057d69b62fc7": {
"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_efbbf47b4d724c3e806d4a2f06b4d9a3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8c0cfb89090142dba00d789ee8d25e07": {
"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
}
},
"8c59bb8635d343f5be5731e7e7d5c927": {
"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_7daaec8864b3477490a8d0c3a87dc342",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8fc775967aee46eabfbdf2e8f347b05c": {
"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
}
},
"9057f2d38f57452a994ee977570defac": {
"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_436c063ff6a6435bbd9f99a4c6f911de",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"93329ba348c5453eb784d85080bb9c6c": {
"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_d430cb87f4314e919909698ed0403200",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"96043906b4c44657ac3df96a3c3562c6": {
"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_0cba0dfb6e2947fcb8b99ade25c019ce",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"96de80741ed941479e7a5c2d8468fb92": {
"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
}
},
"96fbe7bbd03e4a9898ca6ab7163f5caf": {
"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_7539d5d8f6174213848feb2bfdb4b32f",
"IPY_MODEL_65d3aae1a2434f72897e0bc5acb0ab8a"
],
"layout": "IPY_MODEL_3a0d509b6f0d49a6bedc689983a2488d",
"selected_index": 0,
"tabbable": null,
"titles": [
"settings",
"cluster0_module2"
],
"tooltip": null
}
},
"97d1d475de0c45bbae3dab8be50b7e1b": {
"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
}
},
"986d056fbc3a4698b263ef4619767eaa": {
"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_8c0cfb89090142dba00d789ee8d25e07",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9b7125d7624d41ed9ef5298a317c91f9": {
"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_c8c0b1b8ecf54f8f89fdfeca0c570b4a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9b87db1df0ef4dc882fcbc4c42c05e58": {
"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_6f347d7adfc54fb2b4c548e081d5d194",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9cbca175af1c4ad8bc7ba8e5988ca0e9": {
"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
}
},
"9fe4a3b2117c44a3a84b22448a35e733": {
"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
}
},
"a214ddbbb5254772bb2083423bced90e": {
"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_a9ebc1167f014c4ebfee7e9b7f0f2f00",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a34f7fffe4d54bef81d4bd78b2812b6a": {
"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
}
},
"a3f64c8ce6be471d80384ddf11255526": {
"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
}
},
"a4f7e216401b42368d956de1fb887038": {
"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_a34f7fffe4d54bef81d4bd78b2812b6a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a61a0686bf07432eaf2d9772e0310cce": {
"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
}
},
"a9ebc1167f014c4ebfee7e9b7f0f2f00": {
"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
}
},
"aa76c668cd8a49f8b03e9c719d16b92d": {
"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_a3f64c8ce6be471d80384ddf11255526",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"abfb4d7e891f45989deae9f72c6b1d9b": {
"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_cc663ada5c5c44e6be2af8ad4c933e86",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"af0ac421c55e4a89b5b8c54730b9d604": {
"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
}
},
"af1622831a2e43efa96bf55bd55afd61": {
"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
}
},
"b1b93fcbb1ea4b9aa7a58c2ab917a444": {
"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_6a95a8e8fc7c4631ac5bea2f156df38b",
"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
}
},
"b3259731bbea41e5917cb4e05d875472": {
"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_00b88cb42ba94c9096e722a743d2701b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b55442dae2e44c608db67b797e93a6ab": {
"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_10f4f35f099040ab93b3e747bc643fa2",
"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 [{'exp0': {'coeffs': None, 'config': 'QbloxFil... | \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 in0_freq | \n None | \n
\n \n in1_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 [{'exp0': {'coeffs': None, 'config': 'QbloxFil...\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\nin0_freq None\nin1_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
}
},
"b67bd5257a6549a7af53a16ce78edc26": {
"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_282cea23ee2e4d4c8e0b6e4fa94d7b6a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b80f608e5be84ba6b3577f9bacc0d055": {
"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_ffffe4e29c214918b4ed663d676bfa82",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b8ec2436f9974ccf916d5ec4a63c8ccc": {
"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
}
},
"bb89b8479b3348a6839cf63d588ad3d1": {
"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_59b1f11d249c4a17b92d929a8cc1a0e2",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bf1874a19a1d4adb8481ae8de0e1471c": {
"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_dc456b8ae3c54656b4f5aa22044c62b2",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"c0885e25dc2c490488e3b940858ccd20": {
"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_af0ac421c55e4a89b5b8c54730b9d604",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c2ae4e7f809440009b952d703cd475ef": {
"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
}
},
"c39a7192084f4a1086c044d1b0c29bf5": {
"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
}
},
"c4a1f144fe4740bf9a49873b518dc97e": {
"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
}
},
"c4b1c1a5c51246518e5286e60b712b35": {
"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_6a824024beeb427a83db49e4d892627a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c5a4dfe5c45c4cb6b2751ccba60b2358": {
"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_745d0fc856304447b9dd5009e89f79fc",
"IPY_MODEL_b1b93fcbb1ea4b9aa7a58c2ab917a444"
],
"layout": "IPY_MODEL_7b425b40067d49e68437dfe23a7e50cf",
"selected_index": 0,
"tabbable": null,
"titles": [
"waveforms",
"program"
],
"tooltip": null
}
},
"c81beacc084f4c5393b50eeeab9df0e8": {
"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_a61a0686bf07432eaf2d9772e0310cce",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c820ad3ccc8e458a8b3b29d848654922": {
"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
}
},
"c8c0b1b8ecf54f8f89fdfeca0c570b4a": {
"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
}
},
"cc663ada5c5c44e6be2af8ad4c933e86": {
"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
}
},
"cc9e086b89d743639133ca130364ab0d": {
"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_4c51679263804ddc8832448bbce53319",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cd8dbe6bbe59421fadb96e0ff075c95c": {
"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_af1622831a2e43efa96bf55bd55afd61",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"cf59d773814245328d62d553fdf627e0": {
"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_21618cbc06394e6ca084dfa7682617f6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d40c8884dcae4b1e8f2d8fd80b4450ed": {
"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
}
},
"d430cb87f4314e919909698ed0403200": {
"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
}
},
"d430e6c39c7946f98b2daf1dc7c6cd1b": {
"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
}
},
"d49c9ed61e26473d99908bbd3415f3c4": {
"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_3fa2c9357d674dc180fad7cbe1d20c23",
"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
}
},
"d7031ad97aa444f899fdadfd6c635f16": {
"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
}
},
"d82e819db5ec4f03b3945ad78a1c2fa6": {
"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
}
},
"d90256d90139469c95a4252bec1edf70": {
"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
}
},
"d913769cfd1b4b8fbd8727e1f0a7d24f": {
"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_28d43c230cfa495da8fa970683b906e7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"db8f7f801244493c9c6987d4de937231": {
"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
}
},
"dc456b8ae3c54656b4f5aa22044c62b2": {
"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
}
},
"dea5f982b6544d258a9bf633ab7e21f1": {
"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
}
},
"e03244a898494306a1a5791403cd30f7": {
"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
}
},
"e08c87604d7b4b70b25c17f2e5c1a817": {
"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_96de80741ed941479e7a5c2d8468fb92",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e0a67b75f9d24a8f83b9ac7540b0079c": {
"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_9cbca175af1c4ad8bc7ba8e5988ca0e9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e16e501da0794bb7b8d999887367bfa0": {
"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_97d1d475de0c45bbae3dab8be50b7e1b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e6c4dcd2fdac4a8f81c4679962db281e": {
"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
}
},
"e731d3b96eb74e898bc8140223001db3": {
"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
}
},
"e9efe95bd56f4c7bb18f947d3975ef73": {
"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_d90256d90139469c95a4252bec1edf70",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ea3e65fc32c445dcbe36572c9a15429f": {
"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
}
},
"ee354d5761174250b5e1aace9c1cfe68": {
"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_d82e819db5ec4f03b3945ad78a1c2fa6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"efbbf47b4d724c3e806d4a2f06b4d9a3": {
"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
}
},
"f0877cd50a4e4390b7e249dfb2febe2f": {
"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_1114c3fcece54849907e18327199c8bb",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f0ef9485bee1468bb87f56ebb7ef9146": {
"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_3e3067aedaff4c50a958691fd135c52f"
],
"layout": "IPY_MODEL_b8ec2436f9974ccf916d5ec4a63c8ccc",
"selected_index": 0,
"tabbable": null,
"titles": [
"seq0"
],
"tooltip": null
}
},
"f2d9fb86a6764d8aa0e564cc1c4a957b": {
"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_e731d3b96eb74e898bc8140223001db3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f9b68a4860aa4dbcbae0ffe49e959fcc": {
"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
}
},
"fc79a6b811cb462596fa16f98bbdc420": {
"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_3377a3e9b4ea401294b2d542f64ca080",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ff5a4eba2ced4e2ab762c76afb054768": {
"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
}
},
"ff8936d653a7426ebedc354bdb83db3f": {
"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_78d78164f7e04eb99df3659016ba680e",
"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
}
},
"ff98c4bbefac49a9877a45bc739e1cbb": {
"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_45bb9d5d688f457783b04ef2ef9f4100",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ffffe4e29c214918b4ed663d676bfa82": {
"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
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}