Skip to content

Instantly share code, notes, and snippets.

@bdatko
Created July 18, 2022 01:15
Show Gist options
  • Save bdatko/58e56ddcc303a524b83eaad1bb072760 to your computer and use it in GitHub Desktop.
Save bdatko/58e56ddcc303a524b83eaad1bb072760 to your computer and use it in GitHub Desktop.
playing around with pyAgrum potentials
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "ee23273a-9355-4cd1-86de-81c2c321d35b",
"metadata": {},
"source": [
"# Purpose\n",
"- trying to figure out how to fill potential without `[:]`"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "3dd571cc-c5f4-4faf-81d4-ddca2222de9e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Requirement already satisfied: watermark in /srv/conda/envs/notebook/lib/python3.9/site-packages (2.3.1)\n",
"Requirement already satisfied: ipython in /srv/conda/envs/notebook/lib/python3.9/site-packages (from watermark) (8.2.0)\n",
"Requirement already satisfied: stack-data in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (0.2.0)\n",
"Requirement already satisfied: pexpect>4.3 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (4.8.0)\n",
"Requirement already satisfied: matplotlib-inline in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (0.1.3)\n",
"Requirement already satisfied: pickleshare in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (0.7.5)\n",
"Requirement already satisfied: prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (3.0.29)\n",
"Requirement already satisfied: pygments>=2.4.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (2.11.2)\n",
"Requirement already satisfied: jedi>=0.16 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (0.18.1)\n",
"Requirement already satisfied: setuptools>=18.5 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (62.0.0)\n",
"Requirement already satisfied: decorator in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (5.1.1)\n",
"Requirement already satisfied: backcall in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (0.2.0)\n",
"Requirement already satisfied: traitlets>=5 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from ipython->watermark) (5.1.1)\n",
"Requirement already satisfied: parso<0.9.0,>=0.8.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from jedi>=0.16->ipython->watermark) (0.8.3)\n",
"Requirement already satisfied: ptyprocess>=0.5 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from pexpect>4.3->ipython->watermark) (0.7.0)\n",
"Requirement already satisfied: wcwidth in /srv/conda/envs/notebook/lib/python3.9/site-packages (from prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0->ipython->watermark) (0.2.5)\n",
"Requirement already satisfied: executing in /srv/conda/envs/notebook/lib/python3.9/site-packages (from stack-data->ipython->watermark) (0.8.3)\n",
"Requirement already satisfied: asttokens in /srv/conda/envs/notebook/lib/python3.9/site-packages (from stack-data->ipython->watermark) (2.0.5)\n",
"Requirement already satisfied: pure-eval in /srv/conda/envs/notebook/lib/python3.9/site-packages (from stack-data->ipython->watermark) (0.2.2)\n",
"Requirement already satisfied: six in /srv/conda/envs/notebook/lib/python3.9/site-packages (from asttokens->stack-data->ipython->watermark) (1.16.0)\n"
]
}
],
"source": [
"!pip install watermark"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "bf3dc5aa-ca36-4933-bfcd-4c23277a6912",
"metadata": {},
"outputs": [],
"source": [
"from pylab import *\n",
"import matplotlib.pyplot as plt\n",
"import pyAgrum as gum\n",
"import pyAgrum.lib.notebook as gnb\n",
"import numpy as np\n",
"import scipy.stats\n",
"from tqdm import tqdm\n",
"import itertools\n",
"import time"
]
},
{
"cell_type": "markdown",
"id": "b9ffdcb6-5a4a-4261-ba8e-249ff3e0fe1c",
"metadata": {},
"source": [
"- this notebook was run in the Binder image provide by pyAgrum https://agrum.gitlab.io/extra/agrum_at_binder.html, click the Binder icon found on the bottom left corner of the agrum project home page\n",
" - the link for the binder image used for this notebook is https://agrum.gitlab.io/extra/agrum_at_binder.html"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "e48265c8-f9cd-4f6e-9e5e-0f2e8df1a922",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Mon Jul 18 01:10:12 UTC 2022\n"
]
}
],
"source": [
"!date"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4a661d15-0354-41ab-b4cd-d55d6f5a19d8",
"metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"%reload_ext autoreload\n",
"%autoreload 2\n",
"%load_ext watermark"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "121ddddc-9fdc-4885-ac18-f1173ac4f4da",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Python implementation: CPython\n",
"Python version : 3.9.12\n",
"IPython version : 8.2.0\n",
"\n",
"numpy : 1.23.1\n",
"pandas : 1.4.3\n",
"matplotlib: 3.5.2\n",
"pyAgrum : 1.2.0\n",
"scipy : 1.8.1\n",
"\n",
"Compiler : GCC 10.3.0\n",
"OS : Linux\n",
"Release : 4.15.0-180-generic\n",
"Machine : x86_64\n",
"Processor : x86_64\n",
"CPU cores : 4\n",
"Architecture: 64bit\n",
"\n"
]
}
],
"source": [
"%watermark -v -m -p numpy,pandas,matplotlib,pyAgrum,scipy"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "64bf2358-abc5-4716-9b75-6774ea13cb20",
"metadata": {},
"outputs": [],
"source": [
"gum.config[\"notebook\",\"default_graph_size\"]=\"12!\"\n",
"gum.config[\"notebook\",\"default_graph_inference_size\"]=\"12!\""
]
},
{
"cell_type": "markdown",
"id": "d7a7e5bf-f28f-48f7-a797-e57640df9602",
"metadata": {},
"source": [
"# Potential playground"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "d1a9dafa-53b4-479a-971c-701e139e6bdd",
"metadata": {},
"outputs": [],
"source": [
"a,b,c=[gum.LabelizedVariable(s,s,2) for s in \"abc\"]"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "ea99d728-69f3-436a-ba82-d828e08d8ae7",
"metadata": {},
"outputs": [],
"source": [
"p1=gum.Potential().add(a).add(b).fillWith([1,2,3,4]).normalize()\n",
"p2=gum.Potential().add(b).add(c).fillWith([4,5,2,3]).normalize()"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "5b4e2d3e-5d0b-4672-a884-f02dc6f0f817",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2, 2)"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p1.shape"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "1e599f94-5b8f-469c-a335-13d940451afc",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2, 2)"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p2.shape"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "5bacc673-b626-4dee-a9ab-6e80f229e75a",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [11]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mp2\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43m[\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0.9\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m0.1\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0.1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m0.9\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"p2.fillWith([[0.9,0.1],[0.1,0.9]])"
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "4f86ed14-8883-49dc-b54c-27cfd33dd397",
"metadata": {},
"outputs": [],
"source": [
"p3 = p1+p2"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "ab0a0b82-2e15-4ac3-9980-555c3c4a9caa",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr><th colspan='2'></th>\n",
" <th colspan='2' style='border:1px solid black;color:black;background-color:#808080;'><center>b</center>\n",
" </th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#808080'><center>a</center></th><th style='border:1px solid black;color:black;background-color:#808080'><center>c</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB;' rowspan = '2'>\n",
" <center>0</center></th><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='text-align:right;'>0.3857</td><td style='text-align:right;'>0.6571</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='text-align:right;'>0.2429</td><td style='text-align:right;'>0.5143</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB;' rowspan = '2'>\n",
" <center>1</center></th><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='text-align:right;'>0.4857</td><td style='text-align:right;'>0.7571</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='text-align:right;'>0.3429</td><td style='text-align:right;'>0.6143</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a721ae0) \n",
" || b |\n",
"c |a ||0 |1 |\n",
"------|------||---------|---------|\n",
"0 |0 || 0.3857 | 0.6571 |\n",
"1 |0 || 0.2429 | 0.5143 |\n",
"0 |1 || 0.4857 | 0.7571 |\n",
"1 |1 || 0.3429 | 0.6143 |"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p3"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "08b57ec9-a79d-4bd4-91e9-525cf72527a8",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2, 2, 2)"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p3.shape"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "894777d4-1d87-4d7f-adeb-4f323a94907b",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [15]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mp3\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrand\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"p3.fillWith(np.random.rand(2,2,2))"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "eb91c5ff-bc53-46ec-a160-a18e8df014fb",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [16]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mp3\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrand\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtolist\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"p3.fillWith(np.random.rand(2,2,2).tolist())"
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "791201b3-f4fa-4229-95cb-1d1a216422b9",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'new_Potential', argument 1 of type 'gum::Potential< double > &&'\nAdditional information:\nWrong number or type of arguments for overloaded function 'new_Potential'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::Potential()\n gum::Potential< double >::Potential(gum::MultiDimImplementation< double > *)\n gum::Potential< double >::Potential(gum::MultiDimImplementation< double > *,gum::MultiDimContainer< double > const &)\n gum::Potential< double >::Potential(gum::Potential< double > const &)\n gum::Potential< double >::Potential(gum::Potential< double > &&)\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [17]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential\u001b[49m\u001b[43m(\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m3\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7384\u001b[0m, in \u001b[0;36mPotential.__init__\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7383\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m__init__\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs):\n\u001b[0;32m-> 7384\u001b[0m _pyAgrum\u001b[38;5;241m.\u001b[39mPotential_swiginit(\u001b[38;5;28mself\u001b[39m, \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mnew_Potential\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m)\n\u001b[1;32m 7386\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_list_vars\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mlist\u001b[39m()\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'new_Potential', argument 1 of type 'gum::Potential< double > &&'\nAdditional information:\nWrong number or type of arguments for overloaded function 'new_Potential'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::Potential()\n gum::Potential< double >::Potential(gum::MultiDimImplementation< double > *)\n gum::Potential< double >::Potential(gum::MultiDimImplementation< double > *,gum::MultiDimContainer< double > const &)\n gum::Potential< double >::Potential(gum::Potential< double > const &)\n gum::Potential< double >::Potential(gum::Potential< double > &&)\n"
]
}
],
"source": [
"gum.Potential([1,2,3])"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "262411ce-5693-412a-ad94-e25ca040c47d",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr style='border:1px solid black;color:black;background-color:#808080'>\n",
" <th colspan='3'><center>t</center></th></tr>\n",
"<tr><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>2</center></th></tr>\n",
"<tr><td style='text-align:right;'>0.0000</td><td style='text-align:right;'>0.0000</td><td style='text-align:right;'>0.0000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a765330) \n",
" t |\n",
"0 |1 |2 |\n",
"---------|---------|---------|\n",
" 0.0000 | 0.0000 | 0.0000 |"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"t=gum.LabelizedVariable('t','t',3)\n",
"p1=gum.Potential().add(t)\n",
"p1"
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "43616e2e-172f-46bb-8179-92e8846aa2c6",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([0, 1, 2])"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"np.arange(3)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "c7f46f82-78af-451a-b0e8-f75063b7a27f",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [20]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mp1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43marange\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m3\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"p1.fillWith(np.arange(3))"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "3d15ac55-74da-4de7-becc-02a2e806c289",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr style='border:1px solid black;color:black;background-color:#808080'>\n",
" <th colspan='3'><center>t</center></th></tr>\n",
"<tr><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>2</center></th></tr>\n",
"<tr><td style='text-align:right;'>1.0000</td><td style='text-align:right;'>2.0000</td><td style='text-align:right;'>3.0000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a765330) \n",
" t |\n",
"0 |1 |2 |\n",
"---------|---------|---------|\n",
" 1.0000 | 2.0000 | 3.0000 |"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p1.fillWith([1,2,3])"
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "80b3146a-1294-4238-a064-e7c5b178f491",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr style='border:1px solid black;color:black;background-color:#808080'>\n",
" <th colspan='3'><center>t</center></th></tr>\n",
"<tr><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>2</center></th></tr>\n",
"<tr><td style='text-align:right;'>0.0000</td><td style='text-align:right;'>1.0000</td><td style='text-align:right;'>2.0000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a765330) \n",
" t |\n",
"0 |1 |2 |\n",
"---------|---------|---------|\n",
" 0.0000 | 1.0000 | 2.0000 |"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p1.fillWith(np.arange(3).tolist())"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "feee51b9-3339-4c58-848c-179cfb2f6df3",
"metadata": {},
"outputs": [],
"source": [
"p1=gum.Potential().add(a).add(b).fillWith([1,2,3,4]).normalize()\n",
"p2=gum.Potential().add(b).add(c).fillWith([4,5,2,3]).normalize()\n",
"p3 = p1+p2"
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "0bc94e87-24c8-42d7-8275-c4ce8f786451",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [24]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential\u001b[49m\u001b[43m(\u001b[49m\u001b[43mp3\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrand\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"gum.Potential(p3).fillWith(np.random.rand(2,2,2))"
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "17530c7e-1e01-4b12-b403-2412e8fd2709",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [25]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrand\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"gum.Potential().fillWith(np.random.rand(2,2,2))"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "577ce7c7-03d1-4652-a390-82a5ccc7ea26",
"metadata": {},
"outputs": [
{
"ename": "SizeError",
"evalue": "[pyAgrum] incorrect size: Sizes do not match : 8!=3",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mSizeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [26]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential\u001b[49m\u001b[43m(\u001b[49m\u001b[43mp3\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mrange\u001b[39;49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m3\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mSizeError\u001b[0m: [pyAgrum] incorrect size: Sizes do not match : 8!=3"
]
}
],
"source": [
"gum.Potential(p3).fillWith(range(3))"
]
},
{
"cell_type": "markdown",
"id": "71ea4712-5aef-4c8e-97a7-318e04de8783",
"metadata": {},
"source": [
"^^\n",
"* the above error gives me hope!\n",
"* it seems like it wants the flatten version?\n",
"* or maybe it was the pattern `gum.Potential(p3)` instead of `gum.Potential()`"
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "8b215eb1-8e64-4f3d-a505-51adcd811ffb",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(2, 2, 2)"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p3.shape"
]
},
{
"cell_type": "code",
"execution_count": 28,
"id": "2ea5daf3-097d-4436-8fa5-6a9ab7aaa2dd",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [28]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential\u001b[49m\u001b[43m(\u001b[49m\u001b[43mp3\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnp\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrand\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"gum.Potential(p3).fillWith(np.random.rand(2,2,2))"
]
},
{
"cell_type": "code",
"execution_count": 29,
"id": "5d1b5794-f5f1-4a6e-bca2-6425aa352a48",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr><th colspan='2'></th>\n",
" <th colspan='2' style='border:1px solid black;color:black;background-color:#808080;'><center>b</center>\n",
" </th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#808080'><center>a</center></th><th style='border:1px solid black;color:black;background-color:#808080'><center>c</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB;' rowspan = '2'>\n",
" <center>0</center></th><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='text-align:right;'>0.5004</td><td style='text-align:right;'>0.4655</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='text-align:right;'>0.0855</td><td style='text-align:right;'>0.2290</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB;' rowspan = '2'>\n",
" <center>1</center></th><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='text-align:right;'>0.0597</td><td style='text-align:right;'>0.2858</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='text-align:right;'>0.5213</td><td style='text-align:right;'>0.9135</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a988a30) \n",
" || b |\n",
"c |a ||0 |1 |\n",
"------|------||---------|---------|\n",
"0 |0 || 0.5004 | 0.4655 |\n",
"1 |0 || 0.0855 | 0.2290 |\n",
"0 |1 || 0.0597 | 0.2858 |\n",
"1 |1 || 0.5213 | 0.9135 |"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"gum.Potential(p3).fillWith(np.random.rand(2,2,2).flatten())"
]
},
{
"cell_type": "markdown",
"id": "0abe9087-6346-4774-961d-68182e173e27",
"metadata": {},
"source": [
"* I think I am on to something!"
]
},
{
"cell_type": "code",
"execution_count": 30,
"id": "7fb9621f-1dde-4521-99fb-a925fde38b43",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr style='border:1px solid black;color:black;background-color:#808080'>\n",
" <th colspan='2'><center>Pb</center></th></tr>\n",
"<tr><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th></tr>\n",
"<tr><td style='color:black;background-color:#d8a564;text-align:right;'>0.3000</td><td style='color:black;background-color:#a5d864;text-align:right;'>0.7000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a5a6ad0) \n",
" Pb |\n",
"0 |1 |\n",
"---------|---------|\n",
" 0.3000 | 0.7000 |"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bn=gum.fastBN(\"Ca->X1->Y1<-Pb\")\n",
"bn.cpt(\"Ca\").fillWith([0.8,0.2])\n",
"bn.cpt(\"Pb\").fillWith([0.3,0.7])"
]
},
{
"cell_type": "code",
"execution_count": 31,
"id": "4d0d3921-db5f-44cb-a5e5-038db456921e",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr><th colspan='1'></th>\n",
" <th colspan='2' style='border:1px solid black;color:black;background-color:#808080;'><center>X1</center>\n",
" </th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#808080'><center>Ca</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='color:black;background-color:#8bf264;text-align:right;'>0.9000</td><td style='color:black;background-color:#f28b64;text-align:right;'>0.1000</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='color:black;background-color:#f28b64;text-align:right;'>0.1000</td><td style='color:black;background-color:#8bf264;text-align:right;'>0.9000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a71b600) \n",
" || X1 |\n",
"Ca ||0 |1 |\n",
"------||---------|---------|\n",
"0 || 0.9000 | 0.1000 |\n",
"1 || 0.1000 | 0.9000 |"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bn.cpt(\"X1\")[:]=[[0.9,0.1],[0.1,0.9]]\n",
"bn.cpt(\"X1\")"
]
},
{
"cell_type": "code",
"execution_count": 32,
"id": "5d2087ae-bbc8-4cd1-b2fe-3fbd91ea622e",
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [32]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mbn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcpt\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mX1\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[43m[\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0.9\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m0.1\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0.1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m0.9\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyAgrum/pyAgrum.py:7583\u001b[0m, in \u001b[0;36mPotential.fillWith\u001b[0;34m(self, *args)\u001b[0m\n\u001b[1;32m 7557\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mfillWith\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpyAgrum.Potential\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[1;32m 7558\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 7559\u001b[0m \n\u001b[1;32m 7560\u001b[0m \u001b[38;5;124;03m Automatically fills the potential with v.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7581\u001b[0m \n\u001b[1;32m 7582\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 7583\u001b[0m val \u001b[38;5;241m=\u001b[39m \u001b[43m_pyAgrum\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mPotential_fillWith\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7585\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\n\u001b[1;32m 7588\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m val\n",
"\u001b[0;31mTypeError\u001b[0m: in method 'Potential_fillWith', argument 2 of type 'std::vector< double,std::allocator< double > > const &'\nAdditional information:\nWrong number or type of arguments for overloaded function 'Potential_fillWith'.\n Possible C/C++ prototypes are:\n gum::Potential< double >::fillWith(gum::Potential< double > const &) const\n gum::Potential< double >::fillWith(gum::Potential< double > const &,std::vector< std::string,std::allocator< std::string > > const &) const\n gum::Potential< double >::fillWith(std::vector< double,std::allocator< double > > const &) const\n gum::Potential< double >::fillWith(double const &) const\n"
]
}
],
"source": [
"bn.cpt(\"X1\").fillWith([[0.9,0.1],[0.1,0.9]])"
]
},
{
"cell_type": "code",
"execution_count": 33,
"id": "012f6486-a1d0-4c14-ac56-58d2e998d0a7",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table style=\"border:1px solid black;\">\n",
"<tr><th colspan='1'></th>\n",
" <th colspan='2' style='border:1px solid black;color:black;background-color:#808080;'><center>X1</center>\n",
" </th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#808080'><center>Ca</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>0</center></th><th style='border:1px solid black;border-bottom-style: double;color:black;background-color:#BBBBBB'>\n",
" <center>1</center></th></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>0</center></th><td style='color:black;background-color:#8bf264;text-align:right;'>0.9000</td><td style='color:black;background-color:#f28b64;text-align:right;'>0.1000</td></tr>\n",
"<tr><th style='border:1px solid black;color:black;background-color:#BBBBBB'><center>1</center></th><td style='color:black;background-color:#f28b64;text-align:right;'>0.1000</td><td style='color:black;background-color:#8bf264;text-align:right;'>0.9000</td></tr>\n",
"</table>"
],
"text/plain": [
"(pyAgrum.Potential<double>@0x56069a71b600) \n",
" || X1 |\n",
"Ca ||0 |1 |\n",
"------||---------|---------|\n",
"0 || 0.9000 | 0.1000 |\n",
"1 || 0.1000 | 0.9000 |"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bn.cpt(\"X1\").fillWith(np.array([[0.9,0.1],[0.1,0.9]]).flatten())"
]
},
{
"cell_type": "markdown",
"id": "445fe41f-5de9-4c6e-a8b9-5b7e80a08ad5",
"metadata": {},
"source": [
"## Trying the big table"
]
},
{
"cell_type": "code",
"execution_count": 34,
"id": "f187c5d9-c654-4100-81e6-94f11d4f1ccd",
"metadata": {},
"outputs": [],
"source": [
"def normalize_(rv,vmin,vmax,size, **pdf_kwargs):\n",
" x = linspace(vmin,vmax,size)\n",
" pdf=rv.pdf(x, **pdf_kwargs)\n",
" return x,(pdf/sum(pdf))"
]
},
{
"cell_type": "code",
"execution_count": 35,
"id": "118a51d1-79e6-45c0-bb7f-22370ff217c3",
"metadata": {},
"outputs": [],
"source": [
"NB_ = 100\n",
"vmin, vmax = 0.001, 0.999\n",
"pmin_mu, pmax_mu = 0.001, 0.999\n",
"pmin_nu, pmax_nu = 1,50\n",
"size_ = 16"
]
},
{
"cell_type": "code",
"execution_count": 36,
"id": "5e4fc9ac-769c-4e4a-9aef-6385458e6d10",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"378.465625pt\" height=\"266.038125pt\" viewBox=\"0 0 378.465625 266.038125\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n",
" <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:11:17.029464</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 266.038125 \n",
"L 378.465625 266.038125 \n",
"L 378.465625 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 36.465625 242.16 \n",
"L 371.265625 242.16 \n",
"L 371.265625 24.72 \n",
"L 36.465625 24.72 \n",
"z\n",
"\" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path id=\"mb158555793\" d=\"M 0 0 \n",
"L 0 3.5 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"45.472304\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(42.291054 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \n",
"Q 1547 4250 1301 3770 \n",
"Q 1056 3291 1056 2328 \n",
"Q 1056 1369 1301 889 \n",
"Q 1547 409 2034 409 \n",
"Q 2525 409 2770 889 \n",
"Q 3016 1369 3016 2328 \n",
"Q 3016 3291 2770 3770 \n",
"Q 2525 4250 2034 4250 \n",
"z\n",
"M 2034 4750 \n",
"Q 2819 4750 3233 4129 \n",
"Q 3647 3509 3647 2328 \n",
"Q 3647 1150 3233 529 \n",
"Q 2819 -91 2034 -91 \n",
"Q 1250 -91 836 529 \n",
"Q 422 1150 422 2328 \n",
"Q 422 3509 836 4129 \n",
"Q 1250 4750 2034 4750 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"107.587332\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 10 -->\n",
" <g transform=\"translate(101.224832 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 \n",
"L 1825 531 \n",
"L 1825 4091 \n",
"L 703 3866 \n",
"L 703 4441 \n",
"L 1819 4666 \n",
"L 2450 4666 \n",
"L 2450 531 \n",
"L 3481 531 \n",
"L 3481 0 \n",
"L 794 0 \n",
"L 794 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"169.70236\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 20 -->\n",
" <g transform=\"translate(163.33986 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 \n",
"L 3431 531 \n",
"L 3431 0 \n",
"L 469 0 \n",
"L 469 531 \n",
"Q 828 903 1448 1529 \n",
"Q 2069 2156 2228 2338 \n",
"Q 2531 2678 2651 2914 \n",
"Q 2772 3150 2772 3378 \n",
"Q 2772 3750 2511 3984 \n",
"Q 2250 4219 1831 4219 \n",
"Q 1534 4219 1204 4116 \n",
"Q 875 4013 500 3803 \n",
"L 500 4441 \n",
"Q 881 4594 1212 4672 \n",
"Q 1544 4750 1819 4750 \n",
"Q 2544 4750 2975 4387 \n",
"Q 3406 4025 3406 3419 \n",
"Q 3406 3131 3298 2873 \n",
"Q 3191 2616 2906 2266 \n",
"Q 2828 2175 2409 1742 \n",
"Q 1991 1309 1228 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-32\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"231.817388\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 30 -->\n",
" <g transform=\"translate(225.454888 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \n",
"Q 3050 2419 3304 2112 \n",
"Q 3559 1806 3559 1356 \n",
"Q 3559 666 3084 287 \n",
"Q 2609 -91 1734 -91 \n",
"Q 1441 -91 1130 -33 \n",
"Q 819 25 488 141 \n",
"L 488 750 \n",
"Q 750 597 1062 519 \n",
"Q 1375 441 1716 441 \n",
"Q 2309 441 2620 675 \n",
"Q 2931 909 2931 1356 \n",
"Q 2931 1769 2642 2001 \n",
"Q 2353 2234 1838 2234 \n",
"L 1294 2234 \n",
"L 1294 2753 \n",
"L 1863 2753 \n",
"Q 2328 2753 2575 2939 \n",
"Q 2822 3125 2822 3475 \n",
"Q 2822 3834 2567 4026 \n",
"Q 2313 4219 1838 4219 \n",
"Q 1578 4219 1281 4162 \n",
"Q 984 4106 628 3988 \n",
"L 628 4550 \n",
"Q 988 4650 1302 4700 \n",
"Q 1616 4750 1894 4750 \n",
"Q 2613 4750 3031 4423 \n",
"Q 3450 4097 3450 3541 \n",
"Q 3450 3153 3228 2886 \n",
"Q 3006 2619 2597 2516 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"293.932415\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 40 -->\n",
" <g transform=\"translate(287.569915 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \n",
"L 825 1625 \n",
"L 2419 1625 \n",
"L 2419 4116 \n",
"z\n",
"M 2253 4666 \n",
"L 3047 4666 \n",
"L 3047 1625 \n",
"L 3713 1625 \n",
"L 3713 1100 \n",
"L 3047 1100 \n",
"L 3047 0 \n",
"L 2419 0 \n",
"L 2419 1100 \n",
"L 313 1100 \n",
"L 313 1709 \n",
"L 2253 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mb158555793\" x=\"356.047443\" y=\"242.16\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 50 -->\n",
" <g transform=\"translate(349.684943 256.758437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 \n",
"L 3169 4666 \n",
"L 3169 4134 \n",
"L 1269 4134 \n",
"L 1269 2991 \n",
"Q 1406 3038 1543 3061 \n",
"Q 1681 3084 1819 3084 \n",
"Q 2600 3084 3056 2656 \n",
"Q 3513 2228 3513 1497 \n",
"Q 3513 744 3044 326 \n",
"Q 2575 -91 1722 -91 \n",
"Q 1428 -91 1123 -41 \n",
"Q 819 9 494 109 \n",
"L 494 744 \n",
"Q 775 591 1075 516 \n",
"Q 1375 441 1709 441 \n",
"Q 2250 441 2565 725 \n",
"Q 2881 1009 2881 1497 \n",
"Q 2881 1984 2565 2268 \n",
"Q 2250 2553 1709 2553 \n",
"Q 1456 2553 1204 2497 \n",
"Q 953 2441 691 2322 \n",
"L 691 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m55bddc0117\" d=\"M 0 0 \n",
"L -3.5 0 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m55bddc0117\" x=\"36.465625\" y=\"232.276364\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 0.00 -->\n",
" <g transform=\"translate(7.2 236.075582)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 \n",
"L 1344 794 \n",
"L 1344 0 \n",
"L 684 0 \n",
"L 684 794 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m55bddc0117\" x=\"36.465625\" y=\"190.331905\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 0.02 -->\n",
" <g transform=\"translate(7.2 194.131124)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use xlink:href=\"#m55bddc0117\" x=\"36.465625\" y=\"148.387447\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 0.04 -->\n",
" <g transform=\"translate(7.2 152.186665)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#m55bddc0117\" x=\"36.465625\" y=\"106.442988\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 0.06 -->\n",
" <g transform=\"translate(7.2 110.242207)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 \n",
"Q 1688 2584 1439 2293 \n",
"Q 1191 2003 1191 1497 \n",
"Q 1191 994 1439 701 \n",
"Q 1688 409 2113 409 \n",
"Q 2538 409 2786 701 \n",
"Q 3034 994 3034 1497 \n",
"Q 3034 2003 2786 2293 \n",
"Q 2538 2584 2113 2584 \n",
"z\n",
"M 3366 4563 \n",
"L 3366 3988 \n",
"Q 3128 4100 2886 4159 \n",
"Q 2644 4219 2406 4219 \n",
"Q 1781 4219 1451 3797 \n",
"Q 1122 3375 1075 2522 \n",
"Q 1259 2794 1537 2939 \n",
"Q 1816 3084 2150 3084 \n",
"Q 2853 3084 3261 2657 \n",
"Q 3669 2231 3669 1497 \n",
"Q 3669 778 3244 343 \n",
"Q 2819 -91 2113 -91 \n",
"Q 1303 -91 875 529 \n",
"Q 447 1150 447 2328 \n",
"Q 447 3434 972 4092 \n",
"Q 1497 4750 2381 4750 \n",
"Q 2619 4750 2861 4703 \n",
"Q 3103 4656 3366 4563 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use xlink:href=\"#m55bddc0117\" x=\"36.465625\" y=\"64.49853\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 0.08 -->\n",
" <g transform=\"translate(7.2 68.297748)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \n",
"Q 1584 2216 1326 1975 \n",
"Q 1069 1734 1069 1313 \n",
"Q 1069 891 1326 650 \n",
"Q 1584 409 2034 409 \n",
"Q 2484 409 2743 651 \n",
"Q 3003 894 3003 1313 \n",
"Q 3003 1734 2745 1975 \n",
"Q 2488 2216 2034 2216 \n",
"z\n",
"M 1403 2484 \n",
"Q 997 2584 770 2862 \n",
"Q 544 3141 544 3541 \n",
"Q 544 4100 942 4425 \n",
"Q 1341 4750 2034 4750 \n",
"Q 2731 4750 3128 4425 \n",
"Q 3525 4100 3525 3541 \n",
"Q 3525 3141 3298 2862 \n",
"Q 3072 2584 2669 2484 \n",
"Q 3125 2378 3379 2068 \n",
"Q 3634 1759 3634 1313 \n",
"Q 3634 634 3220 271 \n",
"Q 2806 -91 2034 -91 \n",
"Q 1263 -91 848 271 \n",
"Q 434 634 434 1313 \n",
"Q 434 1759 690 2068 \n",
"Q 947 2378 1403 2484 \n",
"z\n",
"M 1172 3481 \n",
"Q 1172 3119 1398 2916 \n",
"Q 1625 2713 2034 2713 \n",
"Q 2441 2713 2670 2916 \n",
"Q 2900 3119 2900 3481 \n",
"Q 2900 3844 2670 4047 \n",
"Q 2441 4250 2034 4250 \n",
"Q 1625 4250 1398 4047 \n",
"Q 1172 3844 1172 3481 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <path d=\"M 51.683807 232.276364 \n",
"L 54.758187 232.276364 \n",
"L 57.832567 232.276364 \n",
"L 60.906947 34.603636 \n",
"L 63.981327 53.233924 \n",
"L 67.055708 70.108341 \n",
"L 70.130088 85.392376 \n",
"L 73.204468 99.235919 \n",
"L 76.278848 111.774734 \n",
"L 79.353228 123.131789 \n",
"L 82.427608 133.418462 \n",
"L 85.501989 142.735636 \n",
"L 88.576369 151.174683 \n",
"L 91.650749 158.818366 \n",
"L 94.725129 165.741646 \n",
"L 97.799509 172.01242 \n",
"L 100.873889 177.692184 \n",
"L 103.94827 182.836642 \n",
"L 107.02265 187.496244 \n",
"L 110.09703 191.716687 \n",
"L 113.17141 195.539361 \n",
"L 116.24579 199.001755 \n",
"L 119.32017 202.137825 \n",
"L 122.394551 204.978327 \n",
"L 125.468931 207.551116 \n",
"L 128.543311 209.881425 \n",
"L 131.617691 211.992106 \n",
"L 134.692071 213.90386 \n",
"L 137.766451 215.635434 \n",
"L 140.840832 217.203811 \n",
"L 143.915212 218.624371 \n",
"L 146.989592 219.911046 \n",
"L 150.063972 221.076454 \n",
"L 153.138352 222.132025 \n",
"L 156.212732 223.08811 \n",
"L 159.287113 223.954086 \n",
"L 162.361493 224.738445 \n",
"L 165.435873 225.44888 \n",
"L 168.510253 226.092357 \n",
"L 171.584633 226.675189 \n",
"L 174.659013 227.203089 \n",
"L 177.733394 227.681236 \n",
"L 180.807774 228.114318 \n",
"L 183.882154 228.506583 \n",
"L 186.956534 228.861878 \n",
"L 190.030914 229.183687 \n",
"L 193.105294 229.475166 \n",
"L 196.179675 229.739174 \n",
"L 199.254055 229.978299 \n",
"L 202.328435 230.194887 \n",
"L 205.402815 230.391063 \n",
"L 208.477195 230.568749 \n",
"L 211.551575 230.729688 \n",
"L 214.625956 230.87546 \n",
"L 217.700336 231.007492 \n",
"L 220.774716 231.127081 \n",
"L 223.849096 231.235399 \n",
"L 226.923476 231.333508 \n",
"L 229.997856 231.42237 \n",
"L 233.072237 231.502857 \n",
"L 236.146617 231.575759 \n",
"L 239.220997 231.64179 \n",
"L 242.295377 231.701597 \n",
"L 245.369757 231.755768 \n",
"L 248.444137 231.804833 \n",
"L 251.518518 231.849274 \n",
"L 254.592898 231.889526 \n",
"L 257.667278 231.925985 \n",
"L 260.741658 231.959007 \n",
"L 263.816038 231.988918 \n",
"L 266.890418 232.016009 \n",
"L 269.964799 232.040547 \n",
"L 273.039179 232.062772 \n",
"L 276.113559 232.082903 \n",
"L 279.187939 232.101136 \n",
"L 282.262319 232.117651 \n",
"L 285.336699 232.132609 \n",
"L 288.41108 232.146158 \n",
"L 291.48546 232.15843 \n",
"L 294.55984 232.169545 \n",
"L 297.63422 232.179612 \n",
"L 300.7086 232.188731 \n",
"L 303.78298 232.19699 \n",
"L 306.857361 232.204471 \n",
"L 309.931741 232.211247 \n",
"L 313.006121 232.217384 \n",
"L 316.080501 232.222943 \n",
"L 319.154881 232.227977 \n",
"L 322.229261 232.232538 \n",
"L 325.303642 232.236668 \n",
"L 328.378022 232.240409 \n",
"L 331.452402 232.243798 \n",
"L 334.526782 232.246867 \n",
"L 337.601162 232.249647 \n",
"L 340.675542 232.252165 \n",
"L 343.749923 232.254446 \n",
"L 346.824303 232.256512 \n",
"L 349.898683 232.258383 \n",
"L 352.973063 232.260077 \n",
"L 356.047443 232.261612 \n",
"\" clip-path=\"url(#p567a3dbe13)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 36.465625 242.16 \n",
"L 36.465625 24.72 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 371.265625 242.16 \n",
"L 371.265625 24.72 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 36.465625 242.16 \n",
"L 371.265625 242.16 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 36.465625 24.72 \n",
"L 371.265625 24.72 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- Prior: $\\frac{1}{5}exp(\\frac{x - 2}{5}$) -->\n",
" <g transform=\"translate(155.805625 18.72)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-50\" d=\"M 1259 4147 \n",
"L 1259 2394 \n",
"L 2053 2394 \n",
"Q 2494 2394 2734 2622 \n",
"Q 2975 2850 2975 3272 \n",
"Q 2975 3691 2734 3919 \n",
"Q 2494 4147 2053 4147 \n",
"L 1259 4147 \n",
"z\n",
"M 628 4666 \n",
"L 2053 4666 \n",
"Q 2838 4666 3239 4311 \n",
"Q 3641 3956 3641 3272 \n",
"Q 3641 2581 3239 2228 \n",
"Q 2838 1875 2053 1875 \n",
"L 1259 1875 \n",
"L 1259 0 \n",
"L 628 0 \n",
"L 628 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \n",
"Q 2534 3019 2420 3045 \n",
"Q 2306 3072 2169 3072 \n",
"Q 1681 3072 1420 2755 \n",
"Q 1159 2438 1159 1844 \n",
"L 1159 0 \n",
"L 581 0 \n",
"L 581 3500 \n",
"L 1159 3500 \n",
"L 1159 2956 \n",
"Q 1341 3275 1631 3429 \n",
"Q 1922 3584 2338 3584 \n",
"Q 2397 3584 2469 3576 \n",
"Q 2541 3569 2628 3553 \n",
"L 2631 2963 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-69\" d=\"M 603 3500 \n",
"L 1178 3500 \n",
"L 1178 0 \n",
"L 603 0 \n",
"L 603 3500 \n",
"z\n",
"M 603 4863 \n",
"L 1178 4863 \n",
"L 1178 4134 \n",
"L 603 4134 \n",
"L 603 4863 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 \n",
"Q 1497 3097 1228 2736 \n",
"Q 959 2375 959 1747 \n",
"Q 959 1119 1226 758 \n",
"Q 1494 397 1959 397 \n",
"Q 2419 397 2687 759 \n",
"Q 2956 1122 2956 1747 \n",
"Q 2956 2369 2687 2733 \n",
"Q 2419 3097 1959 3097 \n",
"z\n",
"M 1959 3584 \n",
"Q 2709 3584 3137 3096 \n",
"Q 3566 2609 3566 1747 \n",
"Q 3566 888 3137 398 \n",
"Q 2709 -91 1959 -91 \n",
"Q 1206 -91 779 398 \n",
"Q 353 888 353 1747 \n",
"Q 353 2609 779 3096 \n",
"Q 1206 3584 1959 3584 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3a\" d=\"M 750 794 \n",
"L 1409 794 \n",
"L 1409 0 \n",
"L 750 0 \n",
"L 750 794 \n",
"z\n",
"M 750 3309 \n",
"L 1409 3309 \n",
"L 1409 2516 \n",
"L 750 2516 \n",
"L 750 3309 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-65\" d=\"M 3078 2063 \n",
"Q 3088 2113 3092 2166 \n",
"Q 3097 2219 3097 2272 \n",
"Q 3097 2653 2873 2875 \n",
"Q 2650 3097 2266 3097 \n",
"Q 1838 3097 1509 2826 \n",
"Q 1181 2556 1013 2059 \n",
"L 3078 2063 \n",
"z\n",
"M 3578 1613 \n",
"L 903 1613 \n",
"Q 884 1494 878 1425 \n",
"Q 872 1356 872 1306 \n",
"Q 872 872 1139 634 \n",
"Q 1406 397 1894 397 \n",
"Q 2269 397 2603 481 \n",
"Q 2938 566 3225 728 \n",
"L 3116 159 \n",
"Q 2806 34 2476 -28 \n",
"Q 2147 -91 1806 -91 \n",
"Q 1078 -91 686 257 \n",
"Q 294 606 294 1247 \n",
"Q 294 1794 489 2264 \n",
"Q 684 2734 1063 3103 \n",
"Q 1306 3334 1642 3459 \n",
"Q 1978 3584 2356 3584 \n",
"Q 2950 3584 3301 3228 \n",
"Q 3653 2872 3653 2272 \n",
"Q 3653 2128 3634 1964 \n",
"Q 3616 1800 3578 1613 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-78\" d=\"M 3841 3500 \n",
"L 2234 1784 \n",
"L 3219 0 \n",
"L 2559 0 \n",
"L 1819 1388 \n",
"L 531 0 \n",
"L -166 0 \n",
"L 1556 1844 \n",
"L 641 3500 \n",
"L 1300 3500 \n",
"L 1972 2234 \n",
"L 3144 3500 \n",
"L 3841 3500 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-70\" d=\"M 3175 2156 \n",
"Q 3175 2616 2975 2859 \n",
"Q 2775 3103 2400 3103 \n",
"Q 2144 3103 1911 2972 \n",
"Q 1678 2841 1497 2591 \n",
"Q 1319 2344 1212 1994 \n",
"Q 1106 1644 1106 1300 \n",
"Q 1106 863 1306 627 \n",
"Q 1506 391 1875 391 \n",
"Q 2147 391 2380 519 \n",
"Q 2613 647 2778 891 \n",
"Q 2956 1147 3065 1494 \n",
"Q 3175 1841 3175 2156 \n",
"z\n",
"M 1394 2969 \n",
"Q 1625 3272 1939 3428 \n",
"Q 2253 3584 2638 3584 \n",
"Q 3175 3584 3472 3232 \n",
"Q 3769 2881 3769 2247 \n",
"Q 3769 1728 3584 1258 \n",
"Q 3400 788 3053 416 \n",
"Q 2822 169 2531 39 \n",
"Q 2241 -91 1919 -91 \n",
"Q 1547 -91 1294 64 \n",
"Q 1041 219 916 525 \n",
"L 556 -1331 \n",
"L -19 -1331 \n",
"L 922 3500 \n",
"L 1497 3500 \n",
"L 1394 2969 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-28\" d=\"M 1984 4856 \n",
"Q 1566 4138 1362 3434 \n",
"Q 1159 2731 1159 2009 \n",
"Q 1159 1288 1364 580 \n",
"Q 1569 -128 1984 -844 \n",
"L 1484 -844 \n",
"Q 1016 -109 783 600 \n",
"Q 550 1309 550 2009 \n",
"Q 550 2706 781 3412 \n",
"Q 1013 4119 1484 4856 \n",
"L 1984 4856 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2212\" d=\"M 678 2272 \n",
"L 4684 2272 \n",
"L 4684 1741 \n",
"L 678 1741 \n",
"L 678 2272 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-29\" d=\"M 513 4856 \n",
"L 1013 4856 \n",
"Q 1481 4119 1714 3412 \n",
"Q 1947 2706 1947 2009 \n",
"Q 1947 1309 1714 600 \n",
"Q 1481 -109 1013 -844 \n",
"L 513 -844 \n",
"Q 928 -128 1133 580 \n",
"Q 1338 1288 1338 2009 \n",
"Q 1338 2731 1133 3434 \n",
"Q 928 4138 513 4856 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-50\" transform=\"translate(0 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(60.302734 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(101.416016 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(129.199219 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(190.380859 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3a\" transform=\"translate(231.494141 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(265.185547 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(296.972656 44.046875)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(296.972656 -38.2375)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-65\" transform=\"translate(354.008789 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-78\" transform=\"translate(415.532227 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-70\" transform=\"translate(474.711914 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-28\" transform=\"translate(538.188477 0.25)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-78\" transform=\"translate(577.202148 44.046875)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2212\" transform=\"translate(632.265625 44.046875)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(704.555664 44.046875)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(641.202148 -38.2375)scale(0.7)\"/>\n",
" <use xlink:href=\"#DejaVuSans-29\" transform=\"translate(761.591797 0.25)\"/>\n",
" <path d=\"M 296.972656 19.046875 \n",
"L 296.972656 25.296875 \n",
"L 341.508789 25.296875 \n",
"L 341.508789 19.046875 \n",
"L 296.972656 19.046875 \n",
"z\n",
"\"/>\n",
" <path d=\"M 577.202148 19.046875 \n",
"L 577.202148 25.296875 \n",
"L 749.091797 25.296875 \n",
"L 749.091797 19.046875 \n",
"L 577.202148 19.046875 \n",
"z\n",
"\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"legend_1\">\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 312.765625 47.398125 \n",
"L 364.265625 47.398125 \n",
"Q 366.265625 47.398125 366.265625 45.398125 \n",
"L 366.265625 31.72 \n",
"Q 366.265625 29.72 364.265625 29.72 \n",
"L 312.765625 29.72 \n",
"Q 310.765625 29.72 310.765625 31.72 \n",
"L 310.765625 45.398125 \n",
"Q 310.765625 47.398125 312.765625 47.398125 \n",
"z\n",
"\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 314.765625 37.818437 \n",
"L 324.765625 37.818437 \n",
"L 334.765625 37.818437 \n",
"\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- P($\\nu$) -->\n",
" <g transform=\"translate(342.765625 41.318437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-Oblique-3bd\" d=\"M 959 0 \n",
"L 572 3500 \n",
"L 1191 3500 \n",
"L 1522 563 \n",
"Q 1972 950 2391 1488 \n",
"Q 2706 1891 2788 2241 \n",
"Q 2825 2406 2809 2719 \n",
"Q 2794 3091 2544 3500 \n",
"L 3125 3500 \n",
"L 3125 3500 \n",
"Q 3288 3222 3353 2834 \n",
"Q 3416 2478 3369 2234 \n",
"Q 3250 1622 2719 1075 \n",
"Q 2025 363 1572 0 \n",
"L 959 0 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-50\" transform=\"translate(0 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-28\" transform=\"translate(60.302734 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bd\" transform=\"translate(99.316406 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-29\" transform=\"translate(155.175781 0.125)\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p567a3dbe13\">\n",
" <rect x=\"36.465625\" y=\"24.72\" width=\"334.8\" height=\"217.44\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"loc_, scale_ = 2, 5\n",
"x_nu, y_nu = normalize_(scipy.stats.expon,pmin_nu,pmax_nu,NB_,loc=loc_, scale=scale_)\n",
"plot(x_nu,y_nu)\n",
"title(r\"Prior: $\\frac{1}{%s}exp(\\frac{x - %s}{%s}$)\" % (scale_, loc_, scale_))\n",
"legend([r\"P($\\nu$)\"],loc='best');"
]
},
{
"cell_type": "code",
"execution_count": 37,
"id": "153851c4-52e1-4f7c-b4e3-f0de5d7bbb70",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"391.190625pt\" height=\"263.638125pt\" viewBox=\"0 0 391.190625 263.638125\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n",
" <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:11:18.141491</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 263.638125 \n",
"L 391.190625 263.638125 \n",
"L 391.190625 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 49.190625 239.76 \n",
"L 383.990625 239.76 \n",
"L 383.990625 22.32 \n",
"L 49.190625 22.32 \n",
"z\n",
"\" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path id=\"m2e9e51fb42\" d=\"M 0 0 \n",
"L 0 3.5 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"64.103833\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0.0 -->\n",
" <g transform=\"translate(56.152271 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \n",
"Q 1547 4250 1301 3770 \n",
"Q 1056 3291 1056 2328 \n",
"Q 1056 1369 1301 889 \n",
"Q 1547 409 2034 409 \n",
"Q 2525 409 2770 889 \n",
"Q 3016 1369 3016 2328 \n",
"Q 3016 3291 2770 3770 \n",
"Q 2525 4250 2034 4250 \n",
"z\n",
"M 2034 4750 \n",
"Q 2819 4750 3233 4129 \n",
"Q 3647 3509 3647 2328 \n",
"Q 3647 1150 3233 529 \n",
"Q 2819 -91 2034 -91 \n",
"Q 1250 -91 836 529 \n",
"Q 422 1150 422 2328 \n",
"Q 422 3509 836 4129 \n",
"Q 1250 4750 2034 4750 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 \n",
"L 1344 794 \n",
"L 1344 0 \n",
"L 684 0 \n",
"L 684 794 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"125.09855\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0.2 -->\n",
" <g transform=\"translate(117.146987 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 \n",
"L 3431 531 \n",
"L 3431 0 \n",
"L 469 0 \n",
"L 469 531 \n",
"Q 828 903 1448 1529 \n",
"Q 2069 2156 2228 2338 \n",
"Q 2531 2678 2651 2914 \n",
"Q 2772 3150 2772 3378 \n",
"Q 2772 3750 2511 3984 \n",
"Q 2250 4219 1831 4219 \n",
"Q 1534 4219 1204 4116 \n",
"Q 875 4013 500 3803 \n",
"L 500 4441 \n",
"Q 881 4594 1212 4672 \n",
"Q 1544 4750 1819 4750 \n",
"Q 2544 4750 2975 4387 \n",
"Q 3406 4025 3406 3419 \n",
"Q 3406 3131 3298 2873 \n",
"Q 3191 2616 2906 2266 \n",
"Q 2828 2175 2409 1742 \n",
"Q 1991 1309 1228 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"186.093267\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 0.4 -->\n",
" <g transform=\"translate(178.141704 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \n",
"L 825 1625 \n",
"L 2419 1625 \n",
"L 2419 4116 \n",
"z\n",
"M 2253 4666 \n",
"L 3047 4666 \n",
"L 3047 1625 \n",
"L 3713 1625 \n",
"L 3713 1100 \n",
"L 3047 1100 \n",
"L 3047 0 \n",
"L 2419 0 \n",
"L 2419 1100 \n",
"L 313 1100 \n",
"L 313 1709 \n",
"L 2253 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"247.087983\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 0.6 -->\n",
" <g transform=\"translate(239.136421 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 \n",
"Q 1688 2584 1439 2293 \n",
"Q 1191 2003 1191 1497 \n",
"Q 1191 994 1439 701 \n",
"Q 1688 409 2113 409 \n",
"Q 2538 409 2786 701 \n",
"Q 3034 994 3034 1497 \n",
"Q 3034 2003 2786 2293 \n",
"Q 2538 2584 2113 2584 \n",
"z\n",
"M 3366 4563 \n",
"L 3366 3988 \n",
"Q 3128 4100 2886 4159 \n",
"Q 2644 4219 2406 4219 \n",
"Q 1781 4219 1451 3797 \n",
"Q 1122 3375 1075 2522 \n",
"Q 1259 2794 1537 2939 \n",
"Q 1816 3084 2150 3084 \n",
"Q 2853 3084 3261 2657 \n",
"Q 3669 2231 3669 1497 \n",
"Q 3669 778 3244 343 \n",
"Q 2819 -91 2113 -91 \n",
"Q 1303 -91 875 529 \n",
"Q 447 1150 447 2328 \n",
"Q 447 3434 972 4092 \n",
"Q 1497 4750 2381 4750 \n",
"Q 2619 4750 2861 4703 \n",
"Q 3103 4656 3366 4563 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"308.0827\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 0.8 -->\n",
" <g transform=\"translate(300.131138 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \n",
"Q 1584 2216 1326 1975 \n",
"Q 1069 1734 1069 1313 \n",
"Q 1069 891 1326 650 \n",
"Q 1584 409 2034 409 \n",
"Q 2484 409 2743 651 \n",
"Q 3003 894 3003 1313 \n",
"Q 3003 1734 2745 1975 \n",
"Q 2488 2216 2034 2216 \n",
"z\n",
"M 1403 2484 \n",
"Q 997 2584 770 2862 \n",
"Q 544 3141 544 3541 \n",
"Q 544 4100 942 4425 \n",
"Q 1341 4750 2034 4750 \n",
"Q 2731 4750 3128 4425 \n",
"Q 3525 4100 3525 3541 \n",
"Q 3525 3141 3298 2862 \n",
"Q 3072 2584 2669 2484 \n",
"Q 3125 2378 3379 2068 \n",
"Q 3634 1759 3634 1313 \n",
"Q 3634 634 3220 271 \n",
"Q 2806 -91 2034 -91 \n",
"Q 1263 -91 848 271 \n",
"Q 434 634 434 1313 \n",
"Q 434 1759 690 2068 \n",
"Q 947 2378 1403 2484 \n",
"z\n",
"M 1172 3481 \n",
"Q 1172 3119 1398 2916 \n",
"Q 1625 2713 2034 2713 \n",
"Q 2441 2713 2670 2916 \n",
"Q 2900 3119 2900 3481 \n",
"Q 2900 3844 2670 4047 \n",
"Q 2441 4250 2034 4250 \n",
"Q 1625 4250 1398 4047 \n",
"Q 1172 3844 1172 3481 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m2e9e51fb42\" x=\"369.077417\" y=\"239.76\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 1.0 -->\n",
" <g transform=\"translate(361.125854 254.358438)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 \n",
"L 1825 531 \n",
"L 1825 4091 \n",
"L 703 3866 \n",
"L 703 4441 \n",
"L 1819 4666 \n",
"L 2450 4666 \n",
"L 2450 531 \n",
"L 3481 531 \n",
"L 3481 0 \n",
"L 794 0 \n",
"L 794 531 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"mb4ef67dae5\" d=\"M 0 0 \n",
"L -3.5 0 \n",
"\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mb4ef67dae5\" x=\"49.190625\" y=\"210.109091\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 0.0096 -->\n",
" <g transform=\"translate(7.2 213.90831)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 \n",
"L 703 672 \n",
"Q 941 559 1184 500 \n",
"Q 1428 441 1663 441 \n",
"Q 2288 441 2617 861 \n",
"Q 2947 1281 2994 2138 \n",
"Q 2813 1869 2534 1725 \n",
"Q 2256 1581 1919 1581 \n",
"Q 1219 1581 811 2004 \n",
"Q 403 2428 403 3163 \n",
"Q 403 3881 828 4315 \n",
"Q 1253 4750 1959 4750 \n",
"Q 2769 4750 3195 4129 \n",
"Q 3622 3509 3622 2328 \n",
"Q 3622 1225 3098 567 \n",
"Q 2575 -91 1691 -91 \n",
"Q 1453 -91 1209 -44 \n",
"Q 966 3 703 97 \n",
"z\n",
"M 1959 2075 \n",
"Q 2384 2075 2632 2365 \n",
"Q 2881 2656 2881 3163 \n",
"Q 2881 3666 2632 3958 \n",
"Q 2384 4250 1959 4250 \n",
"Q 1534 4250 1286 3958 \n",
"Q 1038 3666 1038 3163 \n",
"Q 1038 2656 1286 2365 \n",
"Q 1534 2075 1959 2075 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#mb4ef67dae5\" x=\"49.190625\" y=\"170.574545\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 0.0098 -->\n",
" <g transform=\"translate(7.2 174.373764)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use xlink:href=\"#mb4ef67dae5\" x=\"49.190625\" y=\"131.04\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 0.0100 -->\n",
" <g transform=\"translate(7.2 134.839219)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#mb4ef67dae5\" x=\"49.190625\" y=\"91.505455\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 0.0102 -->\n",
" <g transform=\"translate(7.2 95.304673)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use xlink:href=\"#mb4ef67dae5\" x=\"49.190625\" y=\"51.970909\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 0.0104 -->\n",
" <g transform=\"translate(7.2 55.770128)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <path d=\"M 64.408807 131.04 \n",
"L 67.483187 131.04 \n",
"L 70.557567 131.04 \n",
"L 73.631947 131.04 \n",
"L 76.706327 131.04 \n",
"L 79.780708 131.04 \n",
"L 82.855088 131.04 \n",
"L 85.929468 131.04 \n",
"L 89.003848 131.04 \n",
"L 92.078228 131.04 \n",
"L 95.152608 131.04 \n",
"L 98.226989 131.04 \n",
"L 101.301369 131.04 \n",
"L 104.375749 131.04 \n",
"L 107.450129 131.04 \n",
"L 110.524509 131.04 \n",
"L 113.598889 131.04 \n",
"L 116.67327 131.04 \n",
"L 119.74765 131.04 \n",
"L 122.82203 131.04 \n",
"L 125.89641 131.04 \n",
"L 128.97079 131.04 \n",
"L 132.04517 131.04 \n",
"L 135.119551 131.04 \n",
"L 138.193931 131.04 \n",
"L 141.268311 131.04 \n",
"L 144.342691 131.04 \n",
"L 147.417071 131.04 \n",
"L 150.491451 131.04 \n",
"L 153.565832 131.04 \n",
"L 156.640212 131.04 \n",
"L 159.714592 131.04 \n",
"L 162.788972 131.04 \n",
"L 165.863352 131.04 \n",
"L 168.937732 131.04 \n",
"L 172.012113 131.04 \n",
"L 175.086493 131.04 \n",
"L 178.160873 131.04 \n",
"L 181.235253 131.04 \n",
"L 184.309633 131.04 \n",
"L 187.384013 131.04 \n",
"L 190.458394 131.04 \n",
"L 193.532774 131.04 \n",
"L 196.607154 131.04 \n",
"L 199.681534 131.04 \n",
"L 202.755914 131.04 \n",
"L 205.830294 131.04 \n",
"L 208.904675 131.04 \n",
"L 211.979055 131.04 \n",
"L 215.053435 131.04 \n",
"L 218.127815 131.04 \n",
"L 221.202195 131.04 \n",
"L 224.276575 131.04 \n",
"L 227.350956 131.04 \n",
"L 230.425336 131.04 \n",
"L 233.499716 131.04 \n",
"L 236.574096 131.04 \n",
"L 239.648476 131.04 \n",
"L 242.722856 131.04 \n",
"L 245.797237 131.04 \n",
"L 248.871617 131.04 \n",
"L 251.945997 131.04 \n",
"L 255.020377 131.04 \n",
"L 258.094757 131.04 \n",
"L 261.169137 131.04 \n",
"L 264.243518 131.04 \n",
"L 267.317898 131.04 \n",
"L 270.392278 131.04 \n",
"L 273.466658 131.04 \n",
"L 276.541038 131.04 \n",
"L 279.615418 131.04 \n",
"L 282.689799 131.04 \n",
"L 285.764179 131.04 \n",
"L 288.838559 131.04 \n",
"L 291.912939 131.04 \n",
"L 294.987319 131.04 \n",
"L 298.061699 131.04 \n",
"L 301.13608 131.04 \n",
"L 304.21046 131.04 \n",
"L 307.28484 131.04 \n",
"L 310.35922 131.04 \n",
"L 313.4336 131.04 \n",
"L 316.50798 131.04 \n",
"L 319.582361 131.04 \n",
"L 322.656741 131.04 \n",
"L 325.731121 131.04 \n",
"L 328.805501 131.04 \n",
"L 331.879881 131.04 \n",
"L 334.954261 131.04 \n",
"L 338.028642 131.04 \n",
"L 341.103022 131.04 \n",
"L 344.177402 131.04 \n",
"L 347.251782 131.04 \n",
"L 350.326162 131.04 \n",
"L 353.400542 131.04 \n",
"L 356.474923 131.04 \n",
"L 359.549303 131.04 \n",
"L 362.623683 131.04 \n",
"L 365.698063 131.04 \n",
"L 368.772443 131.04 \n",
"\" clip-path=\"url(#pd4d42bfb44)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 49.190625 239.76 \n",
"L 49.190625 22.32 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 383.990625 239.76 \n",
"L 383.990625 22.32 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 49.190625 239.76 \n",
"L 383.990625 239.76 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 49.190625 22.32 \n",
"L 383.990625 22.32 \n",
"\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- Prior: $\\mu$ -->\n",
" <g transform=\"translate(194.930625 16.32)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-50\" d=\"M 1259 4147 \n",
"L 1259 2394 \n",
"L 2053 2394 \n",
"Q 2494 2394 2734 2622 \n",
"Q 2975 2850 2975 3272 \n",
"Q 2975 3691 2734 3919 \n",
"Q 2494 4147 2053 4147 \n",
"L 1259 4147 \n",
"z\n",
"M 628 4666 \n",
"L 2053 4666 \n",
"Q 2838 4666 3239 4311 \n",
"Q 3641 3956 3641 3272 \n",
"Q 3641 2581 3239 2228 \n",
"Q 2838 1875 2053 1875 \n",
"L 1259 1875 \n",
"L 1259 0 \n",
"L 628 0 \n",
"L 628 4666 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \n",
"Q 2534 3019 2420 3045 \n",
"Q 2306 3072 2169 3072 \n",
"Q 1681 3072 1420 2755 \n",
"Q 1159 2438 1159 1844 \n",
"L 1159 0 \n",
"L 581 0 \n",
"L 581 3500 \n",
"L 1159 3500 \n",
"L 1159 2956 \n",
"Q 1341 3275 1631 3429 \n",
"Q 1922 3584 2338 3584 \n",
"Q 2397 3584 2469 3576 \n",
"Q 2541 3569 2628 3553 \n",
"L 2631 2963 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-69\" d=\"M 603 3500 \n",
"L 1178 3500 \n",
"L 1178 0 \n",
"L 603 0 \n",
"L 603 3500 \n",
"z\n",
"M 603 4863 \n",
"L 1178 4863 \n",
"L 1178 4134 \n",
"L 603 4134 \n",
"L 603 4863 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 \n",
"Q 1497 3097 1228 2736 \n",
"Q 959 2375 959 1747 \n",
"Q 959 1119 1226 758 \n",
"Q 1494 397 1959 397 \n",
"Q 2419 397 2687 759 \n",
"Q 2956 1122 2956 1747 \n",
"Q 2956 2369 2687 2733 \n",
"Q 2419 3097 1959 3097 \n",
"z\n",
"M 1959 3584 \n",
"Q 2709 3584 3137 3096 \n",
"Q 3566 2609 3566 1747 \n",
"Q 3566 888 3137 398 \n",
"Q 2709 -91 1959 -91 \n",
"Q 1206 -91 779 398 \n",
"Q 353 888 353 1747 \n",
"Q 353 2609 779 3096 \n",
"Q 1206 3584 1959 3584 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3a\" d=\"M 750 794 \n",
"L 1409 794 \n",
"L 1409 0 \n",
"L 750 0 \n",
"L 750 794 \n",
"z\n",
"M 750 3309 \n",
"L 1409 3309 \n",
"L 1409 2516 \n",
"L 750 2516 \n",
"L 750 3309 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-3bc\" d=\"M -84 -1331 \n",
"L 856 3500 \n",
"L 1434 3500 \n",
"L 1009 1322 \n",
"Q 997 1256 987 1175 \n",
"Q 978 1094 978 1013 \n",
"Q 978 722 1161 565 \n",
"Q 1344 409 1684 409 \n",
"Q 2147 409 2431 671 \n",
"Q 2716 934 2816 1459 \n",
"L 3213 3500 \n",
"L 3788 3500 \n",
"L 3266 809 \n",
"Q 3253 750 3248 706 \n",
"Q 3244 663 3244 628 \n",
"Q 3244 531 3283 486 \n",
"Q 3322 441 3406 441 \n",
"Q 3438 441 3492 456 \n",
"Q 3547 472 3647 513 \n",
"L 3559 50 \n",
"Q 3422 -19 3297 -55 \n",
"Q 3172 -91 3053 -91 \n",
"Q 2847 -91 2730 40 \n",
"Q 2613 172 2613 403 \n",
"Q 2438 153 2195 31 \n",
"Q 1953 -91 1625 -91 \n",
"Q 1334 -91 1117 43 \n",
"Q 900 178 831 397 \n",
"L 494 -1331 \n",
"L -84 -1331 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-50\" transform=\"translate(0 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(60.302734 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(101.416016 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(129.199219 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(190.380859 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3a\" transform=\"translate(231.494141 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(265.185547 0.015625)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bc\" transform=\"translate(296.972656 0.015625)\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"legend_1\">\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 325.490625 44.998125 \n",
"L 376.990625 44.998125 \n",
"Q 378.990625 44.998125 378.990625 42.998125 \n",
"L 378.990625 29.32 \n",
"Q 378.990625 27.32 376.990625 27.32 \n",
"L 325.490625 27.32 \n",
"Q 323.490625 27.32 323.490625 29.32 \n",
"L 323.490625 42.998125 \n",
"Q 323.490625 44.998125 325.490625 44.998125 \n",
"z\n",
"\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 327.490625 35.418437 \n",
"L 337.490625 35.418437 \n",
"L 347.490625 35.418437 \n",
"\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- P($\\nu$) -->\n",
" <g transform=\"translate(355.490625 38.918437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-28\" d=\"M 1984 4856 \n",
"Q 1566 4138 1362 3434 \n",
"Q 1159 2731 1159 2009 \n",
"Q 1159 1288 1364 580 \n",
"Q 1569 -128 1984 -844 \n",
"L 1484 -844 \n",
"Q 1016 -109 783 600 \n",
"Q 550 1309 550 2009 \n",
"Q 550 2706 781 3412 \n",
"Q 1013 4119 1484 4856 \n",
"L 1984 4856 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-3bd\" d=\"M 959 0 \n",
"L 572 3500 \n",
"L 1191 3500 \n",
"L 1522 563 \n",
"Q 1972 950 2391 1488 \n",
"Q 2706 1891 2788 2241 \n",
"Q 2825 2406 2809 2719 \n",
"Q 2794 3091 2544 3500 \n",
"L 3125 3500 \n",
"L 3125 3500 \n",
"Q 3288 3222 3353 2834 \n",
"Q 3416 2478 3369 2234 \n",
"Q 3250 1622 2719 1075 \n",
"Q 2025 363 1572 0 \n",
"L 959 0 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-29\" d=\"M 513 4856 \n",
"L 1013 4856 \n",
"Q 1481 4119 1714 3412 \n",
"Q 1947 2706 1947 2009 \n",
"Q 1947 1309 1714 600 \n",
"Q 1481 -109 1013 -844 \n",
"L 513 -844 \n",
"Q 928 -128 1133 580 \n",
"Q 1338 1288 1338 2009 \n",
"Q 1338 2731 1133 3434 \n",
"Q 928 4138 513 4856 \n",
"z\n",
"\" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-50\" transform=\"translate(0 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-28\" transform=\"translate(60.302734 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bd\" transform=\"translate(99.316406 0.125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-29\" transform=\"translate(155.175781 0.125)\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pd4d42bfb44\">\n",
" <rect x=\"49.190625\" y=\"22.32\" width=\"334.8\" height=\"217.44\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"x_mu, y_mu = normalize_(scipy.stats.uniform,pmin_mu,pmax_mu,NB_,)\n",
"plot(x_mu,y_mu)\n",
"title(r\"Prior: $\\mu$\")\n",
"legend([r\"P($\\nu$)\"],loc='best');"
]
},
{
"cell_type": "code",
"execution_count": 38,
"id": "7a110339-3f66-4959-9dda-e1ca90f3c94d",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"BN{nodes: 19, arcs: 18, domainSize: 10^10.8165, dim: 1003400}\n"
]
},
{
"data": {
"text/html": [
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"864pt\" height=\"137pt\" viewBox=\"0.00 0.00 864.00 136.78\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(.7275 .7275) rotate(0) translate(4 184)\">\n",
"<title>G</title>\n",
"<!-- H14 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>H14</title>\n",
"<g id=\"a_node1\"><a xlink:title=\"(17) H14\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"30.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"30.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H14</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>H1</title>\n",
"<g id=\"a_node2\"><a xlink:title=\"(4) H1\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"106.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"106.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H1</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H5 -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>H5</title>\n",
"<g id=\"a_node3\"><a xlink:title=\"(8) H5\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"178.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"178.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H5</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H2 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>H2</title>\n",
"<g id=\"a_node4\"><a xlink:title=\"(5) H2\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"250.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"250.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H2</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H7 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>H7</title>\n",
"<g id=\"a_node5\"><a xlink:title=\"(10) H7\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"322.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"322.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H7</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H9 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>H9</title>\n",
"<g id=\"a_node6\"><a xlink:title=\"(12) H9\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"394.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"394.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H9</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- nu -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>nu</title>\n",
"<g id=\"a_node7\"><a xlink:title=\"(1) nu\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"545.5473\" cy=\"-162\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"545.5473\" y=\"-158.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">nu</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>bias</title>\n",
"<g id=\"a_node15\"><a xlink:title=\"(2) bias\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"581.5473\" cy=\"-90\" rx=\"29.795\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"581.5473\" y=\"-86.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">bias</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- nu&#45;&gt;bias -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>nu-&gt;bias</title>\n",
"<g id=\"a_edge3\"><a xlink:title=\"(1, 2) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M554.2619,-144.5708C558.507,-136.0807 563.7009,-125.6929 568.4136,-116.2674\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"571.5713,-117.7782 572.9129,-107.2687 565.3103,-114.6477 571.5713,-117.7782\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- mu -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>mu</title>\n",
"<g id=\"a_node8\"><a xlink:title=\"(0) mu\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"617.5473\" cy=\"-162\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"617.5473\" y=\"-158.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">mu</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- mu&#45;&gt;bias -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>mu-&gt;bias</title>\n",
"<g id=\"a_edge11\"><a xlink:title=\"(0, 2) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M608.8327,-144.5708C604.5876,-136.0807 599.3937,-125.6929 594.681,-116.2674\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"597.7843,-114.6477 590.1816,-107.2687 591.5233,-117.7782 597.7843,-114.6477\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H6 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>H6</title>\n",
"<g id=\"a_node9\"><a xlink:title=\"(9) H6\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"466.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"466.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H6</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H12 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>H12</title>\n",
"<g id=\"a_node10\"><a xlink:title=\"(15) H12\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"542.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"542.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H12</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H15 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>H15</title>\n",
"<g id=\"a_node11\"><a xlink:title=\"(18) H15\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"621.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"621.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H15</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H13 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>H13</title>\n",
"<g id=\"a_node12\"><a xlink:title=\"(16) H13\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"700.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"700.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H13</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H0 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>H0</title>\n",
"<g id=\"a_node13\"><a xlink:title=\"(3) H0\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"776.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"776.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H0</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H11 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>H11</title>\n",
"<g id=\"a_node14\"><a xlink:title=\"(14) H11\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"852.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"852.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H11</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H14 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>bias-&gt;H14</title>\n",
"<g id=\"a_edge4\"><a xlink:title=\"(2, 17) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M551.5733,-88.0845C456.4866,-81.8117 162.4771,-60.8563 70.5473,-36 68.103,-35.3391 65.6189,-34.5462 63.1465,-33.6668\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"64.3637,-30.3843 53.7781,-29.9422 61.7775,-36.8891 64.3637,-30.3843\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H1 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>bias-&gt;H1</title>\n",
"<g id=\"a_edge2\"><a xlink:title=\"(2, 4) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M551.5955,-87.6519C465.697,-80.7069 219.7397,-59.2893 142.5473,-36 140.6407,-35.4248 138.7124,-34.7545 136.7909,-34.0175\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"137.9371,-30.699 127.3718,-29.9076 135.1375,-37.1148 137.9371,-30.699\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H5 -->\n",
"<g id=\"edge18\" class=\"edge\">\n",
"<title>bias-&gt;H5</title>\n",
"<g id=\"a_edge18\"><a xlink:title=\"(2, 8) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M551.3363,-88.7857C487.6594,-85.5313 335.5674,-74.0825 214.5473,-36 212.6476,-35.4022 210.7248,-34.7144 208.8074,-33.9641\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"209.9616,-30.648 199.3993,-29.8184 207.1389,-37.0537 209.9616,-30.648\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H2 -->\n",
"<g id=\"edge16\" class=\"edge\">\n",
"<title>bias-&gt;H2</title>\n",
"<g id=\"a_edge16\"><a xlink:title=\"(2, 5) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M551.544,-87.3321C497.4272,-81.9047 380.378,-67.3391 286.5473,-36 284.6584,-35.3691 282.7438,-34.6556 280.8328,-33.8857\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"281.9995,-30.5735 271.4418,-29.6874 279.1426,-36.964 281.9995,-30.5735\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H7 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>bias-&gt;H7</title>\n",
"<g id=\"a_edge6\"><a xlink:title=\"(2, 10) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M552.4193,-85.1239C509.2385,-77.4121 426.0737,-60.696 358.5473,-36 356.6769,-35.316 354.7769,-34.5612 352.8769,-33.7598\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"354.065,-30.4545 343.5153,-29.4773 351.1529,-36.8201 354.065,-30.4545\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H9 -->\n",
"<g id=\"edge13\" class=\"edge\">\n",
"<title>bias-&gt;H9</title>\n",
"<g id=\"a_edge13\"><a xlink:title=\"(2, 12) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M554.9899,-81.5781C524.5373,-71.6746 473.3073,-54.2576 430.5473,-36 428.764,-35.2386 426.9442,-34.4307 425.117,-33.5954\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"426.5847,-30.4178 416.0513,-29.2786 423.5752,-36.7379 426.5847,-30.4178\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H6 -->\n",
"<g id=\"edge10\" class=\"edge\">\n",
"<title>bias-&gt;H6</title>\n",
"<g id=\"a_edge10\"><a xlink:title=\"(2, 9) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M560.7217,-76.9613C542.3409,-65.4534 515.379,-48.5729 495.0093,-35.8197\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"496.7817,-32.8 486.4485,-30.4599 493.067,-38.7331 496.7817,-32.8\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H12 -->\n",
"<g id=\"edge15\" class=\"edge\">\n",
"<title>bias-&gt;H12</title>\n",
"<g id=\"a_edge15\"><a xlink:title=\"(2, 15) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M572.1065,-72.5708C567.5076,-64.0807 561.8809,-53.6929 556.7755,-44.2674\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"559.7416,-42.3946 551.9012,-35.2687 553.5865,-45.7286 559.7416,-42.3946\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H15 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>bias-&gt;H15</title>\n",
"<g id=\"a_edge14\"><a xlink:title=\"(2, 18) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M591.2302,-72.5708C595.9469,-64.0807 601.7179,-53.6929 606.9543,-44.2674\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"610.1567,-45.71 611.9536,-35.2687 604.0375,-42.3105 610.1567,-45.71\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H13 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>bias-&gt;H13</title>\n",
"<g id=\"a_edge7\"><a xlink:title=\"(2, 16) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M602.8221,-77.1278C621.6579,-65.7314 649.3566,-48.9725 670.46,-36.2041\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"672.3114,-39.1747 679.0554,-31.0035 668.6877,-33.1856 672.3114,-39.1747\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H0 -->\n",
"<g id=\"edge9\" class=\"edge\">\n",
"<title>bias-&gt;H0</title>\n",
"<g id=\"a_edge9\"><a xlink:title=\"(2, 3) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M608.688,-82.0201C640.6763,-72.3325 695.2175,-54.9264 740.5473,-36 742.3367,-35.2529 744.1611,-34.4562 745.992,-33.6296\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"747.5247,-36.7765 755.0677,-29.3365 744.5314,-30.4487 747.5247,-36.7765\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H11 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>bias-&gt;H11</title>\n",
"<g id=\"a_edge1\"><a xlink:title=\"(2, 14) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M610.495,-85.0942C654.7436,-77.1817 741.5438,-60.0232 812.5473,-36 814.7993,-35.2381 817.0968,-34.3943 819.3954,-33.5\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"820.8443,-36.6881 828.7358,-29.6189 818.1583,-30.2239 820.8443,-36.6881\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H8 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>H8</title>\n",
"<g id=\"a_node16\"><a xlink:title=\"(11) H8\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"928.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"928.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H8</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H8 -->\n",
"<g id=\"edge17\" class=\"edge\">\n",
"<title>bias-&gt;H8</title>\n",
"<g id=\"a_edge17\"><a xlink:title=\"(2, 11) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M611.4005,-87.7269C667.635,-82.8133 792.5977,-68.8765 892.5473,-36 894.4391,-35.3777 896.3558,-34.6709 898.2685,-33.9061\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"899.9531,-36.9873 907.6641,-29.7215 897.1052,-30.5929 899.9531,-36.9873\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H3 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>H3</title>\n",
"<g id=\"a_node17\"><a xlink:title=\"(6) H3\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"1000.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"1000.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H3</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H3 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>bias-&gt;H3</title>\n",
"<g id=\"a_edge12\"><a xlink:title=\"(2, 6) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M611.5721,-89.0486C677.1051,-86.2679 837.2799,-75.6277 964.5473,-36 966.4487,-35.4079 968.373,-34.7246 970.2914,-33.9777\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"971.9561,-37.0692 979.7024,-29.841 969.1393,-30.661 971.9561,-37.0692\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H10 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>H10</title>\n",
"<g id=\"a_node18\"><a xlink:title=\"(13) H10\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"1076.5473\" cy=\"-18\" rx=\"30.5947\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"1076.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H10</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H10 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>bias-&gt;H10</title>\n",
"<g id=\"a_edge8\"><a xlink:title=\"(2, 13) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M611.2853,-87.6596C699.0179,-80.5678 955.6762,-58.4245 1036.5473,-36 1038.9873,-35.3234 1041.4682,-34.5189 1043.9383,-33.6312\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1045.315,-36.8503 1053.302,-29.889 1042.7172,-30.3501 1045.315,-36.8503\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H4 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>H4</title>\n",
"<g id=\"a_node19\"><a xlink:title=\"(7) H4\">\n",
"<ellipse fill=\"#404040\" stroke=\"#000000\" cx=\"1152.5473\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
"<text text-anchor=\"middle\" x=\"1152.5473\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#ffffff\">H4</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- bias&#45;&gt;H4 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>bias-&gt;H4</title>\n",
"<g id=\"a_edge5\"><a xlink:title=\"(2, 7) : \">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M611.586,-88.4003C709.7667,-82.9483 1020.3834,-63.8733 1116.5473,-36 1118.674,-35.3836 1120.8258,-34.644 1122.9638,-33.8211\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1124.3752,-37.024 1132.1295,-29.8045 1121.5655,-30.6126 1124.3752,-37.024\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"(pyAgrum.BayesNet<double>@0x56069b2f4ee0) BN{nodes: 19, arcs: 18, domainSize: 10^10.8165, dim: 1003400}"
]
},
"execution_count": 38,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bn=gum.BayesNet(\"SEQUENCE OF COINS MODEL\")\n",
"mu = bn.add(gum.RangeVariable(\"mu\",\"mean of the Beta distribution\",0,NB_-1))\n",
"nu = bn.add(gum.RangeVariable(\"nu\",\"'sample size' of the Beta where nu = a + b > 0\",0,NB_-1))\n",
"bias=bn.add(gum.RangeVariable(\"bias\",\"The bias of the coin\",0,NB_-1))\n",
"hs=[bn.add(gum.LabelizedVariable(f\"H{i}\",\"The hallucinations of coin flips\",2)) for i in range(size_)]\n",
"\n",
"bn.addArc(mu,bias)\n",
"bn.addArc(nu,bias)\n",
"for h in hs:\n",
" bn.addArc(bias,h)\n",
"print(bn)\n",
"bn"
]
},
{
"cell_type": "code",
"execution_count": 39,
"id": "905847ab-487e-4d4d-926c-56d0c6e10dae",
"metadata": {},
"outputs": [],
"source": [
"bn.cpt(mu)[:] = y_mu # uniform prior for hyperparameter\n",
"bn.cpt(nu)[:] = y_nu # expoential prior for hyperparameter"
]
},
{
"cell_type": "code",
"execution_count": 40,
"id": "8998fe0a-4916-4ae9-8cb5-c1b35e5c4e42",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"((100, 100), (100, 100))"
]
},
"execution_count": 40,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# https://scicomp.stackexchange.com/a/10800\n",
"al_ = (x_mu[:,newaxis] * x_nu[newaxis,:])\n",
"be_ = (1 - x_mu)[:,newaxis] * x_nu[newaxis,:]\n",
"al_.shape, be_.shape"
]
},
{
"cell_type": "code",
"execution_count": 41,
"id": "733f5cde-31a8-4eed-bfec-d87082114ca1",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(100, 100, 100)"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bn.cpt(\"bias\").shape"
]
},
{
"cell_type": "code",
"execution_count": 42,
"id": "311d3ca4-787c-48ef-89ba-0630e27cc927",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"end_time=0.3189249038696289 (s)\n"
]
}
],
"source": [
"t_start = time.time()\n",
"pdf = scipy.stats.beta(al_,be_).pdf(linspace(vmin, vmax,NB_)[:,newaxis, newaxis])\n",
"bn.cpt(\"bias\").fillWith(np.swapaxes(pdf, 0, -1).flatten())\n",
"bn.cpt(\"bias\").normalizeAsCPT()\n",
"end_time = time.time() - t_start\n",
"print(f\"{end_time=} (s)\")"
]
},
{
"cell_type": "code",
"execution_count": 43,
"id": "21fd3bdb-00a3-4f09-8897-55913f8cfa9a",
"metadata": {},
"outputs": [],
"source": [
"l=[]\n",
"r=(vmax-vmin)/NB_\n",
"for i in range(NB_):\n",
" l.append(vmax-i*r)\n",
" l.append(i*r+vmin)\n",
"for h in hs:\n",
" bn.cpt(h).fillWith(l).normalizeAsCPT()"
]
},
{
"cell_type": "code",
"execution_count": 44,
"id": "b8283fa6-1ebf-454f-927d-5450ec633447",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"864pt\" height=\"180pt\" viewBox=\"0.00 0.00 864.00 179.73\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(.4562 .4562) rotate(0) translate(4 390)\">\n",
"<title>structs</title>\n",
"<text text-anchor=\"middle\" x=\"943\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#4a4a4a\">Inference in 32.57ms</text>\n",
"<!-- mu -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>mu</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"936.5,-386 646.5,-386 646.5,-261 936.5,-261 936.5,-386\"/>\n",
"<svg viewBox=\"0 0 383.990625 164.2005\" width=\"290px\" height=\"125px\" preserveAspectRatio=\"xMinYMin meet\" x=\"646.5\" y=\"-386\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:15.418473</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 164.2005 L 383.990625 164.2005 L 383.990625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 45.590625 140.8755 L 380.390625 140.8755 L 380.390625 32.1555 L 45.590625 32.1555 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"PolyCollection_1\">\n",
" <defs>\n",
" <path id=\"mdb9cf5aa1b\" d=\"M 45.590625 -23.325 L 45.590625 -126.867857 L 48.972443 -126.867857 L 52.354261 -126.867857 L 55.73608 -126.867857 L 59.117898 -126.867857 L 62.499716 -126.867857 L 65.881534 -126.867857 L 69.263352 -126.867857 L 72.64517 -126.867857 L 76.026989 -126.867857 L 79.408807 -126.867857 L 82.790625 -126.867857 L 86.172443 -126.867857 L 89.554261 -126.867857 L 92.93608 -126.867857 L 96.317898 -126.867857 L 99.699716 -126.867857 L 103.081534 -126.867857 L 106.463352 -126.867857 L 109.84517 -126.867857 L 113.226989 -126.867857 L 116.608807 -126.867857 L 119.990625 -126.867857 L 123.372443 -126.867857 L 126.754261 -126.867857 L 130.13608 -126.867857 L 133.517898 -126.867857 L 136.899716 -126.867857 L 140.281534 -126.867857 L 143.663352 -126.867857 L 147.04517 -126.867857 L 150.426989 -126.867857 L 153.808807 -126.867857 L 157.190625 -126.867857 L 160.572443 -126.867857 L 163.954261 -126.867857 L 167.33608 -126.867857 L 170.717898 -126.867857 L 174.099716 -126.867857 L 177.481534 -126.867857 L 180.863352 -126.867857 L 184.24517 -126.867857 L 187.626989 -126.867857 L 191.008807 -126.867857 L 194.390625 -126.867857 L 197.772443 -126.867857 L 201.154261 -126.867857 L 204.53608 -126.867857 L 207.917898 -126.867857 L 211.299716 -126.867857 L 214.681534 -126.867857 L 218.063352 -126.867857 L 221.44517 -126.867857 L 224.826989 -126.867857 L 228.208807 -126.867857 L 231.590625 -126.867857 L 234.972443 -126.867857 L 238.354261 -126.867857 L 241.73608 -126.867857 L 245.117898 -126.867857 L 248.499716 -126.867857 L 251.881534 -126.867857 L 255.263352 -126.867857 L 258.64517 -126.867857 L 262.026989 -126.867857 L 265.408807 -126.867857 L 268.790625 -126.867857 L 272.172443 -126.867857 L 275.554261 -126.867857 L 278.93608 -126.867857 L 282.317898 -126.867857 L 285.699716 -126.867857 L 289.081534 -126.867857 L 292.463352 -126.867857 L 295.84517 -126.867857 L 299.226989 -126.867857 L 302.608807 -126.867857 L 305.990625 -126.867857 L 309.372443 -126.867857 L 312.754261 -126.867857 L 316.13608 -126.867857 L 319.517898 -126.867857 L 322.899716 -126.867857 L 326.281534 -126.867857 L 329.663352 -126.867857 L 333.04517 -126.867857 L 336.426989 -126.867857 L 339.808807 -126.867857 L 343.190625 -126.867857 L 346.572443 -126.867857 L 349.954261 -126.867857 L 353.33608 -126.867857 L 356.717898 -126.867857 L 360.099716 -126.867857 L 363.481534 -126.867857 L 366.863352 -126.867857 L 370.24517 -126.867857 L 373.626989 -126.867857 L 377.008807 -126.867857 L 380.390625 -126.867857 L 380.390625 -23.325 L 380.390625 -23.325 L 377.008807 -23.325 L 373.626989 -23.325 L 370.24517 -23.325 L 366.863352 -23.325 L 363.481534 -23.325 L 360.099716 -23.325 L 356.717898 -23.325 L 353.33608 -23.325 L 349.954261 -23.325 L 346.572443 -23.325 L 343.190625 -23.325 L 339.808807 -23.325 L 336.426989 -23.325 L 333.04517 -23.325 L 329.663352 -23.325 L 326.281534 -23.325 L 322.899716 -23.325 L 319.517898 -23.325 L 316.13608 -23.325 L 312.754261 -23.325 L 309.372443 -23.325 L 305.990625 -23.325 L 302.608807 -23.325 L 299.226989 -23.325 L 295.84517 -23.325 L 292.463352 -23.325 L 289.081534 -23.325 L 285.699716 -23.325 L 282.317898 -23.325 L 278.93608 -23.325 L 275.554261 -23.325 L 272.172443 -23.325 L 268.790625 -23.325 L 265.408807 -23.325 L 262.026989 -23.325 L 258.64517 -23.325 L 255.263352 -23.325 L 251.881534 -23.325 L 248.499716 -23.325 L 245.117898 -23.325 L 241.73608 -23.325 L 238.354261 -23.325 L 234.972443 -23.325 L 231.590625 -23.325 L 228.208807 -23.325 L 224.826989 -23.325 L 221.44517 -23.325 L 218.063352 -23.325 L 214.681534 -23.325 L 211.299716 -23.325 L 207.917898 -23.325 L 204.53608 -23.325 L 201.154261 -23.325 L 197.772443 -23.325 L 194.390625 -23.325 L 191.008807 -23.325 L 187.626989 -23.325 L 184.24517 -23.325 L 180.863352 -23.325 L 177.481534 -23.325 L 174.099716 -23.325 L 170.717898 -23.325 L 167.33608 -23.325 L 163.954261 -23.325 L 160.572443 -23.325 L 157.190625 -23.325 L 153.808807 -23.325 L 150.426989 -23.325 L 147.04517 -23.325 L 143.663352 -23.325 L 140.281534 -23.325 L 136.899716 -23.325 L 133.517898 -23.325 L 130.13608 -23.325 L 126.754261 -23.325 L 123.372443 -23.325 L 119.990625 -23.325 L 116.608807 -23.325 L 113.226989 -23.325 L 109.84517 -23.325 L 106.463352 -23.325 L 103.081534 -23.325 L 99.699716 -23.325 L 96.317898 -23.325 L 92.93608 -23.325 L 89.554261 -23.325 L 86.172443 -23.325 L 82.790625 -23.325 L 79.408807 -23.325 L 76.026989 -23.325 L 72.64517 -23.325 L 69.263352 -23.325 L 65.881534 -23.325 L 62.499716 -23.325 L 59.117898 -23.325 L 55.73608 -23.325 L 52.354261 -23.325 L 48.972443 -23.325 L 45.590625 -23.325 z \" style=\"stroke: #8fbc8f\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p8dcbdb814c)\">\n",
" <use xlink:href=\"#mdb9cf5aa1b\" x=\"0\" y=\"164.2005\" style=\"fill: #8fbc8f; stroke: #8fbc8f\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 45.590625 140.8755 L 45.590625 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m7d9a270501\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"45.590625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(48.35 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 65.881534 140.8755 L 65.881534 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"65.881534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 6 -->\n",
" <g transform=\"translate(68.640909 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 86.172443 140.8755 L 86.172443 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"86.172443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 12 -->\n",
" <g transform=\"translate(88.931818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path d=\"M 106.463352 140.8755 L 106.463352 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"106.463352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 18 -->\n",
" <g transform=\"translate(109.222727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path d=\"M 126.754261 140.8755 L 126.754261 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"126.754261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 24 -->\n",
" <g transform=\"translate(129.513636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-32\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <path d=\"M 147.04517 140.8755 L 147.04517 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"147.04517\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 30 -->\n",
" <g transform=\"translate(149.804545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 167.33608 140.8755 L 167.33608 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"167.33608\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 36 -->\n",
" <g transform=\"translate(170.095455 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_15\">\n",
" <path d=\"M 187.626989 140.8755 L 187.626989 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"187.626989\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 42 -->\n",
" <g transform=\"translate(190.386364 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_17\">\n",
" <path d=\"M 207.917898 140.8755 L 207.917898 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"207.917898\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 48 -->\n",
" <g transform=\"translate(210.677273 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_19\">\n",
" <path d=\"M 228.208807 140.8755 L 228.208807 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"228.208807\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 54 -->\n",
" <g transform=\"translate(230.968182 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_21\">\n",
" <path d=\"M 248.499716 140.8755 L 248.499716 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"248.499716\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 60 -->\n",
" <g transform=\"translate(251.259091 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_23\">\n",
" <path d=\"M 268.790625 140.8755 L 268.790625 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"268.790625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 66 -->\n",
" <g transform=\"translate(271.55 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_25\">\n",
" <path d=\"M 289.081534 140.8755 L 289.081534 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"289.081534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- 72 -->\n",
" <g transform=\"translate(291.840909 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_27\">\n",
" <path d=\"M 309.372443 140.8755 L 309.372443 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"309.372443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 78 -->\n",
" <g transform=\"translate(312.131818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_29\">\n",
" <path d=\"M 329.663352 140.8755 L 329.663352 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"329.663352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 84 -->\n",
" <g transform=\"translate(332.422727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-38\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_31\">\n",
" <path d=\"M 349.954261 140.8755 L 349.954261 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"349.954261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 90 -->\n",
" <g transform=\"translate(352.713636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_33\">\n",
" <path d=\"M 370.24517 140.8755 L 370.24517 32.1555 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use xlink:href=\"#m7d9a270501\" x=\"370.24517\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- 96 -->\n",
" <g transform=\"translate(373.004545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_35\">\n",
" <path d=\"M 45.590625 140.8755 L 380.390625 140.8755 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_36\">\n",
" <defs>\n",
" <path id=\"m3fd5570871\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m3fd5570871\" x=\"45.590625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 0.0000 -->\n",
" <g transform=\"translate(3.6 144.674719)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_37\">\n",
" <path d=\"M 45.590625 114.989786 L 380.390625 114.989786 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use xlink:href=\"#m3fd5570871\" x=\"45.590625\" y=\"114.989786\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 0.0025 -->\n",
" <g transform=\"translate(3.6 118.789004)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_39\">\n",
" <path d=\"M 45.590625 89.104071 L 380.390625 89.104071 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_40\">\n",
" <g>\n",
" <use xlink:href=\"#m3fd5570871\" x=\"45.590625\" y=\"89.104071\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_20\">\n",
" <!-- 0.0050 -->\n",
" <g transform=\"translate(3.6 92.90329)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_41\">\n",
" <path d=\"M 45.590625 63.218357 L 380.390625 63.218357 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_42\">\n",
" <g>\n",
" <use xlink:href=\"#m3fd5570871\" x=\"45.590625\" y=\"63.218357\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_21\">\n",
" <!-- 0.0075 -->\n",
" <g transform=\"translate(3.6 67.017576)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-37\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_43\">\n",
" <path d=\"M 45.590625 37.332643 L 380.390625 37.332643 \" clip-path=\"url(#p8dcbdb814c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_44\">\n",
" <g>\n",
" <use xlink:href=\"#m3fd5570871\" x=\"45.590625\" y=\"37.332643\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_22\">\n",
" <!-- 0.0100 -->\n",
" <g transform=\"translate(3.6 41.131862)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 45.590625 140.8755 L 45.590625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 380.390625 140.8755 L 380.390625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 45.590625 140.8755 L 380.390625 140.8755 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 45.590625 32.1555 L 380.390625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_23\">\n",
" <!-- mu -->\n",
" <g transform=\"translate(203.34375 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-75\" d=\"M 544 1381 L 544 3500 L 1119 3500 L 1119 1403 Q 1119 906 1312 657 Q 1506 409 1894 409 Q 2359 409 2629 706 Q 2900 1003 2900 1516 L 2900 3500 L 3475 3500 L 3475 0 L 2900 0 L 2900 538 Q 2691 219 2414 64 Q 2138 -91 1772 -91 Q 1169 -91 856 284 Q 544 659 544 1381 z M 1991 3584 L 1991 3584 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-6d\"/>\n",
" <use xlink:href=\"#DejaVuSans-75\" x=\"97.412109\"/>\n",
" </g>\n",
" <!-- $\\mu=49.50$; $\\sigma=28.87$ -->\n",
" <g transform=\"translate(152.510625 26.1555)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-Oblique-3bc\" d=\"M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3d\" d=\"M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3b\" d=\"M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-3c3\" d=\"M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bc\" transform=\"translate(0 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(83.105469 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(186.376953 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(250 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(313.623047 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(345.410156 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(409.033203 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3b\" transform=\"translate(472.65625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(506.347656 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3c3\" transform=\"translate(538.134766 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(620.996094 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(724.267578 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(787.890625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(851.513672 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(880.675781 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(944.298828 0.78125)\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p8dcbdb814c\">\n",
" <rect x=\"45.590625\" y=\"32.1555\" width=\"334.8\" height=\"108.72\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>bias</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1082.5,-225 802.5,-225 802.5,-100 1082.5,-100 1082.5,-225\"/>\n",
"<svg viewBox=\"0 0 371.265625 164.2005\" width=\"280px\" height=\"125px\" preserveAspectRatio=\"xMinYMin meet\" x=\"802.5\" y=\"-225\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:15.832807</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 164.2005 L 371.265625 164.2005 L 371.265625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 L 367.665625 32.1555 L 32.865625 32.1555 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"PolyCollection_1\">\n",
" <defs>\n",
" <path id=\"m3689b1f078\" d=\"M 32.865625 -23.325 L 32.865625 -126.867857 L 36.247443 -48.447385 L 39.629261 -42.540348 L 43.01108 -40.162682 L 46.392898 -38.858847 L 49.774716 -38.033142 L 53.156534 -37.464134 L 56.538352 -37.049483 L 59.92017 -36.735037 L 63.301989 -36.489341 L 66.683807 -36.292839 L 70.065625 -36.132714 L 73.447443 -36.000216 L 76.829261 -35.889166 L 80.21108 -35.795076 L 83.592898 -35.714612 L 86.974716 -35.645244 L 90.356534 -35.585019 L 93.738352 -35.53241 L 97.12017 -35.486203 L 100.501989 -35.445422 L 103.883807 -35.409277 L 107.265625 -35.37712 L 110.647443 -35.348414 L 114.029261 -35.322714 L 117.41108 -35.299646 L 120.792898 -35.278893 L 124.174716 -35.260188 L 127.556534 -35.243303 L 130.938352 -35.228041 L 134.32017 -35.214234 L 137.701989 -35.201737 L 141.083807 -35.190423 L 144.465625 -35.180183 L 147.847443 -35.170921 L 151.229261 -35.162555 L 154.61108 -35.15501 L 157.992898 -35.148224 L 161.374716 -35.142142 L 164.756534 -35.136714 L 168.138352 -35.131898 L 171.52017 -35.127658 L 174.901989 -35.123963 L 178.283807 -35.120785 L 181.665625 -35.118101 L 185.047443 -35.115892 L 188.429261 -35.114144 L 191.81108 -35.112842 L 195.192898 -35.11198 L 198.574716 -35.11155 L 201.956534 -35.11155 L 205.338352 -35.11198 L 208.72017 -35.112842 L 212.101989 -35.114144 L 215.483807 -35.115892 L 218.865625 -35.118101 L 222.247443 -35.120785 L 225.629261 -35.123963 L 229.01108 -35.127658 L 232.392898 -35.131898 L 235.774716 -35.136714 L 239.156534 -35.142142 L 242.538352 -35.148224 L 245.92017 -35.15501 L 249.301989 -35.162555 L 252.683807 -35.170921 L 256.065625 -35.180183 L 259.447443 -35.190423 L 262.829261 -35.201737 L 266.21108 -35.214234 L 269.592898 -35.228041 L 272.974716 -35.243303 L 276.356534 -35.260188 L 279.738352 -35.278893 L 283.12017 -35.299646 L 286.501989 -35.322714 L 289.883807 -35.348414 L 293.265625 -35.37712 L 296.647443 -35.409277 L 300.029261 -35.445422 L 303.41108 -35.486203 L 306.792898 -35.53241 L 310.174716 -35.585019 L 313.556534 -35.645244 L 316.938352 -35.714612 L 320.32017 -35.795076 L 323.701989 -35.889166 L 327.083807 -36.000216 L 330.465625 -36.132714 L 333.847443 -36.292839 L 337.229261 -36.489341 L 340.61108 -36.735037 L 343.992898 -37.049483 L 347.374716 -37.464134 L 350.756534 -38.033142 L 354.138352 -38.858847 L 357.52017 -40.162682 L 360.901989 -42.540348 L 364.283807 -48.447385 L 367.665625 -126.867857 L 367.665625 -23.325 L 367.665625 -23.325 L 364.283807 -23.325 L 360.901989 -23.325 L 357.52017 -23.325 L 354.138352 -23.325 L 350.756534 -23.325 L 347.374716 -23.325 L 343.992898 -23.325 L 340.61108 -23.325 L 337.229261 -23.325 L 333.847443 -23.325 L 330.465625 -23.325 L 327.083807 -23.325 L 323.701989 -23.325 L 320.32017 -23.325 L 316.938352 -23.325 L 313.556534 -23.325 L 310.174716 -23.325 L 306.792898 -23.325 L 303.41108 -23.325 L 300.029261 -23.325 L 296.647443 -23.325 L 293.265625 -23.325 L 289.883807 -23.325 L 286.501989 -23.325 L 283.12017 -23.325 L 279.738352 -23.325 L 276.356534 -23.325 L 272.974716 -23.325 L 269.592898 -23.325 L 266.21108 -23.325 L 262.829261 -23.325 L 259.447443 -23.325 L 256.065625 -23.325 L 252.683807 -23.325 L 249.301989 -23.325 L 245.92017 -23.325 L 242.538352 -23.325 L 239.156534 -23.325 L 235.774716 -23.325 L 232.392898 -23.325 L 229.01108 -23.325 L 225.629261 -23.325 L 222.247443 -23.325 L 218.865625 -23.325 L 215.483807 -23.325 L 212.101989 -23.325 L 208.72017 -23.325 L 205.338352 -23.325 L 201.956534 -23.325 L 198.574716 -23.325 L 195.192898 -23.325 L 191.81108 -23.325 L 188.429261 -23.325 L 185.047443 -23.325 L 181.665625 -23.325 L 178.283807 -23.325 L 174.901989 -23.325 L 171.52017 -23.325 L 168.138352 -23.325 L 164.756534 -23.325 L 161.374716 -23.325 L 157.992898 -23.325 L 154.61108 -23.325 L 151.229261 -23.325 L 147.847443 -23.325 L 144.465625 -23.325 L 141.083807 -23.325 L 137.701989 -23.325 L 134.32017 -23.325 L 130.938352 -23.325 L 127.556534 -23.325 L 124.174716 -23.325 L 120.792898 -23.325 L 117.41108 -23.325 L 114.029261 -23.325 L 110.647443 -23.325 L 107.265625 -23.325 L 103.883807 -23.325 L 100.501989 -23.325 L 97.12017 -23.325 L 93.738352 -23.325 L 90.356534 -23.325 L 86.974716 -23.325 L 83.592898 -23.325 L 80.21108 -23.325 L 76.829261 -23.325 L 73.447443 -23.325 L 70.065625 -23.325 L 66.683807 -23.325 L 63.301989 -23.325 L 59.92017 -23.325 L 56.538352 -23.325 L 53.156534 -23.325 L 49.774716 -23.325 L 46.392898 -23.325 L 43.01108 -23.325 L 39.629261 -23.325 L 36.247443 -23.325 L 32.865625 -23.325 z \" style=\"stroke: #8fbc8f\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pae3887607b)\">\n",
" <use xlink:href=\"#m3689b1f078\" x=\"0\" y=\"164.2005\" style=\"fill: #8fbc8f; stroke: #8fbc8f\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 32.865625 140.8755 L 32.865625 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m5508bbcea9\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"32.865625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(35.625 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 53.156534 140.8755 L 53.156534 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"53.156534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 6 -->\n",
" <g transform=\"translate(55.915909 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 73.447443 140.8755 L 73.447443 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"73.447443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 12 -->\n",
" <g transform=\"translate(76.206818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path d=\"M 93.738352 140.8755 L 93.738352 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"93.738352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 18 -->\n",
" <g transform=\"translate(96.497727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path d=\"M 114.029261 140.8755 L 114.029261 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"114.029261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 24 -->\n",
" <g transform=\"translate(116.788636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-32\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <path d=\"M 134.32017 140.8755 L 134.32017 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"134.32017\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 30 -->\n",
" <g transform=\"translate(137.079545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 154.61108 140.8755 L 154.61108 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"154.61108\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 36 -->\n",
" <g transform=\"translate(157.370455 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_15\">\n",
" <path d=\"M 174.901989 140.8755 L 174.901989 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"174.901989\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 42 -->\n",
" <g transform=\"translate(177.661364 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_17\">\n",
" <path d=\"M 195.192898 140.8755 L 195.192898 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"195.192898\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 48 -->\n",
" <g transform=\"translate(197.952273 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_19\">\n",
" <path d=\"M 215.483807 140.8755 L 215.483807 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"215.483807\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 54 -->\n",
" <g transform=\"translate(218.243182 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_21\">\n",
" <path d=\"M 235.774716 140.8755 L 235.774716 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"235.774716\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 60 -->\n",
" <g transform=\"translate(238.534091 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_23\">\n",
" <path d=\"M 256.065625 140.8755 L 256.065625 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"256.065625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 66 -->\n",
" <g transform=\"translate(258.825 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_25\">\n",
" <path d=\"M 276.356534 140.8755 L 276.356534 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"276.356534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- 72 -->\n",
" <g transform=\"translate(279.115909 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_27\">\n",
" <path d=\"M 296.647443 140.8755 L 296.647443 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"296.647443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 78 -->\n",
" <g transform=\"translate(299.406818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_29\">\n",
" <path d=\"M 316.938352 140.8755 L 316.938352 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"316.938352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 84 -->\n",
" <g transform=\"translate(319.697727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-38\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_31\">\n",
" <path d=\"M 337.229261 140.8755 L 337.229261 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"337.229261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 90 -->\n",
" <g transform=\"translate(339.988636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_33\">\n",
" <path d=\"M 357.52017 140.8755 L 357.52017 32.1555 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use xlink:href=\"#m5508bbcea9\" x=\"357.52017\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- 96 -->\n",
" <g transform=\"translate(360.279545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_35\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_36\">\n",
" <defs>\n",
" <path id=\"ma4ad3064cc\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#ma4ad3064cc\" x=\"32.865625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 0.00 -->\n",
" <g transform=\"translate(3.6 144.674719)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_37\">\n",
" <path d=\"M 32.865625 111.652471 L 367.665625 111.652471 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use xlink:href=\"#ma4ad3064cc\" x=\"32.865625\" y=\"111.652471\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 0.02 -->\n",
" <g transform=\"translate(3.6 115.45169)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_39\">\n",
" <path d=\"M 32.865625 82.429442 L 367.665625 82.429442 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_40\">\n",
" <g>\n",
" <use xlink:href=\"#ma4ad3064cc\" x=\"32.865625\" y=\"82.429442\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_20\">\n",
" <!-- 0.04 -->\n",
" <g transform=\"translate(3.6 86.22866)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_41\">\n",
" <path d=\"M 32.865625 53.206412 L 367.665625 53.206412 \" clip-path=\"url(#pae3887607b)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_42\">\n",
" <g>\n",
" <use xlink:href=\"#ma4ad3064cc\" x=\"32.865625\" y=\"53.206412\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_21\">\n",
" <!-- 0.06 -->\n",
" <g transform=\"translate(3.6 57.005631)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 32.865625 140.8755 L 32.865625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 367.665625 140.8755 L 367.665625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 32.865625 32.1555 L 367.665625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_22\">\n",
" <!-- bias -->\n",
" <g transform=\"translate(187.987188 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-62\" d=\"M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z M 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 L 1159 0 L 581 0 L 581 4863 L 1159 4863 L 1159 2969 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-62\"/>\n",
" <use xlink:href=\"#DejaVuSans-69\" x=\"63.476562\"/>\n",
" <use xlink:href=\"#DejaVuSans-61\" x=\"91.259766\"/>\n",
" <use xlink:href=\"#DejaVuSans-73\" x=\"152.539062\"/>\n",
" </g>\n",
" <!-- $\\mu=49.50$; $\\sigma=33.34$ -->\n",
" <g transform=\"translate(139.605625 26.1555)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-Oblique-3bc\" d=\"M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3d\" d=\"M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3b\" d=\"M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-3c3\" d=\"M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bc\" transform=\"translate(0 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(83.105469 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(186.376953 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(250 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(313.623047 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(345.410156 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(409.033203 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3b\" transform=\"translate(472.65625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(506.347656 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3c3\" transform=\"translate(538.134766 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(620.996094 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(724.267578 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(787.890625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(851.513672 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(883.300781 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(946.923828 0.78125)\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pae3887607b\">\n",
" <rect x=\"32.865625\" y=\"32.1555\" width=\"334.8\" height=\"108.72\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- mu&#45;&gt;bias -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>mu-&gt;bias</title>\n",
"<g id=\"a_edge11\"><a xlink:title=\"(0, 2):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M850.3129,-260.7922C859.0033,-251.5262 868.0043,-241.9292 876.8233,-232.5261\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"879.5595,-234.725 883.8476,-225.0367 874.4537,-229.9363 879.5595,-234.725\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- nu -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>nu</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1234.5,-386 954.5,-386 954.5,-261 1234.5,-261 1234.5,-386\"/>\n",
"<svg viewBox=\"0 0 371.265625 164.2005\" width=\"280px\" height=\"125px\" preserveAspectRatio=\"xMinYMin meet\" x=\"954.5\" y=\"-386\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:15.640072</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 164.2005 L 371.265625 164.2005 L 371.265625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 L 367.665625 32.1555 L 32.865625 32.1555 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"PolyCollection_1\">\n",
" <defs>\n",
" <path id=\"m07e1c624a1\" d=\"M 32.865625 -23.325 L 32.865625 -23.325 L 36.247443 -23.325 L 39.629261 -23.325 L 43.01108 -126.867857 L 46.392898 -117.109135 L 49.774716 -108.270155 L 53.156534 -100.264231 L 56.538352 -93.012852 L 59.92017 -86.444901 L 63.301989 -80.495968 L 66.683807 -75.10771 L 70.065625 -70.227286 L 73.447443 -65.806833 L 76.829261 -61.802999 L 80.21108 -58.176519 L 83.592898 -54.891828 L 86.974716 -51.916713 L 90.356534 -49.221997 L 93.738352 -46.781253 L 97.12017 -44.570545 L 100.501989 -42.568192 L 103.883807 -40.754557 L 107.265625 -39.111853 L 110.647443 -37.623972 L 114.029261 -36.27632 L 117.41108 -35.055682 L 120.792898 -33.950087 L 124.174716 -32.948693 L 127.556534 -32.041677 L 130.938352 -31.220147 L 134.32017 -30.476044 L 137.701989 -29.802071 L 141.083807 -29.191619 L 144.465625 -28.638701 L 147.847443 -28.137895 L 151.229261 -27.684288 L 154.61108 -27.273434 L 157.992898 -26.901301 L 161.374716 -26.564241 L 164.756534 -26.258949 L 168.138352 -25.98243 L 171.52017 -25.731972 L 174.901989 -25.505119 L 178.283807 -25.299647 L 181.665625 -25.11354 L 185.047443 -24.944974 L 188.429261 -24.792294 L 191.81108 -24.654004 L 195.192898 -24.528748 L 198.574716 -24.415297 L 201.956534 -24.312539 L 205.338352 -24.219465 L 208.72017 -24.135163 L 212.101989 -24.058807 L 215.483807 -23.989647 L 218.865625 -23.927005 L 222.247443 -23.870267 L 225.629261 -23.818877 L 229.01108 -23.77233 L 232.392898 -23.73017 L 235.774716 -23.691983 L 239.156534 -23.657396 L 242.538352 -23.626068 L 245.92017 -23.597693 L 249.301989 -23.571992 L 252.683807 -23.548714 L 256.065625 -23.527629 L 259.447443 -23.508532 L 262.829261 -23.491234 L 266.21108 -23.475567 L 269.592898 -23.461376 L 272.974716 -23.448523 L 276.356534 -23.436881 L 279.738352 -23.426337 L 283.12017 -23.416786 L 286.501989 -23.408135 L 289.883807 -23.4003 L 293.265625 -23.393203 L 296.647443 -23.386775 L 300.029261 -23.380953 L 303.41108 -23.375679 L 306.792898 -23.370903 L 310.174716 -23.366577 L 313.556534 -23.362658 L 316.938352 -23.359109 L 320.32017 -23.355894 L 323.701989 -23.352982 L 327.083807 -23.350345 L 330.465625 -23.347956 L 333.847443 -23.345793 L 337.229261 -23.343833 L 340.61108 -23.342058 L 343.992898 -23.34045 L 347.374716 -23.338994 L 350.756534 -23.337675 L 354.138352 -23.336481 L 357.52017 -23.335399 L 360.901989 -23.334419 L 364.283807 -23.333531 L 367.665625 -23.332727 L 367.665625 -23.325 L 367.665625 -23.325 L 364.283807 -23.325 L 360.901989 -23.325 L 357.52017 -23.325 L 354.138352 -23.325 L 350.756534 -23.325 L 347.374716 -23.325 L 343.992898 -23.325 L 340.61108 -23.325 L 337.229261 -23.325 L 333.847443 -23.325 L 330.465625 -23.325 L 327.083807 -23.325 L 323.701989 -23.325 L 320.32017 -23.325 L 316.938352 -23.325 L 313.556534 -23.325 L 310.174716 -23.325 L 306.792898 -23.325 L 303.41108 -23.325 L 300.029261 -23.325 L 296.647443 -23.325 L 293.265625 -23.325 L 289.883807 -23.325 L 286.501989 -23.325 L 283.12017 -23.325 L 279.738352 -23.325 L 276.356534 -23.325 L 272.974716 -23.325 L 269.592898 -23.325 L 266.21108 -23.325 L 262.829261 -23.325 L 259.447443 -23.325 L 256.065625 -23.325 L 252.683807 -23.325 L 249.301989 -23.325 L 245.92017 -23.325 L 242.538352 -23.325 L 239.156534 -23.325 L 235.774716 -23.325 L 232.392898 -23.325 L 229.01108 -23.325 L 225.629261 -23.325 L 222.247443 -23.325 L 218.865625 -23.325 L 215.483807 -23.325 L 212.101989 -23.325 L 208.72017 -23.325 L 205.338352 -23.325 L 201.956534 -23.325 L 198.574716 -23.325 L 195.192898 -23.325 L 191.81108 -23.325 L 188.429261 -23.325 L 185.047443 -23.325 L 181.665625 -23.325 L 178.283807 -23.325 L 174.901989 -23.325 L 171.52017 -23.325 L 168.138352 -23.325 L 164.756534 -23.325 L 161.374716 -23.325 L 157.992898 -23.325 L 154.61108 -23.325 L 151.229261 -23.325 L 147.847443 -23.325 L 144.465625 -23.325 L 141.083807 -23.325 L 137.701989 -23.325 L 134.32017 -23.325 L 130.938352 -23.325 L 127.556534 -23.325 L 124.174716 -23.325 L 120.792898 -23.325 L 117.41108 -23.325 L 114.029261 -23.325 L 110.647443 -23.325 L 107.265625 -23.325 L 103.883807 -23.325 L 100.501989 -23.325 L 97.12017 -23.325 L 93.738352 -23.325 L 90.356534 -23.325 L 86.974716 -23.325 L 83.592898 -23.325 L 80.21108 -23.325 L 76.829261 -23.325 L 73.447443 -23.325 L 70.065625 -23.325 L 66.683807 -23.325 L 63.301989 -23.325 L 59.92017 -23.325 L 56.538352 -23.325 L 53.156534 -23.325 L 49.774716 -23.325 L 46.392898 -23.325 L 43.01108 -23.325 L 39.629261 -23.325 L 36.247443 -23.325 L 32.865625 -23.325 z \" style=\"stroke: #8fbc8f\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p21c33c8206)\">\n",
" <use xlink:href=\"#m07e1c624a1\" x=\"0\" y=\"164.2005\" style=\"fill: #8fbc8f; stroke: #8fbc8f\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 32.865625 140.8755 L 32.865625 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mbeab96af6c\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"32.865625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(35.625 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 53.156534 140.8755 L 53.156534 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"53.156534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 6 -->\n",
" <g transform=\"translate(55.915909 154.238)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 73.447443 140.8755 L 73.447443 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"73.447443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 12 -->\n",
" <g transform=\"translate(76.206818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path d=\"M 93.738352 140.8755 L 93.738352 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"93.738352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 18 -->\n",
" <g transform=\"translate(96.497727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path d=\"M 114.029261 140.8755 L 114.029261 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"114.029261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 24 -->\n",
" <g transform=\"translate(116.788636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-32\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <path d=\"M 134.32017 140.8755 L 134.32017 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"134.32017\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 30 -->\n",
" <g transform=\"translate(137.079545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_13\">\n",
" <path d=\"M 154.61108 140.8755 L 154.61108 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"154.61108\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 36 -->\n",
" <g transform=\"translate(157.370455 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-33\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_15\">\n",
" <path d=\"M 174.901989 140.8755 L 174.901989 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"174.901989\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 42 -->\n",
" <g transform=\"translate(177.661364 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_17\">\n",
" <path d=\"M 195.192898 140.8755 L 195.192898 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"195.192898\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 48 -->\n",
" <g transform=\"translate(197.952273 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_19\">\n",
" <path d=\"M 215.483807 140.8755 L 215.483807 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"215.483807\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 54 -->\n",
" <g transform=\"translate(218.243182 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_21\">\n",
" <path d=\"M 235.774716 140.8755 L 235.774716 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"235.774716\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 60 -->\n",
" <g transform=\"translate(238.534091 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_23\">\n",
" <path d=\"M 256.065625 140.8755 L 256.065625 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"256.065625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 66 -->\n",
" <g transform=\"translate(258.825 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-36\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_25\">\n",
" <path d=\"M 276.356534 140.8755 L 276.356534 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"276.356534\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- 72 -->\n",
" <g transform=\"translate(279.115909 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_27\">\n",
" <path d=\"M 296.647443 140.8755 L 296.647443 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"296.647443\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 78 -->\n",
" <g transform=\"translate(299.406818 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-37\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_29\">\n",
" <path d=\"M 316.938352 140.8755 L 316.938352 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"316.938352\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 84 -->\n",
" <g transform=\"translate(319.697727 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-38\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_31\">\n",
" <path d=\"M 337.229261 140.8755 L 337.229261 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"337.229261\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 90 -->\n",
" <g transform=\"translate(339.988636 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_33\">\n",
" <path d=\"M 357.52017 140.8755 L 357.52017 32.1555 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use xlink:href=\"#mbeab96af6c\" x=\"357.52017\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- 96 -->\n",
" <g transform=\"translate(360.279545 160.6005)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-39\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"63.623047\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_35\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_36\">\n",
" <defs>\n",
" <path id=\"mce92e070a2\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mce92e070a2\" x=\"32.865625\" y=\"140.8755\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 0.00 -->\n",
" <g transform=\"translate(3.6 144.674719)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_37\">\n",
" <path d=\"M 32.865625 118.904593 L 367.665625 118.904593 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use xlink:href=\"#mce92e070a2\" x=\"32.865625\" y=\"118.904593\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 0.02 -->\n",
" <g transform=\"translate(3.6 122.703812)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_39\">\n",
" <path d=\"M 32.865625 96.933686 L 367.665625 96.933686 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_40\">\n",
" <g>\n",
" <use xlink:href=\"#mce92e070a2\" x=\"32.865625\" y=\"96.933686\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_20\">\n",
" <!-- 0.04 -->\n",
" <g transform=\"translate(3.6 100.732905)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_41\">\n",
" <path d=\"M 32.865625 74.962779 L 367.665625 74.962779 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_42\">\n",
" <g>\n",
" <use xlink:href=\"#mce92e070a2\" x=\"32.865625\" y=\"74.962779\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_21\">\n",
" <!-- 0.06 -->\n",
" <g transform=\"translate(3.6 78.761998)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_43\">\n",
" <path d=\"M 32.865625 52.991873 L 367.665625 52.991873 \" clip-path=\"url(#p21c33c8206)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_44\">\n",
" <g>\n",
" <use xlink:href=\"#mce92e070a2\" x=\"32.865625\" y=\"52.991873\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_22\">\n",
" <!-- 0.08 -->\n",
" <g transform=\"translate(3.6 56.791091)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"95.410156\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"159.033203\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 32.865625 140.8755 L 32.865625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 367.665625 140.8755 L 367.665625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 32.865625 140.8755 L 367.665625 140.8755 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 32.865625 32.1555 L 367.665625 32.1555 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_23\">\n",
" <!-- nu -->\n",
" <g transform=\"translate(192.660625 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-75\" d=\"M 544 1381 L 544 3500 L 1119 3500 L 1119 1403 Q 1119 906 1312 657 Q 1506 409 1894 409 Q 2359 409 2629 706 Q 2900 1003 2900 1516 L 2900 3500 L 3475 3500 L 3475 0 L 2900 0 L 2900 538 Q 2691 219 2414 64 Q 2138 -91 1772 -91 Q 1169 -91 856 284 Q 544 659 544 1381 z M 1991 3584 L 1991 3584 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-6e\"/>\n",
" <use xlink:href=\"#DejaVuSans-75\" x=\"63.378906\"/>\n",
" </g>\n",
" <!-- $\\mu=12.60$; $\\sigma=10.07$ -->\n",
" <g transform=\"translate(139.605625 26.1555)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-Oblique-3bc\" d=\"M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3d\" d=\"M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-3b\" d=\"M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-Oblique-3c3\" d=\"M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3bc\" transform=\"translate(0 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(83.105469 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(186.376953 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(250 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(313.623047 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" transform=\"translate(345.410156 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(409.033203 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3b\" transform=\"translate(472.65625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(506.347656 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-Oblique-3c3\" transform=\"translate(538.134766 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-3d\" transform=\"translate(620.996094 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(724.267578 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(787.890625 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(851.513672 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(883.300781 0.78125)\"/>\n",
" <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(946.923828 0.78125)\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p21c33c8206\">\n",
" <rect x=\"32.865625\" y=\"32.1555\" width=\"334.8\" height=\"108.72\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- nu&#45;&gt;bias -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>nu-&gt;bias</title>\n",
"<g id=\"a_edge3\"><a xlink:title=\"(1, 2):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1035.2976,-260.7922C1026.5496,-251.5262 1017.4891,-241.9292 1008.6116,-232.5261\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1010.9508,-229.9054 1001.5408,-225.0367 1005.8608,-234.7108 1010.9508,-229.9054\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H0 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>H0</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"101,-64 0,-64 0,-23 101,-23 101,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"0\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.016926</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pf400f7238d)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pf400f7238d)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pf400f7238d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mdc4c25ac2d\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mdc4c25ac2d\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pf400f7238d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mdc4c25ac2d\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pf400f7238d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mdc4c25ac2d\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m69352f9c84\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m69352f9c84\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m69352f9c84\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H0 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pf400f7238d\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H0 -->\n",
"<g id=\"edge9\" class=\"edge\">\n",
"<title>bias-&gt;H0</title>\n",
"<g id=\"a_edge9\"><a xlink:title=\"(2, 3):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.3734,-155.2161C637.7462,-144.5615 356.8714,-119.8245 110.9803,-64.1273\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"111.6728,-60.6954 101.1443,-61.8783 110.1126,-67.5193 111.6728,-60.6954\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H1 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>H1</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"220,-64 119,-64 119,-23 220,-23 220,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"119\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.224327</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pb8974a4008)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pb8974a4008)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pb8974a4008)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m43531e8159\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m43531e8159\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pb8974a4008)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m43531e8159\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pb8974a4008)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m43531e8159\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m3cd30a0977\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m3cd30a0977\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m3cd30a0977\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H1 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pb8974a4008\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H1 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>bias-&gt;H1</title>\n",
"<g id=\"a_edge2\"><a xlink:title=\"(2, 4):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.4411,-151.4079C659.709,-138.2242 432.3176,-112.0272 230.0752,-64.1821\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"230.6989,-60.7327 220.1594,-61.8139 229.0728,-67.5412 230.6989,-60.7327\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H2 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>H2</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"339,-64 238,-64 238,-23 339,-23 339,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"238\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.341409</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pfa6534a3e5)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pfa6534a3e5)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pfa6534a3e5)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m634ef72dc5\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m634ef72dc5\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pfa6534a3e5)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m634ef72dc5\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pfa6534a3e5)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m634ef72dc5\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m8482200ebc\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m8482200ebc\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m8482200ebc\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H2 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pfa6534a3e5\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H2 -->\n",
"<g id=\"edge16\" class=\"edge\">\n",
"<title>bias-&gt;H2</title>\n",
"<g id=\"a_edge16\"><a xlink:title=\"(2, 5):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.2524,-146.1416C683.2823,-130.6744 508.3232,-104.177 349.1575,-64.2501\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"349.7347,-60.7859 339.1815,-61.7246 348.0167,-67.5718 349.7347,-60.7859\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H3 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>H3</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"458,-64 357,-64 357,-23 458,-23 458,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"357\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.471879</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p30ac1fec0e)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p30ac1fec0e)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p30ac1fec0e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mcaab7eba67\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mcaab7eba67\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p30ac1fec0e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mcaab7eba67\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p30ac1fec0e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mcaab7eba67\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m1d0869abe2\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m1d0869abe2\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m1d0869abe2\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H3 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-33\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p30ac1fec0e\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H3 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>bias-&gt;H3</title>\n",
"<g id=\"a_edge12\"><a xlink:title=\"(2, 6):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.3276,-138.4666C709.5136,-121.375 585.1686,-96.2284 468.0739,-64.3013\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"468.7865,-60.8674 458.2165,-61.5926 466.9317,-67.6172 468.7865,-60.8674\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H4 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>H4</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"577,-64 476,-64 476,-23 577,-23 577,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"476\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.660561</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pef10ce68c3)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pef10ce68c3)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pef10ce68c3)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m8af9d46408\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m8af9d46408\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pef10ce68c3)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m8af9d46408\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pef10ce68c3)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m8af9d46408\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m192354c12d\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m192354c12d\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m192354c12d\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H4 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pef10ce68c3\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H4 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>bias-&gt;H4</title>\n",
"<g id=\"a_edge5\"><a xlink:title=\"(2, 7):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.4357,-126.1204C739.0534,-109.1038 663.0795,-87.9397 587.0357,-64.411\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"587.8674,-61.0044 577.2792,-61.3792 585.7901,-67.6891 587.8674,-61.0044\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H5 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>H5</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"696,-64 595,-64 595,-23 696,-23 696,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"595\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.826402</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pf1b0541e08)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pf1b0541e08)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pf1b0541e08)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mb2d7347679\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mb2d7347679\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pf1b0541e08)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mb2d7347679\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pf1b0541e08)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mb2d7347679\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m96db0314af\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m96db0314af\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m96db0314af\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H5 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pf1b0541e08\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H5 -->\n",
"<g id=\"edge18\" class=\"edge\">\n",
"<title>bias-&gt;H5</title>\n",
"<g id=\"a_edge18\"><a xlink:title=\"(2, 8):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M802.2623,-106.3105C768.271,-92.6911 733.7005,-78.8396 705.7044,-67.6223\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"706.6721,-64.2396 696.0877,-63.7692 704.0686,-70.7374 706.6721,-64.2396\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H6 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>H6</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"815,-64 714,-64 714,-23 815,-23 815,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"714\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:16.959813</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pe7cfb8e312)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pe7cfb8e312)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pe7cfb8e312)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m29ae4af2aa\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m29ae4af2aa\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pe7cfb8e312)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m29ae4af2aa\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pe7cfb8e312)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m29ae4af2aa\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m1836165bbf\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m1836165bbf\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m1836165bbf\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H6 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-36\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pe7cfb8e312\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H6 -->\n",
"<g id=\"edge10\" class=\"edge\">\n",
"<title>bias-&gt;H6</title>\n",
"<g id=\"a_edge10\"><a xlink:title=\"(2, 9):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M848.8086,-99.8636C833.0064,-89.2992 817.402,-78.867 803.9954,-69.9042\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"805.7813,-66.8881 795.5227,-64.2399 801.8908,-72.7074 805.7813,-66.8881\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H7 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>H7</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"934,-64 833,-64 833,-23 934,-23 934,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"833\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.121664</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p87f93a429e)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p87f93a429e)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p87f93a429e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m75beab4d3f\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m75beab4d3f\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p87f93a429e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m75beab4d3f\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p87f93a429e)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m75beab4d3f\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m546c23d461\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m546c23d461\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m546c23d461\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H7 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-37\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p87f93a429e\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H7 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>bias-&gt;H7</title>\n",
"<g id=\"a_edge6\"><a xlink:title=\"(2, 10):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M911.445,-99.8636C906.8557,-90.6072 902.3167,-81.4523 898.2739,-73.2983\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"901.3606,-71.6445 893.7828,-64.2399 895.0891,-74.7539 901.3606,-71.6445\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H8 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>H8</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1053,-64 952,-64 952,-23 1053,-23 1053,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"952\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.236059</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pbe70836753)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pbe70836753)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pbe70836753)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mcf933d33d1\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mcf933d33d1\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pbe70836753)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mcf933d33d1\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pbe70836753)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mcf933d33d1\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"mccd81cf6b2\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mccd81cf6b2\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#mccd81cf6b2\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H8 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-38\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pbe70836753\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H8 -->\n",
"<g id=\"edge17\" class=\"edge\">\n",
"<title>bias-&gt;H8</title>\n",
"<g id=\"a_edge17\"><a xlink:title=\"(2, 11):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M974.0814,-99.8636C978.7485,-90.6072 983.3644,-81.4523 987.4756,-73.2983\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"990.666,-74.7449 992.0429,-64.2399 984.4155,-71.5934 990.666,-74.7449\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H9 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>H9</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1172,-64 1071,-64 1071,-23 1172,-23 1172,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1071\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.357575</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p4a14e8191d)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p4a14e8191d)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p4a14e8191d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mc82276ec28\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mc82276ec28\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p4a14e8191d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mc82276ec28\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p4a14e8191d)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mc82276ec28\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m89551b9f9a\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m89551b9f9a\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m89551b9f9a\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H9 -->\n",
" <g transform=\"translate(64.432812 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"75.195312\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p4a14e8191d\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H9 -->\n",
"<g id=\"edge13\" class=\"edge\">\n",
"<title>bias-&gt;H9</title>\n",
"<g id=\"a_edge13\"><a xlink:title=\"(2, 12):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1036.7178,-99.8636C1052.6087,-89.2992 1068.3008,-78.867 1081.7827,-69.9042\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1083.913,-72.6909 1090.303,-64.2399 1080.0376,-66.8615 1083.913,-72.6909\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H10 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>H10</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1291,-64 1190,-64 1190,-23 1291,-23 1291,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1190\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.529562</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p5800faacea)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p5800faacea)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p5800faacea)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m000608d446\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m000608d446\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p5800faacea)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m000608d446\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p5800faacea)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m000608d446\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"md3b171876f\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#md3b171876f\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#md3b171876f\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H10 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p5800faacea\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H10 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>bias-&gt;H10</title>\n",
"<g id=\"a_edge8\"><a xlink:title=\"(2, 13):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.774,-106.4846C1117.2237,-92.7278 1152.2977,-78.7217 1180.5957,-67.4215\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1181.9331,-70.6563 1189.922,-63.6973 1179.3371,-64.1554 1181.9331,-70.6563\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H11 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>H11</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1410,-64 1309,-64 1309,-23 1410,-23 1410,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1309\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.641063</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pa7db46ec23)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pa7db46ec23)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pa7db46ec23)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"me8ecffd584\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#me8ecffd584\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pa7db46ec23)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#me8ecffd584\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pa7db46ec23)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#me8ecffd584\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"mee12a0e4b7\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mee12a0e4b7\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#mee12a0e4b7\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H11 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pa7db46ec23\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H11 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>bias-&gt;H11</title>\n",
"<g id=\"a_edge1\"><a xlink:title=\"(2, 14):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.5329,-126.2642C1146.1741,-109.2356 1222.54,-88.0237 1298.9219,-64.4227\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1300.2083,-67.6882 1308.7216,-61.3815 1298.1335,-61.0028 1300.2083,-67.6882\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H12 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>H12</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1529,-64 1428,-64 1428,-23 1529,-23 1529,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1428\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.762966</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p12b7d5c96f)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p12b7d5c96f)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p12b7d5c96f)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mc3df8bef13\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mc3df8bef13\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p12b7d5c96f)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mc3df8bef13\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p12b7d5c96f)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mc3df8bef13\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m48e59651de\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m48e59651de\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m48e59651de\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H12 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-32\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p12b7d5c96f\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H12 -->\n",
"<g id=\"edge15\" class=\"edge\">\n",
"<title>bias-&gt;H12</title>\n",
"<g id=\"a_edge15\"><a xlink:title=\"(2, 15):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.7078,-138.5396C1175.743,-121.4582 1300.4762,-96.2962 1417.8989,-64.3079\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1419.0674,-67.6167 1427.7839,-61.594 1417.214,-60.8665 1419.0674,-67.6167\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H13 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>H13</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1648,-64 1547,-64 1547,-23 1648,-23 1648,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1547\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:17.937335</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#p4f8d386c79)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#p4f8d386c79)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#p4f8d386c79)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m3dc9df781d\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m3dc9df781d\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#p4f8d386c79)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m3dc9df781d\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#p4f8d386c79)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m3dc9df781d\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m5c62e0a483\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m5c62e0a483\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m5c62e0a483\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H13 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-33\" d=\"M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-33\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p4f8d386c79\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H13 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>bias-&gt;H13</title>\n",
"<g id=\"a_edge7\"><a xlink:title=\"(2, 16):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.6826,-146.2024C1201.8568,-130.7543 1377.2741,-104.2526 1536.819,-64.2555\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1537.9827,-67.5714 1546.8187,-61.7254 1536.2657,-60.7853 1537.9827,-67.5714\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H14 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>H14</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1767,-64 1666,-64 1666,-23 1767,-23 1767,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1666\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:18.125425</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#paf22a81323)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#paf22a81323)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#paf22a81323)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"m27ce5de4fc\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m27ce5de4fc\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#paf22a81323)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#m27ce5de4fc\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#paf22a81323)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#m27ce5de4fc\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"m5c7856f364\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#m5c7856f364\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#m5c7856f364\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H14 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-34\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"paf22a81323\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H14 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>bias-&gt;H14</title>\n",
"<g id=\"a_edge4\"><a xlink:title=\"(2, 17):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.7553,-151.4268C1225.6875,-138.2581 1453.3976,-112.073 1655.9117,-64.1849\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1656.9268,-67.541 1665.8407,-61.8145 1655.3013,-60.7323 1656.9268,-67.541\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- H15 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>H15</title>\n",
"<polygon fill=\"#e0e0e0\" stroke=\"#000000\" points=\"1886,-64 1785,-64 1785,-23 1886,-23 1886,-64\"/>\n",
"<svg viewBox=\"0 0 132.1625 52.998125\" width=\"101px\" height=\"41px\" preserveAspectRatio=\"xMinYMin meet\" x=\"1785\" y=\"-64\"> <metadata>\n",
" <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
" <cc:Work>\n",
" <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
" <dc:date>2022-07-18T01:12:18.233529</dc:date>\n",
" <dc:format>image/svg+xml</dc:format>\n",
" <dc:creator>\n",
" <cc:Agent>\n",
" <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>\n",
" </cc:Agent>\n",
" </dc:creator>\n",
" </cc:Work>\n",
" </rdf:RDF>\n",
" </metadata>\n",
" <defs>\n",
" <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 52.998125 L 132.1625 52.998125 L 132.1625 0 L 0 0 z \" style=\"fill: #e0e0e0\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 L 128.5625 18.718125 L 16.9625 18.718125 z \" style=\"fill: #ffffff\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 16.9625 45.898125 L 72.205616 45.898125 L 72.205616 33.818125 L 16.9625 33.818125 z \" clip-path=\"url(#pfe6cd8935c)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 16.9625 30.798125 L 73.319384 30.798125 L 73.319384 18.718125 L 16.9625 18.718125 z \" clip-path=\"url(#pfe6cd8935c)\" style=\"fill: #8fbc8f\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" clip-path=\"url(#pfe6cd8935c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path id=\"mcd5793fb8b\" d=\"M 0 0 L 0 3.5 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mcd5793fb8b\" x=\"16.9625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"M 72.7625 45.898125 L 72.7625 18.718125 \" clip-path=\"url(#pfe6cd8935c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use xlink:href=\"#mcd5793fb8b\" x=\"72.7625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" clip-path=\"url(#pfe6cd8935c)\" style=\"fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use xlink:href=\"#mcd5793fb8b\" x=\"128.5625\" y=\"45.898125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_7\">\n",
" <defs>\n",
" <path id=\"mb0e25e7ec0\" d=\"M 0 0 L -3.5 0 \" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </defs>\n",
" <g>\n",
" <use xlink:href=\"#mb0e25e7ec0\" x=\"16.9625\" y=\"39.858125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(3.6 43.657344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use xlink:href=\"#mb0e25e7ec0\" x=\"16.9625\" y=\"24.758125\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(3.6 28.557344)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 16.9625 45.898125 L 16.9625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 128.5625 45.898125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path d=\"M 16.9625 45.898125 L 128.5625 45.898125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"M 16.9625 18.718125 L 128.5625 18.718125 \" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 49.50% -->\n",
" <g transform=\"translate(90.432812 43.818437)scale(0.1 -0.1)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-34\" d=\"M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n",
" <path id=\"DejaVuSans-25\" d=\"M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-34\"/>\n",
" <use xlink:href=\"#DejaVuSans-39\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 50.50% -->\n",
" <g transform=\"translate(90.432812 28.718437)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-35\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"63.623047\"/>\n",
" <use xlink:href=\"#DejaVuSans-2e\" x=\"127.246094\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"159.033203\"/>\n",
" <use xlink:href=\"#DejaVuSans-30\" x=\"222.65625\"/>\n",
" <use xlink:href=\"#DejaVuSans-25\" x=\"286.279297\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- H15 -->\n",
" <g transform=\"translate(60.615313 12.718125)scale(0.12 -0.12)\">\n",
" <defs>\n",
" <path id=\"DejaVuSans-48\" d=\"M 628 4666 L 1259 4666 L 1259 2753 L 3553 2753 L 3553 4666 L 4184 4666 L 4184 0 L 3553 0 L 3553 2222 L 1259 2222 L 1259 0 L 628 0 L 628 4666 z \" transform=\"scale(0.015625)\"/>\n",
" </defs>\n",
" <use xlink:href=\"#DejaVuSans-48\"/>\n",
" <use xlink:href=\"#DejaVuSans-31\" x=\"75.195312\"/>\n",
" <use xlink:href=\"#DejaVuSans-35\" x=\"138.818359\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pfe6cd8935c\">\n",
" <rect x=\"16.9625\" y=\"18.718125\" width=\"111.6\" height=\"27.18\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n",
"\n",
"</g>\n",
"<!-- bias&#45;&gt;H15 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>bias-&gt;H15</title>\n",
"<g id=\"a_edge14\"><a xlink:title=\"(2, 18):\">\n",
"<path fill=\"none\" stroke=\"#4a4a4a\" d=\"M1082.7949,-155.2329C1247.6197,-144.5943 1528.8317,-119.8726 1775.0084,-64.1296\"/>\n",
"<polygon fill=\"#4a4a4a\" stroke=\"#4a4a4a\" points=\"1775.8871,-67.5191 1784.8558,-61.8788 1774.3274,-60.6951 1775.8871,-67.5191\"/>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"gnb.showInference(bn)"
]
},
{
"cell_type": "markdown",
"id": "a3700606-6246-4196-9143-153e7af794e5",
"metadata": {},
"source": [
"## Different way to fill the `Hs`?"
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "73673c68-27d2-4a19-9167-e718fa3246cb",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"200"
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(l) # flatten version of the table!!! it was there all along"
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "72e759da-a9cd-4270-a023-e4535e7e0dc1",
"metadata": {},
"outputs": [],
"source": [
"x_bias = linspace(vmin, vmax, NB_)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "cdd5224e-ed7f-4b38-9871-e0cb301b57bd",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"x_hs = np.array([1 - x_bias, x_bias]).T"
]
},
{
"cell_type": "code",
"execution_count": 48,
"id": "658f4619-1865-4ace-a9ff-922fbd7f2c1f",
"metadata": {},
"outputs": [],
"source": [
"for h in hs:\n",
" bn.cpt(h).fillWith(x_hs.flatten()).normalizeAsCPT()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "76e28146-5a73-4110-a820-331db2c6af7e",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment