diff --git a/doc/LectureNotes/_build/.doctrees/environment.pickle b/doc/LectureNotes/_build/.doctrees/environment.pickle index 5a07beba8..e6e4c9dee 100644 Binary files a/doc/LectureNotes/_build/.doctrees/environment.pickle and b/doc/LectureNotes/_build/.doctrees/environment.pickle differ diff --git a/doc/LectureNotes/_build/.doctrees/exercisesweek43.doctree b/doc/LectureNotes/_build/.doctrees/exercisesweek43.doctree index 4b48c9592..e6cb4447c 100644 Binary files a/doc/LectureNotes/_build/.doctrees/exercisesweek43.doctree and b/doc/LectureNotes/_build/.doctrees/exercisesweek43.doctree differ diff --git a/doc/LectureNotes/_build/.doctrees/week43.doctree b/doc/LectureNotes/_build/.doctrees/week43.doctree index 3fe163257..8592df8e7 100644 Binary files a/doc/LectureNotes/_build/.doctrees/week43.doctree and b/doc/LectureNotes/_build/.doctrees/week43.doctree differ diff --git a/doc/LectureNotes/_build/html/_sources/exercisesweek43.ipynb b/doc/LectureNotes/_build/html/_sources/exercisesweek43.ipynb index 63211a3f0..96c3390e4 100644 --- a/doc/LectureNotes/_build/html/_sources/exercisesweek43.ipynb +++ b/doc/LectureNotes/_build/html/_sources/exercisesweek43.ipynb @@ -2,8 +2,10 @@ "cells": [ { "cell_type": "markdown", - "id": "ae832182", - "metadata": {}, + "id": "d5ebb4c0", + "metadata": { + "editable": true + }, "source": [ "\n", @@ -12,8 +14,10 @@ }, { "cell_type": "markdown", - "id": "77f844d9", - "metadata": {}, + "id": "812b4e46", + "metadata": { + "editable": true + }, "source": [ "# Exercises weeks 43 and 44 \n", "**October 23-27, 2023**\n", @@ -25,8 +29,10 @@ }, { "cell_type": "markdown", - "id": "d5b983e3", - "metadata": {}, + "id": "3230cd2f", + "metadata": { + "editable": true + }, "source": [ "# Overarching aims of the exercises weeks 43 and 44\n", "\n", @@ -63,8 +69,10 @@ }, { "cell_type": "markdown", - "id": "7f6cc12f", - "metadata": {}, + "id": "e3617d4e", + "metadata": { + "editable": true + }, "source": [ "## The AND and XOR Gates\n", "\n", @@ -99,8 +107,10 @@ }, { "cell_type": "markdown", - "id": "c0b07e46", - "metadata": {}, + "id": "54e1e7fc", + "metadata": { + "editable": true + }, "source": [ "## Representing the Data Sets\n", "\n", @@ -109,8 +119,10 @@ }, { "cell_type": "markdown", - "id": "e0a9840a", - "metadata": {}, + "id": "6b3c15cb", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{X}=\\begin{bmatrix} 0 & 0 \\\\\n", @@ -122,8 +134,10 @@ }, { "cell_type": "markdown", - "id": "ff95d379", - "metadata": {}, + "id": "acc25271", + "metadata": { + "editable": true + }, "source": [ "while the vector of outputs is $\\boldsymbol{y}^T=[0,1,1,0]$ for the XOR gate, $\\boldsymbol{y}^T=[0,0,0,1]$ for the AND gate and $\\boldsymbol{y}^T=[0,1,1,1]$ for the OR gate.\n", "\n", @@ -150,8 +164,10 @@ }, { "cell_type": "markdown", - "id": "36fa3466", - "metadata": {}, + "id": "ffe0a840", + "metadata": { + "editable": true + }, "source": [ "## Setting up dimensionalities by hand\n", "\n", @@ -160,8 +176,10 @@ }, { "cell_type": "markdown", - "id": "e2e5e808", - "metadata": {}, + "id": "46abf545", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{W_h}=\\begin{bmatrix} 1 & 1 \\\\\n", @@ -171,16 +189,20 @@ }, { "cell_type": "markdown", - "id": "419e3904", - "metadata": {}, + "id": "86e105cc", + "metadata": { + "editable": true + }, "source": [ "Multiplying $\\boldsymbol{X}$ and $\\boldsymbol{W}$ gives" ] }, { "cell_type": "markdown", - "id": "88a9712a", - "metadata": {}, + "id": "5e1d21f1", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{X}{W}_h=\\begin{bmatrix} 0 & 0 \\\\\n", @@ -192,16 +214,20 @@ }, { "cell_type": "markdown", - "id": "036eee14", - "metadata": {}, + "id": "692c6cbf", + "metadata": { + "editable": true + }, "source": [ "Assume also that the bias vector for the hidden layer is" ] }, { "cell_type": "markdown", - "id": "3c771918", - "metadata": {}, + "id": "5d81e641", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{b}_h=\\begin{bmatrix} 0 \\\\\n", @@ -211,16 +237,20 @@ }, { "cell_type": "markdown", - "id": "f5a4150d", - "metadata": {}, + "id": "a42bdee4", + "metadata": { + "editable": true + }, "source": [ "Adding it gives us the input to the activation function of the hidden layer" ] }, { "cell_type": "markdown", - "id": "e4eb7753", - "metadata": {}, + "id": "5116b854", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{z}_h=\\boldsymbol{X}\\boldsymbol{W}_h+\\boldsymbol{b}_h=\\begin{bmatrix} 0 & -1 \\\\\n", @@ -232,16 +262,20 @@ }, { "cell_type": "markdown", - "id": "b5442b32", - "metadata": {}, + "id": "8dd26d09", + "metadata": { + "editable": true + }, "source": [ "Let us then assume that our activation function is the RELU function, which simply means that we take the max of $0$ and the elements of the input argument $\\boldsymbol{z}_h$, that is we have" ] }, { "cell_type": "markdown", - "id": "64d99f85", - "metadata": {}, + "id": "ebf97c03", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{a}_h=\\mathrm{RELU}(\\boldsymbol{z}_h=\\boldsymbol{X}\\boldsymbol{W}_h+\\boldsymbol{b}_h)=\\begin{bmatrix} 0 & 0 \\\\\n", @@ -253,16 +287,20 @@ }, { "cell_type": "markdown", - "id": "2aee4b6b", - "metadata": {}, + "id": "262a4a3a", + "metadata": { + "editable": true + }, "source": [ "Assume also that the bias of the output layer is zero and that the weights of the output layer are" ] }, { "cell_type": "markdown", - "id": "884541eb", - "metadata": {}, + "id": "f03ad8e7", + "metadata": { + "editable": true + }, "source": [ "$$\n", "\\boldsymbol{w}_o=\\begin{bmatrix} 1 \\\\\n", @@ -272,37 +310,46 @@ }, { "cell_type": "markdown", - "id": "3999a4d5", - "metadata": {}, + "id": "36fe00c0", + "metadata": { + "editable": true + }, "source": [ "and multiplying with $\\boldsymbol{a}_h$ gives the output" ] }, { "cell_type": "markdown", - "id": "a4896b4d", - "metadata": {}, + "id": "80ab43ac", + "metadata": { + "editable": true + }, "source": [ "$$\n", - "\\boldsymbol{a}_o=\\boldsymbol{w}_h^T\\begin{bmatrix} 0 & 0 \\\\\n", + "\\boldsymbol{a}_o=\\begin{bmatrix} 0 & 0 \\\\\n", " 1 & 0 \\\\\n", "\t\t 1 & 0 \\\\\n", - "\t\t 2 & 1 \\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n", + "\t\t 2 & 1 \\end{bmatrix}\\begin{bmatrix} 1 \\\\\n", + " -2\\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n", "$$" ] }, { "cell_type": "markdown", - "id": "2c74e7c0", - "metadata": {}, + "id": "86bcfe49", + "metadata": { + "editable": true + }, "source": [ - "the wanted result." + "the wanted result. Pay attention to the dimensionalities as well." ] }, { "cell_type": "markdown", - "id": "249b9804", - "metadata": {}, + "id": "f19a899e", + "metadata": { + "editable": true + }, "source": [ "## Setting up the Neural Network\n", "\n", @@ -312,8 +359,11 @@ { "cell_type": "code", "execution_count": 1, - "id": "afdd3100", - "metadata": {}, + "id": "901ddca7", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "%matplotlib inline\n", @@ -379,16 +429,20 @@ }, { "cell_type": "markdown", - "id": "fb383164", - "metadata": {}, + "id": "53f22266", + "metadata": { + "editable": true + }, "source": [ "Not an impressive result, but this was our first forward pass with randomly assigned weights. Let us now add the full network with the back-propagation algorithm discussed above." ] }, { "cell_type": "markdown", - "id": "0d26394c", - "metadata": {}, + "id": "5f665ac6", + "metadata": { + "editable": true + }, "source": [ "## The Code using Scikit-Learn" ] @@ -396,8 +450,11 @@ { "cell_type": "code", "execution_count": 2, - "id": "befc368c", - "metadata": {}, + "id": "cb396cda", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "# import necessary packages\n", @@ -458,8 +515,10 @@ }, { "cell_type": "markdown", - "id": "03895a9f", - "metadata": {}, + "id": "c5978471", + "metadata": { + "editable": true + }, "source": [ "## Building a neural network code\n", "\n", @@ -475,8 +534,10 @@ }, { "cell_type": "markdown", - "id": "6226915b", - "metadata": {}, + "id": "7b82dc46", + "metadata": { + "editable": true + }, "source": [ "### Learning rate methods\n", "\n", @@ -495,8 +556,11 @@ { "cell_type": "code", "execution_count": 3, - "id": "b6d5ea73", - "metadata": {}, + "id": "de4dedfb", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "import autograd.numpy as np\n", @@ -633,8 +697,10 @@ }, { "cell_type": "markdown", - "id": "edb42bef", - "metadata": {}, + "id": "bb621fce", + "metadata": { + "editable": true + }, "source": [ "### Usage of the above learning rate schedulers\n", "\n", @@ -647,8 +713,11 @@ { "cell_type": "code", "execution_count": 4, - "id": "108c1209", - "metadata": {}, + "id": "34ddb829", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "momentum_scheduler = Momentum(eta=1e-3, momentum=0.9)\n", @@ -657,8 +726,10 @@ }, { "cell_type": "markdown", - "id": "d1c423f0", - "metadata": {}, + "id": "e43498d4", + "metadata": { + "editable": true + }, "source": [ "Here is a small example for how a segment of code using schedulers\n", "could look. Switching out the schedulers is simple." @@ -667,8 +738,11 @@ { "cell_type": "code", "execution_count": 5, - "id": "63c8c749", - "metadata": {}, + "id": "f05b9625", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "weights = np.ones((3,3))\n", @@ -686,8 +760,10 @@ }, { "cell_type": "markdown", - "id": "7cb80992", - "metadata": {}, + "id": "19cf9841", + "metadata": { + "editable": true + }, "source": [ "### Cost functions\n", "\n", @@ -700,8 +776,11 @@ { "cell_type": "code", "execution_count": 6, - "id": "a181dacb", - "metadata": {}, + "id": "993efa8d", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "import autograd.numpy as np\n", @@ -735,8 +814,10 @@ }, { "cell_type": "markdown", - "id": "26a7fe37", - "metadata": {}, + "id": "011c734c", + "metadata": { + "editable": true + }, "source": [ "Below we give a short example of how these cost function may be used\n", "to obtain results if you wish to test them out on your own using\n", @@ -746,8 +827,11 @@ { "cell_type": "code", "execution_count": 7, - "id": "5894bd31", - "metadata": {}, + "id": "9e1b97f5", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "from autograd import grad\n", @@ -764,8 +848,10 @@ }, { "cell_type": "markdown", - "id": "71141fab", - "metadata": {}, + "id": "4acd87b2", + "metadata": { + "editable": true + }, "source": [ "### Activation functions\n", "\n", @@ -778,8 +864,11 @@ { "cell_type": "code", "execution_count": 8, - "id": "433e0886", - "metadata": {}, + "id": "befa86ae", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "import autograd.numpy as np\n", @@ -833,8 +922,10 @@ }, { "cell_type": "markdown", - "id": "14c9d538", - "metadata": {}, + "id": "c20aa75e", + "metadata": { + "editable": true + }, "source": [ "Below follows a short demonstration of how to use an activation\n", "function. The derivative of the activation function will be important\n", @@ -846,8 +937,11 @@ { "cell_type": "code", "execution_count": 9, - "id": "4c3a44ef", - "metadata": {}, + "id": "e209f9e5", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "z = np.array([[4, 5, 6]]).T\n", @@ -864,8 +958,10 @@ }, { "cell_type": "markdown", - "id": "aa7f604e", - "metadata": {}, + "id": "524b409b", + "metadata": { + "editable": true + }, "source": [ "### The Neural Network\n", "\n", @@ -886,8 +982,11 @@ { "cell_type": "code", "execution_count": 10, - "id": "585a227b", - "metadata": {}, + "id": "083116d3", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "import math\n", @@ -1355,8 +1454,10 @@ }, { "cell_type": "markdown", - "id": "7de704af", - "metadata": {}, + "id": "e4ba55d0", + "metadata": { + "editable": true + }, "source": [ "Before we make a model, we will quickly generate a dataset we can use\n", "for our linear regression problem as shown below" @@ -1365,8 +1466,11 @@ { "cell_type": "code", "execution_count": 11, - "id": "212b0a35", - "metadata": {}, + "id": "c72a22c6", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "import autograd.numpy as np\n", @@ -1406,8 +1510,10 @@ }, { "cell_type": "markdown", - "id": "1ff4ec7b", - "metadata": {}, + "id": "25b63b47", + "metadata": { + "editable": true + }, "source": [ "Now that we have our dataset ready for the regression, we can create\n", "our regressor. Note that with the seed parameter, we can make sure our\n", @@ -1420,8 +1526,11 @@ { "cell_type": "code", "execution_count": 12, - "id": "57d8eca3", - "metadata": {}, + "id": "b6b4e461", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "input_nodes = X_train.shape[1]\n", @@ -1432,8 +1541,10 @@ }, { "cell_type": "markdown", - "id": "f1977bae", - "metadata": {}, + "id": "d7860b74", + "metadata": { + "editable": true + }, "source": [ "We then fit our model with our training data using the scheduler of our choice." ] @@ -1441,8 +1552,11 @@ { "cell_type": "code", "execution_count": 13, - "id": "31ae2a1e", - "metadata": {}, + "id": "00522c73", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "linear_regression.reset_weights() # reset weights such that previous runs or reruns don't affect the weights\n", @@ -1453,8 +1567,10 @@ }, { "cell_type": "markdown", - "id": "96a64da4", - "metadata": {}, + "id": "a57bfb12", + "metadata": { + "editable": true + }, "source": [ "Due to the progress bar we can see the MSE (train_error) throughout\n", "the FFNN's training. Note that the fit() function has some optional\n", @@ -1467,8 +1583,11 @@ { "cell_type": "code", "execution_count": 14, - "id": "246499fc", - "metadata": {}, + "id": "35259e41", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "linear_regression.reset_weights() # reset weights such that previous runs or reruns don't affect the weights\n", @@ -1478,8 +1597,10 @@ }, { "cell_type": "markdown", - "id": "61d11e17", - "metadata": {}, + "id": "4a403370", + "metadata": { + "editable": true + }, "source": [ "We see that given more epochs to train on, the regressor reaches a lower MSE.\n", "\n", @@ -1491,8 +1612,11 @@ { "cell_type": "code", "execution_count": 15, - "id": "b5b91899", - "metadata": {}, + "id": "6c791130", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "from sklearn.datasets import load_breast_cancer\n", @@ -1514,8 +1638,11 @@ { "cell_type": "code", "execution_count": 16, - "id": "4bd01b3d", - "metadata": {}, + "id": "0ac0258d", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "input_nodes = X_train.shape[1]\n", @@ -1526,8 +1653,10 @@ }, { "cell_type": "markdown", - "id": "3a138d66", - "metadata": {}, + "id": "a9c74baa", + "metadata": { + "editable": true + }, "source": [ "We will now make use of our validation data by passing it into our fit function as a keyword argument" ] @@ -1535,8 +1664,11 @@ { "cell_type": "code", "execution_count": 17, - "id": "faf1534e", - "metadata": {}, + "id": "e5021bbf", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "logistic_regression.reset_weights() # reset weights such that previous runs or reruns don't affect the weights\n", @@ -1547,8 +1679,10 @@ }, { "cell_type": "markdown", - "id": "33d2d346", - "metadata": {}, + "id": "ae0148bb", + "metadata": { + "editable": true + }, "source": [ "Finally, we will create a neural network with 2 hidden layers with activation functions." ] @@ -1556,8 +1690,11 @@ { "cell_type": "code", "execution_count": 18, - "id": "a8f0a61c", - "metadata": {}, + "id": "bb7e4340", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "input_nodes = X_train.shape[1]\n", @@ -1573,8 +1710,11 @@ { "cell_type": "code", "execution_count": 19, - "id": "d651702d", - "metadata": {}, + "id": "d0655afb", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "neural_network.reset_weights() # reset weights such that previous runs or reruns don't affect the weights\n", @@ -1585,8 +1725,10 @@ }, { "cell_type": "markdown", - "id": "200b64c0", - "metadata": {}, + "id": "dc8a90af", + "metadata": { + "editable": true + }, "source": [ "### Multiclass classification\n", "\n", @@ -1598,8 +1740,11 @@ { "cell_type": "code", "execution_count": 20, - "id": "98b8d59b", - "metadata": {}, + "id": "9305c08a", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "from sklearn.datasets import load_digits\n", @@ -1632,8 +1777,10 @@ }, { "cell_type": "markdown", - "id": "cadd7e47", - "metadata": {}, + "id": "8e208051", + "metadata": { + "editable": true + }, "source": [ "## Testing the XOR gate and other gates\n", "\n", @@ -1643,8 +1790,11 @@ { "cell_type": "code", "execution_count": 21, - "id": "a40e5cfe", - "metadata": {}, + "id": "db016d41", + "metadata": { + "collapsed": false, + "editable": true + }, "outputs": [], "source": [ "X = np.array([ [0, 0], [0, 1], [1, 0],[1, 1]],dtype=np.float64)\n", @@ -1663,32 +1813,16 @@ }, { "cell_type": "markdown", - "id": "b635db73", - "metadata": {}, + "id": "d1384449", + "metadata": { + "editable": true + }, "source": [ "Not bad, but the results depend strongly on the learning reate. Try different learning rates." ] } ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.10" - } - }, + "metadata": {}, "nbformat": 4, "nbformat_minor": 5 } diff --git a/doc/LectureNotes/_build/html/_sources/week43.ipynb b/doc/LectureNotes/_build/html/_sources/week43.ipynb index 8de3714cd..4c84cfe33 100644 --- a/doc/LectureNotes/_build/html/_sources/week43.ipynb +++ b/doc/LectureNotes/_build/html/_sources/week43.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "8d7cc066", + "id": "88f6e253", "metadata": { "editable": true }, @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "028dc8c6", + "id": "ebd16d73", "metadata": { "editable": true }, @@ -29,7 +29,7 @@ }, { "cell_type": "markdown", - "id": "15ef2310", + "id": "e9bc94b9", "metadata": { "editable": true }, @@ -73,7 +73,7 @@ }, { "cell_type": "markdown", - "id": "192aa783", + "id": "457d4421", "metadata": { "editable": true }, @@ -87,7 +87,7 @@ }, { "cell_type": "markdown", - "id": "22874f1a", + "id": "e86537af", "metadata": { "editable": true }, @@ -104,7 +104,7 @@ }, { "cell_type": "markdown", - "id": "29c53621", + "id": "14ffcfd0", "metadata": { "editable": true }, @@ -114,7 +114,7 @@ }, { "cell_type": "markdown", - "id": "c3ab8226", + "id": "5773ab41", "metadata": { "editable": true }, @@ -151,7 +151,7 @@ }, { "cell_type": "markdown", - "id": "d686af76", + "id": "fdcb6f1e", "metadata": { "editable": true }, @@ -189,7 +189,7 @@ }, { "cell_type": "markdown", - "id": "9e6ae224", + "id": "7bc3e18a", "metadata": { "editable": true }, @@ -201,7 +201,7 @@ }, { "cell_type": "markdown", - "id": "ee5e7e34", + "id": "b82f5167", "metadata": { "editable": true }, @@ -216,7 +216,7 @@ }, { "cell_type": "markdown", - "id": "da275174", + "id": "1ff6327f", "metadata": { "editable": true }, @@ -246,7 +246,7 @@ }, { "cell_type": "markdown", - "id": "78669a54", + "id": "fd88cb2a", "metadata": { "editable": true }, @@ -258,7 +258,7 @@ }, { "cell_type": "markdown", - "id": "453ff3ab", + "id": "277ccf21", "metadata": { "editable": true }, @@ -271,7 +271,7 @@ }, { "cell_type": "markdown", - "id": "9d82c2f1", + "id": "69024cd6", "metadata": { "editable": true }, @@ -281,7 +281,7 @@ }, { "cell_type": "markdown", - "id": "a22ab766", + "id": "3739f7f4", "metadata": { "editable": true }, @@ -296,7 +296,7 @@ }, { "cell_type": "markdown", - "id": "abfc4274", + "id": "891fbfbd", "metadata": { "editable": true }, @@ -306,7 +306,7 @@ }, { "cell_type": "markdown", - "id": "2b7b0970", + "id": "0befa9f2", "metadata": { "editable": true }, @@ -319,7 +319,7 @@ }, { "cell_type": "markdown", - "id": "d1e78b4a", + "id": "8b87520f", "metadata": { "editable": true }, @@ -329,7 +329,7 @@ }, { "cell_type": "markdown", - "id": "0ee46428", + "id": "0c36a6e9", "metadata": { "editable": true }, @@ -344,7 +344,7 @@ }, { "cell_type": "markdown", - "id": "bac66371", + "id": "6a5ebf2f", "metadata": { "editable": true }, @@ -354,7 +354,7 @@ }, { "cell_type": "markdown", - "id": "77606059", + "id": "5c2cce0f", "metadata": { "editable": true }, @@ -369,7 +369,7 @@ }, { "cell_type": "markdown", - "id": "b1a1f219", + "id": "6700bff0", "metadata": { "editable": true }, @@ -379,7 +379,7 @@ }, { "cell_type": "markdown", - "id": "a46fd0d7", + "id": "c9deb439", "metadata": { "editable": true }, @@ -392,7 +392,7 @@ }, { "cell_type": "markdown", - "id": "01e41f6f", + "id": "bca3d76a", "metadata": { "editable": true }, @@ -402,32 +402,33 @@ }, { "cell_type": "markdown", - "id": "371a2c47", + "id": "0fd2b2d0", "metadata": { "editable": true }, "source": [ "$$\n", - "\\boldsymbol{a}_o=\\boldsymbol{w}_h^T\\begin{bmatrix} 0 & 0 \\\\\n", + "\\boldsymbol{a}_o=\\begin{bmatrix} 0 & 0 \\\\\n", " 1 & 0 \\\\\n", "\t\t 1 & 0 \\\\\n", - "\t\t 2 & 1 \\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n", + "\t\t 2 & 1 \\end{bmatrix}\\begin{bmatrix} 1 \\\\\n", + " -2\\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n", "$$" ] }, { "cell_type": "markdown", - "id": "8ab62ed9", + "id": "aef5937c", "metadata": { "editable": true }, "source": [ - "the wanted result." + "the wanted result. Pay attention to the dimensionalities as well." ] }, { "cell_type": "markdown", - "id": "ee45366d", + "id": "784de267", "metadata": { "editable": true }, @@ -440,7 +441,7 @@ { "cell_type": "code", "execution_count": 1, - "id": "43b32c8a", + "id": "1529f64e", "metadata": { "collapsed": false, "editable": true @@ -510,7 +511,7 @@ }, { "cell_type": "markdown", - "id": "ce3f8d7b", + "id": "6c344985", "metadata": { "editable": true }, @@ -520,7 +521,7 @@ }, { "cell_type": "markdown", - "id": "0a60227f", + "id": "dda91d6e", "metadata": { "editable": true }, @@ -531,7 +532,7 @@ { "cell_type": "code", "execution_count": 2, - "id": "0574c4c7", + "id": "dc12224d", "metadata": { "collapsed": false, "editable": true @@ -596,7 +597,7 @@ }, { "cell_type": "markdown", - "id": "c3db2190", + "id": "7c9b27ed", "metadata": { "editable": true }, @@ -615,7 +616,7 @@ }, { "cell_type": "markdown", - "id": "3b6e8500", + "id": "e8e28114", "metadata": { "editable": true }, @@ -637,7 +638,7 @@ { "cell_type": "code", "execution_count": 3, - "id": "ee32fb88", + "id": "37a2ec80", "metadata": { "collapsed": false, "editable": true @@ -778,7 +779,7 @@ }, { "cell_type": "markdown", - "id": "6477d18f", + "id": "38ea41a5", "metadata": { "editable": true }, @@ -794,7 +795,7 @@ { "cell_type": "code", "execution_count": 4, - "id": "5a396095", + "id": "869cf239", "metadata": { "collapsed": false, "editable": true @@ -807,7 +808,7 @@ }, { "cell_type": "markdown", - "id": "28bd1ab9", + "id": "b9b25144", "metadata": { "editable": true }, @@ -819,7 +820,7 @@ { "cell_type": "code", "execution_count": 5, - "id": "fb5d04e9", + "id": "7d2dc23b", "metadata": { "collapsed": false, "editable": true @@ -841,7 +842,7 @@ }, { "cell_type": "markdown", - "id": "f1229684", + "id": "83b5e35f", "metadata": { "editable": true }, @@ -857,7 +858,7 @@ { "cell_type": "code", "execution_count": 6, - "id": "f4a50c76", + "id": "4c217329", "metadata": { "collapsed": false, "editable": true @@ -895,7 +896,7 @@ }, { "cell_type": "markdown", - "id": "3d646164", + "id": "a0515ac9", "metadata": { "editable": true }, @@ -908,7 +909,7 @@ { "cell_type": "code", "execution_count": 7, - "id": "b0057b55", + "id": "5eb41a10", "metadata": { "collapsed": false, "editable": true @@ -929,7 +930,7 @@ }, { "cell_type": "markdown", - "id": "37f67196", + "id": "0535d6fd", "metadata": { "editable": true }, @@ -945,7 +946,7 @@ { "cell_type": "code", "execution_count": 8, - "id": "ae3c2dad", + "id": "c55d6d5f", "metadata": { "collapsed": false, "editable": true @@ -1003,7 +1004,7 @@ }, { "cell_type": "markdown", - "id": "5be7f268", + "id": "b820a2a1", "metadata": { "editable": true }, @@ -1018,7 +1019,7 @@ { "cell_type": "code", "execution_count": 9, - "id": "5296db7b", + "id": "43974d31", "metadata": { "collapsed": false, "editable": true @@ -1039,7 +1040,7 @@ }, { "cell_type": "markdown", - "id": "fa62814a", + "id": "ec754834", "metadata": { "editable": true }, @@ -1063,7 +1064,7 @@ { "cell_type": "code", "execution_count": 10, - "id": "08db6527", + "id": "505e52ab", "metadata": { "collapsed": false, "editable": true @@ -1535,7 +1536,7 @@ }, { "cell_type": "markdown", - "id": "464f4548", + "id": "00aa7046", "metadata": { "editable": true }, @@ -1547,7 +1548,7 @@ { "cell_type": "code", "execution_count": 11, - "id": "ea3d3c51", + "id": "b0b45dd4", "metadata": { "collapsed": false, "editable": true @@ -1591,7 +1592,7 @@ }, { "cell_type": "markdown", - "id": "a6b49446", + "id": "cf9645c3", "metadata": { "editable": true }, @@ -1607,7 +1608,7 @@ { "cell_type": "code", "execution_count": 12, - "id": "4f0f50b6", + "id": "a792c324", "metadata": { "collapsed": false, "editable": true @@ -1622,7 +1623,7 @@ }, { "cell_type": "markdown", - "id": "8ae3f1e4", + "id": "e11ed70e", "metadata": { "editable": true }, @@ -1633,7 +1634,7 @@ { "cell_type": "code", "execution_count": 13, - "id": "4d206fa2", + "id": "dfd03f3c", "metadata": { "collapsed": false, "editable": true @@ -1648,7 +1649,7 @@ }, { "cell_type": "markdown", - "id": "27ffcb75", + "id": "99b1bd91", "metadata": { "editable": true }, @@ -1664,7 +1665,7 @@ { "cell_type": "code", "execution_count": 14, - "id": "8cf19432", + "id": "864038bb", "metadata": { "collapsed": false, "editable": true @@ -1678,7 +1679,7 @@ }, { "cell_type": "markdown", - "id": "97abfa15", + "id": "24d5f3cc", "metadata": { "editable": true }, @@ -1693,7 +1694,7 @@ { "cell_type": "code", "execution_count": 15, - "id": "5aa3cb16", + "id": "14df9a52", "metadata": { "collapsed": false, "editable": true @@ -1719,7 +1720,7 @@ { "cell_type": "code", "execution_count": 16, - "id": "793cb2e9", + "id": "adb3edf2", "metadata": { "collapsed": false, "editable": true @@ -1734,7 +1735,7 @@ }, { "cell_type": "markdown", - "id": "7b47a35a", + "id": "fa885022", "metadata": { "editable": true }, @@ -1745,7 +1746,7 @@ { "cell_type": "code", "execution_count": 17, - "id": "e34123b4", + "id": "1b862f90", "metadata": { "collapsed": false, "editable": true @@ -1760,7 +1761,7 @@ }, { "cell_type": "markdown", - "id": "413243c9", + "id": "e86e60dc", "metadata": { "editable": true }, @@ -1771,7 +1772,7 @@ { "cell_type": "code", "execution_count": 18, - "id": "aa7b9e8f", + "id": "9e578191", "metadata": { "collapsed": false, "editable": true @@ -1791,7 +1792,7 @@ { "cell_type": "code", "execution_count": 19, - "id": "c66ee57f", + "id": "bbfc34f4", "metadata": { "collapsed": false, "editable": true @@ -1806,7 +1807,7 @@ }, { "cell_type": "markdown", - "id": "aca7922f", + "id": "2ac7ad43", "metadata": { "editable": true }, @@ -1821,7 +1822,7 @@ { "cell_type": "code", "execution_count": 20, - "id": "1503f15a", + "id": "f4a821cd", "metadata": { "collapsed": false, "editable": true @@ -1858,7 +1859,7 @@ }, { "cell_type": "markdown", - "id": "838cf72d", + "id": "0fcf8bf2", "metadata": { "editable": true }, @@ -1871,7 +1872,7 @@ { "cell_type": "code", "execution_count": 21, - "id": "a4444105", + "id": "d91608cf", "metadata": { "collapsed": false, "editable": true @@ -1894,7 +1895,7 @@ }, { "cell_type": "markdown", - "id": "8bbdf09c", + "id": "494009be", "metadata": { "editable": true }, @@ -1904,7 +1905,7 @@ }, { "cell_type": "markdown", - "id": "c5cffe73", + "id": "db70a4fe", "metadata": { "editable": true }, @@ -1914,7 +1915,7 @@ }, { "cell_type": "markdown", - "id": "e88dc6ab", + "id": "e5fc9732", "metadata": { "editable": true }, @@ -1943,7 +1944,7 @@ }, { "cell_type": "markdown", - "id": "8ec227a0", + "id": "1f986c86", "metadata": { "editable": true }, @@ -1993,7 +1994,7 @@ { "cell_type": "code", "execution_count": 22, - "id": "5336138a", + "id": "0f845fb5", "metadata": { "collapsed": false, "editable": true @@ -2046,7 +2047,7 @@ }, { "cell_type": "markdown", - "id": "da4f9c76", + "id": "fbab1656", "metadata": { "editable": true }, @@ -2067,7 +2068,7 @@ { "cell_type": "code", "execution_count": 23, - "id": "3d4a38d4", + "id": "3ecd3028", "metadata": { "collapsed": false, "editable": true @@ -2105,7 +2106,7 @@ }, { "cell_type": "markdown", - "id": "bc7c43bb", + "id": "b45412df", "metadata": { "editable": true }, @@ -2149,7 +2150,7 @@ }, { "cell_type": "markdown", - "id": "60a15786", + "id": "e90b1e65", "metadata": { "editable": true }, @@ -2189,7 +2190,7 @@ }, { "cell_type": "markdown", - "id": "d9b2c952", + "id": "92bff738", "metadata": { "editable": true }, @@ -2210,7 +2211,7 @@ { "cell_type": "code", "execution_count": 24, - "id": "a6dfcaaf", + "id": "8eb225e4", "metadata": { "collapsed": false, "editable": true @@ -2236,7 +2237,7 @@ }, { "cell_type": "markdown", - "id": "623ec89c", + "id": "da1e7ad6", "metadata": { "editable": true }, @@ -2264,7 +2265,7 @@ }, { "cell_type": "markdown", - "id": "391b8f09", + "id": "52ea3780", "metadata": { "editable": true }, @@ -2301,7 +2302,7 @@ { "cell_type": "code", "execution_count": 25, - "id": "a3a7a56e", + "id": "8ec12507", "metadata": { "collapsed": false, "editable": true @@ -2347,7 +2348,7 @@ }, { "cell_type": "markdown", - "id": "6a467f9c", + "id": "518a6c33", "metadata": { "editable": true }, @@ -2378,7 +2379,7 @@ }, { "cell_type": "markdown", - "id": "824f2150", + "id": "9e4fe561", "metadata": { "editable": true }, @@ -2416,7 +2417,7 @@ }, { "cell_type": "markdown", - "id": "ad801a4f", + "id": "331db754", "metadata": { "editable": true }, @@ -2450,7 +2451,7 @@ }, { "cell_type": "markdown", - "id": "adbd5bf5", + "id": "94f8797f", "metadata": { "editable": true }, @@ -2491,7 +2492,7 @@ { "cell_type": "code", "execution_count": 26, - "id": "03850373", + "id": "6cc0ad5a", "metadata": { "collapsed": false, "editable": true @@ -2570,7 +2571,7 @@ }, { "cell_type": "markdown", - "id": "5c4ce702", + "id": "66341fe5", "metadata": { "editable": true }, @@ -2591,7 +2592,7 @@ }, { "cell_type": "markdown", - "id": "f54c055f", + "id": "4654bdd2", "metadata": { "editable": true }, @@ -2605,7 +2606,7 @@ { "cell_type": "code", "execution_count": 27, - "id": "05fadefb", + "id": "84200c9e", "metadata": { "collapsed": false, "editable": true @@ -2715,7 +2716,7 @@ }, { "cell_type": "markdown", - "id": "6d6bba32", + "id": "2fade818", "metadata": { "editable": true }, @@ -2734,7 +2735,7 @@ { "cell_type": "code", "execution_count": 28, - "id": "5605c90f", + "id": "da2d74fa", "metadata": { "collapsed": false, "editable": true @@ -2761,7 +2762,7 @@ }, { "cell_type": "markdown", - "id": "f22bb889", + "id": "45f911b8", "metadata": { "editable": true }, @@ -2775,7 +2776,7 @@ { "cell_type": "code", "execution_count": 29, - "id": "a097c9e1", + "id": "b21a2c19", "metadata": { "collapsed": false, "editable": true @@ -2806,7 +2807,7 @@ }, { "cell_type": "markdown", - "id": "bc02f298", + "id": "80801250", "metadata": { "editable": true }, @@ -2817,7 +2818,7 @@ { "cell_type": "code", "execution_count": 30, - "id": "970ba03e", + "id": "303e085a", "metadata": { "collapsed": false, "editable": true @@ -2861,7 +2862,7 @@ }, { "cell_type": "markdown", - "id": "e4ff0700", + "id": "9358790a", "metadata": { "editable": true }, @@ -2884,7 +2885,7 @@ { "cell_type": "code", "execution_count": 31, - "id": "8bc77d1c", + "id": "a238def8", "metadata": { "collapsed": false, "editable": true @@ -2911,7 +2912,7 @@ }, { "cell_type": "markdown", - "id": "76d38bcf", + "id": "2ef943ac", "metadata": { "editable": true }, @@ -2922,7 +2923,7 @@ { "cell_type": "code", "execution_count": 32, - "id": "d22894cb", + "id": "afeabf8f", "metadata": { "collapsed": false, "editable": true @@ -2967,7 +2968,7 @@ }, { "cell_type": "markdown", - "id": "d4efa31d", + "id": "3dd5dfb4", "metadata": { "editable": true }, @@ -2985,7 +2986,7 @@ }, { "cell_type": "markdown", - "id": "d6caddb7", + "id": "72754d13", "metadata": { "editable": true }, @@ -3020,7 +3021,7 @@ { "cell_type": "code", "execution_count": 33, - "id": "96f112a6", + "id": "9fc42ba6", "metadata": { "collapsed": false, "editable": true @@ -3032,7 +3033,7 @@ }, { "cell_type": "markdown", - "id": "2dee5b42", + "id": "35795551", "metadata": { "editable": true }, @@ -3044,7 +3045,7 @@ { "cell_type": "code", "execution_count": 34, - "id": "29e13f69", + "id": "1dabca19", "metadata": { "collapsed": false, "editable": true @@ -3057,7 +3058,7 @@ }, { "cell_type": "markdown", - "id": "4695192d", + "id": "be829505", "metadata": { "editable": true }, @@ -3068,7 +3069,7 @@ { "cell_type": "code", "execution_count": 35, - "id": "573fade6", + "id": "7d92ce1c", "metadata": { "collapsed": false, "editable": true @@ -3081,7 +3082,7 @@ }, { "cell_type": "markdown", - "id": "0d8ced47", + "id": "057049d7", "metadata": { "editable": true }, @@ -3096,7 +3097,7 @@ { "cell_type": "code", "execution_count": 36, - "id": "28886e64", + "id": "0837641b", "metadata": { "collapsed": false, "editable": true @@ -3108,7 +3109,7 @@ }, { "cell_type": "markdown", - "id": "298e5186", + "id": "19d5a72d", "metadata": { "editable": true }, @@ -3120,7 +3121,7 @@ }, { "cell_type": "markdown", - "id": "ea131902", + "id": "4ae0b49b", "metadata": { "editable": true }, @@ -3133,7 +3134,7 @@ { "cell_type": "code", "execution_count": 37, - "id": "686215bb", + "id": "429afe53", "metadata": { "collapsed": false, "editable": true @@ -3188,7 +3189,7 @@ { "cell_type": "code", "execution_count": 38, - "id": "fa9efbca", + "id": "887c06b9", "metadata": { "collapsed": false, "editable": true @@ -3217,7 +3218,7 @@ { "cell_type": "code", "execution_count": 39, - "id": "5a6a0547", + "id": "a4d8f64e", "metadata": { "collapsed": false, "editable": true @@ -3247,7 +3248,7 @@ { "cell_type": "code", "execution_count": 40, - "id": "9df608ec", + "id": "b8fb8fa0", "metadata": { "collapsed": false, "editable": true @@ -3274,7 +3275,7 @@ { "cell_type": "code", "execution_count": 41, - "id": "8d20fdf7", + "id": "7777faa8", "metadata": { "collapsed": false, "editable": true @@ -3316,7 +3317,7 @@ }, { "cell_type": "markdown", - "id": "bd641a2a", + "id": "bb6d1d3e", "metadata": { "editable": true }, @@ -3327,7 +3328,7 @@ { "cell_type": "code", "execution_count": 42, - "id": "a6d8bf75", + "id": "d8c0caf4", "metadata": { "collapsed": false, "editable": true @@ -3504,7 +3505,7 @@ }, { "cell_type": "markdown", - "id": "505033e6", + "id": "2631b51d", "metadata": { "editable": true }, @@ -3532,7 +3533,7 @@ }, { "cell_type": "markdown", - "id": "d138fcf8", + "id": "357644b3", "metadata": { "editable": true }, @@ -3555,7 +3556,7 @@ }, { "cell_type": "markdown", - "id": "df986885", + "id": "06854c7f", "metadata": { "editable": true }, @@ -3586,7 +3587,7 @@ }, { "cell_type": "markdown", - "id": "67ccb46b", + "id": "bb26a6da", "metadata": { "editable": true }, @@ -3618,7 +3619,7 @@ }, { "cell_type": "markdown", - "id": "a043bdea", + "id": "0277931e", "metadata": { "editable": true }, @@ -3656,7 +3657,7 @@ }, { "cell_type": "markdown", - "id": "ac370685", + "id": "93a45265", "metadata": { "editable": true }, @@ -3681,7 +3682,7 @@ }, { "cell_type": "markdown", - "id": "68411972", + "id": "7feb8c33", "metadata": { "editable": true }, @@ -3693,7 +3694,7 @@ }, { "cell_type": "markdown", - "id": "68d05dd2", + "id": "1f55cf23", "metadata": { "editable": true }, @@ -3716,7 +3717,7 @@ }, { "cell_type": "markdown", - "id": "55c89a89", + "id": "7cea0ca3", "metadata": { "editable": true }, @@ -3736,7 +3737,7 @@ }, { "cell_type": "markdown", - "id": "20f0b6de", + "id": "086014d5", "metadata": { "editable": true }, @@ -3758,7 +3759,7 @@ }, { "cell_type": "markdown", - "id": "8f0a4e60", + "id": "9bc419af", "metadata": { "editable": true }, @@ -3776,7 +3777,7 @@ }, { "cell_type": "markdown", - "id": "ee9f6778", + "id": "a9198ed4", "metadata": { "editable": true }, @@ -3795,7 +3796,7 @@ }, { "cell_type": "markdown", - "id": "8ec34edc", + "id": "75c023d8", "metadata": { "editable": true }, @@ -3807,7 +3808,7 @@ }, { "cell_type": "markdown", - "id": "4cb4f14f", + "id": "2d2e4666", "metadata": { "editable": true }, @@ -3852,7 +3853,7 @@ }, { "cell_type": "markdown", - "id": "3ceba030", + "id": "23dc45c2", "metadata": { "editable": true }, @@ -3882,7 +3883,7 @@ }, { "cell_type": "markdown", - "id": "fad4c7c0", + "id": "8d80aba5", "metadata": { "editable": true }, @@ -3909,7 +3910,7 @@ }, { "cell_type": "markdown", - "id": "92edec9a", + "id": "b8d6cf49", "metadata": { "editable": true }, @@ -3923,7 +3924,7 @@ }, { "cell_type": "markdown", - "id": "07153151", + "id": "ba566ae5", "metadata": { "editable": true }, @@ -3940,7 +3941,7 @@ }, { "cell_type": "markdown", - "id": "31a707ec", + "id": "fddca9d2", "metadata": { "editable": true }, @@ -3956,7 +3957,7 @@ }, { "cell_type": "markdown", - "id": "d0cbacbc", + "id": "11ed9eb7", "metadata": { "editable": true }, @@ -3968,7 +3969,7 @@ }, { "cell_type": "markdown", - "id": "88e6378a", + "id": "ab228680", "metadata": { "editable": true }, @@ -3986,7 +3987,7 @@ }, { "cell_type": "markdown", - "id": "a85abfe5", + "id": "a620d020", "metadata": { "editable": true }, @@ -4007,7 +4008,7 @@ }, { "cell_type": "markdown", - "id": "28e312e0", + "id": "4de72e77", "metadata": { "editable": true }, @@ -4024,7 +4025,7 @@ }, { "cell_type": "markdown", - "id": "7e562a52", + "id": "60ef63bb", "metadata": { "editable": true }, @@ -4036,7 +4037,7 @@ }, { "cell_type": "markdown", - "id": "ca872cb5", + "id": "6c719d5b", "metadata": { "editable": true }, @@ -4047,7 +4048,7 @@ }, { "cell_type": "markdown", - "id": "3f5aaf97", + "id": "3a6248cc", "metadata": { "editable": true }, @@ -4064,7 +4065,7 @@ }, { "cell_type": "markdown", - "id": "ea91ec87", + "id": "937fbb4d", "metadata": { "editable": true }, @@ -4075,7 +4076,7 @@ }, { "cell_type": "markdown", - "id": "23d4791e", + "id": "985098ad", "metadata": { "editable": true }, @@ -4091,7 +4092,7 @@ }, { "cell_type": "markdown", - "id": "645d3042", + "id": "7a2ade22", "metadata": { "editable": true }, @@ -4103,7 +4104,7 @@ }, { "cell_type": "markdown", - "id": "1957cac1", + "id": "4b50fe09", "metadata": { "editable": true }, @@ -4120,7 +4121,7 @@ }, { "cell_type": "markdown", - "id": "7ba994c2", + "id": "310ac762", "metadata": { "editable": true }, @@ -4132,7 +4133,7 @@ }, { "cell_type": "markdown", - "id": "0b4d1e86", + "id": "8ce2620f", "metadata": { "editable": true }, @@ -4150,7 +4151,7 @@ }, { "cell_type": "markdown", - "id": "7c000d4f", + "id": "78459d15", "metadata": { "editable": true }, @@ -4160,7 +4161,7 @@ }, { "cell_type": "markdown", - "id": "5c6e9896", + "id": "d40f94e2", "metadata": { "editable": true }, @@ -4172,7 +4173,7 @@ }, { "cell_type": "markdown", - "id": "c610b5a3", + "id": "c5f2c97d", "metadata": { "editable": true }, @@ -4189,7 +4190,7 @@ }, { "cell_type": "markdown", - "id": "7b156ba0", + "id": "bb30f7cc", "metadata": { "editable": true }, @@ -4201,7 +4202,7 @@ }, { "cell_type": "markdown", - "id": "6332b4fb", + "id": "a5d8512c", "metadata": { "editable": true }, @@ -4212,7 +4213,7 @@ }, { "cell_type": "markdown", - "id": "dadb48a5", + "id": "1c888249", "metadata": { "editable": true }, @@ -4224,7 +4225,7 @@ }, { "cell_type": "markdown", - "id": "14979de9", + "id": "477dada7", "metadata": { "editable": true }, @@ -4234,7 +4235,7 @@ }, { "cell_type": "markdown", - "id": "b15978ac", + "id": "8e5e2b68", "metadata": { "editable": true }, @@ -4254,7 +4255,7 @@ }, { "cell_type": "markdown", - "id": "ab70d7dc", + "id": "84150e8d", "metadata": { "editable": true }, @@ -4271,7 +4272,7 @@ }, { "cell_type": "markdown", - "id": "3158ad88", + "id": "3f25aabb", "metadata": { "editable": true }, @@ -4290,7 +4291,7 @@ }, { "cell_type": "markdown", - "id": "424ea4cd", + "id": "ce6c0a98", "metadata": { "editable": true }, @@ -4302,7 +4303,7 @@ }, { "cell_type": "markdown", - "id": "9875f210", + "id": "17805209", "metadata": { "editable": true }, @@ -4312,7 +4313,7 @@ }, { "cell_type": "markdown", - "id": "c317c081", + "id": "f9984101", "metadata": { "editable": true }, @@ -4329,7 +4330,7 @@ }, { "cell_type": "markdown", - "id": "850d7062", + "id": "4abcf7b3", "metadata": { "editable": true }, @@ -4339,7 +4340,7 @@ }, { "cell_type": "markdown", - "id": "05b6c21e", + "id": "3a4b99d7", "metadata": { "editable": true }, @@ -4355,7 +4356,7 @@ }, { "cell_type": "markdown", - "id": "52090d6f", + "id": "261d5f57", "metadata": { "editable": true }, @@ -4367,7 +4368,7 @@ }, { "cell_type": "markdown", - "id": "f4f56b6e", + "id": "0c7e0ed7", "metadata": { "editable": true }, @@ -4379,7 +4380,7 @@ }, { "cell_type": "markdown", - "id": "e76317e2", + "id": "410091f0", "metadata": { "editable": true }, @@ -4391,7 +4392,7 @@ }, { "cell_type": "markdown", - "id": "cf1ff27d", + "id": "17f0e1e7", "metadata": { "editable": true }, @@ -4401,7 +4402,7 @@ }, { "cell_type": "markdown", - "id": "c6558ca7", + "id": "acac4ddf", "metadata": { "editable": true }, @@ -4413,7 +4414,7 @@ }, { "cell_type": "markdown", - "id": "eb10b3cf", + "id": "0b3bdcec", "metadata": { "editable": true }, @@ -4430,7 +4431,7 @@ }, { "cell_type": "markdown", - "id": "95040138", + "id": "8b71f89e", "metadata": { "editable": true }, @@ -4440,7 +4441,7 @@ }, { "cell_type": "markdown", - "id": "efbb37df", + "id": "b1a4b8b2", "metadata": { "editable": true }, @@ -4452,7 +4453,7 @@ }, { "cell_type": "markdown", - "id": "ce339463", + "id": "bb3f35b1", "metadata": { "editable": true }, @@ -4466,7 +4467,7 @@ }, { "cell_type": "markdown", - "id": "51d1021d", + "id": "bb8eac7a", "metadata": { "editable": true }, @@ -4482,7 +4483,7 @@ }, { "cell_type": "markdown", - "id": "5471c13f", + "id": "23361eba", "metadata": { "editable": true }, @@ -4494,7 +4495,7 @@ }, { "cell_type": "markdown", - "id": "ca1015ba", + "id": "94bf3ada", "metadata": { "editable": true }, @@ -4516,7 +4517,7 @@ }, { "cell_type": "markdown", - "id": "325048d9", + "id": "ff0afe4b", "metadata": { "editable": true }, @@ -4528,7 +4529,7 @@ }, { "cell_type": "markdown", - "id": "5c6b185f", + "id": "393ee959", "metadata": { "editable": true }, @@ -4551,7 +4552,7 @@ }, { "cell_type": "markdown", - "id": "eddea0e3", + "id": "f2df5cfc", "metadata": { "editable": true }, @@ -4567,7 +4568,7 @@ }, { "cell_type": "markdown", - "id": "39eeb7a1", + "id": "f6358bb7", "metadata": { "editable": true }, @@ -4579,7 +4580,7 @@ }, { "cell_type": "markdown", - "id": "25477c00", + "id": "ef56bb84", "metadata": { "editable": true }, @@ -4603,7 +4604,7 @@ }, { "cell_type": "markdown", - "id": "dbdce765", + "id": "acd41944", "metadata": { "editable": true }, @@ -4615,7 +4616,7 @@ }, { "cell_type": "markdown", - "id": "3b833783", + "id": "1a2a7e92", "metadata": { "editable": true }, @@ -4636,7 +4637,7 @@ }, { "cell_type": "markdown", - "id": "98103cac", + "id": "a082637c", "metadata": { "editable": true }, @@ -4648,7 +4649,7 @@ }, { "cell_type": "markdown", - "id": "01de1e28", + "id": "dfc24dff", "metadata": { "editable": true }, @@ -4667,7 +4668,7 @@ }, { "cell_type": "markdown", - "id": "3d50cf6a", + "id": "90f81e55", "metadata": { "editable": true }, @@ -4677,7 +4678,7 @@ }, { "cell_type": "markdown", - "id": "221269b0", + "id": "3693fc3b", "metadata": { "editable": true }, @@ -4691,7 +4692,7 @@ }, { "cell_type": "markdown", - "id": "b736af88", + "id": "2bb540dd", "metadata": { "editable": true }, @@ -4703,7 +4704,7 @@ }, { "cell_type": "markdown", - "id": "ea505169", + "id": "5fad7cc5", "metadata": { "editable": true }, @@ -4715,7 +4716,7 @@ }, { "cell_type": "markdown", - "id": "515470a3", + "id": "c9a47e0a", "metadata": { "editable": true }, @@ -4732,7 +4733,7 @@ }, { "cell_type": "markdown", - "id": "f9eaeace", + "id": "f579f1d0", "metadata": { "editable": true }, @@ -4744,7 +4745,7 @@ }, { "cell_type": "markdown", - "id": "e6488f9b", + "id": "f980cb6a", "metadata": { "editable": true }, @@ -4766,7 +4767,7 @@ }, { "cell_type": "markdown", - "id": "f2bc476e", + "id": "de47a73d", "metadata": { "editable": true }, @@ -4781,7 +4782,7 @@ }, { "cell_type": "markdown", - "id": "2d7b7d19", + "id": "5eacb34e", "metadata": { "editable": true }, @@ -4792,7 +4793,7 @@ { "cell_type": "code", "execution_count": 43, - "id": "4aad6e10", + "id": "77235f88", "metadata": { "collapsed": false, "editable": true @@ -4947,7 +4948,7 @@ }, { "cell_type": "markdown", - "id": "f8c418c1", + "id": "0147790d", "metadata": { "editable": true }, @@ -4962,7 +4963,7 @@ { "cell_type": "code", "execution_count": 44, - "id": "96758ada", + "id": "59eb96af", "metadata": { "collapsed": false, "editable": true @@ -5131,7 +5132,7 @@ }, { "cell_type": "markdown", - "id": "c62fedb8", + "id": "dc02c291", "metadata": { "editable": true }, @@ -5144,7 +5145,7 @@ }, { "cell_type": "markdown", - "id": "1f962431", + "id": "c8fff51e", "metadata": { "editable": true }, @@ -5161,7 +5162,7 @@ }, { "cell_type": "markdown", - "id": "71b1d885", + "id": "3751edf7", "metadata": { "editable": true }, @@ -5177,7 +5178,7 @@ }, { "cell_type": "markdown", - "id": "0b96a028", + "id": "a502c731", "metadata": { "editable": true }, @@ -5190,7 +5191,7 @@ }, { "cell_type": "markdown", - "id": "311ae3d3", + "id": "eb73f07e", "metadata": { "editable": true }, @@ -5207,7 +5208,7 @@ }, { "cell_type": "markdown", - "id": "98cb3d44", + "id": "9ab9d930", "metadata": { "editable": true }, @@ -5219,7 +5220,7 @@ }, { "cell_type": "markdown", - "id": "3e8e134d", + "id": "9cb8689a", "metadata": { "editable": true }, @@ -5246,7 +5247,7 @@ }, { "cell_type": "markdown", - "id": "a1844ff9", + "id": "d21e3a14", "metadata": { "editable": true }, @@ -5259,7 +5260,7 @@ { "cell_type": "code", "execution_count": 45, - "id": "4410b99e", + "id": "833da16b", "metadata": { "collapsed": false, "editable": true @@ -5433,7 +5434,7 @@ }, { "cell_type": "markdown", - "id": "f0ab0e0f", + "id": "0fdcf8c5", "metadata": { "editable": true }, @@ -5453,7 +5454,7 @@ }, { "cell_type": "markdown", - "id": "333b0a8d", + "id": "0a057338", "metadata": { "editable": true }, @@ -5468,7 +5469,7 @@ }, { "cell_type": "markdown", - "id": "5b358fbf", + "id": "6721bcf2", "metadata": { "editable": true }, @@ -5482,7 +5483,7 @@ }, { "cell_type": "markdown", - "id": "c5d60864", + "id": "dc3db9fd", "metadata": { "editable": true }, @@ -5498,7 +5499,7 @@ }, { "cell_type": "markdown", - "id": "bcce6eb8", + "id": "9af3fd6a", "metadata": { "editable": true }, @@ -5508,7 +5509,7 @@ }, { "cell_type": "markdown", - "id": "e6497fd7", + "id": "4c2da445", "metadata": { "editable": true }, @@ -5530,7 +5531,7 @@ }, { "cell_type": "markdown", - "id": "31b650fc", + "id": "93b58380", "metadata": { "editable": true }, @@ -5544,7 +5545,7 @@ { "cell_type": "code", "execution_count": 46, - "id": "6e267e72", + "id": "cb73915d", "metadata": { "collapsed": false, "editable": true @@ -5620,7 +5621,7 @@ }, { "cell_type": "markdown", - "id": "8b054a85", + "id": "c9d250c7", "metadata": { "editable": true }, @@ -5632,7 +5633,7 @@ }, { "cell_type": "markdown", - "id": "f637dd9d", + "id": "0d67bc8c", "metadata": { "editable": true }, @@ -5649,7 +5650,7 @@ }, { "cell_type": "markdown", - "id": "ac088e86", + "id": "fe4ee5a8", "metadata": { "editable": true }, @@ -5661,7 +5662,7 @@ }, { "cell_type": "markdown", - "id": "14afd7fa", + "id": "62b400ca", "metadata": { "editable": true }, @@ -5676,7 +5677,7 @@ }, { "cell_type": "markdown", - "id": "0a2680eb", + "id": "7d4723f2", "metadata": { "editable": true }, @@ -5688,7 +5689,7 @@ }, { "cell_type": "markdown", - "id": "7e30575f", + "id": "97889b0e", "metadata": { "editable": true }, @@ -5700,7 +5701,7 @@ }, { "cell_type": "markdown", - "id": "3b30e08a", + "id": "236028bc", "metadata": { "editable": true }, @@ -5712,7 +5713,7 @@ }, { "cell_type": "markdown", - "id": "be7d958b", + "id": "a4334818", "metadata": { "editable": true }, @@ -5722,7 +5723,7 @@ }, { "cell_type": "markdown", - "id": "d6a52e39", + "id": "8330dd77", "metadata": { "editable": true }, @@ -5739,7 +5740,7 @@ }, { "cell_type": "markdown", - "id": "488d0a14", + "id": "78522018", "metadata": { "editable": true }, @@ -5751,7 +5752,7 @@ }, { "cell_type": "markdown", - "id": "59834674", + "id": "943956e4", "metadata": { "editable": true }, @@ -5763,7 +5764,7 @@ }, { "cell_type": "markdown", - "id": "af640638", + "id": "3c7b57e2", "metadata": { "editable": true }, @@ -5773,7 +5774,7 @@ }, { "cell_type": "markdown", - "id": "8d83ea23", + "id": "55173c99", "metadata": { "editable": true }, @@ -5785,7 +5786,7 @@ }, { "cell_type": "markdown", - "id": "4d4e4ea8", + "id": "a6d078e4", "metadata": { "editable": true }, @@ -5796,7 +5797,7 @@ { "cell_type": "code", "execution_count": 47, - "id": "ad4cc32f", + "id": "452c599c", "metadata": { "collapsed": false, "editable": true @@ -5957,7 +5958,7 @@ }, { "cell_type": "markdown", - "id": "ceb283ce", + "id": "8ca2348f", "metadata": { "editable": true }, @@ -5979,7 +5980,7 @@ }, { "cell_type": "markdown", - "id": "a68e0e56", + "id": "0ccc174e", "metadata": { "editable": true }, @@ -5996,7 +5997,7 @@ }, { "cell_type": "markdown", - "id": "8441e4e6", + "id": "d4601257", "metadata": { "editable": true }, @@ -6006,7 +6007,7 @@ }, { "cell_type": "markdown", - "id": "1d343e68", + "id": "9ec01889", "metadata": { "editable": true }, @@ -6021,7 +6022,7 @@ }, { "cell_type": "markdown", - "id": "1c566531", + "id": "71993d6c", "metadata": { "editable": true }, @@ -6031,7 +6032,7 @@ }, { "cell_type": "markdown", - "id": "7a06b755", + "id": "f6acfae4", "metadata": { "editable": true }, @@ -6046,7 +6047,7 @@ }, { "cell_type": "markdown", - "id": "2e88c504", + "id": "6540422f", "metadata": { "editable": true }, @@ -6057,7 +6058,7 @@ }, { "cell_type": "markdown", - "id": "7299b0d3", + "id": "fd8c2326", "metadata": { "editable": true }, @@ -6077,7 +6078,7 @@ }, { "cell_type": "markdown", - "id": "c849f0cc", + "id": "74eabad7", "metadata": { "editable": true }, @@ -6089,7 +6090,7 @@ }, { "cell_type": "markdown", - "id": "f19b2ed7", + "id": "f9d16e2f", "metadata": { "editable": true }, @@ -6126,7 +6127,7 @@ }, { "cell_type": "markdown", - "id": "96581350", + "id": "68c24098", "metadata": { "editable": true }, @@ -6136,7 +6137,7 @@ }, { "cell_type": "markdown", - "id": "2c5aa09d", + "id": "02c1e06d", "metadata": { "editable": true }, @@ -6149,7 +6150,7 @@ { "cell_type": "code", "execution_count": 48, - "id": "9b979206", + "id": "972b8e94", "metadata": { "collapsed": false, "editable": true @@ -6350,7 +6351,7 @@ }, { "cell_type": "markdown", - "id": "ec7cab35", + "id": "734d97bc", "metadata": { "editable": true }, @@ -6367,7 +6368,7 @@ }, { "cell_type": "markdown", - "id": "7366658f", + "id": "2c2d0e2c", "metadata": { "editable": true }, @@ -6384,7 +6385,7 @@ }, { "cell_type": "markdown", - "id": "b6557284", + "id": "9de00307", "metadata": { "editable": true }, @@ -6394,7 +6395,7 @@ }, { "cell_type": "markdown", - "id": "df2d7d07", + "id": "cb659253", "metadata": { "editable": true }, @@ -6409,7 +6410,7 @@ }, { "cell_type": "markdown", - "id": "aad0506a", + "id": "909d23ae", "metadata": { "editable": true }, @@ -6423,7 +6424,7 @@ }, { "cell_type": "markdown", - "id": "9e5776d1", + "id": "e3607f9e", "metadata": { "editable": true }, @@ -6436,7 +6437,7 @@ }, { "cell_type": "markdown", - "id": "7fad71c5", + "id": "e0254d92", "metadata": { "editable": true }, @@ -6456,7 +6457,7 @@ }, { "cell_type": "markdown", - "id": "d98bd52b", + "id": "7a787737", "metadata": { "editable": true }, @@ -6468,7 +6469,7 @@ }, { "cell_type": "markdown", - "id": "3f6cb731", + "id": "42cfda53", "metadata": { "editable": true }, @@ -6480,7 +6481,7 @@ }, { "cell_type": "markdown", - "id": "0efeb6a7", + "id": "41fdd74a", "metadata": { "editable": true }, @@ -6492,7 +6493,7 @@ }, { "cell_type": "markdown", - "id": "b3367fd8", + "id": "9a43a5c3", "metadata": { "editable": true }, @@ -6502,7 +6503,7 @@ }, { "cell_type": "markdown", - "id": "f5cdf037", + "id": "2deb98de", "metadata": { "editable": true }, @@ -6514,7 +6515,7 @@ }, { "cell_type": "markdown", - "id": "39090b0c", + "id": "367f7d4b", "metadata": { "editable": true }, @@ -6526,7 +6527,7 @@ }, { "cell_type": "markdown", - "id": "306f52ce", + "id": "4ace8d41", "metadata": { "editable": true }, @@ -6538,7 +6539,7 @@ }, { "cell_type": "markdown", - "id": "4dddd0e4", + "id": "014d9b72", "metadata": { "editable": true }, @@ -6548,7 +6549,7 @@ }, { "cell_type": "markdown", - "id": "19ba57a3", + "id": "91cb0d4f", "metadata": { "editable": true }, @@ -6564,7 +6565,7 @@ }, { "cell_type": "markdown", - "id": "3f4b369e", + "id": "7015c1df", "metadata": { "editable": true }, @@ -6574,7 +6575,7 @@ }, { "cell_type": "markdown", - "id": "01054c66", + "id": "a170f9bf", "metadata": { "editable": true }, @@ -6586,7 +6587,7 @@ }, { "cell_type": "markdown", - "id": "48250dfa", + "id": "f79c87b0", "metadata": { "editable": true }, @@ -6603,7 +6604,7 @@ }, { "cell_type": "markdown", - "id": "830538cd", + "id": "7b00c2c7", "metadata": { "editable": true }, @@ -6613,7 +6614,7 @@ }, { "cell_type": "markdown", - "id": "1e05f3d1", + "id": "1da2ec1f", "metadata": { "editable": true }, @@ -6629,7 +6630,7 @@ }, { "cell_type": "markdown", - "id": "278b7644", + "id": "d048b2b0", "metadata": { "editable": true }, @@ -6643,7 +6644,7 @@ }, { "cell_type": "markdown", - "id": "08bf068d", + "id": "2a5423c6", "metadata": { "editable": true }, @@ -6662,7 +6663,7 @@ { "cell_type": "code", "execution_count": 49, - "id": "fb15b704", + "id": "39978a3f", "metadata": { "collapsed": false, "editable": true @@ -6717,7 +6718,7 @@ }, { "cell_type": "markdown", - "id": "ca43eaaa", + "id": "d86acd9a", "metadata": { "editable": true }, @@ -6747,7 +6748,7 @@ }, { "cell_type": "markdown", - "id": "8cb99e50", + "id": "219af542", "metadata": { "editable": true }, @@ -6776,7 +6777,7 @@ { "cell_type": "code", "execution_count": 50, - "id": "2c311458", + "id": "0300f83e", "metadata": { "collapsed": false, "editable": true @@ -6823,7 +6824,7 @@ }, { "cell_type": "markdown", - "id": "6ce6fcdb", + "id": "63ff2d7d", "metadata": { "editable": true }, @@ -6849,7 +6850,7 @@ { "cell_type": "code", "execution_count": 51, - "id": "975ad28f", + "id": "504a8a89", "metadata": { "collapsed": false, "editable": true @@ -7083,7 +7084,7 @@ }, { "cell_type": "markdown", - "id": "a85b7bc6", + "id": "2154560c", "metadata": { "editable": true }, @@ -7095,7 +7096,7 @@ }, { "cell_type": "markdown", - "id": "913742fb", + "id": "36990efc", "metadata": { "editable": true }, @@ -7107,7 +7108,7 @@ }, { "cell_type": "markdown", - "id": "9b936d66", + "id": "d4e6e7d4", "metadata": { "editable": true }, @@ -7119,7 +7120,7 @@ }, { "cell_type": "markdown", - "id": "a0cd719f", + "id": "cca6cfed", "metadata": { "editable": true }, @@ -7136,7 +7137,7 @@ }, { "cell_type": "markdown", - "id": "8a8ddb73", + "id": "19f73071", "metadata": { "editable": true }, @@ -7146,7 +7147,7 @@ }, { "cell_type": "markdown", - "id": "460bb8e2", + "id": "3e637804", "metadata": { "editable": true }, @@ -7158,7 +7159,7 @@ }, { "cell_type": "markdown", - "id": "619814ea", + "id": "1a3ef69a", "metadata": { "editable": true }, @@ -7175,7 +7176,7 @@ }, { "cell_type": "markdown", - "id": "833fef22", + "id": "b9206a11", "metadata": { "editable": true }, @@ -7186,7 +7187,7 @@ }, { "cell_type": "markdown", - "id": "72df2582", + "id": "3050dcc1", "metadata": { "editable": true }, @@ -7206,7 +7207,7 @@ }, { "cell_type": "markdown", - "id": "efc2be56", + "id": "2adca788", "metadata": { "editable": true }, @@ -7216,7 +7217,7 @@ }, { "cell_type": "markdown", - "id": "8bee39ce", + "id": "9d36478f", "metadata": { "editable": true }, @@ -7242,7 +7243,7 @@ }, { "cell_type": "markdown", - "id": "e133bda5", + "id": "f5a39291", "metadata": { "editable": true }, @@ -7258,7 +7259,7 @@ }, { "cell_type": "markdown", - "id": "8cc804aa", + "id": "2090b5b8", "metadata": { "editable": true }, @@ -7269,7 +7270,7 @@ { "cell_type": "code", "execution_count": 52, - "id": "8e3fb51d", + "id": "0598530e", "metadata": { "collapsed": false, "editable": true @@ -7500,7 +7501,7 @@ }, { "cell_type": "markdown", - "id": "a77decf5", + "id": "518138c8", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/_build/html/exercisesweek43.html b/doc/LectureNotes/_build/html/exercisesweek43.html index 120ef889f..5c1994bb7 100644 --- a/doc/LectureNotes/_build/html/exercisesweek43.html +++ b/doc/LectureNotes/_build/html/exercisesweek43.html @@ -750,12 +750,13 @@ inputs \(x_1\) and and multiplying with \(\boldsymbol{a}_h\) gives the output
the wanted result.
+the wanted result. Pay attention to the dimensionalities as well.
Adam: Eta=0.0001, Lambda=0
-
- [----------------------------------------] 0.000% | train_error: 11.3 | train_acc: 0.453 | val_error: 10.4 | val_acc: 0.497
+ [----------------------------------------] 0.000% | train_error: 11.3 | train_acc: 0.453 | val_error: 10.4 | val_acc: 0.497
[----------------------------------------] 0.1000% | train_error: 11.4 | train_acc: 0.448 | val_error: 10.4 | val_acc: 0.497
diff --git a/doc/LectureNotes/_build/html/searchindex.js b/doc/LectureNotes/_build/html/searchindex.js
index 848be62de..3f4072a76 100644
--- a/doc/LectureNotes/_build/html/searchindex.js
+++ b/doc/LectureNotes/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["chapter1","chapter10","chapter11","chapter12","chapter13","chapter2","chapter3","chapter4","chapter5","chapter6","chapter7","chapter8","chapter9","chapteroptimization","clustering","exercisesweek34","exercisesweek35","exercisesweek36","exercisesweek37","exercisesweek38","exercisesweek39","exercisesweek41","exercisesweek42","exercisesweek43","intro","linalg","project1","project2","schedule","statistics","teachers","textbooks","week34","week35","week36","week37","week38","week39","week40","week41","week42","week43"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["chapter1.ipynb","chapter10.ipynb","chapter11.ipynb","chapter12.ipynb","chapter13.ipynb","chapter2.ipynb","chapter3.ipynb","chapter4.ipynb","chapter5.ipynb","chapter6.ipynb","chapter7.ipynb","chapter8.ipynb","chapter9.ipynb","chapteroptimization.ipynb","clustering.ipynb","exercisesweek34.ipynb","exercisesweek35.ipynb","exercisesweek36.ipynb","exercisesweek37.ipynb","exercisesweek38.ipynb","exercisesweek39.ipynb","exercisesweek41.ipynb","exercisesweek42.ipynb","exercisesweek43.ipynb","intro.md","linalg.ipynb","project1.ipynb","project2.ipynb","schedule.md","statistics.ipynb","teachers.md","textbooks.md","week34.ipynb","week35.ipynb","week36.ipynb","week37.ipynb","week38.ipynb","week39.ipynb","week40.ipynb","week41.ipynb","week42.ipynb","week43.ipynb"],objects:{},objnames:{},objtypes:{},terms:{"0":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],"00":[0,1,5,6,9,11,23,32,33,36,39,40,41],"000":[1,3,23,39,40,41],"0000":9,"00000":9,"000000":[5,11,32,33],"0000000010":[23,41],"00000000e":[5,33,36,39],"0000164":21,"000054":32,"0000747":21,"0001":[1,17,23,39,40,41],"0001042":[],"0001225":33,"00012934":[],"00015239":[],"0001539814498783133":[],"00016826":[],"00018647":[],"00019432":[],"00019883":[],"00019998":5,"00020665":[],"00021438167895478945":[],"00022035":[],"00022902":[],"0002364":[],"0002382102844775691":36,"00024087":5,"0002442":[],"00025381":[],"00027064":[],"00028129":[],"00029012":5,"00029993":[],"00031174":[],"00031535148309577417":6,"00031535148309580783":6,"00033136014047192484":9,"0003324":[],"00034548":[],"00034944":5,"00036838":[],"00038288":[],"00040825":[],"000417932":2,"00042089":5,"00042432":[],"00045244":[],"000464088":2,"00047025":[],"00048049":[],"00048325":[],"00050142":[],"00050694":5,"00052115":[],"00053008":[],"0005557":[],"00057757":[],"00058016":6,"00060705":6,"00061058":5,"00061585":[],"00062595":6,"00063364":35,"00063862":35,"00064009":[],"0006527":[],"00066668":6,"00067395":[],"00068088":35,"00068251":[],"00068734":6,"00068946":6,"00070937":[],"00072412":[],"00073541":5,"00075597":35,"00075639":[],"00076495":6,"00076617":33,"00076905":6,"0007698473260556325":6,"0007698473260556343":6,"00078616":[],"00079129":6,"00079910":35,"00079968":5,"00081564":[],"00083346":35,"00083826":[],"00084705":6,"00085889":6,"00086063":33,"00087126":[],"00087697":6,"00088573":5,"00089187":35,"00090992":33,"00091628":[],"00092647":6,"000929":[],"00092904":35,"0009485400848532":[],"00096314":5,"00096557":[],"001":[1,2,8,13,17,23,36,37,39,40,41],"00100519":6,"00102956":[],"00104613":[],"0010479245926411787":[6,35],"00105081":6,"00105497":[],"00106677":5,"00107008":[],"00107405":6,"00111756":6,"00114101":[],"0011526":6,"00115506":33,"00115669":33,"00115999":5,"00117627":[],"00118508":6,"00118591":[],"00119699":35,"00125459":21,"00126452":[],"00128479":5,"00131428":[],"001323":6,"00134327e":[],"00137818":6,"00139705":5,"00140139":[],"00140849":35,"00143234":21,"00145652":[],"00148047":21,"00148709":[],"00149311":6,"00149956":6,"00152117":6,"00154733":5,"00154860":35,"00155308":[],"00156376":6,"00161414":[],"00163526":21,"00168251":5,"00169021":21,"00170724":[],"00172117":[],"00172452":[],"00174276":6,"00175331":6,"00178871":[],"00182747":33,"00183398":33,"00183869":[],"00186347":5,"00186362":[],"00186694":21,"001880":5,"00190742":[],"00192967":21,"00198187":[],"00199495":[],"00200":8,"00202624":5,"00202679":[],"00202756":6,"00203959":[],"00211371":[],"00213144":21,"00217499":6,"00219194":35,"00219502":[],"00219624":[],"00220306":21,"00224413":5,"00225484":[],"00225909":[],"00228742":6,"00229911":[],"00234197":[],"0023548":6,"002381316302584886":6,"0023813163025848865":6,"00242398":[],"00242847":[],"00242954":35,"00242999":6,"00243186":6,"00243341":21,"0024401":5,"00245177":[],"0024598":[],"00249435":6,"00249831":[],"00251517":21,"00254359":33,"00259385":[],"00266858":2,"00267887":[],"00270244":5,"00272586":[],"00274989":6,"00277816":21,"00283853":33,"00286972":[],"00287151":21,"00289724":6,"0029114":[],"00292838":[],"00293132":[],"00293838":5,"0030207":[],"00305172":[],"003100":32,"00310113":2,"00312361":6,"00313452":21,"00313577":[],"00315593":6,"00316561":[],"00317175":21,"0032153180657605116":[6,35],"00323332":6,"00324512":[],"00324969":[],"0032542":5,"00325450":35,"00327833":21,"003301":6,"00334743":[],"00335448":[],"00335936":[],"0033955154592040923":[6,35],"00341073e":[],"00346394":[],"00348543":32,"00353575":33,"00353823":5,"00354492":[],"00358844":[],"00359612":[],"003620":32,"00362111":21,"0036237":6,"0036367":6,"0036718":33,"00369758":6,"00370554":[],"0037095":[],"00374279":21,"00375475":[],"003755":[],"00379522":[],"0038332550504751595":36,"0038335":6,"00383872":[],"003909404072811221":[6,35],"00391839":5,"00392139":[],"00396398":[],"00398509":[],"0039987":6,"004":[5,34,35],"004091940707753925":[6,35],"00410387":6,"00410478":6,"00410646":[],"00411073":[],"004113634617443131":[6,33],"00411363461744314":[6,33],"004113634617443147":[6,33],"00413413":21,"0041559863458613296":[6,35],"00420072":35,"00424046":[],"00424909":2,"00424967":6,"00426027":5,"00426531":[],"00427304":21,"00431775":25,"00433417":11,"00439287":[],"00440346":6,"00440395":[],"00441613":[],"00443743":6,"00445655":11,"00446979":[],"00447992":11,"004480":11,"00451679":[],"00453622":[],"00455536":[],"004579219539673834":[6,35],"00458878":6,"00460304":[],"00460405":33,"004610275230656182":[6,35],"00462287":6,"00463639":33,"00465099":35,"00469926":[],"00471782":5,"00471983":21,"00472199":6,"00472512":6,"00472549":[],"00474485":[],"00478655":[],"00480366":[],"00480371":[],"0048526":[],"00487843":21,"0048938":[],"0049544":6,"004999999999999994":[],"005000000000000001":0,"00502702":[],"00504808":[],"00512927":5,"00517114":6,"00519105":[],"00526348":6,"0053018":6,"00537764":[],"00538851":21,"00542313":[],"00550379":33,"00552246":33,"00554552":6,"00555311":[],"00556826":6,"00556958":21,"0055941":[],"00562524":33,"0056799":5,"00569405":33,"00575271":[],"00579953":6,"00584432":33,"00588657":6,"00594042":[],"00595615":[],"00598615":[],"00600971":[],"00607783":6,"00610607":33,"00611979e":[],"00613258":[],"00615193":21,"00615394":[],"006162":6,"00617499":5,"00619918":[],"00620347":[],"00626773":33,"00627535":[],"00630331":6,"00631057":[],"00635475":[],"00635865":21,"00642221":6,"00642268":[],"00642935":[],"00644939":33,"00646613":[],"00651112":[],"00658316":[],"00660427":6,"00663699":[],"00665974":[],"00669662":[],"00672607":6,"00673407":6,"00676387":6,"00679797":[],"0068011":6,"00680794":[],"006829400694106674":[],"00683748":5,"00683964":6,"00686806":[],"0068697":[],"00687175":[],"0070235":21,"007024126888938144":[6,35],"00703355":[],"00704231":[],"00712321":[],"0071642501586093735":[],"00719176":6,"0072595":21,"00726135":33,"0072675":[],"00727211":[],"00727646693":[0,32],"007315":[32,33],"00736955":[],"00738008":[],"00739382":33,"0074331":5,"00753349":[],"00754534":[],"00759119":6,"007607459165915922":33,"00761275":[],"00769731":[],"00777931":[],"007785":[],"00778523":[],"00781918":35,"00784393":6,"00788598":[],"007891914573161948":[],"00798188":33,"00798988":[],"00799998":[],"00801855":21,"00803064":6,"00805074":35,"00805892":[],"00813803":6,"00817631":6,"00817834":[],"00823002":5,"00825399":33,"00827728":6,"00828799":21,"00830822":[],"00831018":6,"00832189":[],"00834567":6,"00843617":[],"00844667":[],"00848904":6,"00851512":[],"00857028":33,"00858536":[],"00862101":[],"0086649156":[0,32],"008675369724975977":5,"00868983":[],"00880924":33,"008897354602673473":33,"00890232":[],"00894639":5,"00905423":6,"00906293":[],"00915433":33,"00915458":21,"009163470508352218":5,"009164545680330616":[6,35],"00917248":6,"00920609":[],"00922229":[],"00923278":33,"00929251598272297":[],"00934327e":33,"00934499":6,"00934865":[],"0093869":[],"009442796383765939":33,"00946219":21,"00946636":33,"00952322":[],"00952586":[],"0096208":6,"00976647":[],"009855809602167547":[],"00986552":[],"00989896":[],"00990475":5,"00992331":6,"00996754":6,"01":[0,1,2,5,6,9,11,13,17,21,23,31,32,33,35,36,37,38,39,40,41],"010018312644139219":[6,35],"01004321":[],"01006401":[],"0100706":6,"0100949":33,"01018743":[],"01023308":21,"010315":11,"01031541":11,"010331721306655165":[6,35],"01033856":[],"01035984":[],"01038358":[],"01045155":21,"01045774":33,"01050849":[],"010516485576646504":[6,35],"0105301":33,"01054509":33,"0105536":[],"01059601":33,"0106014":[],"01066519":6,"01066976":[],"01068907":33,"01076611":5,"01076733":[],"01080274":21,"01089797":[],"0109":[],"010902":32,"01094846":[],"01097423":[],"0110":29,"01103246":[],"01107621901137467":[6,35],"01112952":[],"011225":2,"01128968":[],"01130932":[],"0113104":6,"01135167":[],"01148039":[],"01161357":33,"01164198":33,"01165807":[],"01176096":33,"01179792":6,"011917343246903285":[],"01191824":5,"01193226":21,"012073649469946107":[6,35],"0120771":[],"01214101":[],"01219292":6,"01222822":33,"01223198":6,"01229732982000352":29,"01231917":6,"01233322":21,"01233332":[],"01247118":[],"01257265":[],"01265755":33,"012658":33,"01267006":[],"01268892":[],"01272215":[],"01288591":[],"01289962":33,"01290811e":[],"01290947":6,"01291943":[],"01295356":5,"01300561":[],"013121574062587286":[6,35],"01318643":6,"013341":[],"01335857":33,"01344196":[],"01347636":[],"01347916":6,"01348565":6,"01362274":21,"013623165903312745":[],"01362461":[],"01365363":33,"01366733":[],"01367553":6,"01372375":[],"01382052":[],"01389847":33,"01397146":6,"01405935":6,"01408051":21,"01409821":[],"01416528":6,"01420034":[],"01424197":[],"01427149":[],"01432847":[],"01433809":5,"014436800088896381":[6,35],"01448147":33,"01449782":6,"01455922":25,"01456159":33,"01458337":6,"014586":33,"01458611":33,"0146081":6,"01463049":6,"01463052":[],"01476097":33,"01477821":[],"01478446":[],"01492":[],"0149713":33,"01502518":[],"0150723888951771":6,"01507238889517717":6,"01508632":[],"01508966":[],"01514564":[],"01521658e":[],"01524072":33,"015244":33,"01526688":[],"01529503":[],"01529708":33,"01531845":6,"01537557":[],"0154222":[],"01542292":35,"01544605":[],"01549377":6,"01549939":35,"01550546":35,"01552289":[],"01555268":21,"01558197":5,"01562311":[],"01566461":[],"01580414":33,"01581562":[],"01591021":33,"01594452":35,"01596986":33,"01600491":[],"01603602":[],"01607534":21,"01616709":33,"01619664":[],"016285782696017142":[6,35],"01633169":[],"01633913":6,"01640891":6,"01655318":6,"016587414993045335":[6,35],"01663866":[],"01667827":[],"01671556":[],"01678384":[],"01691871":[],"01691985":6,"0169643":5,"016972818397989375":25,"01704432":[],"01708691":33,"01708781":6,"01708852":6,"01713366":6,"01722502":[],"01724499":5,"01731293":[],"01735584819559331":[6,35],"017355848195593312":[6,35],"01747077":[],"01762067":[],"01765474":[],"017665":5,"01775594":21,"01783414e":33,"01809873":[],"018232":[32,33],"01831050e":6,"01831207e":6,"01835274":21,"01859922":[],"01865187e":[],"01866537":6,"0186893":[],"01873344":11,"01873869":5,"01881546":[],"01882522":[],"01896127":33,"01897575":[],"01898855":6,"01899119":[],"01905883":6,"01908936":6,"019140656913589":[],"01914066":[],"01916913":[],"0191717":33,"01918548":[],"01919702":[],"01931743":[],"01936105":[],"01963203":33,"01963611":6,"01969145":6,"01975416527168255":[6,35],"01975848":6,"01989299":[],"01989549":[],"01999282":[],"02":[0,4,6,7,12,23,32,36,38,39,41],"0200568":[],"02017377":33,"02024701e":[],"02024962":6,"020271":21,"020404272938413143":[],"02044454":[],"02054837e":6,"02061026":[],"02061094":[],"02066371":33,"02068067":6,"02071142":[],"0207306":[],"02073509":5,"02075115":33,"02079171":[],"02081274":33,"02083512":33,"02089297":33,"02095266":21,"02098261":6,"02103178":33,"02109939":33,"02123176":6,"0212604":[],"02126208":[],"02138725":[],"021592704588021174":[6,35],"021592704588021178":[6,35],"02178583":[],"02183021":[],"02186131":[],"02198702e":6,"02198703e":6,"02208512":6,"02215597":[],"022210866177877393":32,"02228115":6,"02229529":6,"02231445":[],"02252765":5,"02276062":32,"02279888":33,"02284019":[],"02287894":[],"02288816":[],"022999498260366198":[6,35],"02308518":[],"02314144":21,"02329285":33,"02348765":6,"02355925":[],"02365049":6,"02385515":33,"02392053":21,"02400359":[],"02416381":[],"02424794":35,"02447466":[],"0245528":6,"024632":33,"02468681":[],"02485679":33,"02492265":5,"02498832":6,"025027":[],"02503753":6,"02507163":32,"02509184":11,"025092":11,"02511518":6,"02522069":6,"02531037":[],"02536494":[],"02542246":[],"02546675":35,"025709":[11,33],"02574735e":[],"02582613386840159":29,"02586427":6,"02588522":33,"02593026":[],"0260906":6,"02610528":[],"02618169":[],"02622906":[],"026250840755899812":[],"02625193":8,"02635835":[],"02641575":21,"026605727637184554":[6,35],"026605727637184558":[6,35],"02702978":[],"02707227":5,"02723445":6,"02730775":21,"02745507":33,"02757522":33,"02760977349102238":[6,35],"027609773491022394":[6,35],"02761736":[],"02763182":33,"02764023":[],"02790465":[],"02804715":[],"02809859":[],"02816083":33,"028389":[],"02838933":[],"02845284":[],"02857":4,"02881357":33,"02892224":[],"029":[],"02912421":33,"02942218":33,"02944425":[],"029483":5,"02950229":33,"0296969":[],"0297291":33,"029733":[32,33],"02976145":6,"02992852":[],"02994311":5,"02f":[6,26],"03":[1,6,23,33,36,39,40,41],"0301458":21,"03025391":[],"03032441e":6,"03049638":32,"03060273":[],"03061555":25,"03063575":[],"03065428":[],"03074083":[],"03077640549":4,"03099776":5,"031":[5,34,35],"03107818":[],"03113051":[],"03117156":21,"03119091":[],"03172365":[],"03195835":[],"03196357":6,"03203047":[],"03251863":5,"03256632e":[1,39,40,41],"03267527":6,"03279636":6,"0330308045183219":6,"0330308045187757":6,"03308408":5,"03321947":32,"03338173":[],"03365768507152769":[6,35],"03370315":[],"03376827":33,"033790755027115954":[],"03389964":[],"034047":32,"034169230664804":[],"03438051":21,"03443175":[],"03447512":6,"034557":33,"034985":33,"03543039":[],"03543455":[],"03543958":[],"03557316":21,"0356":[23,41],"03562355":6,"03568439":6,"0358":[23,41],"0359":[23,41],"035909":32,"0359565":5,"0361":[23,41],"03616508":[],"0362":[23,41],"03630548":6,"03633213":33,"0364":[23,41],"0365":[23,41],"0366352614656884":[],"0367":[23,41],"0369":[23,41],"0370":[23,41],"03707133":11,"03717939":[],"0372":[23,41],"03727597":[],"03728183e":[],"0373":[23,41],"03735403":[],"0374748":[],"0375":[23,41],"0376":[23,41],"03774822e":[],"0377961":32,"0378":[23,41],"03781367141738902":[6,35],"0380":[23,41],"0381":[23,41],"03813208":[],"03814292":6,"03815288":6,"038211969489939":29,"03821197":29,"0383":[23,41],"038300":[11,33],"0385":[23,41],"03856554":[],"0386":[23,41],"03868779":[],"0388":[23,41],"0389":[23,41],"03894328":[],"03894873":33,"039":[],"039039":5,"03903968":33,"03908546":[],"0391":[23,41],"03914571":21,"0393":[23,41],"03935519":[],"03946221":[],"0395":[23,41],"0396":[23,41],"0398":[23,41],"03982972":33,"039967668952797":6,"0399676689527975":6,"04":[1,6,11,23,36,39,40,41],"0400":[23,41],"0401":[23,41],"040102":5,"04010697":6,"04014929":[],"0401585":[],"0403":[23,41],"0405":[23,41],"04057027":21,"04058784":[],"04063602":6,"0407":[23,41],"0408":[23,41],"04084872":[],"041":9,"0410":[23,41],"04103307":33,"041050166905828786":[],"04107874":5,"041079":5,"04111096":[],"0411487294305088":6,"041148729430523":6,"0412":[23,41],"0414":[23,41],"0415":[23,41],"0417":[23,41],"0419":[23,41],"04191629":[],"04193203":33,"04198166":33,"042044382097756156":[],"0421":[23,41],"04214702":33,"04218461":[],"04220758":6,"04223754":[],"04225015":[],"0423":[23,41],"0424":[23,41],"04259402":[],"0426":[23,41],"04276619":[],"0428":[23,41],"04292593":[],"04295757":35,"043":9,"0430":[23,41],"04310095":[],"04314342":[],"04315108":5,"0431531":[],"0432":[23,41],"0434":[23,41],"04346721":5,"0435":[23,41],"04355837":6,"04362":9,"04362755":[],"0437":[23,41],"04372783":[],"0437499":2,"04389027":6,"0439":[23,41],"0441":[23,41],"04423486":6,"04426647":[],"04426744e":33,"0443":[23,41],"044334":[32,33],"04438319":21,"04448923":[],"0445":[23,41],"044613":6,"0447":[23,41],"0447389":[],"04478101":33,"0449":[23,41],"0451":[23,41],"0453":[23,41],"04537385":6,"04543942":6,"04547353":[],"0455":[23,41],"04555073":[],"04566964":6,"0457":[23,41],"04574692":[],"0458":9,"04581197":25,"04584982e":[],"0459":[23,41],"04597076":21,"0461":[23,41],"04619338":21,"0463":[23,41],"04648335":5,"0465":[23,41],"046531":[],"04662395":33,"04669463":[],"0467":[23,41],"04683565":5,"0469":[23,41],"04690007":[],"0471":[23,41],"04720848":[],"0473":[23,41],"04746791":33,"0475":[23,41],"0477":[23,41],"04778116":[],"04784395":6,"0479":[23,41],"0481":[23,41],"04816611e":[],"04818727730430286":[6,35],"04822955":33,"04828291":0,"0483":[23,41],"0485":[23,41],"0486":[23,41],"04869126e":[],"0487":[23,41],"048920":32,"04892055":6,"0489354":[],"04899609":33,"0490":[23,41],"04909093":6,"04912436":6,"0492":[23,41],"04926746":35,"0494":[23,41],"049462":32,"049556996627824":6,"0495569966278269":6,"04956816":32,"0496":[23,41],"0496375":[],"04977051":21,"0498":[23,41],"04it":6,"05":[1,4,6,13,23,26,33,38,39,40,41],"0500":[23,41],"05009826":6,"05024857":[],"0503":[23,41],"0505":[23,41],"05056463":[],"050663":[],"05066303":[],"0507":[23,41],"0509":[23,41],"05091289":[],"05100875":6,"0510594":25,"0511":[23,41],"05126901":[],"0514":[23,41],"051418":5,"0516":[23,41],"051649":[11,33],"0517473":5,"0518":[23,41],"05183886":[],"0520":[23,41],"05227921801205679":[6,35],"0523":[23,41],"052305":33,"05234611":[],"0523738":21,"05238712":[],"0525":[23,41],"05263":9,"0526992":25,"0527":[23,41],"052992":[],"0530":[23,41],"05302":9,"0532":[23,41],"0534":[23,41],"053417":33,"05357244":[],"05364854":8,"0537":[23,41],"05383795":6,"053849":5,"0539":[23,41],"053944":[],"0541":[23,41],"05412502":[],"05419212":21,"05432856":[],"054375":[],"0544":[23,41],"05446143":[],"05447415":6,"05459089":[],"0546":[23,41],"054617":33,"054655":33,"0549":[23,41],"054954":[],"05505310046363":2,"0551":[23,41],"05515143e":[],"05526765":33,"0553":[23,41],"05533":9,"05544019":[],"0556":[23,41],"055676":[32,33],"055697":11,"055734":33,"0558":[23,41],"055910":33,"055987":33,"05599455":[],"056019":11,"056030":[],"0561":[23,41],"05614483":5,"05623":9,"0563":[23,41],"056418":11,"05648":9,"05651951":6,"0566":[23,41],"05667":9,"056683":33,"0568":[23,41],"056898":11,"0571":[23,41],"057124":[],"05715377":11,"057154":11,"05716368155342902":[6,35],"057179":[],"057219":[],"057231":11,"0573":[23,41],"057300":33,"057361":11,"057393":33,"057406":[],"057418":33,"057457":33,"057462":11,"057502":11,"0576":[23,41],"057613":11,"057657":11,"057722":33,"0578":[23,41],"05781491e":[],"057831":11,"057835":33,"05785343":6,"057864":11,"05789007":6,"05792524":[],"05796251":6,"05807125":6,"0581":[23,41],"058121":11,"058216":11,"0582573":[],"05825965":[],"05834444":33,"058388":11,"0584":[23,41],"058435":[],"05852973":[],"058552":33,"058556":[],"058567":11,"0586":[23,41],"058645":33,"05873105":21,"058738":[],"05880359":29,"05883":9,"05884":9,"058854":33,"0589":[23,41],"058921":11,"058952":33,"058996":33,"059004":11,"05900655":21,"059031":33,"0591":[23,41],"059182":[],"0594":[23,41],"059427":[],"059439":11,"05966593":[],"0597":[23,41],"059736":[],"05977068":33,"059807":33,"05982961":[],"059830":[],"05989727":[],"0599":[23,41],"059949":11,"059951":33,"05999":9,"059993":33,"06":[6,23,33,37,38,41],"060001":[],"060037":[],"060083":33,"0602":[23,41],"06020587":6,"060254":33,"06026294":[],"060278":[],"060300":[],"060334":[],"060349":32,"060387":[],"06043581":6,"0605":[23,41],"060567":[],"0607":[23,41],"060716":33,"06072551":[],"06075426":[],"060756":33,"060872":33,"0610":[23,41],"061013":[],"061034":[],"061084":[],"061092":[],"061138":11,"061163":33,"061239":[],"061264":[],"061281":11,"0613":[23,41],"061359":33,"061443":33,"061452":33,"061484":11,"0615":[23,41],"061614":33,"061642":[],"061679":32,"061747":11,"061775":[],"0618":[23,41],"061813":11,"061826":11,"061833":11,"061836":[],"061869":11,"061888":11,"061915":[],"06200174":5,"062016":33,"062071":11,"062082":[],"062082386342319454":[6,35],"0621":[23,41],"062100":[],"062221":[],"062273":11,"062292565":4,"06231773":[],"062337":33,"062351":[],"062390":11,"0624":[23,41],"062470":[],"062523":11,"062599":33,"0626":[23,41],"062624":33,"062631":11,"062675":11,"062749":[],"062797":[],"062852":11,"062874":33,"062894":11,"0629":[23,41],"062963":11,"062967":[],"06299237e":[],"063000":[],"06301519":25,"063019":33,"063055":[],"063061":33,"06307625":[],"063080":33,"063081":[],"063159":11,"0632":[23,41],"063260":33,"06331463":[],"063325":[],"063359":11,"063407":[],"063434":11,"063436":[],"063443":32,"0635":[23,41],"063597":11,"063653":33,"063716":[],"063722":11,"063723":11,"063724":32,"063747":11,"063760":[],"0638":[23,41],"063822":[],"063832":[],"063894":33,"063905":11,"063912":[],"063927":[],"06394871":21,"063953":5,"06397412":[],"063980":5,"063982":[],"06406913":25,"06407201":[],"064074":33,"0641":[23,41],"064101":5,"064134":11,"064145":11,"06424868":21,"064294":[],"0643":[23,41],"064320":5,"064412":[],"064420":[],"06444":9,"064444":11,"064501":33,"064527":11,"064532":[],"06453579006728322":[6,35],"0646":[23,41],"064602":[],"064606":33,"064609":33,"064634":[],"064640":5,"064696":11,"064699":33,"064793":33,"06481015":[],"06484621":38,"064856":[],"064874":[],"06488406":[],"064896":5,"0649":[23,41],"06491736":6,"064938":5,"064948":5,"064987":[],"065006":[],"065026":32,"065069":5,"065077":33,"065089":[],"06511966":[],"065158":[],"0652":[23,41],"065214":[],"065215":11,"065249":[],"065289":5,"065378":33,"065390":33,"065410":33,"06547790180152352":[6,35],"06547790180152355":[6,35],"0655":[23,41],"065517":[],"065582":11,"065588":[],"065593":11,"065614":11,"065645":11,"065735":11,"06578047":[],"0658":[23,41],"065801":[],"065808":11,"065815":[],"065872":[],"065910":[],"065982":[],"066042":[],"066066":33,"066077":[],"0661":[23,41],"066344":[],"06637":9,"06638817":[],"0664":[23,41],"06642248":[],"066438":[],"066453":[],"066467":11,"066474":33,"066500":33,"066612":33,"066647":33,"06664867":[],"06666117":[],"0666807":2,"06668613e":[],"0667":[23,41],"066762":[],"066768":11,"066787":33,"066804":[],"06682268":[],"0668226833598415":[],"066837":[11,33],"066854":33,"066870":11,"066992":11,"066999":33,"0670":[23,41],"067009":[],"067139":11,"06724062":5,"0673":[23,41],"067315":11,"067328":[],"067409":[],"067419":[],"067420":5,"067437":[],"067440":[],"067457":5,"067591":5,"0676":[23,41],"067611":[],"067630":[],"067637":33,"067660":5,"067707":33,"067745":[],"067748":[],"067820":5,"067826":[],"067832":[],"0679":[23,41],"067915":[],"067955":5,"067979":[],"068":[],"068082":11,"068083":[],"068141":5,"0682":[23,41],"068241":[],"068257":11,"068264":33,"068307":33,"068340":5,"068403":[],"068406":11,"068407":5,"06842111e":[],"068441":33,"06844519414009444":[6,35],"06844519414009445":[6,35],"0685":[23,41],"06853772":[],"068551":11,"06855126e":[],"068606":[],"068629":33,"068650":11,"068727":33,"068734":[],"0687531":[],"068757":[],"0688":[23,41],"068815":5,"068816":[],"068906":33,"068945":5,"068974":[],"068987":[],"068997":11,"069028":33,"069033":[],"069055":[],"0691":[23,41],"06915522":[],"069213":[],"069257":[],"069296":[],"069320":11,"069365":[],"069384":[],"069388":[],"0694":[23,41],"069452":33,"069522":11,"069570":5,"069584":[32,33],"069594":[],"069629":[],"06962991":21,"069630":[],"069634":5,"0697":[23,41],"069739":[],"069746":[],"069766":[],"069803":[],"069822":[],"069939":[],"06995653":21,"06it":6,"07":[6,23,33,41],"0700":[23,41],"070009":11,"070042":[],"07004211":[],"070043":[32,33],"070067":[],"070107":[],"070146":33,"070157":[],"07016":9,"07017":9,"07020234":[],"070213":33,"070220":[],"070228":[],"070275":[],"0703":[23,41],"07039":9,"070406":5,"0704374681593734":11,"070441":[],"070457":33,"070461":11,"070569":[],"070582":33,"070597":[],"07062318":6,"070645":11,"070694":11,"0707":[23,41],"070737":33,"070769":[],"070795":[],"070811":[],"070889":[11,33],"070964":11,"070986":33,"0710":[23,41],"071062":[],"071138":[],"07115":9,"071191":[],"071252":11,"071258":[],"0713":[0,23,32,41],"07130734":[],"071323":5,"07136324":[],"07139233":[],"071423":[],"07145103":11,"071452":[],"071498":[],"071554":[],"071579":5,"0716":[23,41],"07160048164232538":[6,35],"0716004816423254":[6,35],"071601":5,"071611":[],"071662":5,"071685":5,"071726":5,"071773":[],"071788":[],"071792":5,"071801":[],"071805":5,"071872":[],"071879":[],"07188255":[],"0719":[23,41],"071942":11,"071951":5,"072000":[5,33],"072009":[],"072022":5,"072098":[5,11],"072111":33,"072128":[],"072132":33,"072168":[],"07226292":[],"072285":11,"0723":[23,41],"072305":5,"072310":[],"072369":[],"072404":[],"072410":5,"072476":33,"072483":11,"072486":5,"072495":5,"07250301":29,"0726":[23,41],"072621":33,"072624":[],"072637":5,"072707":5,"072790":[],"072805":[],"072830":[],"07285":3,"07286416":[],"0729":[23,41],"072914":[],"072931":[],"072953":[],"072967":5,"072973":5,"073008":[],"073059":5,"073079":5,"073080":5,"073088":[],"073152":[],"073184":5,"073187":5,"0732":[23,41],"07321674":[],"07331468":[],"073354":[],"073362":[],"073376":5,"073387":5,"073406":5,"073421":5,"073422":[],"073444":[],"073445":[],"073465":5,"073471":5,"073476":5,"073494":[],"073498":5,"073541":[5,11],"07358383":[],"073586":5,"073598":[11,33],"0736":[23,41],"073618":5,"073630":[],"073634":[],"073640":11,"073644":33,"073708":[],"073712":5,"073716":[],"073720":11,"073728":[],"073797":5,"073802":11,"073840":5,"073853":[],"073858":[],"0739":[23,41],"073972":[],"073980":[],"073984":[],"07404236":25,"074067":[11,33],"074084":33,"07410236e":[],"074108":5,"074161":5,"07417526":25,"0742":[23,41],"07420079":[],"074201":[],"074210":33,"07421084":5,"074323":33,"074327":[],"074330":[],"074340":11,"074419":[],"074439":[],"074455":5,"074457":[],"074509":[],"0745177":[],"074545":[],"074560":[],"07456491":5,"074577":5,"0746":[23,41],"074686":[],"074708":11,"074772":[],"074780":[],"074879":[],"0749":[23,41],"07490892":6,"074969":[],"074970":[],"075030":11,"075058":[],"075089":5,"0752":[23,41],"075249":[],"075331":11,"075342":[],"075421":11,"075513":[],"075521":[],"075523":[],"075582":[],"075587":[],"0756":[23,41],"075684":11,"075758":[],"075779":[],"07581582":21,"075816":33,"075889":33,"0759":[23,41],"075980":[],"075984":[],"075990":[],"076012":[],"076105":[],"076125":[],"076127":[],"076136":[],"076150":33,"07617146":21,"076249":[],"076266":[],"07627734":[],"0763":[23,41],"076354":[],"07641937":35,"0764924":6,"076504":[],"076527":11,"076587":[],"076592":[],"0766":[23,41],"076662":[],"076721":[],"07678":9,"076820":[],"076825":[],"076833":[],"076857":[],"07692307692307693":9,"076938":[11,33],"076950":[],"076996":[],"0770":[23,41],"077068":5,"07706814":5,"077168":33,"077171":[],"077219":[],"077226":[],"0773":[23,41],"077313":5,"077330":5,"077403":5,"077429":5,"077455":5,"077460":33,"077542":[],"077549":[],"0776":[23,41],"077613":[],"077630":5,"077650":[],"077705":[],"077710":[],"077756":[],"07777777777777778":[1,39,40],"077931":5,"078":[],"0780":[23,41],"078029":[],"078041":5,"07804489":33,"078110":33,"078187":[],"07820":9,"078329":[],"078336":33,"0784":[23,41],"078412":[],"07842458":[],"078467":[],"078540":33,"078545":[],"078548":5,"078593":[],"07864":9,"078656":[],"0787":[23,41],"078707":[],"07871":9,"078845":[],"078868":[],"078974":33,"078986":33,"0791":[23,41],"079121":[],"079124":[],"079165":[],"079226":[],"079255":5,"07929472":[],"079381":11,"0794":[23,41],"079432":[],"079434":[],"07944154":[25,32],"079455":[],"079581":[],"0796891867672603":[6,35],"079731":11,"0798":[23,41],"079878":[],"07988085572440823":[],"079882":[],"079946":33,"079948":11,"08":[6,9,23,29,33,37,38,41],"0801":[23,41],"080105":[],"080163":[],"080181":[],"080233":11,"080256":[],"080284":11,"08030109":[],"080406":[],"080411":[],"08043851":5,"080473":[],"0805":[23,41],"080502":5,"080505":[],"080571":5,"080607":11,"080616":33,"08066381":29,"080690":[],"080750":11,"080755":5,"080764":33,"08076969085177746":[],"080773":[],"0809":[23,41],"080903":5,"080906":5,"080933":[],"080935":5,"080953":11,"080980":5,"081057":5,"081120":5,"081126":[],"081136":5,"081164":5,"0812":[23,41],"081246":[],"081276":33,"08131003":6,"081466":5,"08156108":6,"081570":[],"081584":[],"08159374":[],"0816":[23,41],"081617":5,"081621":5,"08165104":33,"081655":33,"081677":11,"081679":5,"081680":[],"08174081":[],"081742":5,"081772":[],"081804":5,"08185019":21,"08185315":[],"081896":5,"081916726599974":[],"081955":[],"081960":5,"081976":[],"0819836":[],"0820":[23,41],"082189":[],"082205":[],"08221578":[],"082225":5,"082246":5,"082255":[],"0823":[23,41],"082347":[],"08238863600759742":[],"08245909":[],"082506":[],"08251519":6,"082517":[],"08255129":21,"08256285":[],"082577":[],"082653":33,"0827":[23,41],"08271388":29,"08272096":33,"082746":11,"082760":[],"082781":[],"082875":32,"08293853":21,"08299273e":6,"083000":[],"083066":[],"083096":[],"0831":[23,41],"08318298e":[1,39,40,41],"083317":[],"08333333":[23,41],"08333333333333333":[1,9,39,40],"08336233266":4,"08339896":25,"0835":[23,41],"083527":[32,33],"08352721390288316":32,"08376632":[6,33],"083766322923899":[6,33],"0837663229239043":[6,33],"0838":[23,41],"083853":[],"08389064":[],"08394792":32,"083988":[],"084075":[],"084076":33,"0842":[23,41],"084207":11,"084247":[],"08426840630693412":[6,35],"08426840630693413":[6,35],"08449894":[],"08455":9,"0846":[23,41],"08474":9,"084764":[],"084809":33,"08481871":[],"084843":[],"0850":[23,41],"085023":[],"08505008":[],"085235":[],"0853136633465326":36,"085391":[],"0854":[23,41],"085454":[],"08551306":6,"08551338":[],"08551625":[],"08576932":6,"0858":[23,41],"08593216":6,"0861":[23,41],"08611111111111111":[1,39,40],"086441":[],"0865":[23,41],"086518":[],"08652153831327969":5,"086636":5,"086843":[],"086864":[],"086868":5,"0869":[23,41],"08690":9,"086900":5,"086932":5,"08703034":[],"087247":[],"087250":[],"087271":5,"08728068":[],"0873":[23,41],"087311":5,"08758":9,"087603":[],"087642":[],"0877":[23,41],"08770809":[],"087887":32,"0881":[23,41],"088155":[],"08815506":[],"0881981":5,"08823":27,"08844723450419088":[],"0885":[23,41],"088697":[],"08871404":5,"08881497884574564":33,"08888888888888889":[1,39,40],"0889":[23,41],"08902":9,"0892144853354966":36,"08928088":[],"0893":[23,41],"0895387":33,"089539":33,"0897":[23,41],"089710":[],"08973767":[],"08988514":21,"08996":9,"09":[1,23,33,39,40,41],"0901":[23,41],"09030678":21,"090365":[],"0905":[23,41],"09076319":[],"0910":[23,41],"0914":[23,41],"09149148":[],"09166666666666666":[1,39,40],"0917":9,"09172409":6,"09179697e":[],"0918":[23,41],"092":[],"0922":[23,41],"09251":9,"0926":[23,41],"093":[],"0930":[23,41],"09308274":[],"09327269724691106":[],"09336399":[],"093408":[],"0935":[23,41],"0939":[23,41],"09391542":25,"09408163":32,"094082198961999e":6,"0940821989652176e":6,"0943":[23,41],"09444444444444444":[1,39,40],"0948":[23,41],"0952":[23,41],"09524714":32,"09527217":[],"0956":[23,41],"09599224":[],"09609807":5,"0961":[23,41],"0965":[23,41],"0969":[23,41],"09726322":[],"0973":[23,41],"0974":[23,41],"09744":9,"09760094":[],"0978":[23,41],"09780":9,"09787053":21,"09791":9,"0983":[23,41],"09832963":21,"09858511":[],"09861229":[25,32],"0987":[23,41],"09903804":8,"09919198949274803":[6,35],"0992":[23,41],"09951287404314545":[1,39,40],"0996":[23,41],"0998713":[],"0n":[0,32],"0s":[4,23,41],"0x10febc640":21,"0x10febcf10":21,"0x1162c32b0":[],"0x1183f2640":13,"0x118c9b1c0":13,"0x118f6d610":[],"0x11ada9670":37,"0x11de12520":[],"0x11df37280":[],"0x11f5f6520":37,"0x11fdbfd60":[],"0x1268ba940":[],"0x127a38670":[],"0x127e425e0":[],"0x13002a640":[],"0x1305bb1c0":[],"0x13eaa7490":[],"0x13ef4e1c0":[],"0x156346610":36,"0x16c9a8880":[],"0x2800bca90":[],"1":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,20,21,22,23,25,27,28,29,30,31,34,35,36,37,38,39,40,41],"10":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,17,21,23,25,26,28,29,30,32,33,34,35,36,37,38,39,40,41],"100":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,21,23,25,29,30,32,33,34,35,36,37,38,39,40,41],"1000":[0,1,2,4,5,8,11,13,14,21,23,24,29,32,33,36,37,38,39,40,41],"10000":[2,5,6,10,11,13,29,34,35,41],"100000":8,"10001":10,"1001":[9,29],"1002":29,"1003":29,"10030":9,"10035098":11,"100351":11,"1005":29,"1007":34,"10077114273548984":[6,35],"1009":29,"101":[23,41],"101058":[],"1011":29,"1013":29,"1013904243":29,"10141413e":6,"1015":29,"10156593":[],"10160394":[],"10188623":[],"102":[3,23,33,41],"1023":29,"10230":9,"1024":3,"10247463629935179":[],"10251317e":[],"1026":29,"10268273":[],"1027":29,"103":[1,23,39,40,41],"1030":29,"10340":9,"10354083919795562":[],"1036131":25,"1037":29,"10378326e":[1,39,40,41],"1038":29,"10391807":6,"10398646080125036":[6,35],"10398646080125037":[6,35],"10399758":[],"104":[23,41],"1040":29,"10405456":11,"10430":9,"10440776":[],"104411":[32,33],"1047":29,"10479359":25,"10490195":25,"105":[23,41],"10520":9,"10555555555555556":[1,39,40],"10572":35,"10589577":5,"106":[23,41],"106095":[11,33],"10638925":[],"1063892533225306":[],"106431":32,"10656534":21,"10683216":[],"107":[23,41],"10706523":21,"10741066e":21,"10776220958055382":11,"1078":35,"10790125813226321":33,"108":[6,9,23,41],"10812381":5,"108124":5,"10851799e":21,"1089452":[],"109":[23,41],"10913":6,"10927588":[],"109276":[],"10931453":6,"10954867e":[],"10959669":32,"10960":9,"10983954":[],"10e":[23,41],"10m":4,"10th":9,"10x":[0,32],"11":[0,2,3,4,5,6,7,8,9,10,11,12,13,15,16,18,21,23,25,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41],"110":[23,41],"1100":29,"11007935789924998":25,"1101":29,"11022302e":[5,39],"11022363":[],"11039573e":[],"11078018494378859":[],"111":[1,7,12,23,36,38,39,40,41],"11100":9,"11112589053037751":9,"11197884":[],"112":[23,41],"11202337":35,"112383":[11,33],"1124":9,"113":[23,41],"11352187":[],"11388888888888889":[1,39,40],"11390":9,"114":[23,41],"11400145":32,"11427818":[],"114550":35,"11462415":5,"11482289e":6,"115":[23,35,41],"11507992e":[1,39,40,41],"11547777218876518":[6,35],"115822":6,"11587186":32,"11590":9,"116":[23,41],"1160326":21,"11657689":21,"11660":9,"11666666666666667":[1,39,40],"117":[8,23,35,41],"117430":32,"11744554e":6,"11749517":[],"11780":9,"118":[2,23,41],"1182":35,"118318":[32,33],"11837308":[],"11837671":[],"1184":4,"11840":9,"11890":9,"11896755":[],"119":[2,23,41],"11911824":29,"119936":2,"11m":[],"12":[0,1,2,3,4,5,6,8,9,11,12,13,21,23,25,29,31,32,33,35,37,38,40,41],"120":[2,3,23,41],"12011393e":[],"12023635e":[],"1203":9,"1203284":8,"12044974":33,"120450":33,"120508":[],"12050822":[],"1206":8,"121":[8,9,10,23,41],"12129289":[],"1213":35,"12155548":[],"1215pm":[30,32],"12182967":6,"122":[2,8,9,10,23,41],"12222222222222222":[1,39,40],"12224317":[],"122282":32,"123":[2,23,41],"12318726e":6,"12330033":33,"12333649":6,"123711":6,"12380":9,"124":[0,23,32,41],"12400":9,"12417157":21,"12427537":21,"125":[23,41],"12552073e":6,"12568438":[],"12591227":33,"12594172":[],"126":[9,23,41],"1261":9,"12618549":5,"12634093":21,"1265":9,"12693357":21,"12695501":[],"127":[4,23,41],"1271":6,"12765651865754318":5,"1277":6,"12777777777777777":[1,39,40],"127812":32,"12790":9,"128":[3,4,13,23,37,38,41],"12814914":[],"128664":6,"12871842":33,"129":[2,23,41],"12921833":[],"1297":9,"1298":9,"129963":35,"12998822":[],"12m":[],"12pm":[30,32],"13":[0,2,4,5,6,9,11,12,13,21,22,23,25,29,32,33,35,36,38,39,41],"130":[9,23,41],"13003291":6,"13055555555555556":[1,39,40],"130694":33,"13069442":33,"13076331":[],"131":[9,23,41],"13155259":21,"132":[9,23,41],"13220608e":6,"1326":9,"1326197715":32,"13280":9,"133":[7,23,36,41],"13310008":25,"13333333":[23,41],"134":[23,41],"13404683":[],"13410999":[],"134110":[],"13422946e":[],"13444436":[],"1345":35,"1346":35,"135":[9,23,41],"13535942":6,"13542726":[],"13580759":29,"136":[23,41],"136236":6,"13646574":5,"13661243e":6,"13679863":6,"137":[23,41],"1371":6,"13740":9,"137400784702911":33,"13749148e":[],"13756504":21,"13759245e":[],"137652":[11,33],"1377":[3,4],"1378":[3,4],"1379":[3,4],"138":[23,41],"1380":[3,4],"1381":[3,4],"1382":[3,4],"13821034":21,"13827006":[],"13829298":[],"1383":[3,4],"1384":[3,4],"1385":[3,4],"1386":[3,4],"13865173":5,"138775":[11,33],"1388888888888889":[1,39,40],"1388976715362099":[],"13890":9,"139":[23,41],"1392559585048734e":6,"139255958997547e":6,"13925918083728273":[],"139431112903922":35,"1394311129039245":35,"1395084586525954":35,"1395235273363669":35,"13987729":[],"13m":[],"14":[0,2,4,5,6,8,9,10,11,12,13,21,23,25,29,31,32,33,38,39,40,41],"140":[2,9,23,41],"14021063":6,"14023656":[],"141":[2,23,41],"14100":9,"1412":[21,37,38],"1416398":6,"14174745":6,"1418":9,"142":[9,23,41],"14250":9,"14277718e":33,"143":[2,7,23,36,41],"1437":[1,39,40,41],"1438149":[],"14389839":29,"144":[23,41],"14400":9,"1440501043841336":[1,39,40,41],"14421971":25,"14440":9,"1446729567":4,"144993":32,"145":[2,23,41],"14526269":25,"14549142":32,"146":[2,23,41],"14629156":35,"146704":[],"14670413":[],"14697721":[],"147":[23,41],"14710":9,"14722222222222223":[1,39,40],"147400":[11,33],"147420":[11,33],"1479":9,"148":[3,4,23,41],"148009":[],"14812206":6,"14845":6,"14857":6,"14859":6,"149":[3,4,23,41],"149294":[],"149299":[],"14962649":[],"14978631":21,"14g":[6,35],"14m":[],"15":[0,2,3,4,6,7,8,9,12,13,15,16,17,18,21,23,29,32,35,36,37,38,39,41],"150":[3,4,8,9,23,41],"15005476":5,"15047127":[],"15048894":21,"15055258":21,"150726":[],"15098090e":6,"151":[3,4,23,41],"15119514":13,"15130074e":6,"1513237":[],"151515":[],"151517":35,"15183857":[],"152":[3,4,9,23,41],"15200":9,"1520039":[],"152701":[],"1527777777777778":[1,39,40],"153":[23,41],"153036":[32,33],"15313054":35,"1532465":13,"15383855":[],"15384615384615385":9,"154":[23,41],"15443469e":36,"15457792":21,"155":[9,23,41],"15553403":[],"156":[23,41],"15649598":[],"15673992":[],"15693449e":[],"156956":5,"15697121e":[],"157":[23,41],"15724663":25,"1575":9,"158":[9,23,41],"15827078":25,"15863713":[],"1587":9,"159":[23,41],"1590":9,"15913825":32,"15962297":[],"15975618":[],"15990":9,"15990395":[],"15g":[6,35],"15m":[],"15pm":32,"16":[1,2,3,4,5,6,8,9,10,21,23,29,32,33,34,35,38,39,40,41],"160":[23,41],"1600552":[],"1603":3,"16043757":32,"1608179281668718":29,"16081793":29,"16087734":[],"161":[23,41],"16111111111111112":[1,39,40],"16168603e":[],"162":[23,41],"16211139":5,"16220":9,"162246":5,"16231451":4,"1625":9,"1628":9,"162999":32,"163":[2,23,41],"16304863":33,"163049":33,"1630775253":[1,39,40],"16309331":21,"16342407":5,"16343471":6,"16356503":35,"16384":3,"16385836":21,"16389131":13,"164":[2,23,41],"16456084":[],"164812":5,"16481217":5,"16492688":25,"165":[2,23,41],"16500":9,"16521791":[],"16570701":[],"166":[2,9,23,41],"16650509":25,"16666667":[23,41],"167":[2,23,41],"16762223e":[],"167787":5,"168":[9,23,41],"16805821e":6,"169":[23,41],"16921883":[],"169219":[],"16933554":[],"17":[1,2,4,5,6,8,9,18,21,23,29,33,35,38,39,40,41],"170":[23,41],"17006020e":[],"17022089147584388":[],"17078905":25,"1709":9,"171":[23,41],"17121077":[],"17136288":[],"17138811":32,"17144765665252978":[],"171525":33,"1715252":33,"17174962e":[1,39,40,41],"172":[23,41],"17222222222222222":[1,39,40],"17257288":[],"1726":9,"17275391":[],"173":[21,23,41],"17300":9,"17305512":[],"1731":9,"17362603":[],"174":[23,41],"17440757e":[],"17446471":6,"17451":[],"17469167":5,"174692":5,"175":[23,41],"1752":9,"175300":[32,33],"17540272":[],"176":[23,41],"17603044":[],"17615838052499":[],"17641709":6,"17647619":6,"177":[23,41],"17733642":[],"17758251":21,"17777777777777778":[1,39,40],"178":[23,41],"17801022":5,"17829104":25,"17841553":21,"17861098":6,"179":[23,41],"17917768":5,"179404":[],"17949575":5,"17953942":11,"1797":[1,3,39,40,41],"17m":[],"18":[2,4,6,7,8,9,10,13,19,21,23,29,35,36,37,38,41],"180":[23,41],"18029127":5,"1803":27,"18065292":25,"1807":4,"1809":9,"181":[9,23,41],"1812":9,"18128852":[],"182":[23,41],"1821":9,"183":[2,23,41],"18314387":[],"18333333333333332":[1,39,40],"1836":35,"18383522":33,"184":[2,9,23,41],"18409473e":[],"18433544":[],"184519":[32,33],"18474816e":[],"18488944":[],"18489312":[],"1849":[3,4],"185":[2,23,41],"1850":[3,4],"1851":[3,4],"18518557":29,"1852":[3,4],"1853":[3,4],"1854":[3,4],"1855":[3,4],"1856":[3,4],"1857":[3,4],"185713":[],"18571316":[],"1858":[3,4],"1859":[3,4],"186":[2,23,41],"1860":9,"18611111111111112":[1,39,40],"18613217e":6,"18624242":[],"18660":9,"18670072e":33,"18673098":11,"187":[23,41],"1871257":25,"18726877":[],"1875353":32,"18761375":13,"18780801":32,"188":[23,41],"18807824e":[],"18824315":[],"18829946":[],"1887":6,"189":[23,41],"189367":32,"189496":[32,33],"189621963782685":11,"189622":[32,33],"18993003":25,"19":[2,4,6,9,13,21,23,25,29,32,35,38,41],"190":[23,41],"19003":6,"191":[23,41],"19123037":21,"19166136":[],"19166666666666668":[1,39,40],"191963":32,"192":[23,41],"19207979":5,"1921649":[],"19220":9,"193":[23,41],"19314584":25,"19335893":21,"19343949":[],"1937079":[],"19393543":21,"194":[23,41],"1940":[0,33],"194042826649355e":6,"1940428268204826e":6,"19426595":21,"1943":[12,38,39],"19431161":[],"194312":[],"19436962e":[],"19463967":[],"194861702085775":[],"195":[23,41],"1956":9,"19569961":[6,33],"19590868":[],"196":[23,41],"19652884e":[],"19683648":[23,41],"197":[23,41],"1970":[25,32],"19717411":25,"19721923":[23,41],"1973":9,"197370":[11,33],"19740":9,"19743643":[],"19769458e":[],"19772911":32,"1979":[6,35],"198":[23,41],"19800":9,"19824029":[23,41],"19825288e":[],"19888258":[],"199":[23,41],"19910208":25,"19983530":6,"1999":[27,35,41],"1_1":[12,38,39],"1_2":[12,38,39],"1_3":[12,38,39],"1cm":[0,8,10,29,32],"1d":[1,2,3,39,40,41],"1e":[1,2,4,13,14,21,23,37,38,39,40,41],"1e10":14,"1e4":6,"1f":[1,40,41],"1k":25,"1n":[0,32],"1s":[23,41],"1x":[0,32],"2":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,28,29,31,34,35,36,37,38,39,40,41],"20":[0,1,2,4,6,7,8,9,13,21,23,29,30,32,33,34,35,36,38,39,40,41],"200":[0,2,3,4,8,9,10,23,41],"2000":[0,23,33,41],"20015436":6,"20017452":[],"2004":[13,36],"2006":31,"2008":32,"201":[23,41],"2010":[1,40,41],"20101684":13,"2011":[1,39,40,41],"2014":4,"20142361":[],"2015":[1,40,41],"2016":[0,32],"2017":41,"2018":[0,6,33,35],"2019":[8,9],"202":[23,41],"2021":[6,14,33,34,36],"2022":32,"2023":[3,4,15,16,17,18,19,20,21,22,23,27,32,34,35,36,37,38,39,40,41],"2027":9,"20272874":[],"20277777777777778":[1,39,40],"20289224":[],"203":[23,41],"20355156":35,"20371418":[],"204":[23,41],"20484434":[],"204932":11,"20493234":11,"20494446":32,"205":[23,41],"20500":9,"205231":32,"20594513":[],"206":[23,41],"2060":9,"2069":9,"20695722":[],"207":[23,41],"207545":[11,33],"207888":32,"208":[23,41],"20820528e":[],"20833333333333334":[1,39,40],"20867052175003364":[6,35],"209":[23,41],"20916295":33,"20956318":[],"20967833":25,"209789":32,"20980":9,"21":[0,1,2,3,4,5,6,7,9,12,13,15,21,23,25,32,33,35,38,39,40,41],"210":[23,41],"210340":[11,33],"21053692":21,"21055226":[],"21058097":5,"21059098":[],"211":[23,41],"21110005":35,"21130":9,"21152452":21,"2116753732":4,"21169159e":6,"212":[23,41],"21275991":32,"213":[23,41],"213103":[11,33],"213743":[11,33],"214":[23,41],"21401303e":[],"21460652":[],"214607":[],"21467941":29,"21493779":29,"215":[23,41],"21546249":[],"21596432":6,"216":[23,41],"216290":[11,33],"216683":[11,33],"21682143":13,"217":[23,41],"21710121":[],"2171263":25,"218":[23,41],"21860973":25,"21879159":[],"219":[23,41],"2193546":25,"22":[0,1,2,4,5,6,9,12,13,19,21,22,23,25,32,33,35,36,37,38,39,40,41],"220":[23,41],"22001043":[],"22044605e":[5,33,39],"22092934e":[],"221":[8,23,41],"22103874e":[],"221180":[32,33],"22130126":[],"2216":9,"2218":9,"221805":2,"221921":5,"222":[23,41],"22209775e":[],"222400":[32,33],"22241171":[],"22297358":25,"223":[23,41],"22328509":[],"22368396":[],"223884":5,"22388434":5,"224":[23,41],"22416937":[],"22467274":35,"225":[4,23,41],"22574374":[],"226":[23,41],"22616902":32,"226296567359957":[],"22663583":29,"22690428":5,"227":[23,41],"22729927":[],"228":[23,41],"2284246870217162":[6,35],"22847924":5,"22885848":25,"228942":4,"229":[23,41],"229241":21,"22974406":29,"23":[1,2,4,6,7,9,12,13,21,23,25,32,35,38,39,40,41],"230":[23,41],"23002365e":6,"23031634":21,"23047985":[],"23076923076923078":9,"231":[23,41],"23110543":[],"23167717":5,"23192074e":[],"232":[23,41],"232435":[32,33],"23257415":[],"233":[23,41],"23305112":13,"23333333333333334":[1,39,40],"2338675":33,"233868":33,"23392132":[],"234":[6,23,41],"235":[23,41],"23516186":32,"23528337":35,"2361161":32,"23636536":21,"2364":9,"23643365":35,"237":[23,41],"23780865":25,"2379":6,"238":[23,35,41],"239":[23,41],"2397":9,"23971032":33,"23979359":[],"24":[0,1,2,4,6,9,13,19,21,23,25,29,32,35,38,39,40,41],"240":[23,41],"24005098e":[],"24085321":35,"241":[23,41],"24128917":5,"24140":9,"24159785":33,"2416":9,"24175744e":6,"2419":9,"242":[23,41],"24251681":[],"24252405":21,"24280599":[],"242806":[],"243":[23,41],"2430":9,"24390":9,"244":[23,41],"24444444444444444":[1,39,40],"245":[23,41],"24569547":[],"246":[2,23,41],"24602503e":[],"2465439":[],"24679418":13,"247":[23,41],"24785221":29,"248":[23,41],"24828523":25,"24829908":5,"249":[23,41],"24906604e":6,"24960675":21,"24968001e":[],"25":[2,3,4,5,6,7,8,9,11,13,15,20,21,23,26,32,33,35,36,38,39,40,41],"250":[2,4,7,9,23,36,41],"25000":[0,33],"25050227":21,"250636":32,"25077762":21,"25084316":[],"251":[23,41],"25139357":[],"251879":[32,33],"252":[23,41],"252436":[32,33],"253":[23,41],"254":[23,41],"255":[3,23,41],"255001":[32,33],"25561567":[],"256":[2,4,23,41],"25617654e":6,"25617658e":6,"25650679":[],"25663096":[],"257":[23,41],"2572":9,"2575":9,"258":[23,41],"25844504":[],"25872167e":[],"259":[23,41],"259153":[11,33],"25920793":[39,40],"2597":9,"25it":6,"26":[2,4,6,9,13,21,23,35,38],"260":[23,41],"26037366":[],"261":[23,41],"261498":5,"26149831":5,"2619":33,"262":[23,41],"262638":[],"26263837":[],"26291451":[],"26292364":35,"26297455":33,"263":[23,41],"26301436":5,"26318493":32,"26372759":[],"264":[4,23,41],"26409315307910025":6,"2640931530791004":6,"264377":[],"26437713":[],"264421":32,"265":[23,41],"2650":9,"265109911":4,"26514544":[],"2654":9,"266":[23,41],"26666667":13,"267":[23,41],"26710969":5,"26776828":[],"26780278":5,"268":[9,23,41],"26803966":[],"26931499":[],"2697447":[],"26995402":33,"27":[0,1,2,4,6,13,21,23,33,35,38,39,40,41],"270":[23,41],"2707158":25,"27092910":6,"271":[23,41],"27152452":32,"2717818":21,"272":[23,41],"273":[23,41],"27305669":21,"273094":5,"27309401":5,"27424746e":[],"27438488":[],"275":[23,41],"2750":9,"27547557":[],"276":[23,41],"276263":[11,33],"27650338":[],"27693602e":39,"277":[23,41],"27700":9,"27717261":[],"2774877574815404":9,"27760":9,"27793476":[],"277935":[],"278":[23,41],"27859357":[],"279":[23,41],"27919014":32,"27924636":5,"27971414":[],"27n_":29,"28":[1,2,3,4,6,9,13,16,21,23,33,35,37,38,39,40,41],"280":[23,41],"28008933":[],"280179":32,"280573":5,"280647":[11,33],"28081221e":[],"28096517":[],"281":[23,41],"281930":32,"28194659":21,"282":[23,41],"28205578e":33,"28206156":[],"28210895":[],"282259":32,"282727":[11,33],"28294305":25,"283":[23,41],"2830637392":4,"283078":[],"28336218e":6,"28390":9,"28391978":33,"284":[23,41],"28443039":35,"28475098":8,"28490569":[],"285":[23,41],"28566769":[39,40],"28585116":25,"286":[23,41],"28607817":[],"2861":29,"28621796e":[],"28638913":[],"28641189":[],"28662669":[],"287":[23,41],"2871":9,"2873":9,"288":[23,41],"28818554":5,"288186":5,"2882":29,"28837459":[],"2886":29,"289":[23,41],"2890":[0,32],"28908491":[],"2892":29,"29":[2,4,6,7,9,20,21,23,35,36,41],"29022057":13,"29097377":29,"291":[23,41],"29135778":[],"291358":[],"2915":29,"29153991":[],"29167186":5,"29174301":21,"29199381":[],"292":[23,41],"29228133":[],"29275129":[],"29282684":25,"293":[23,41],"2931":32,"29350903":[],"29374695":32,"29384004e":[],"294":[23,41],"29401213":[],"2941718e":[],"29454955e":[],"29496954e":[],"295":[23,41],"2953":[3,4],"2954":[3,4],"2955":[3,4],"2956":[3,4],"2957":[3,4],"29588674":25,"29592687":21,"296":[23,41],"29633889":13,"296414":32,"29679459":21,"2968":32,"29726695":25,"29731502":21,"29732036":32,"298":[23,41],"2980":32,"29822833":6,"29894362":11,"299":[23,41],"2990":32,"299748":[32,33],"2_":[12,38,39],"2_1":[12,38,39],"2_2":[12,38,39],"2_3":[12,38,39],"2_i":[12,38,39],"2_m":[6,29,35],"2_t":[13,37,38],"2_x":29,"2b":29,"2c8f433990d1":[37,38],"2cm":8,"2d":[1,3,11,12,24,32,38,39,40,41],"2e":[6,35],"2f":[0,7,9,10,11,12,32,33,36,38,39],"2g":[2,41],"2g_i":[2,41],"2k":3,"2m":[6,35],"2n":[0,2,3,32,33,41],"2nd":9,"2p":29,"2pm":[30,32],"2pt":4,"2x":[0,3,8,13,32,37,38],"2x_ix_jy_iy_j":8,"2x_j":8,"2y_i":10,"2y_j":8,"3":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,21,23,24,25,26,27,28,29,30,34,35,36,37,38,39,40,41],"30":[0,1,4,6,7,9,10,13,21,23,30,32,33,35,36,37,38,40,41],"300":[21,23,38,39,41],"3000":[23,41],"30000":[0,32],"30010":9,"301":[23,41],"30119421":8,"30125775":21,"30129931":25,"30150056":32,"30170017":[39,40],"30177145":[],"302":[23,35,41],"30258509":[25,32],"303":[6,23,41],"30335380e":[],"30339081517583943":29,"30361418":38,"30442964":33,"30447937":[],"30466214e":6,"30478013":[],"30494363":[],"305":[0,23,32,41],"30567713":[],"306":[0,23,32,41],"30630294":[],"30677003":[],"306770031113352":[],"307":[0,32],"3072":3,"3073":35,"307631":[],"30763135":[],"3076923076923077":9,"30774404":21,"30787294":6,"308":[0,23,32,41],"309":[0,23,32,41],"30914432":25,"30940":9,"30971881":[],"30990916":32,"31":[4,6,12,23,25,29,38,39,41],"310":[0,23,32,41],"31022577":[],"310277":5,"31027702":5,"310579":33,"3105791":33,"31082439":25,"311":[0,32],"31113868e":[],"312":[23,34,41],"3123314713548606":[6,35],"31248389":32,"31276579e":6,"31290684":33,"313":[23,34,41],"31318084":5,"3139661":[],"31415359e":[],"31457796":5,"315":[6,23,34,41],"3155":[0,5,6,34,35,36],"31579721":[],"31588043":25,"31588332":[],"316":[23,34,41],"31650694":6,"317":[23,41],"31705377":[],"31714002":32,"31718909":11,"317367":11,"3175938":5,"317594":5,"318":[23,41],"31803769":[],"31814386":29,"3189":35,"31895514":21,"31896852":8,"319":[23,41],"31927572":[],"31995103":[],"32":[3,4,6,12,13,23,25,29,35,37,38,39,41],"3200":[1,39,40,41],"321":[23,41],"32141575":32,"32149601703519115":[6,35],"3214960170351912":[6,35],"3215":9,"32185967":25,"322":[23,41],"32221699":21,"32244056":21,"32265589":[],"3228044":[],"32341247e":[],"32372846":21,"32382849":32,"324":[2,23,41],"3245":2,"32450054":33,"325":[23,41],"3250":[1,6,39,40,41],"32577534":[],"32584888":[],"326":[23,41],"32615859":[],"326238":[32,33],"32632463":[],"326325":[],"327":[23,41],"32708194":[],"327291":11,"32729105":11,"3273472571412799":11,"328":[23,41],"3283771":25,"329":[23,41],"32941592e":[],"329492":32,"33":[4,9,12,23,25,29,30,35,38,39,41],"330":[23,41],"33020191":[],"3303366":[],"33066907e":[5,33],"33078483":32,"33079132":32,"33104875":[],"33113018":[],"33159476":25,"33166055e":5,"331939":[32,33],"332":[23,41],"3329671101137754":29,"333":[7,23,36,41],"33333333":13,"33408606":[],"33486875":21,"335":[23,41],"33534416":[],"33537181":32,"335849":[],"336":[23,41],"33600213":32,"33746734":[],"33746734412664":[],"338":[23,41],"33800793":25,"33860497":[],"339":[23,41],"33903511":[],"33995567":[],"339961":[],"3399612":[],"34":[4,9,23,25,35,41],"340":[23,41],"340071371496255":33,"34011629":25,"3403":9,"340583":32,"340782":[11,33],"341":[23,41],"34100913":[],"34114547":5,"34149655":[],"341497":[],"34154132":[],"34158540e":[],"34193915":33,"342680":[32,33],"343":[23,41],"3436":[0,32],"3437":[0,32],"3439564710454786":[],"344":[23,41],"34412923":33,"34447052":[],"345":[23,41],"34517495":[],"34569596":5,"346":[23,41],"34685874":[],"347":[23,41],"348":[23,41],"348676117830458":5,"349":[23,41],"34998197":[],"35":[0,4,6,9,17,23,26,30,32,35,41],"350":[23,41],"35058127":21,"35084272":21,"351":[23,41],"35140":9,"35146218":29,"351636":[11,33],"35182854":5,"352":[23,41],"35248847":21,"35255737e":21,"353":[23,41],"354":[23,41],"35412147":35,"3544313922":6,"35470445e":[5,33],"355":[23,41],"35533773":6,"35564856":[],"356":[23,41],"356399":[32,33],"3568919":[],"357":[23,41],"357508":[32,33],"35771826":6,"358":[23,41],"3581341341":4,"35825829e":[],"35846425":35,"359":[5,23,34,41],"3592571":[],"3597516959642966":[],"3597517":[],"36":[0,4,5,6,23,26,29,35,41],"360":[1,39,40,41],"36051635":[],"361":[23,41],"3613":9,"361556":[32,33],"3616476":[],"362":[23,41],"3621311":5,"363":[23,41],"3632959111950474e":6,"363295916323784e":6,"364":[23,41],"36403046":29,"36420967":[39,40],"36434588":[],"36550376":32,"3655222":5,"366":[23,41],"367":2,"3676":4,"36789460e":[],"3679":4,"36795972e":[],"368":[23,41],"36802977":32,"3689":4,"369":[23,41],"369139":[11,33],"36it":6,"37":[4,6,9,19,23,26,32,36,41],"370":[23,41],"3701":4,"3703":4,"3703468543933255":[],"3705":4,"3706":4,"370782966":4,"371":[23,41],"37112277":[],"3713":4,"3716":4,"372":[23,41],"37239927e":33,"3724":4,"37266855":32,"3729492":[],"373":[23,41],"3730":4,"3733":4,"37335014":32,"3737":4,"37376184":32,"37388140e":[],"37396662":6,"374":[23,41],"3743":4,"37477725":29,"374777250972322":29,"3749":4,"375":[23,41],"3756":4,"375694":32,"3758":4,"376":[23,41],"3765":[],"376547":32,"3766":4,"37667238":25,"3767":4,"377":[23,41],"3770":[],"3773":[],"377372":33,"37737221":33,"3777801602":6,"378":[23,41],"3780":4,"3782":4,"3784":4,"37853034e":[],"3786":[],"3787":4,"3789":[],"37900111":6,"37917253":[],"3795":[],"3798":4,"3799":[],"38":[4,9,23,26,29,41],"380":[9,23,41],"3800":4,"3802":4,"38020451":[],"380205":[],"3804":4,"38046294":32,"38088413":[],"3812":4,"38135654":21,"38135733e":6,"3814":[],"3815":4,"3816":[],"38165546":[],"3817475779":[6,35],"382":[23,41],"38201155":21,"3821":[],"382187":32,"38259375":[],"383":[23,41],"38319502e":[],"3834":[],"3836":[],"3837":[],"3838":[],"38380352":21,"3838917029":37,"384":[23,41],"3840":[],"3842":4,"3842967":[],"38461538461538464":9,"38461539":37,"38465596":[],"385":[23,41],"38511413":[],"3853":[],"38533185":6,"3855":4,"3856":4,"386":[9,23,41],"38629436":[25,32],"3865":[],"387":[23,34,41],"3871":4,"3873":4,"38764522e":[],"3877":[],"3878":[],"38782352":32,"38787447":[],"38831624":[],"3886":35,"3888":4,"389":[23,41],"38916861e":6,"3893":[],"3894":4,"38962192e":6,"3898":4,"39":[0,4,9,22,23,27,30,32,38,39,41],"390":[23,41],"3901":[],"3907":[],"3907408":[],"39078751e":[],"391":[23,41],"3911":4,"3918":4,"3919":[],"39197698":33,"391977":33,"392":[23,41],"3920":4,"39200159":32,"3921":4,"39214397":33,"392144":33,"3923":[],"3928":[],"39287528":[],"3929":4,"393":[23,41],"39300201":[],"39308683e":[],"3932":[],"394":[23,41],"3944":[],"39457095":[],"3948":[],"39483726":[],"395":[23,41],"39541528":[],"3957":4,"39572825":[],"39579407":5,"396":[23,41],"39612983":[],"3962":4,"39644178":[],"3967":4,"397":[23,41],"3970":[],"39706038":5,"39730396":26,"3975":[],"397700":[11,33],"39789527":[25,32],"3979":4,"398":[23,41],"3980313467":6,"39890447":[],"39895173e":[],"399":[23,41],"39931051e":33,"3996":[],"39965905e":[],"399836":[32,33],"3999":[],"3d":[2,3,4,6,13,26,35,37,41],"3f":[1,3,9,40,41],"3n":25,"3s":4,"3x":[2,8,41],"3x_i":[2,41],"3y":8,"3yk470mj5p931p9dtkk0y6jw0000gn":[1,6,13,26,32,35,37,39,40],"4":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,23,25,26,27,29,32,34,35,36,37,38,39,40,41],"40":[0,1,4,6,9,22,23,26,27,30,32,35,39,40,41],"400":[4,23,41],"4000":[9,23,32,41],"40009482":32,"401":[23,41],"4010":4,"40111899":11,"401119":11,"4014":[],"40182469":25,"401842":[11,33],"402":[23,41],"40216748":[],"4033":[],"40362053":[],"40389562":[],"404":[23,33,41],"404130":[],"40413036":[],"4043":4,"4050":[31,32],"40500157":[],"40512793":25,"405890":[11,33],"406":[23,41],"40620066":33,"406201":33,"40629059":[],"40644745":[],"4066":[],"40666305":32,"408":[23,41],"4082":6,"4087":9,"4087793":5,"40892146":[],"40927184e":6,"40contain":27,"41":[2,4,9,22,23,25,27,41],"410":[23,41],"41021561":[],"4107":9,"41097603":[],"411":[23,41],"411730":5,"41173033":5,"412":[23,41],"41219619":[],"41246325":[],"41291861":[],"413":[23,41],"41371745":[],"414":[23,41],"41433969":5,"415":[23,41],"415066":[],"41506637":[],"41511965e":[1,39,40,41],"415201":32,"4155":[2,15,41],"41594943":21,"416":[23,41],"4162706317":6,"4166666666666667":9,"417":[23,41],"41716708":21,"41771755":[],"41790059":21,"418":[23,41],"418506":[11,33],"4187996":[],"41882037e":6,"41894238":25,"419":[23,41],"42":[1,4,8,9,10,23,25,39,41],"420":[23,41],"421120085426022":[],"42138688e":[],"42172457":[],"42198678":[],"421987":[],"422":[23,41],"42239354":[],"422658":11,"42265837":11,"423":[23,41],"4230769230769231":9,"4234":4,"424":[23,41],"42441033":5,"42450":9,"42457498":5,"424575":5,"42484459":38,"425":[23,41],"42535003":25,"425564":[],"42556446":[],"42578415":[],"4258049":[],"42584543":[],"426":[6,7,23,36,41],"427":[23,41],"428":[23,41],"42800148":[],"428741":[],"42874148":[],"429":[23,35,41],"429345":[],"42934502":[],"42967903e":[],"43":[0,1,4,7,9,25,36,39,40],"430":[23,41],"43043913":[],"43054282":5,"4310":32,"432":[23,41],"433":35,"43330971e":6,"434":[23,41],"43425860e":[],"43466245":32,"43490863":[],"43496417":[],"435163":[32,33],"4353":[],"43579948e":6,"436":[23,41],"43639284e":33,"436462435":4,"43647835":32,"437":[23,41],"43766686":11,"438":[23,41],"438060758":6,"43809274e":[],"438136":[32,33],"439":[23,41],"43902948":32,"439230":6,"43941514":32,"43951204":29,"43it":6,"44":[0,1,4,25,39,40],"440":[23,41],"44089210e":[5,33],"441":[23,41],"44116407":32,"441182":[],"44118245":[],"441264":32,"442":[23,41],"442600":[11,33],"443":[23,41],"443217":[32,33],"44347438":[],"444":[9,23,41],"44402322":25,"44407741e":[],"44418822":[],"44520102":[],"44595818":32,"446":[23,41],"446033":35,"44624525e":33,"446453":32,"44729805":[],"44732200e":[],"44781662":11,"447817":11,"448":[23,41],"44842116":[],"449":[23,41],"44921888":[],"44970586e":[1,39,40,41],"45":[4,9,23,30,32,41],"450":9,"45014":25,"450257":[11,33],"4504":9,"45062284":32,"45065211":[],"45073476e":[],"450m":[],"451":[23,41],"45134965":[],"45207509":[],"45253585":32,"452553":32,"45255977":[],"45281756":[],"45290234":21,"452m":4,"453":[23,41],"45308692":[],"453m":4,"454":[23,41],"45405253e":[],"454m":4,"455":[23,41],"45502684":21,"455173":35,"4555094":[],"455592":[],"4557763":11,"455947":[32,33],"455m":4,"456":[9,23,41],"45610021":[],"45642521":[],"456m":4,"457":[2,4,23,41],"457m":4,"458":[23,41],"458027":[32,33],"458078":[11,33],"458m":4,"459":[23,41],"45915671e":33,"45922756e":[],"45960079":5,"459m":4,"46":[2,4,9,23,30,32,41],"460":[23,41],"4600624385659884":[],"4601":9,"46022436e":[],"460m":4,"461":[23,41],"46153846153846156":9,"461m":4,"462":[7,23,36,41],"4627795":29,"462m":[],"463":[23,41],"46313714":[],"46383925e":6,"46383926e":6,"463861":32,"464":[23,41],"464m":4,"466":[23,41],"467":[23,41],"46754435":32,"4676059":33,"467606":33,"467818":[],"46781836":[],"467m":4,"468":[23,41],"46873567":25,"468m":[],"469":[23,41],"46984697e":6,"47":[2,4,9,23,30,32,41],"470":[23,41],"47042744":5,"470714":[32,33],"47075725":6,"470m":4,"47116868e":6,"4712168":29,"47125748":5,"47132891":5,"47176716":35,"47176783":35,"47179152":35,"471874":[],"47187428":[],"472":[23,41],"47202442":35,"472445":5,"47244548":5,"47297104":25,"473":[23,41],"47313680":35,"47364408":25,"473m":[],"47430124e":[],"47447472":[],"475":[23,41],"475405":[],"47540513":[],"476":[23,41],"47610036":6,"477":[23,41],"47700752":32,"47701204":[],"477m":[],"47815203":11,"479":[23,41],"479465113":4,"479m":[],"47it":6,"48":[2,3,4,9,23,35,41],"480":32,"481":[23,41],"48134747":[],"481401":[],"48140137":[],"48145226":[],"481979":6,"482":[23,41],"48240312e":[],"48243352e":[],"48257387":[30,32],"483":[23,41],"483257001":13,"48336413":[],"48356153e":[],"483m":[],"484":[23,41],"48418018":[],"48423285":[],"48461009":[],"48464841":[],"48476997":11,"484m":[],"48598711":[],"485m":[],"486":[23,41],"48629506":[],"486852":11,"48685204":11,"4871984":29,"487m":[],"488":[23,41],"48815255e":[],"488m":[],"489502":[],"48950243":[],"48994188":5,"49":[4,5,6,9,11,23,26,33,37,38,41],"490":[23,41],"49057373":32,"49078463":[],"491":[23,41],"49152":3,"49216685":21,"492m":[],"493":[23,41],"49313815":21,"493m":4,"4940954":[0,32],"495":[23,41],"49545139":21,"49555885e":[],"4959161509357395e":6,"495916150936645e":6,"495m":[],"49616116":[],"497":[3,4,23,41],"4974810657432664":[],"497m":[],"498":[3,4,23,41],"49865980e":[],"499":[3,4,23,41],"4990":29,"4992":29,"4993133":25,"4997":29,"499m":[],"4c4c7f":[9,10],"4d":3,"4f":6,"4pm":[30,32],"4s":[],"4y":8,"4y_i":10,"5":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],"50":[1,2,3,4,6,7,8,9,10,13,21,23,32,33,35,36,37,38,39,40,41],"500":[1,3,4,6,9,10,13,23,35,36,37,38,39,40,41],"5000":[23,41],"50000000e":39,"50000455":5,"50000553":5,"50000718":5,"50000855":5,"50000969":5,"50001063":5,"50001142":5,"50001207":5,"50001261":5,"50001306":5,"50001343":5,"50001374":5,"500014":5,"50001414":5,"50001422":5,"50001439":5,"50001454":5,"50001466":5,"50001476":5,"50001485":5,"50001492":5,"50001498":5,"50001502":5,"50001506":5,"5000151":5,"50001512":5,"50001515":5,"50001517":5,"50001518":5,"50001519":5,"50001521":5,"50001522":5,"50001523":5,"50001524":5,"50001525":5,"50046106":21,"50079895":[],"500m":[],"501":[3,4],"5018":29,"50184628e":[],"501m":[],"502":[3,4,23,41],"50227564e":6,"50274255":[],"503":[3,4,23,41],"50321091":5,"504":[3,4,23,41],"50427787":35,"50462474":[],"5046808":29,"505":[3,4,23,41],"50519365":[],"50562981":[],"506":[0,3,4,23,33,41],"50653545":32,"506553":33,"50655336":33,"50691065":[],"50697511":[],"507":[3,4,23,41],"50721349":[],"507d50":[9,10],"508":[3,4],"50837888e":[],"50846111e":6,"50846112e":6,"509":[23,41],"5092982":25,"50it":6,"50j":[13,37],"50x10":[1,39,40,41],"51":[4,10,23,41],"510":[1,23,39,40,41],"511":[3,4,23,41],"511888":5,"51191552":6,"512":[3,4,23,41],"51374050":35,"514":[23,41],"514219":[32,33],"515":[23,41],"515m":[],"516":[23,41],"517":[23,41],"51741855":25,"5177783846":4,"51845286":[],"518895":32,"519":[23,41],"52":[3,4,23,37,38,41],"52015514":[],"52067151":32,"52078202":29,"52180619":32,"522":[23,41],"52204004":[],"52209178":[],"5222222222222223":[1,39,40],"522836":32,"522m":[],"523":[23,41],"52362157e":33,"524":[23,41],"52400486e":[],"52482437":[],"525054":[],"52512898":29,"52518625":[],"525739":[],"52573941":[],"526":[23,41],"526744":[11,33],"52687741":25,"527":[23,41],"5276":4,"52775466":35,"52795454":[],"528":[23,41],"52856208":[],"52874252":5,"529":[23,41],"52942586":11,"52944573":[],"529446":[],"52950417":[],"5297947920715131":[],"53":[3,4,9,23,41],"5303329":11,"53049637":38,"5305555555555556":[1,39,40],"531":[23,41],"531280":[32,33],"532":[23,41],"5320148":[],"53250091":[],"53278871":[],"532789":[],"533":[23,41],"534":[23,41],"5340022":[],"534362":32,"535":[23,41],"53515878":25,"53542722":[],"53558374":25,"536":[23,41],"5364857":25,"5369485":21,"537":[23,41],"53700083":25,"53703498":6,"53738247":35,"53755010e":[],"5378811":11,"538":[23,41],"53811172e":[],"5384615384615384":9,"539":[23,41],"539261":[11,33],"53946725":21,"54":[3,4,6,9,23,29,41],"540":[9,23,41],"54039921":5,"54041041e":5,"541605":[32,33],"542":[23,41],"54285633":[],"543939":33,"54393936":33,"544":[23,41],"544439":[32,33],"545":[23,41],"54637219":35,"54644868":25,"547":[23,41],"549":[23,41],"55":[1,3,4,9,23,39,40,41],"55086461":[],"552":[23,41],"552042":[],"55315304":[],"55328795e":[],"554":[23,41],"555":[23,41],"5555555555555556":[1,39,40],"555m":[],"556":[23,41],"55649207":32,"556m":[],"557":[23,41],"557795":[11,33],"558":[23,41],"55854694":11,"55865092":32,"55867377":32,"55868255":[],"559":[23,41],"5594":6,"55955126":[],"55972302e":[],"55it":6,"56":[1,3,4,9,23,39,40,41],"560":[23,41],"56033697":5,"5608253":32,"561":[23,41],"5615739502773949":32,"56171141":[],"56198284":5,"561m":[],"56240703e":[],"56249706":25,"56288861":[],"562888614232874":[],"563":[23,41],"563167":32,"56364308":[],"56366546":[],"56399029e":[],"564":[9,23,41],"564374":[11,33],"56465688":[],"56475572":32,"56477354":[],"565":[9,23,41],"56536":[0,32],"56570797e":[],"56589683":35,"566":[9,23,41],"56636537":[],"56636616e":6,"567":9,"56740132":[],"568":[9,23,35,41],"568587":[],"56858701":[],"569":[1,9,40,41],"56912044e":6,"56939714":5,"56965674":35,"57":[0,3,4,8,9,23,30,32,41],"570":9,"571":[5,23,34,41],"571105947979344e":6,"571105947979394e":6,"57201944e":6,"572069":32,"57285536":[],"573":[23,41],"573029":[],"57302926":[],"574":[23,41],"574465":[11,33],"575":[23,41],"57572321":[],"576":[23,35,41],"57670824":[],"5769230769230769":9,"577":[23,41],"578":[23,41],"5786304":[],"579":[23,41],"57935482":32,"57952471e":[],"58":[3,4,9,10,23,30,32,41],"580":[23,41],"58076367":11,"5808118":[],"5810785":32,"58182803":32,"58193124":[],"581m":[],"582":[23,41],"58268575":[],"5828247":[],"5829913":[],"5833333333333334":9,"583595":[32,33],"584":[23,41],"58427764":29,"58465096":21,"58492636e":33,"585":[23,41],"587":[23,41],"58739348":21,"58742004e":[],"58793527":25,"58818643":[],"58841019e":[],"5888888888888889":[1,39,40],"589":[23,41],"58948138":[],"58948347":[],"59":[4,9,23,41],"590":[23,41],"59004971":[],"591317992":4,"5914397":25,"592":[23,41],"59222238":[],"593":[23,41],"59327016":25,"594":[23,41],"59412285":32,"5944444444444444":[1,39,40],"59446603":[],"59511582":[],"59545081":29,"59589728e":[],"596":[23,41],"59642735":29,"596m":[],"5974862":[],"598":[23,41],"59895188":[],"599":[23,41],"59916814e":[],"5cm":29,"5f":[8,37],"5x":8,"5y":8,"6":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,25,29,30,32,33,34,35,36,37,38,39,40,41],"60":[1,3,4,6,9,23,40,41],"600":[23,41],"6000":[23,41],"60000":4,"601":[23,41],"6019067271":4,"60293962":5,"603":[23,41],"603636":32,"6037092":[],"60383004":[],"604":[23,41],"60420593":5,"605":[23,41],"60543038":33,"606":[23,41],"60673226":11,"6067329321734374":[],"60675691":25,"606760":5,"607":[23,41],"6071713":[],"608":[23,41],"60815105":6,"60883945":32,"609":[23,41],"60943791":[25,32],"60it":6,"61":[7,23,36,41],"610":[23,41],"61043964e":[],"611":[23,41],"6111111111111112":[1,39,40],"61197218":[],"612":[23,41],"61238907":[23,41],"612939":[32,33],"613":[23,41],"613579":[32,33],"61394448":[],"614":[23,41],"614808":[11,33],"61480907":25,"615":[23,41],"61504341":[],"61532006":[],"6153846153846154":9,"61585143":[],"616":[23,41],"61653285e":[],"617":[23,41],"61702282":6,"61775176":35,"618":[23,41],"618982":[32,33],"619":[23,41],"61939429":[23,41],"61971639e":[],"61992828e":[],"61it":6,"62":[3,4,23,41],"620":[23,41],"621102":32,"622":[23,41],"623":[23,41],"62373464":11,"624":[23,41],"625":[7,36],"62554614":[],"626635268":[6,35],"627":[23,41],"62841921":[],"62862896":[],"6289054":[],"62894215":5,"629":[23,41],"629100":5,"62910047":5,"62919818":[],"62it":6,"63":[0,1,3,4,6,7,23,33,35,36,39,40,41],"630":[23,41],"6300745149331701":33,"63025821e":6,"63162342":33,"63180447":35,"632":[23,41],"63227278":32,"63249532e":6,"63277911e":[],"633":[23,41],"633949":32,"634":[23,41],"634715":[],"63471545":[],"63498144":5,"6353716266230895":29,"63537163":29,"63567272":[],"636":[23,41],"63659131":21,"63677721":[],"637":[23,41],"637129335071195":33,"638":[23,41],"63837812":32,"63849228e":[],"63875295":[],"639":[23,41],"63957747":21,"64":[1,3,4,7,13,23,25,32,36,37,38,39,40,41],"64012627":5,"64056395":29,"641":[23,41],"64111239":[],"64147722":[],"64158883e":36,"642":[23,41],"64291044e":[],"64292493":[],"64299732":[],"643":[23,41],"64316192":35,"64316482":35,"64391062":[],"643m":[],"645":[23,41],"64502836":[],"64527549":33,"64550753":[],"64594566":5,"645946":5,"646":[23,41],"646283":[11,33],"64695862":25,"647":[6,23,41],"64733822":29,"64742912e":6,"647473":[11,33],"648":[23,41],"64846973e":[],"649":[23,41],"649382":[11,33],"64969451":[],"649695":[],"64x50":[1,39,40,41],"65":[1,3,4,7,8,9,23,25,36,39,40,41],"650":[23,41],"65036493":[],"65196615":[],"652":[23,41],"652187":[],"65218729":[],"65322635":29,"6536392":33,"654":[23,41],"65408703e":[],"65409368":29,"65442354":33,"654424":33,"654m":[],"655":[23,41],"65565751":[],"65571174e":33,"65599456":33,"65626992":38,"65628888":[],"6568551":[],"657":[23,41],"65704027":[],"657041":32,"65715086":29,"65720414":[],"65743689":33,"658":[23,41],"65825344":25,"65833132":33,"65885453":5,"65891389":33,"658914":33,"65913552":29,"66":[3,4,23,41],"660":[23,41],"660470":11,"66047048":11,"66051179":[],"66064822":33,"66080313":33,"661":[23,41],"662":[23,41],"66204648":6,"66219404":6,"6628996975186953":33,"66294408":33,"66323494":[],"6638":9,"664":[23,41],"66490332e":21,"665":[23,41],"66510547":13,"6652177":33,"66545355":[],"66560":9,"66562658e":[],"665m":[],"666597":32,"666897":[],"66689729":[],"667":[9,23,41],"667239":32,"66798429":[],"668":[23,41],"668172":[32,33],"66878535":21,"669":[23,41],"66m":4,"67":[9,23,41],"670":[23,41],"67035174":[],"67047975e":6,"671":[23,41],"67109613":25,"67189384":[],"671m":[],"672":[23,41],"67264685":[],"672721":[32,33],"67314874e":5,"67347822":[],"674":[23,41],"67432237e":[],"67541155":13,"67554897":[],"676":[23,41],"67640036":[],"67671601":[],"677":[23,41],"678":[23,41],"6780674":[],"67890723":[],"68":[23,41],"680":[23,41],"68037392":5,"680374":5,"681":[23,41],"68192193":5,"682":[23,41],"68286725":33,"683":[23,41],"68419351":[],"684194":[],"685":[23,41],"68534263e":6,"68542204":5,"685643":[],"68564345":[],"68581655":38,"68592431":35,"6860597312101988":[],"6869":9,"687":[23,41],"68711054":25,"68759903e":[],"687m":[],"688":[23,41],"6887363571":4,"68929213e":6,"689345":32,"689519":[11,33],"68971917":29,"68992377":32,"69":[7,9,23,29,36,41],"690":[9,23,41],"69009002":[],"690617":[32,33],"69069n_":29,"690710":[],"69071035":[],"691":[23,41],"69111133e":[],"692":[1,23,35,39,40,41],"692268":[],"69226802":[],"69230769":37,"6923076923076923":9,"69233822":29,"692m":[],"693":[23,41],"69314603":21,"694":[23,41],"69481287":29,"69484813e":5,"695":[23,41],"69504801":6,"69519297":25,"69582036":[],"696":[23,41],"69634577e":6,"69695259":5,"697":[23,41],"69714468":[],"6980":[21,37,38],"69818111":[],"69873514":[],"699":[23,41],"69908626":6,"6999536":11,"69997503":33,"6n_":29,"6pm":32,"7":[0,1,2,3,4,5,6,7,8,9,11,12,13,15,21,23,25,26,28,29,31,32,33,35,36,37,38,39,40,41],"70":[1,6,7,9,23,36,39,40,41],"700":[23,41],"7000":[23,41],"70037324e":33,"701":[23,41],"70115106":[23,41],"701370":5,"702":[23,41],"70224083":13,"70249832":25,"703":[23,41],"70344416":5,"704":[23,41],"70408916":32,"705":[23,41],"70506522":32,"70573539":[],"706":[23,41],"70653767":4,"706833":[],"707":[23,41],"70710678":[5,33],"708":[23,41],"7082333":32,"70832814":5,"7086067479626619":33,"70899024":32,"709":[23,41],"7094664":[],"70967214":25,"709698":32,"71":[1,23,39,40,41],"710":[23,41],"7100524":[],"71038664":25,"711":[23,41],"71137935":29,"71142161":33,"711422":33,"7119":9,"712":[23,41],"712018":[11,33],"71269506e":[],"71285447":[],"713":[23,41],"713163":32,"7135487":[],"71375273e":[],"714":[23,41],"71424969":[],"71437567912473":[],"71437568":[],"71467081":[],"71504681":[],"71640333":[],"71647328":32,"717":[23,41],"71727268":5,"717273":5,"71737253":33,"71761101":33,"718":[23,41],"718165":5,"71977472":25,"72":[23,25,41],"720":[23,41],"7207467":32,"721":[23,41],"7215423":32,"72174172":11,"722":[23,41],"72228205":32,"72271878e":6,"723":[23,41],"72328506":[],"7236674":5,"724":[3,23,41],"725":[23,41],"72546953":32,"72651548":25,"727":[23,41],"72742343e":[],"728":[23,41],"72859758":5,"72981762":8,"73":[6,23,32,35,41],"730":[23,41],"731000":[32,33],"732":[23,41],"73231305":[],"73293298":[],"7330932":29,"733096":[32,33],"73379189":32,"734":[23,41],"734107":[],"73410729":[],"73441814":29,"73448544":[],"73456649":[],"73482109":[23,41],"735":[23,41],"736":[23,41],"737":[23,41],"74":[6,23,35,37,38,41],"740":[9,23,41],"74081822":8,"740m":[],"741":[23,41],"741391":[],"7413913":[],"741m":[],"742":[23,41],"74280244":[],"743189104728408":11,"74384949":33,"74391438":25,"744":[23,41],"74401372":[],"74430995":29,"74462857":[],"745":[23,41],"74577867":[],"746":[23,41],"74607851":33,"747":[23,41],"74724767":[],"74731872":25,"748":[23,41],"74818082":[],"74829661":33,"74840212":5,"7484672e":[],"749":[23,41],"7490462":[],"749765":[32,33],"75":[5,6,8,9,11,23,26,32,33,35,39,40,41],"750445":[32,33],"75050135":33,"75054469":29,"7506274061293645":[],"751":[23,41],"751699":[11,33],"75170092":5,"75174305":11,"75268791":[],"75269037":33,"75282841":[],"753":[23,41],"75315452":[],"75354069":[],"754":[23,41],"75457798":[],"75472506":21,"755":[23,41],"75576555":33,"756":[23,41],"75627883":[],"756279":[],"75631027":[],"756352":[32,33],"757":[23,41],"75719828":[],"75770568":33,"758":[23,41],"75823753e":[],"7588118737641243":32,"759":[23,41],"75963425":[],"76":[9,23,30,32,41],"76004012":[],"76010633":[],"76077707e":[],"76084455":[],"761":[23,41],"76135601":25,"76174289e":[],"762":[23,41],"763":[23,41],"7640203256838339":11,"7644":[],"764997683364458":[],"765":[7,36],"7651068":[],"766":[23,41],"7664107":[],"76771975":[],"769":[23,41],"7692307692307693":9,"76936315":5,"7694444444444445":[1,39,40],"7697":35,"7698352":32,"76985203":29,"77":[9,23,30,32,37,38,41],"770204":[],"77025447e":[],"77067609":32,"77133246":29,"77152076":5,"7718":9,"77184871":21,"772":[23,41],"77203046":25,"77265448":[],"77265782":32,"773":[23,41],"77343022e":[],"774":[23,41],"77448317e":[],"7748567":[],"775":[23,41],"77589027":[],"776":[23,41],"77632628":[],"77636e":[13,38],"77646856":[],"777":[23,41],"77714169":8,"7779287093124035":[],"77794957":[],"778":[23,41],"7782028952":4,"77856932":[],"779":[23,41],"78":[23,41],"780":[23,41],"78009660e":33,"7803213":32,"78156479e":5,"78177713":[],"78184120e":6,"782":[23,41],"78220032":25,"78299706":[],"783":[23,41],"78316665":29,"784":[23,41],"785061":32,"78521833":25,"78524451e":[],"78556129":[],"786":[23,41],"7865355":32,"788":[23,41],"788388":11,"78838813":11,"78882958":[],"78886274":[],"789":[23,41],"7893215781870513":5,"78941903":5,"78951443":[],"79":[23,32,41],"790":[23,41],"79035184":25,"79072516":[],"791":[23,41],"79106945e":[],"79111643":5,"79125269":[],"791809":[],"792":[23,41],"793":[23,41],"793167":[32,33],"79328516":[],"794282":[11,33],"794906":[],"79490641":[],"795":[23,41],"795225339396409":[],"79550688e":[],"79578306":[],"796":[23,41],"79675445":[],"797":[23,41],"79787771":[],"797e":6,"798":[23,41],"79896478e":[],"799":[23,41],"79909592":35,"79914677":[],"7993408651198877":35,"79934087":35,"7995707762668065":35,"7d7d58":[9,10],"8":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"80":[0,1,5,6,8,9,23,33,34,35,39,40,41],"800":[4,7,23,36,41],"8000":[23,41],"80074264":25,"80152684":[],"80189569":[],"80207897":25,"80228781e":[],"802550782087107":[],"803":[23,41],"80354994":6,"80389541":32,"804":[23,41],"80447153":32,"80460179":35,"80469739":5,"805":[23,41],"80540415e":[],"80548430e":[],"8055555555555556":[1,39,40],"80609615e":6,"80609616e":6,"80625657":[39,40],"807":[23,41],"808":[23,41],"80802836":[],"80847477e":6,"80861057":[],"808611":[],"81":[1,23,39,40,41],"81048318e":6,"81071342":[],"811":[23,41],"81114345":[],"81122914":21,"81160425":5,"812":[23,41],"81333804":6,"813929":11,"81392948":11,"814":[7,11,23,36,41],"815":[23,41],"81597834":35,"815am":[30,32],"81633628":11,"816454":[32,33],"81651921":[],"81664404":[],"816847":[32,33],"817":[23,41],"81753152":[],"81759234":21,"81784973":[],"818":[23,41],"8182":[],"81840893":32,"81853487e":21,"8186717":[],"819":[23,41],"81948868":25,"81953844":32,"8197":[],"82":[23,41],"820":[23,41],"82001111":29,"820122":11,"82012236":11,"821":[23,41],"82102668":[],"82139086e":[],"82198978":5,"822":[23,41],"82292185":32,"82296251":[],"823":[23,41],"82379443":11,"824":[23,41],"82410428":[],"8249367":21,"825":[23,41],"826":[23,41],"82651934e":[],"8265786":5,"827":[23,41],"827462":29,"82781715":21,"828":[23,41],"829":[23,41],"82909728":[],"82988221":25,"83":[23,32,41],"830":[23,41],"83009076":29,"8305555555555556":[1,39,40],"8306":6,"831":[23,41],"8311393813043355":29,"83140314":29,"83140314044099":29,"83146596":35,"83190841":[],"832":[23,41],"83298727":[],"832987270767667":[],"832m":[],"833":[23,41],"83384573":[],"834":[23,41],"8342":6,"83443463":25,"83443698":[],"83488328":[],"835":[23,41],"83505053":[],"8351":6,"83512277":5,"8353591":32,"836":[23,41],"836186":11,"83618601":11,"83657122":[],"837":[23,41],"83752888e":[],"83770406":[],"83774539":[],"83793362":[],"838":[23,41],"83870794e":[],"839":[23,41],"839818":32,"84":[23,41],"840":[23,41],"84082439":[],"84094234":[],"841":[23,41],"84132082":32,"84159521":[],"842":[23,41],"842101":11,"84210141":11,"842436":[32,33],"84290819e":[],"843":[23,41],"84355903e":[1,39,40,41],"84359332e":[],"84380376":[],"844":[23,41],"84443254e":[1,39,40,41],"84444399":[],"845":[23,41],"845716766413386":[],"84571677":[],"84575663":[],"846":[23,41],"8461538461538461":9,"84638256":[],"846383":[],"84666445":[],"84671508":29,"84698999":29,"847":[23,41],"84780262":6,"84783351e":[],"848":[23,41],"84835621":11,"84846601":[],"84858":34,"84859258":[],"849":[23,41],"84923989e":6,"84927263":[],"84929103":[],"84942247e":[],"84991754":32,"84994524":5,"84m":[],"85":[1,9,23,39,40,41],"850":[23,41],"850164":5,"85035714":[],"851":[23,41],"852":[23,41],"85263220":6,"85276246":25,"85278920e":5,"85288931":[],"85297050e":[],"853":[23,41],"85355539":21,"85365229":21,"853835":32,"854":[23,41],"855":[23,41],"85514104":[],"85548858":[],"856":[23,41],"85601654":0,"85601992":5,"85615662":[],"85654993":32,"85714286":36,"8574":[],"858":[9,23,41],"85813693":13,"858185":32,"8583333333333333":[1,39,40],"85888897e":[],"859":[23,41],"86":[23,41],"860":[23,41],"86012593":[],"86015267":[],"861":[23,41],"86117291":5,"86134827":5,"86145244":11,"861676":32,"862":[23,41],"86221134":[],"86252988":6,"86282204":32,"863":[23,41],"86341536":[],"8635085":[],"8638888888888889":[1,39,40],"864":[23,41],"86420934":32,"86452742":[],"865":[23,41],"866":[23,41],"86619181":[],"86630":9,"8666666666666667":[1,39,40],"86666667":36,"867":[23,41],"868":[23,41],"86810":9,"86811569":25,"86850963":25,"86852099":32,"869":[0,23,32,41],"87":[9,23,33,41],"870":[0,23,32,41],"8702784034":4,"87072815e":33,"871":[0,23,32,41],"872":[23,41],"8722222222222222":[1,39,40],"87242312":[],"8727831":29,"873":[0,23,32,41],"87381451":5,"874":[0,23,32,41],"87403627e":[],"87431418":25,"87458904":[],"875":[1,23,39,40,41],"87533278":[],"87533326":25,"875794":[],"8759":[13,38],"876":[6,23,41],"87627342":35,"877":[23,41],"87795661":[],"878":[23,41],"878123":32,"8784267":[],"879":[23,41],"8791492":29,"87931006":25,"87953769":25,"88":[13,23,37,38,41],"880":[23,41],"88046261":5,"8805555555555555":[1,39,40],"881":[23,41],"88168312e":6,"88182591":33,"882":[23,41],"88291866":21,"883":[23,41],"88305878":[],"88323026":33,"88336879":5,"884":[23,41],"884399":[],"88442538":5,"884669":33,"885":[23,41],"88529063e":6,"886":[23,41],"88613493":33,"887":[23,41],"88744469e":[],"888":[23,41],"888214":11,"88821402":11,"888577549915147":[],"8888888888888888":[1,39,40],"889":[23,41],"88901776":32,"88908909e":[],"8897518e":[],"89":[0,23,41],"890":[23,41],"89098129":25,"891":[23,41],"89126914e":33,"8915573":[],"892":[23,41],"89288636":11,"893":[23,41],"89321335":29,"894":[23,41],"89410423":5,"8942133":[],"8944444444444445":[1,39,40],"89481038":21,"895":[23,41],"896":[23,41],"89604286":32,"89609007":[],"896911":[],"8969113":[],"897":[23,41],"89793609":[],"898":[23,41],"89805982e":21,"89823921":[39,40],"89897156":32,"899":[23,41],"89996783":[],"8f":[6,35],"8g":[6,35],"8n":25,"8x8":[1,39,40,41],"9":[0,1,2,3,4,5,6,7,8,9,11,12,13,21,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,40,41],"90":[1,6,9,23,40,41],"900":[23,41],"9000":[23,41],"90075537":5,"901":[23,41],"9011":6,"902":[23,41],"90220243":5,"90223115":[],"90266948":5,"9027777777777778":[1,39,40],"90297441":[39,40],"903":[23,41],"90325763":[],"9036573":[],"904":[23,41],"9040":9,"904648525660773":[],"90475506e":6,"905":[23,41],"9050595316983907":25,"9054":35,"9055555555555556":[1,39,40],"90556496":25,"906":[23,41],"906747":5,"907":[23,41],"90793019":13,"908":[23,41],"90803422":[],"90854751":11,"908548":11,"90871918":21,"908736":[],"90873644":[],"909":[23,41],"909327":3,"90960269":32,"91":[23,30,32,41],"910":[9,23,41],"91022359":25,"91050344e":[],"91080327":21,"91086026":25,"911":[23,41],"9111111111111111":[1,39,40],"91128596":5,"912":[3,4,23,41],"9129629":[],"913":[23,41],"91358019":25,"91373404":29,"914":[3,4,23,41],"9142491":[],"91492986e":6,"915":[3,4,23,41],"91538877":[],"916":[23,41],"91619855":13,"91650774":[],"916508":[],"9165822":[],"9166666666666666":9,"917":[3,4,23,41],"917482":11,"91748202":11,"91760278":5,"91784246":[],"918":[3,4,23,41],"91812702":5,"918992":[32,33],"919":[23,41],"91966064":[],"92":[6,9,23,30,32,41],"920619":11,"92067658":[],"9208878":[],"921":[23,41],"92103867":[],"921368":5,"92136836":5,"922":[23,41],"922002":11,"92200223":11,"92236466e":[],"923":[23,41],"9230769230769231":9,"92351924":[],"923602":32,"924":[23,41],"92405283":[],"924e":6,"925":[1,23,39,40,41],"92507116e":[1,39,40,41],"92578916":5,"92579609e":[],"926":[23,41],"92630576":32,"92648983":[],"92651068":35,"927":[23,41],"92717417":[],"92729959":[],"92772833":[],"9277777777777778":[1,39,40],"928":[23,41],"92857143":[7,36],"929":[23,41],"92930426e":[],"9295763474254684":[],"93":[23,41],"930":[23,41],"93003138502386":29,"93022647":32,"9305555555555556":[1,39,40],"930829":5,"93082933":5,"931":[0,23,32,41],"93155188":5,"93158979":5,"932":[23,41],"932656":[],"93267138892912":[],"93267139":[],"933":[5,23,34,41],"934":[23,41],"93420126":[39,40],"93492130e":6,"935":[23,41],"93500562":[],"93528653e":[],"93571082":[],"936":[23,41],"93601008e":33,"937":[23,29,41],"937082":[32,33],"93799826":5,"938":[23,29,41],"93820524":[],"9387":9,"93884803":[],"939":[0,23,29,32,41],"93944615e":[],"93988393":[],"94":[7,23,29,36,41],"940":[23,41],"941":[23,41],"942":[23,41],"94226022e":6,"94230225":[],"942422095469182":[],"94256677":[],"94260358":[],"942604":[],"94273542":33,"94284104":5,"943":[23,41],"94320205":5,"94338159":[],"943439":[],"94399217":29,"944":[3,4,23,41],"94400087":25,"94433302e":[],"9444444444444444":[1,39,40],"94484047e":39,"945":[3,4,23,41],"94591015":[25,32],"946":[3,4,23,41],"94639099":11,"94642209":32,"946957":5,"94697839":[],"947":[3,4,23,41],"9472222222222222":[1,39,40],"948":[3,4,23,41],"94814932":[],"94815131":[],"9481513127527335":[],"94822514":6,"94823368":32,"9482527":5,"94854992":[],"94866246":[],"949":[3,4,23,41],"949162":11,"94916237":11,"94938706":[],"95":[1,7,9,11,23,35,36,39,40,41],"950":[3,4,23,41],"95008046":6,"9503219":29,"95055425":[],"951":[3,4,23,41],"951109":[],"95117099":[],"95166414":32,"95190644":[],"952":[23,41],"95231424":5,"95235306":21,"952387":33,"9527777777777777":[1,39,40],"95284275":5,"953":[23,41],"953065564":[1,39,40],"95327702":[],"95329348":[],"95351665":5,"95355327":[],"954":[23,29,41],"95429024":[],"955":[23,41],"95508909":[],"95511792":33,"955118":33,"9555555555555556":[1,39,40],"95558642":[],"955820c21e8b":4,"956":[23,41],"956563":[11,33],"95661705":32,"95679388":32,"95684892":5,"95686268":[],"95697233e":[],"957":[23,41],"95703":[13,38],"95746721":25,"95763525":[],"9578":[],"958":[23,41],"958228616652075":5,"959":[23,41],"95982273":13,"96":[6,7,11,23,35,36,41],"960":[23,29,41],"9601304850035702e":6,"960130485007504e":6,"96024953":5,"96033509e":[],"96046928":[],"96084663":5,"961":[23,29,41],"96183456":[],"962":[23,29,41],"962653":5,"962990":32,"963":[23,41],"963198":[],"9637117593816477":6,"964":[23,41],"9640435":5,"96459246":32,"96461989e":[],"9649652536":4,"965":[23,41],"96543101":32,"965548":[32,33],"96599594":25,"966":[23,41],"96611032":[],"96618584":25,"96631321":33,"96688672":5,"966899":32,"967":[23,41],"9674916":5,"96750421":[],"967809":[11,33],"96783837":13,"968":[23,41],"96804366":[],"96841776":[],"96850702":25,"96890557e":[],"969":[6,23,41],"96911909":29,"97":[7,23,36,41],"970":[23,41],"97005689":5,"97062694":[],"97069774":[],"970698":[],"971":[23,41],"97108e":[13,38],"9716":[],"972":[23,41],"9722222222222222":[1,39,40],"9723":[],"97243128":5,"97262227":[],"973":[23,41],"97300836":5,"974":[23,41],"97449977":32,"97488151":[],"97497404e":6,"975":[1,23,39,40,41],"97507735":5,"97514104e":[],"97594511":[],"976":[23,41],"97606135":29,"97606135399951":29,"9764":[],"97644118":[],"9765":[],"97690235":35,"977":[23,41],"97705827":5,"97758848":5,"9777777777777777":[1,39,40],"978":[23,34,41],"9780387310732":31,"9780387848570":31,"97804446":[],"9781492032632":31,"9783319210079595":[],"978553":5,"97866042":25,"97879245":[],"97898392":[6,33],"979":[6,23,41],"97906022e":33,"97926491":5,"97948913":[],"9797317":29,"98":[0,1,7,9,23,36,39,40,41],"980":[9,23,41],"98004227":[],"9805555555555555":[1,39,40],"98073929":5,"98091621":5,"981":[23,41],"98127617":[],"981321":[32,33],"98139097":5,"982":[23,41],"98201379":[23,41],"98215566e":[],"98275501":5,"983":[23,41],"98316168":32,"983310":[32,33],"984":[23,41],"98404993":[],"98413059":5,"984182":[],"98418221":[],"98430782":[],"984308":[],"98454786":5,"984601":[],"98460101":[],"9849967686928113":36,"985":[23,29,41],"98566191":5,"986":[23,29,41],"98601306":29,"9861111111111112":[1,39,40],"98620879e":[],"986699":5,"98680716":5,"98686102":[],"98694705":[],"987":[23,41],"98706221":[],"98716878":5,"9871776311306221":[],"98765625":25,"987722":11,"98772232":11,"988":[23,41],"98808176":5,"98822371":6,"988835":[],"9888544725633199":[],"9888888888888889":[1,39,40],"989":29,"9890348":5,"98914003":[],"9893447":5,"98947894":33,"9898ff":[9,10],"99":[6,7,9,11,13,21,23,35,36,37,38,41],"990":[9,23,41],"99006712":32,"99009525":5,"99051150":6,"99083639":[],"99084226e":[],"99088801":5,"991":[23,29,41],"99106686":[],"99115119":5,"9915165982451293":33,"99176998":5,"992":29,"99215828":[],"99242921":5,"99265097":5,"99268332":[],"993":[23,29,41],"99316252":5,"99330715":[23,41],"99371056":5,"99389612":5,"993993":[23,41],"99399301":[23,41],"99399308":[23,41],"99399309":[23,41],"99399315":[23,41],"994":[23,41],"9940253773173835":[],"9943201":5,"9947756":5,"99484719":32,"99492986":5,"995":[23,41],"9950597269547777":[],"9952222065466447":33,"99528218":5,"99539415":5,"9955500279779226":[],"99566069":5,"99578809":5,"995840825550726":33,"99589367":[],"996":[5,34,35],"99608161":5,"99630114":21,"9963311287748658":[],"9963961":5,"99650061":5,"9967458":5,"9969332511584248":[],"99700706":5,"99709215":5,"99729756":5,"99751458":5,"99752738":[23,41],"99758326":5,"99767262":[],"99775587":5,"9978254":[],"99793613":5,"99799099":5,"998":[23,41],"99813653":5,"99828624":5,"9983295":5,"99845267":5,"99854557":33,"998577":5,"99861053":5,"99862019":33,"99866581":[],"99869482":33,"99871521":5,"99876945":33,"99881845":5,"99883628":33,"99884384":5,"99884409":33,"99888222":[],"99891093":33,"99891873":33,"99893323":5,"99898558":33,"999":[9,21,23,29,37,38,41],"99901896":5,"99903755":5,"99906023":33,"99911427":5,"99912709":33,"99913489":33,"99918546":5,"99919837":5,"99920175":33,"99926459":5,"99927642":33,"9993237":5,"99932732":[],"99933188":5,"9993511":33,"9993736":[],"99938942":5,"99941797":33,"9994385":5,"99944037":[],"99944272":5,"99949077":[],"99949266":33,"99949306":5,"99953381":5,"99953475":5,"99956735":33,"99957911":5,"99961294":5,"9996357":[],"99965056":5,"99967865":5,"99970894":33,"99970988":5,"9997332":5,"99975913":5,"99977849":5,"99978365":33,"99980002":5,"9998161":5,"99984215":[],"99984732":5,"9998542":[],"99987324":5,"99988325":[],"99989476":5,"99991263":5,"99992263":21,"99992746":5,"99993978":5,"99995":5,"999955585168597":6,"99998193":21,"99998703":21,"99999773":21,"99999985":[],"9m":4,"9x":[6,26],"9y":[6,26],"\u00f8yvind":[6,33,34],"\u03b4":[23,41],"abstract":[1,20,23,37,40,41],"boolean":4,"break":[0,4,6,11,14,32],"byte":[25,32],"case":[0,1,2,3,4,5,6,7,11,12,13,14,16,21,23,24,25,26,27,32,35,38,39,40,41],"catch":[0,32],"class":[0,1,3,4,6,7,8,9,11,12,13,23,29,32,35,37,38,39,40,41],"default":[0,1,2,4,6,7,13,16,23,25,26,27,32,33,34,36,37,40,41],"do":[0,2,3,4,5,6,8,9,10,11,12,13,14,15,16,21,22,25,26,27,33,36],"ekstr\u00f8m":4,"export":9,"f\u00f8470":[30,32],"final":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,16,18,19,20,22,23,26,28,29,30,32,35,36,40],"float":[0,3,4,5,9,11,13,14,23,25,32,33,37,38,41],"function":[2,3,4,5,9,14,15,16,17,18,19,22,24,25],"import":[0,1,2,3,4,6,7,8,9,10,11,12,13,14,16,17,23,26,29,35,36,37,38,39,40,41],"int":[0,1,2,3,4,5,6,11,13,14,21,23,25,29,33,35,37,38,39,40,41],"long":[0,1,3,4,12,13,32,36,37,38,39,40,41],"m\u00f8svatn":[6,26],"new":[0,1,2,3,5,6,7,8,9,10,11,13,14,17,21,23,25,26,32,33,36,37,38,39,40,41],"null":32,"public":[0,24,32],"return":[0,1,2,3,4,5,6,7,8,9,11,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],"sch\u00f8yen":[6,33,34],"short":[4,5,23,26,27,34,35,41],"super":[3,5,23,33,34,41],"switch":[0,23,41],"throw":[3,6,29,35],"true":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,19,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"try":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"var":[1,5,6,10,11,13,18,19,26,29,32,33,34,35,37,39,40],"while":[0,1,3,4,5,6,7,8,9,11,12,13,23,29,32,33,34,35,36,37,38,39,40,41],A:[2,3,5,6,7,10,11,12,13,16,18,20,22,23,24,25,26,27,28,29,30,31,33,37,38,39],AND:2,And:[0,3,4,5,6,9,13,20,23,24,26,27,29,39,40,41],As:[0,1,2,3,4,5,6,8,10,12,13,16,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],At:[0,4,6,13,26,32,37],BE:[0,32],Be:[2,24,32,41],Being:[13,37],But:[0,1,2,3,5,6,9,10,27,29,33,34,35,40,41],By:[0,3,5,6,12,13,17,25,32,33,34,35,36,37,38,39],For:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41],IF:[6,34,35],IN:31,If:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],In:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,22,23,24,25,26,27,29,31,32,33,34,35,36,37,38,39,40,41],Is:11,Ising:[5,12,33,38,39],It:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],Its:[1,2,4,11,39,40,41],NO:[7,11,36],No:[3,4,6,9,23,32,34,36,38,41],Not:[0,1,5,6,23,32,33,34,35,38,39,40,41],OR:[23,29],Of:29,On:[0,3,15,28,29,30,31,32],One:[0,1,3,4,5,6,7,8,11,12,13,17,20,21,26,29,33,35,36,37,38,39,40,41],Or:[0,1,6,26,32,36,40,41],Such:[0,6,12,16,29,35,36,37,38,39],TO:[23,41],That:[0,5,7,10,11,12,14,19,26,29,32,34,35,36,39],The:[4,10,13,14,15,16,18,19,20,21,22,25,26,27,28,29,30,31],Their:[23,39,40,41],Then:[0,1,6,8,9,10,11,12,13,14,25,26,32,33,35,36,37,38,39,40,41],There:[0,3,4,5,6,8,9,11,12,14,23,25,26,28,29,30,32,33,34,36,37,38,39,41],These:[0,3,4,5,8,9,10,11,12,13,14,15,16,23,25,26,27,29,30,32,33,34,37,38,39,40,41],To:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,25,26,27,29,34,35,36,37,38,39,40,41],With:[0,5,6,8,9,10,11,12,14,18,25,26,27,29,32,33,35,38,39],_0:[5,8,10,11,13,33,36,37],_1:[2,5,6,8,10,11,12,13,14,25,33,34,35,36,37,38,39,40,41],_2:[2,5,8,11,12,13,25,33,37,38,39,41],_3:25,_4:25,_9:[13,37,38],_:[0,1,2,4,5,6,7,8,9,10,11,12,13,17,18,19,21,25,26,32,33,34,35,36,37,38,39,40,41],_________________________________________________________________:4,__call__:[3,4],__class__:[10,23,41],__doc__:[6,35],__future__:[8,9],__getattr__:34,__getitem__:[],__init__:[1,3,23,34,39,40,41],__main__:[2,41],__name__:[2,10,23,34,41],__traceback__:[3,4],_accuraci:[23,41],_auto10:[6,12,38,39],_auto11:[6,38],_auto12:[6,38],_auto1:[2,3,4,5,6,7,12,13,21,25,29,33,36,37,38,39,41],_auto2:[2,3,4,5,6,12,13,25,29,37,38,39,41],_auto3:[3,4,5,6,12,13,25,37,38,39],_auto4:[4,6,12,13,25,37,38,39],_auto5:[4,6,12,13,25,37,38,39],_auto6:[4,6,12,25,38,39],_auto7:[4,6,12,25,38,39],_auto8:[6,12,38,39],_auto9:[6,12,38,39],_backpropag:[23,41],_base:8,_build:[0,17,19,24,26,31,32],_build_call_output:[3,4],_c:[1,39,40,41],_call:[3,4],_call_flat:[3,4],_check_optimize_result:[7,11,36],_compon:11,_coordinate_desc:6,_decor:[0,32],_depth:9,_distn_infrastructur:36,_eagerdefinedfunct:[3,4],_feedforward:[23,41],_format:[23,41],_fraction:9,_h:[23,41],_handl:[3,4],_i:[0,1,2,5,6,7,8,11,12,13,15,16,17,19,26,32,33,34,35,36,37,38,39,40,41],_inference_funct:[3,4],_interpolatefunctionerror:[3,4],_j:[0,1,2,3,5,6,8,13,17,19,26,33,34,35,37,39,40,41],_jit_compil:[3,4],_k:[13,23,36,37,38,41],_l:[12,38,39,40],_lambda:[6,32],_leaf:9,_lock:[3,4],_logist:[7,11,36],_m:10,_make_vjp:[13,38],_maybe_define_funct:[3,4],_multilayer_perceptron:[1,23,39,40,41],_n:[2,5,8,11,13,33,36,37,41],_node:[9,13,38],_notokstatusexcept:[3,4],_num_output:[3,4],_o:[23,41],_p:[5,8,33],_process_traceback_fram:[3,4],_progress_bar:[23,41],_r:[3,4],_ratio:11,_sampl:9,_select_forward_and_backward_funct:[3,4],_set_classif:[23,41],_split:[6,9,26],_src:21,_stateful_fn:[3,4],_stateless_fn:[3,4],_t:[13,21,37,38],_test:[6,26],_trace:[13,38],_unpad:[],_valu:[13,38],_varianc:11,_weight:9,a0:3,a0faa0:[9,10],a1:[0,32],a2:[0,32],a3:[0,32],a4:[0,32],a_0:[0,21,22,27,32],a_1a:[0,32],a_1x:[21,22,27],a_2a:[0,32],a_2x:[21,22,27],a_3:[0,32],a_3a:[0,32],a_4:[0,32],a_4a:[0,32],a_:[0,1,16,25,32,33,39,40,41],a_h:[1,23,39,40,41],a_i:[0,1,2,12,32,39,40,41],a_j:[1,12,39,40],a_k:[0,1,12,39,40],a_matric:[23,41],aaron:31,ab:[0,2,5,13,14,21,32,33,34,37,38,41],ab_channel:24,abandon:[1,40,41],abbrevi:28,abid:29,abil:[0,10,32],abl:[0,1,4,5,6,7,10,12,13,16,26,33,36,37,38,39,40,41],about:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,24,25,26,27,30,34,35,36,37,38,39,40,41],abov:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,25,26,27,29,31,32,33,35,36,37,38,39,40],abovement:[6,35],abscissa:[13,36,37],absolut:[0,2,5,6,13,32,33,34,35,37,38,41],absorb:[33,34],acceler:[13,21,37,38],accept:[0,3,6,9,26,32,33],access:[0,3,11,29,33],accid:[4,6,35,36],accompani:[0,32,33],accomplish:[8,9,13,37,38],accord:[0,1,2,5,6,9,12,13,14,15,16,29,32,34,35,36,37,38,39,40,41],accordingli:11,account:[0,3,5,13,15,29,32,34,35,37,38],accumul:[12,13,21,23,29,37,38,39,41],accur:[0,3,4,6,10,13,35,37,38],accuraci:[0,1,3,4,5,6,7,9,10,11,12,23,27,32,33,36,38,39,40,41],accuracy_scor:[0,1,10,23,32,39,40,41],accuracy_score_numpi:[1,39,40,41],achiev:[0,1,5,6,8,12,25,32,34,35,38,39,40,41],aco:29,acquaint:[24,32],acquir:[1,24,32,40,41],acr:[0,33],across:[1,3,6,9,24,32,35,39,40,41],act:[1,3,23,25,39,40,41],act_func:[23,41],act_func_deriv:[23,41],action:29,activ:[0,2,3,4,9,28,30,32,35,36,37],actual:[0,1,4,5,6,8,11,16,25,29,32,33,34,35,40,41],ad:[1,3,4,5,8,13,15,16,23,25,34,35,36,37,40,41],ada_clf:10,adaboostclassifi:10,adadelta:[13,37,38],adagrad:[22,23,27,41],adagradmomentum:[23,41],adam:[1,3,4,22,23,27,30,32,40,41],adam_schedul:[23,41],adapt:[4,6,13,31,33,35,36],add:[0,1,2,3,4,5,6,8,10,11,12,15,16,17,21,22,23,26,27,29,32,33,34,35,37,39,40,41],add_outgrad:2,add_subplot:[1,7,12,14,36,38,39,40,41],addendum:5,addit:[0,2,3,5,6,7,8,9,10,12,13,15,17,21,22,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,41],addition:[12,13,36,37,38,39],address:[1,9,11,13,32,37,38,40,41],adjac:[3,12,38,39],adjoint:[5,33,34],adjust:[0,5,12,13,36,37,38],admir:[0,32],advanc:[4,6,12,31,32,35,38,39],advantag:[1,3,5,6,10,13,25,34,35,36,37,38,39,40,41],adversari:32,afecionado:32,affect:[3,23,41],affin:[0,3,8,11,33],afford:3,aficionado:32,aforement:14,african:[0,33],after:[0,1,2,4,5,6,9,11,12,13,15,20,21,23,24,25,26,27,29,32,33,34,35,37,38,39,40,41],afterward:[0,32],ag:[0,7,28,32,33,36],ag_0:[2,41],again:[0,1,4,5,6,7,8,10,11,12,13,15,16,21,22,23,26,27,29,32,33,34,35,37,38,39,40,41],against:[1,4,7,10,21,22,27,36,39,40,41],agegroup:[7,36],agegroupmean:[7,36],aggreg:[9,10],agorithm:10,agre:[5,6,29,34,35],agreement:[13,21,37,38],ahead:9,ai:[0,27,31],aid:[11,20],aim:[0,1,4,6,7,11,14,15,16,24,25,26,27,33,35,36,40,41],ainv:5,airplan:3,aka:[5,34,35],al:[0,2,4,15,16,17,27,31,32,33,34,35,36,37,38,39,40,41],alarm:[5,7,34,35],algebra:[0,3,5,13,21,24,33,34,35,37,38],algorithm:[0,1,2,4,5,6,7,8,13,14,22,23,24,25,26,29,31,32,34,35,36,41],align:[0,2,5,6,7,8,13,26,29,32,33,34,35,36,37,41],all:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],allevi:[1,13,36,37,40,41],alloc:[3,25],allow:[0,1,2,3,5,6,8,10,13,15,16,23,24,25,26,32,33,34,35,36,37,38,39,40,41],almost:[0,1,6,8,11,13,21,29,32,35,36,37,38,40,41],alon:[2,9,41],along:[2,3,4,5,6,9,10,11,23,24,25,32,33,34,35,36,41],alpha:[0,1,2,3,4,6,7,8,9,10,13,14,23,29,32,33,35,36,37,39,40,41],alpha_0:3,alpha_1:3,alpha_2:3,alpha_:10,alpha_i:[3,13,37],alpha_k:[13,37],alpha_m:10,alpha_n:3,alpha_opt:[13,37],alreadi:[2,3,4,5,6,10,12,24,25,29,32,33,34,35,38,39,41],also:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41],alter:[1,39,40,41],altern:[0,1,4,5,6,7,8,9,11,13,25,26,32,33,34,35,36,37,38,39,40,41],although:[0,1,5,6,8,10,13,16,21,23,32,34,35,37,38,40,41],alwai:[0,3,5,6,12,13,16,21,29,32,33,34,35,36,37,38,39],am:[4,33],ame2016:[0,32],american:[0,33],among:[0,3,5,9,10,12,25,32,33,34,38,39],amongst:[5,34,35],amount:[0,1,3,4,6,8,10,14,23,24,35,40,41],an:[1,2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,21,23,24,25,26,27,29,30,31,33,34,35,36,37,38,39,40,41],an_:29,anaconda:[0,1,15,24,26,32,40,41],analog:[13,37,38],analys:[6,34,35],analysi:[1,3,4,7,14,15,16,17,19,21,22,25,31,36,39,40,41],analyt:[2,3,5,6,7,12,13,15,22,24,26,27,32,33,34,35,36,37,38,39],analytical_gradi:21,analyz:[0,1,3,4,5,6,16,17,26,27,29,32,33,34,39,40,41],andrew:[1,39,40,41],angl:[0,3,9,33],anharmon:3,ani:[0,1,2,3,4,5,6,7,8,9,10,12,14,18,23,29,32,33,34,35,38,39,40,41],anim:[4,12,38,39],ann:[12,38,39],annot:[0,1,3,7,8,23,32,33,36,39,40,41],announc:32,anoth:[0,1,3,4,5,6,7,8,10,11,12,13,25,26,27,29,32,33,36,37,38,39,40,41],ans_vspac:[],ansatz:[0,32],answer:[0,1,3,5,6,25,26,27,30,32,34,35,39,40,41],antialias:[2,6,26,41],anticip:4,anymor:[1,8,40,41],anyon:[4,8],anyth:[1,29,40,41],anytim:[30,32],apach:[1,40,41],apart:[11,13,36,37],api:[1,24,32,40,41],appar:[2,41],appear:[0,1,3,13,16,23,25,29,32,37,38,39,40,41],append:[1,3,4,8,9,13,21,23,32,37,40,41],appendix:26,appl:[3,4],appli:[0,1,2,3,4,6,7,8,9,10,11,12,13,15,16,26,27,29,31,32,33,34,35,36,37,38,39,40,41],applic:[0,1,3,4,5,6,7,9,12,13,21,25,26,29,31,32,33,35,36,37,38,39,40,41],apply_gradi:4,approach:[1,2,4,5,6,9,10,11,12,13,17,21,23,24,29,31,33,36,39,40,41],appropri:[2,6,9,12,13,24,29,35,37,38,39,41],approv:32,approx:[0,2,3,6,10,11,13,29,32,35,36,37,38,41],approxim:[0,1,2,3,4,5,6,7,10,11,13,18,19,26,29,32,33,34,35,36,37,38,40,41],apt:[0,15,24,26,32],aq:29,ar:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],aragorn:32,arang:[1,3,4,6,7,9,10,12,13,23,26,32,36,37,38,39,40,41],arbitrari:[1,4,6,8,12,13,29,35,36,37,38,39,40,41],arbitrarili:[0,1,11,32,39,40,41],arc:[6,26],architectur:[3,4,12,23],archiv:27,area:[0,3,6,9,26,31,32],arg:[0,2,3,4,13,32,38],argmax:[1,11,39,40,41],argmin:[4,10,14],argnum:[2,13,38],argnum_0:[],argnum_1:[],args_with_tang:[3,4],argsort:11,argu:[1,13,37,38,40,41],argument:[0,2,3,5,6,11,12,13,21,23,26,32,33,34,35,39,41],argval:[],aris:[0,6,12,13,29,32,35,36,37,39],arithmet:[0,13,25,32,37,38],arm:[6,34],armadillo:25,around:[0,1,4,5,6,11,29,32,34,35,39,40,41],arr:[],arrai:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,21,23,24,26,29,33,34,35,36,37,38,39,40,41],arrang:[3,32],arraybox:[13,37,38],arriv:[0,6,9,11,25,29,32,35],arrow:[12,23,38,39,41],arrowprop:8,art3d:[13,37],art:[0,1,15,24,32,40,41],articl:[0,3,4,6,10,18,27,32,33,34,35],artifici:[0,2,7,12,31,32,36,41],artificialneuron:[12,38,39],arug:[13,37,38],arxiv:[3,4,21,27,37,38],as_fram:33,asap:32,asarrai:[0,2,6,9,21,33,34,37],ashort:20,asid:33,ask:[5,6,11,12,34,35,39],aspect:[0,6,24,26,32,33,34],assembl:[0,3,32],assert:[4,23,41],assess:[0,6,26,32,33,34,35],assici:4,assign:[0,7,8,9,12,13,14,23,28,30,31,32,33,36,37,38,39,40,41],associ:[0,6,9,12,14,29,32,35,38,39],assum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],assumpt:[0,3,5,6,9,11,18,26,29,32,33],ast:[0,5,6,18,26,32,34,35,36],astronomi:[32,33,34,35,36,37,38,39,40,41],astyp:[4,9,10],asymmetri:[0,32],asymptot:[4,6,35],async_wait:[3,4],atla:32,atom:[0,32],attempt:[0,4,6,7,8,10,32,34,36],attend:28,attent:[0,25,32],attr:[3,4,34],attract:[0,10,32],attribut:[0,9,13,23,27,32,34,35,41],attributeerror:[13,34],audi:[0,32],audio:[3,4],august:[15,16,32],aurelien:[0,15,28,31,32,38,40,41],austfjel:[6,26],author:[0,1,10,29,32,40,41],authour:32,auto:[6,9,10,23,29,41],autocor:29,autocorrelation_tim:29,autocorrelform:29,autocovari:29,autoencod:[4,24,32],autoencond:24,autograd:[22,23,24,27,32],autom:[0,24,31,32],automac:25,automag:32,automat:[0,1,2,3,4,11,16,22,23,24,25,32,39,40],automobil:3,autonom:4,avail:[0,1,4,6,10,11,15,20,21,24,25,26,27,28,30,31,32,35,39,40,41],averag:[0,1,3,6,9,10,13,14,21,23,29,30,32,33,34,35,36,37,38,39,40,41],avoid:[0,4,5,6,9,11,13,21,23,25,32,33,35,36,41],awai:[2,3,6,33,34,35,41],awar:[2,10,41],award:[30,32],ax:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,23,25,26,27,32,33,35,36,37,38,39,40,41],axes3d:[2,6,13,26,36,37,41],axes_grid1:6,axessubplot:33,axhlin:8,axi:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],axiom:[5,34,35],axlabel:[0,32],axvlin:[4,8],axvspan:4,b1:8,b2:8,b3:8,b:[0,1,3,4,5,6,8,9,10,12,13,14,15,16,21,23,29,30,32,33,34,35,36,39,40,41],b_0:0,b_1:[0,2,12,13,37,38,39,41],b_2:[0,13,37,38],b_5:[13,37,38],b_:[0,1,25,39,40,41],b_group:9,b_i:[0,1,2,12,32,38,39,40,41],b_ia_:[0,32],b_ia_i:0,b_index:9,b_j:[1,12,38,39,40,41],b_k:[0,1,12,13,37,38,39,40,41],b_m:[12,38,39],b_score:9,b_valu:9,bachelor:[28,30],back:[0,3,4,5,6,8,9,10,15,23,25,27,29,32,33,34,36,37,38],backbon:25,backend:[1,4,21,40,41],background:[31,32,33],backpropag:[1,23,39,40,41],backtrack:9,backup:25,backward:[1,2,4,12,23,25,39,40,41],backward_pass:2,bad:[6,23,33,34,41],badli:29,bag:[9,24,32],bag_clf:10,baggin:32,baggingboot:10,baggingclassifi:10,baggingtre:10,balanc:[6,35,36],baluka:41,band:25,bandwidth:25,bar:[0,6,11,15,16,23,26,32,41],barber:31,bare:[4,10],base:[0,1,3,4,5,7,8,9,10,14,24,29,30,31,32,33,34,36,39,40,41],basi:[5,7,8,10,11,12,13,25,33,34,36,37,38,39],basic:[6,8,12,13,14,24,26,29,32,37,38,39,40],batch:[3,4,11,12,13,21,22,23,27,36,39],batch_shap:4,batch_siz:[1,3,4,23,39,40,41],batchnorm:4,bay:[7,36],bayesian:[5,24,31,32,34,35],beam:[32,35,36,37,38,39,40,41],becattini:30,becaus:[0,1,2,3,4,5,6,8,9,12,13,14,32,34,35,36,37,38,39,40,41],beccatini:32,becom:[0,1,2,5,6,7,9,12,13,21,29,32,33,34,35,36,37,38,39,40,41],been:[0,1,2,3,4,5,6,11,12,13,23,24,25,26,27,32,33,34,35,37,38,39,40,41],befor:[0,1,2,3,4,5,6,7,8,12,13,14,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],beforehand:[0,29,32],begin:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,21,23,25,26,29,30,32,33,34,35,36,37,38,39,40,41],behav:[1,6,13,35,36,37,40,41],behavior:[0,1,13,32,36,37,38,40,41],behaviour:[12,38,39],behind:[0,1,6,8,13,32,36,37,39,40,41],being:[0,1,2,3,4,5,7,8,10,11,12,13,17,29,32,33,34,35,36,37,38,39,40,41],believ:[9,25],belong:[7,8,9,13,14,23,36,37,38,41],below:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],benchmark:10,benefici:[1,13,37,38,39,40,41],benefit:[0,1,4,11,13,15,24,32,36,37,38,39,40,41],bengio:[1,21,22,27,28,31,32,33,37,38,40,41],benign:[1,7,9,36,40,41],besid:[4,5,34],bessel:[5,33,34,35],best:[0,1,2,3,4,5,6,7,8,9,10,12,13,26,27,30,32,33,35,36,37,39,40,41],best_estimator_:36,beta1:[21,37,38],beta2:[21,37,38],beta:[0,1,3,5,6,7,10,11,13,16,17,18,19,21,23,26,32,33,36,37,38,39,40,41],beta_0:[0,1,3,5,6,7,13,32,33,34,35,36,37,39,40],beta_0x_:[0,32,33],beta_1:[0,1,3,5,6,7,10,13,32,33,34,35,36,37,38,39,40],beta_1x_0:[0,32],beta_1x_1:[0,7,32,36],beta_1x_2:[0,32],beta_1x_:[0,32,33],beta_1x_i:[7,13,33,36,37],beta_2:[0,3,13,32,33,37,38],beta_2x_0:[0,32],beta_2x_1:[0,32],beta_2x_2:[0,7,32,36],beta_2x_:[0,32,33],beta_2x_i:33,beta_3:3,beta_3x_i:33,beta_4x_i:33,beta_:[0,3,6,7,13,32,33,34,35,36,37,38],beta_i:[0,3,5,17,32,33,34],beta_j:[0,5,6,13,18,26,32,33,34,35,37,38],beta_k:[13,36,37],beta_linreg:[13,21,36,37,38],beta_m:10,beta_mg_m:10,beta_n:3,beta_ol:35,beta_p:[7,36],beta_px_p:[7,36],beta_ridg:35,betaol:35,betaridg:35,betavalu:5,better:[0,1,2,3,4,6,9,10,11,12,13,21,32,33,34,35,37,40,41],between:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,17,21,23,26,27,29,32,33,34,35,36,37,38,39,40,41],beyond:[0,1,5,6,8,13,21,26,32,33,36,37,38,40,41],bf:[13,14,25,29,36,37],bgd:[13,37,38],bia:[0,1,2,3,5,8,9,10,12,13,19,23,27,32,33,34,36,37,38,39,40,41],bias:[1,2,3,5,6,9,12,23,27,34,38],big:[0,1,2,5,6,14,18,32,34,35,39,40,41],bigger:[1,6,33,34,40,41],bigr:[12,38,39],bike:9,bilbo:32,billion:[3,12,24,38,39],bin:[0,7,29,33,36],binari:[0,3,5,7,9,10,12,23,27,32,34,35,36,41],binarycrossentropi:4,bind:[0,33],binomi:[24,29,32],binsboot:[6,35],bioinformat:[0,32],biolog:[1,12,38,39,40,41],bios1100:[24,32],bird:[0,3,32],birth:32,bishop:[28,31,32],bit:[1,4,25,29,32,39,40,41],bitwis:29,bivari:[2,41],bk:[0,13,33,37,38],bla:[25,32],black:[8,9,14,21],bledso:32,blob:[19,20,26,32,36,37,38],block:[6,10,24,25,29,32,35],blogpost:4,blue:[0,3],bluntli:32,bm:33,bmatrix:[0,1,3,5,7,8,11,13,23,25,32,33,34,36,37,39,40,41],bmi:[1,39,40,41],bodi:[0,1,4,12,32,38,39,40,41],bold:[1,40,41],boldfac:[0,5,16,33,34],boldsymbol:[0,1,2,3,5,6,7,8,10,11,13,14,15,16,17,18,19,21,23,26,32,36,37,38,39,40,41],boltzmann:[12,24,32,38,39],book1:31,book:[19,26,27,31,32,34,41],boost:[1,9,24,32,40,41],boostrap:10,bootstrap:[1,13,19,24,26,27,32,36,37,38,40,41],borrow:32,boston_dataset:[0,33],bot:8,both:[0,1,4,5,6,8,9,10,13,14,15,16,23,24,25,26,27,29,30,32,33,34,35,36,37,38,40,41],bottl:[7,36],bound:[0,8,12,33,37,38,39],boundari:[2,4,8,11,12,39,41],box:[4,9],boxed_arg:[],boyd:[8,13,36,37],bracket:[4,29],brain:[1,7,12,36,38,39,40,41],branch:9,breast:[5,7,11,27,34,35,36],breat:27,breviti:[13,21,37,38],brew:[0,15,24,26,32],brg:8,brief:[26,27,33],briefli:[0,32],bring:[0,5,6,10,27,32,33,34,40],broad:[0,3,4,32],brought:[13,21,24,32,37,38],brownle:4,browser:32,brute:[3,5,11,33,34,36],bs:[8,9,10],buffer_s:4,bui:4,build:[0,4,5,6,10,25,29,32,34,35,36,37,38,39],built:[0,1,3,4,6,33,35,40,41],bunch:11,busi:[0,33],c1:[8,11],c2:[8,11],c:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,19,24,25,29,30,31,33,34,35,36,37,38,39,40,41],c_0:29,c_1:[12,38,39],c_2:[12,38,39],c_3:[12,38,39],c_4:[12,38,39],c_:[0,8,9,10,13,21,29,33,36,37,38],c_i:[12,13,37,38,39],c_k:29,ca:[1,32,40,41],cach:10,cal:[0,8,10,12,13,15,16,32,36,37,39,40],calcul:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,18,21,23,25,27,29,32,34,35,36,37,38,39,40,41],california:[27,33],call:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],callabl:[3,4,23,41],callback:[3,4],calor:[0,33],cambridg:[13,31,36,37],can:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,29,30,31,33,34,36,39,40,41],cancel:[0,13,32,33,37,38],cancellation_manag:[3,4],cancer:[5,10,27,34,35],cancerpd:[7,36],candid:[8,9,10,37],cannot:[0,1,4,5,6,7,8,9,28,29,32,33,34,36,39,40,41],canopi:[0,15,24,26,32],canva:[26,27,32],cap:[5,34,35],capabl:[0,1,8,13,24,32,37,38,40,41],capac:[2,30,41],capita:[0,33],caption:[26,27],captur:[4,11,12,38,39],captured_input:[3,4],car:[3,4],card:[0,7,32,36],cardin:[1,40,41],care:[11,36],carefulli:[13,37],carlo:[0,6,24,29,31,32,35],carri:[2,6,7,26,35,36,41],cart:10,casella:31,cast:[1,40,41],cat:[3,4],categor:[0,1,3,9,11,32,39,40,41],categori:[0,1,3,7,10,12,14,23,32,33,36,38,39,40,41],categorical_crossentropi:[1,3,40,41],caus:[0,5,6,29,32,33,34,35],causal:0,causat:[0,32],cax:[1,40,41],cb:[6,32],cbar:[1,40,41],cc:[0,1,3,4,5,13,27,32,33,34,35,36,37,40,41],ccc:[5,12,34,38,39],cd_fast:6,cdf:29,cdot:[0,2,6,12,13,14,25,29,32,35,36,37,38,39,41],celebr:[13,36,37],cell:[0,2,3,4,6,9,10,13,15,26,32,34,35,36,37,38,41],center:[0,1,6,7,8,9,11,14,26,29,32,34,35,36,40,41],central:[0,3,5,6,8,16,25,27,32,33,34],centroid:[14,29],centroid_differ:14,centuri:3,certain:[0,3,6,7,9,29,32,33,35,36],certainti:35,cg:[13,37],cha:[0,33],chain:[0,1,13,24,29,32,37,38,40,41],challeng:[37,38],chanc:[1,5,13,29,34,35,37,38,39,40,41],chang:[0,1,2,3,4,5,6,8,9,11,12,13,14,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],channel:3,chap4:[39,40,41],chapter3:[0,19,26],chapter:[0,6,10,11,18,21,22,25,26,27,31,32,33,34,35,36,37,38,39,40,41],charact:[0,3,5,8,32,33],character:[8,9,10,12,29,38,39],characterist:[0,1,3,10,13,21,32,37,38,40,41],charg:[0,32],charl:[0,33],chase:4,chat:32,chd:[7,36],chddata:[7,36],cheap:[5,33],cheaper:[1,13,37,38,40,41],check:[0,1,3,4,5,6,11,13,23,25,32,33,37,38,40,41],checkmark:3,checkpoint:4,checkpoint_dir:4,checkpoint_prefix:4,chen:10,chiaramont:[2,41],choic:[0,1,2,3,4,6,9,12,13,14,19,23,25,27,32,33,35,36,37,38,39],choleski:[5,25,33],choos:[2,3,6,9,10,11,13,14,23,26,27,35,36,37,38],chosen:[0,1,2,6,8,9,10,13,16,21,27,29,32,35,36,37,38,40,41],chosen_datapoint:[1,39,40,41],christian:31,christoph:[28,31,32],cifar10:3,cifar:3,circ:[1,12,39,40,41],circl:[0,8,12,33,38,39],circuit:3,circumfer:9,circumv:[1,5,13,33,37,38,40,41],ckpt:4,clariti:29,class_nam:[3,9],class_val:9,class_valu:9,class_weight:[3,4],classic:[7,9,13,36,37,38,39],classif:[0,3,5,6,7,8,11,12,24,26,31,32,33,34,35,37],classifi:[0,1,4,7,9,10,11,23,27,32,39,40,41],classificaton:[1,39,40],classifii:10,clean:[1,39,40,41],clear:[1,5,10,12,13,21,37,38,39,40,41],clearli:[0,3,5,6,7,8,18,29,33,34,35,36],clever:[1,10,39,40,41],clf3:0,clf:[0,6,8,9,10,32,33],clf_lasso:6,clf_ridg:[6,32],clip:[3,29],clone:30,close:[0,1,2,4,6,8,9,11,12,13,14,26,29,31,32,35,36,37,38,39,40,41],closer:[3,5,13,33,37,38],closest:[8,11,13,14,37],closur:[24,32],cloud:[24,32],cluster:[0,1,4,6,11,24,32,35,39,40,41],cluster_label:14,cm:[1,2,3,6,8,9,13,26,36,37,39,40,41],cmap:[0,1,2,3,4,6,8,9,10,23,26,32,39,40,41],cmap_arg:6,cmb:28,cmd:9,cmu:33,cn_:29,cnn:[12,38,39],cnn_kera:3,cntk:[24,32],co:[0,2,3,6,9,13,21,32,35,37,38,41],code:[3,4,6,7,8,15,16,17,19,22,24,25,26,29,31],codebas:[23,41],coef0:8,coef:[0,32],coef_:[0,5,6,8,9,13,32,33,34,35,36,37],coeff:5,coeffici:[0,3,5,6,7,8,9,13,15,16,25,32,33,34,35,36,37,38],coerc:[0,6,32,35],coin:[10,29],coin_toss:10,col:[0,11,32,33],colab:[24,32],cold:9,colinear:[0,33],collabor:[26,27],collaps:8,collect:[0,2,6,10,11,21,24,29,31,32,35],collinear:[5,33,34],color:[0,3,4,6,8,9,10,21,26,29,37],color_channel:3,color_cod:6,colorbar:[1,6,26,40,41],coloumn:[23,41],colsample_bytre:10,colsaobject:10,colspec:[0,32],column:[0,1,2,5,6,7,8,9,11,12,17,23,25,32,33,34,35,36,38,39,40,41],columntransform:9,com:[4,6,19,20,21,24,26,27,31,32,34,36,37,38,39,40,41],combin:[1,2,5,6,7,10,29,34,35,36,37,38,40,41],come:[0,1,3,4,5,12,13,14,15,27,32,33,34,35,37,38,39,40,41],command:[0,1,32,40,41],comment:[0,4,5,6,15,16,26,27,32,33],commerci:[0,15,24,26,32],commod:[0,32],common:[0,1,3,5,6,7,9,11,13,14,26,27,29,32,33,35,36,37,38,39,40,41],commonli:[0,1,4,6,7,9,13,14,33,35,36,37,38,39,40,41],commun:[0,12,26,38,39],commut:3,commutatitav:3,compact:[0,1,3,5,6,7,9,11,12,13,14,32,33,34,35,37,38,39,40,41],compair:0,compar:[0,3,4,5,6,11,13,15,16,21,22,23,25,26,27,32,33,34,35,36,37,38],comparison:[2,4,13,27,37,38,41],compat:[7,36],compet:[0,32],competit:10,compil:[0,1,3,4,13,15,21,24,25,32,37,38,40,41],complet:[0,2,3,4,9,12,32,38,39,41],completenn:[12,38,39],complex:[1,5,8,9,11,12,13,15,16,19,27,32,35,37,38,39,40,41],complic:[0,1,9,13,32,35,36,39,40,41],compoment:33,compon:[0,1,3,4,5,6,7,9,14,16,23,24,32,33,34,35,36,39,40,41],components_:11,compos:[9,12,13,14,21,24,32,37,38,39],compphys:[0,6,17,19,20,24,26,28,30,31,32,33,36,37,38],compress:[0,32,33],compris:[6,36],compromis:[5,33],compulsori:[24,32],comput:[0,1,2,3,4,5,6,7,8,10,11,12,13,15,16,17,21,23,24,25,26,27,28,29,31,32,33,34,35,36,39,40,41],computation:[0,3,6,9,13,29,32,36,37,38],computationalscienceuio:32,computerlab:[26,27],con:27,concat:32,concaten:[2,4,6,14,41],concav:[1,9,13,33,36,37,40,41],concentr:[0,10,33],concept:[0,2,24,32,33,41],conceptu:[12,13,36,37,38,39],concern:[0,1,4,7,32,36,39,40,41],concic:32,conclud:[0,5,13,21,34,35,37,38],conclus:[1,39,40,41],concretefunct:[3,4],cond:[2,41],conda:[0,1,15,24,26,32,40,41],condis:33,condit:[0,2,4,5,6,8,9,11,13,29,32,33,38,41],conduct:[24,32],condwav:[2,41],confid:[0,5,6,7,8,18,26,32,33,34,36],configur:[3,21],confirm:[5,12,34,35,38,39],confus:[5,6,7,10,25,33,34,35],confusion_matrix:9,congruenti:29,conjug:[4,8],conjugaci:[13,37],conjunct:3,connect:[0,1,3,4,9,11,12,13,25,32,33,36,37,38,39,40,41],consequ:[5,6,8,10,12,13,33,34,35,36,37,38,39],conserv:[5,14,33],consid:[0,1,2,3,5,6,7,8,9,10,12,13,16,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],consider:[0,1,5,13,32,33,34,35,36,37,39,40,41],consist:[0,1,2,3,4,6,12,13,19,21,26,27,29,33,35,36,37,38,39,40,41],constant:[0,2,4,5,6,8,12,13,23,29,32,33,34,35,36,37,38,39,41],constitu:[0,32],constitut:[2,6,35,36,41],constrain:[1,3,5,7,11,34,36,39,40,41],constraint:[5,6,8,13,17,33,34,35,37,38],construct:[0,1,2,3,5,6,7,8,9,10,11,23,25,29,32,33,34,35,36],consult:27,contact:[0,32],contain:[0,2,3,4,5,6,7,8,9,11,12,13,17,19,21,22,23,25,26,27,29,31,32,33,34,35,36,37,38,39,41],contemporari:32,content:[1,24,25,32,40,41],context:[3,4,6,10,13,26,35,36,37,38],contigu:25,continu:[0,1,2,3,4,5,6,7,8,9,10,12,13,17,18,21,22,25,26,27,29,32,33,34,35,36,37,39,40,41],contour:[9,10,13,37],contourf:[8,9,10],contrast:[1,4,9,10,12,38,39,40,41],contribut:[0,3,5,13,21,29,32,33,34,37,38],contributor:[0,26,32],control:[0,1,3,9,13,15,24,32,37,38,39,40,41],conv2d:[3,4],conv2dtranspos:4,conv:[3,4],convei:32,conveni:[0,5,6,12,13,25,26,27,32,34,35,36,37,38,39,40],convent:[12,33,39],converg:[1,2,4,5,6,7,8,11,13,14,21,22,23,27,33,34,36,37,38,39,40,41],convergencewarn:[1,6,7,8,11,23,36,39,40,41],convert:[0,1,4,5,9,11,13,25,32,33,37,38,40,41],converttomatrix:4,convex:[4,5,7,33],convinc:[13,36,37],convolut:[1,4,24,32,40,41],cool:[4,9],coolwarm:[6,26],coordin:[5,12,14,33,34,38,39],coorel:[0,33],copi:[0,1,14,23,33,39,40,41],copyright:[27,35,41],core:[2,3,4,10,13,32,38],corel:32,coronari:[7,36],corr:[0,5,7,11,33,36],correalt:[11,24],correct:[0,1,2,3,4,5,7,13,25,29,32,33,34,35,37,38,39,40,41],correctli:[1,2,6,7,10,23,27,39,40,41],correl:[0,1,3,5,6,7,10,12,13,21,24,29,32,34,35,37,38,39,40,41],correlation_matrix:[0,5,7,11,33,36],correspond:[0,3,5,6,8,9,11,12,15,16,17,24,25,26,29,32,33,34,35,38,39],corss:41,cortex:[12,38,39],cosin:[3,6,35],cost:[0,2,3,5,6,7,8,9,12,13,16,17,19,21,26,27,32,38],cost_deep_grad:[2,41],cost_func:[23,41],cost_func_deriv:[23,41],cost_funct:[2,41],cost_function_deep:[2,41],cost_function_deep_grad:[2,41],cost_function_grad:[2,41],cost_function_train:[23,41],cost_function_v:[23,41],cost_grad:[2,41],cost_sum:[2,41],costcrossentropi:[23,41],costlogreg:[23,41],costol:[13,21,23,37,38,41],could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,17,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],coulomb:[0,32],count:[0,9,28,29,30,32],countor:[13,37],coupl:[4,5,6,34,35],cours:[0,1,3,5,11,26,27,28,30,33,35,40],courvil:[21,22,27,28,31,32,33,37,38],cov:[5,6,11,25,29,32,33,34,35],cov_xi:[5,11,33],cov_xx:[5,11,33],cov_yi:[5,11,33],covari:[0,7,24,25,32,34,36],covariance_matrix:[5,11,14,33],cover:[0,5,17,24,30,31,33,34],covert:[0,32],covxi:29,covxx:29,covxz:29,covyi:29,covyz:29,covzz:29,cpu:[1,3,4,40,41],cpu_util:[3,4],craft:3,crawford:32,creat:[1,2,3,4,5,6,9,10,11,12,13,23,24,26,32,34,36,37,38,39,40,41],create_biases_and_weight:[1,39,40,41],create_convolutional_neural_network_kera:3,create_neural_network_kera:[1,40,41],create_x:[5,11,23,33,41],credit:[0,7,30,32,36],crim:[0,33],crime:[0,33],criteria:[0,4,9,10,14,29,32],criterion:[9,10,13,36,37],critic:[6,26,32,33,34],critiqu:[26,27],cross:[0,1,3,7,9,10,13,23,24,27,29,32,33,34,37,38,39,40,41],cross_entropi:4,cross_val_scor:[6,35,36],cross_valid:[7,10,36],crossvalid:[6,35],crucial:[1,29,40,41],cs231:3,cs231n:41,cs231n_2017_lecture4:41,cs:[28,30],csr_matrix:[25,32],csv:[0,4,6,7,9,32,35,36],ctnk:[1,40,41],ctx:[3,4],cubic:0,cumbersom:[5,34,35],cumsum:[10,11,32],cumul:[7,10,29],cumulative_heads_ratio:10,cup:[5,34,35],current:[1,2,3,4,6,13,14,21,26,31,36,37,38,40,41],curs:[0,33],curv:[6,7,10,12,26,36,38,39],curvatur:[13,36,37,38],custom:[6,14,26],custom_cmap2:[9,10],custom_cmap:[9,10],cutpoint:9,cv:[6,7,10,35,36],cvxbook:[13,36],cvxopt:[5,8,33],cycl:[1,12,38,39,40,41],cyclotron:[33,34],d2_g_t:[2,41],d:[1,2,3,4,5,6,7,8,9,10,11,13,14,25,29,30,32,33,34,35,36,37,38,39,40,41],d_f:[13,36,37],d_g_t:[2,41],d_net_out:[2,41],da:3,dagger:[5,25,33],dai:[1,9,24,39,40,41],damp:3,daniel:[30,32],darget:9,darkr:29,dat:[0,32],dat_id:[0,6,7,9,32,33,35,36],data1:14,data2:14,data3:14,data4:14,data:[2,4,5,8,10,12,13,14,17,18,19,21,22,25,27,31,35,37,38],data_handl:[3,4],data_id:[0,6,7,9,32,33,35,36],data_indic:[1,39,40,41],data_modul:33,data_panda:32,data_path:[0,6,7,9,32,33,35,36],data_url:33,databas:[1,39,40,41],datafil:[0,6,7,9,26,32,33,35,36],datafram:[0,4,5,7,9,11,32,33,36],datapoint:[1,5,6,7,11,13,23,33,35,36,37,38,39,40,41],dataset:[0,4,6,7,8,9,10,11,13,14,15,16,19,23,26,27,32,33,35,36,37,38],datatyp:4,date:[15,16,17,18,19,20,21,22,23,26,27,32,33,34,35,36,37,38,39,40,41],daughter:10,david:31,davison:35,dbh:[1,39,40,41],dbo:[1,39,40,41],dc5e85cd93c3:27,dcomposit:25,ddot:[2,41],dead:[1,40,41],deadlin:[16,17,18,19,20,21,22,23,28],deal:[0,1,3,5,6,8,11,13,14,17,18,25,26,29,32,33,34,35,36,37,38,39,40,41],dealt:0,debt:[7,36],debug:[0,5,6,23,34,35,36,41],decad:[0,3,32],decai:[0,13,29,32],decemb:[28,30,32],decent:10,decid:[0,2,3,5,6,9,23,26,34,35,36,41],decim:[0,23,32,41],decis:[0,1,8,11,24,31,32,39,40,41],decision_funct:8,decision_tre:9,decisiontreeclassifi:[9,10],decisiontreeregressor:[0,9,10],declar:[0,4,25,32],decompos:[5,6,25,33],decomposit:[0,6,12,26,32,34,38,39],decompost:[5,33],deconvolut:3,decor:[0,32],decorrel:[10,13,21,37,38],decreas:[1,2,4,5,6,10,11,13,34,35,36,37,38,39,40,41],deduc:[0,32],deep:[3,7,12,13,21,24,27,28,31,32,33,37,38,39],deep_neural_network:[2,41],deep_param:[2,41],deep_tree_clf1:9,deep_tree_clf2:9,deep_tree_clf:[9,10],deepcopi:[23,41],deepen:[5,24,32],deeper:[0,3,4,32],deepimag:41,deeplearningbook:31,deer:3,def:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,21,23,26,29,32,33,34,35,36,37,38,39,40,41],def_covari:29,def_funct:[3,4],default_tim:4,defect:[5,33],defici:[5,33],defin:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,33,34,35,36,37,38],definit:[1,2,5,6,7,8,10,11,12,13,17,25,29,33,34,35,36,37,40,41],defint:29,defualt:[23,41],defun:[3,4],defvjp:[],degre:[3,5,6,8,9,10,11,15,16,17,19,26,29,32,34,35,36],del:[1,40,41],delet:6,delimit:4,deliv:[28,32],delta:[0,2,3,6,8,12,13,14,21,23,32,37,38,39,40,41],delta_0:3,delta_1:3,delta_2:3,delta_3:3,delta_4:3,delta_5:3,delta_:[1,25,39,40],delta_h:[0,1,32,39,40,41],delta_j:[3,12,39,40],delta_k:[12,39,40],delta_l:[1,3,39,40,41],delta_matrix:[23,41],delta_momentum:[13,21,37,38],delta_n:[0,3,32],delug:24,delv:[0,32],demand:[13,36,37],demonstr:[0,3,5,6,7,11,12,23,24,32,33,34,35,36,39,41],demystifi:[38,39,40,41],den:4,denomin:[1,5,34,35,39,40,41],denot:[1,2,6,7,13,29,36,37,38,39,40,41],dens:[1,3,4,40,41],dense_1:4,densiti:[0,2,6,29,32,35,41],depart:[27,30,32,33,34,35,36,37,38,39,40,41],depend:[0,1,2,4,5,6,7,8,11,12,13,15,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],depict:29,deploy:[0,15,24,26,32],deprec:[2,3,6,13,26,32,33,37],deprecate_nonkeyword_argu:[0,32],depth:[0,3,9,10,25,35,40,41],deriv:[0,1,2,6,7,8,10,11,13,16,17,19,21,23,24,26,32,38],derivati:[13,37,38],derivative_fn:[13,37,38],descend:[5,9,11,33,34],descent:[0,1,3,7,8,12,22,23,32,33,39,40],descent_i:21,descent_x:21,descr:33,describ:[0,2,4,5,6,8,10,11,12,13,18,21,25,26,27,32,34,35,37,38,39,41],descript:[0,8,9,23,27,32,41],design:[0,1,3,4,5,6,7,10,11,12,13,15,16,17,18,19,23,26,27,32,34,35,36,37,38,39,40,41],designmatrix:[0,32],desir:[0,2,4,5,13,14,23,32,33,36,37,41],despit:[1,12,38,39,40,41],destroi:25,det:[5,25,33],detail:[0,6,11,13,14,23,25,26,27,33,36,37,40],detect:[3,8,12,38,39],determin:[0,2,3,4,5,6,8,9,10,11,12,13,16,25,29,32,33,34,35,36,37,38,39,41],determinist:[7,13,29,36,37,38],dev:[1,40,41],develop:[0,3,5,8,10,11,12,21,22,23,24,25,26,27,32,33,34,35,38],deviat:[0,1,2,4,5,6,19,26,29,32,33,34,35,40,41],devic:[3,4],device_nam:[3,4],devis:[12,38,39],df1:32,df:[4,8,11,13,32,37],di:[0,33],diag:[5,8,33,34],diagnost:[1,10,40,41],diagon:[0,5,7,13,18,21,23,25,26,29,32,33,34,36,37,38,41],diagonaliz:[5,33],diagram:10,diagsvd:6,dice:[6,29,35],dict:[6,8,23,36,41],dict_kei:33,dictionari:[0,23,33,41],did:[0,1,5,6,7,10,11,14,26,27,32,34,35,36,37,40,41],die:[1,40,41],diff1:[2,41],diff2:[2,41],diff:[2,41],diff_ag:[2,41],diffeent:8,differ:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,17,21,23,24,25,26,29,31,32,33,34,35,36,39,40,41],different:[22,23,41],differenti:[0,3,16,21,22,23,24,25,32,33,36,39,40],differential_oper:[2,13,38],difficult:[0,1,6,10,13,21,26,29,32,35,37,38,40,41],difficulti:[0,1,13,32,36,37,38,40,41],diffonedim:[2,41],digit:[0,1,3,4,6,23,26,27,28,30,32,39,40,41],dilemma:[13,37,38],dilut:[1,40,41],dim:[4,11,14,23,25,41],dimens:[0,1,2,3,4,5,8,9,11,14,16,17,23,25,32,33,34,39,40,41],dimension:[0,4,5,6,9,11,13,14,19,21,22,24,25,27,32,34,35,36,37,38],dimensionless:[0,3,32],diment:25,dimnsion:4,diod:3,direct:[0,1,2,4,11,12,13,14,21,32,33,36,37,38,39,40,41],directli:[1,4,5,6,23,29,33,39,40,41],directori:9,disabl:[3,4],disadvantag:[0,32],disappear:[3,6,35],disc_loss:4,disc_tap:4,discard:[6,11,35,36],disciplin:[0,3,12,32,38,39],disclaim:29,discord:32,discourag:[13,33,36,37],discov:[0,32],discover:[5,34],discret:[1,3,5,7,13,34,35,36,37,38,40,41],discrimin:[4,7,10,11,36],discriminator_loss:4,discriminator_loss_list:4,discriminator_model:4,discriminator_optim:4,discuss:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,31,32,33,34,35,37,38,39,40,41],diseas:[7,36],disguis:[6,33,34,35],disord:[1,7,36,40,41],dispai:[38,39],displai:[0,1,3,4,5,6,7,8,9,10,11,12,14,23,26,29,32,33,35,36,38,39,40,41],displaystyl:[0,5,17,32,33,34],displot:33,disregard:[0,32],dissimilar:[11,14],dist:14,distanc:[0,8,9,11,14,29,33],distance_list:9,distinct:[3,7,8,9,10,14,36],distinctli:8,distinguish:[0,4,7,8,29,32,36],distplot:[0,33],distribut:[0,1,4,6,7,10,11,13,14,15,16,18,19,23,24,25,26,27,32,33,36,37,39,40,41],distrubut:[0,15,24,26,32],dive:[0,8,25,32],diverg:[1,13,36,37,38,40,41],divid:[0,1,3,5,6,7,8,9,11,12,27,29,32,33,34,35,36,38,39,40,41],divis:[6,8,9,13,21,23,25,29,35,36,37,38,41],dna:[7,36],dnn1:4,dnn2_gru2:4,dnn:[0,1,2,4,12,23,32,38,39,40,41],dnn_kera:[1,40,41],dnn_model:[1,40,41],dnn_numpi:[1,39,40,41],dnn_scikit:[0,1,23,32,39,40,41],doamin:[34,35],doc:[0,6,17,19,20,24,26,27,28,30,31,32,33,36,37,38],document:[4,7,11,13,33,36,37,38,41],doe:[0,1,2,3,4,5,6,8,10,11,12,13,16,21,23,25,26,29,32,35,36,37,40,41],doesn:[3,9,12,39],dog:[1,3,4,39,40,41],domain:[5,8,13,26,27,34,35,36,37],domin:[0,32],don:[0,1,3,5,6,8,11,13,15,21,23,24,26,27,32,33,37,38,39,40,41],done:[0,2,3,4,5,6,9,10,11,13,17,25,26,32,33,34,35,36,37,38,41],dot:[0,2,3,5,6,7,8,9,10,11,12,13,21,25,26,29,32,33,34,35,36,39,40,41],doubl:[3,4,25,32],doubli:[1,40,41],down:[0,3,6,9,11,12,13,21,32,36,37,38,39],download:[0,1,3,5,6,25,26,31,32,39,40,41],downsampl:3,dozen:[1,40,41],dq:[6,35],drag:[13,37,38],dramat:11,drastic:4,draw:[4,6,10,13,35,36,37],drawback:[0,1,3,13,33,36,37,38,40,41],drawn:[1,4,6,7,11,29,32,35,36,39,40,41],drive:[3,4],driven:3,drop:[0,1,5,6,11,13,21,29,32,33,34,35,37,38,40,41],dropna:[0,6,32,35],dropout:4,dt:[2,3,13,29,37,38,41],dtype:[0,1,2,3,4,14,21,23,25,32,33,38,39,40,41],dualiti:6,dub:[0,32],due:[1,2,5,6,8,10,12,13,23,30,32,33,35,36,37,38,39,40,41],dummi:[0,33],dure:[0,1,3,4,8,9,11,17,20,23,24,26,32,35,37,38,40,41],dwell:[0,33],dwh:[1,39,40,41],dwo:[1,39,40,41],dx:[2,3,8,29,41],dx_1:29,dx_1p:[6,35],dx_2p:[6,35],dx_mp:[6,35],dx_n:29,dxp:[6,35],dy:[1,8,29,40,41],dynam:4,dz:8,e:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,19,21,23,29,30,32,33,34,35,36,37,38,39,40,41],e_:[0,2,32,41],each:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,23,24,25,27,28,29,30,32,33,34,35,37,38,39,40,41],eager:[3,4,35],eapprox:[0,32],earli:[1,3,4,13,21,37,38,39,40,41],earlier:[0,5,7,8,9,11,12,13,20,21,32,33,36,37,38,39],earthexplor:[6,26],eas:[6,9,14,35],easi:[0,5,6,7,8,9,10,11,12,13,18,21,23,24,25,27,32,33,34,35,36,37,38,39,41],easier:[5,6,8,9,13,23,27,29,32,33,35,37,38,41],easiest:[13,36,37],easili:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,23,25,26,32,33,34,35,36,37,39,40,41],eastern:[30,32],ebind:[0,32],eblock:9,econometr:32,economi:5,ecosystem:[24,32],ect:28,edg:3,edgecolor:[6,35],edu:[13,27,33,36,41],educ:[0,26,27,32,33,36],eff:29,effect:[1,4,10,13,29,37,38,39,40,41],effic:[1,39,40,41],effici:[0,3,10,13,24,25,29,32,36,37,38],efron:[6,35],egrad:[13,37,38],eig:[5,11,13,21,25,29,32,33,36,37,38],eigen:29,eigenpair:[5,11,33],eigenvalu:[0,5,8,11,13,21,25,32,33,34,36,37,38],eigenvector:[5,11,13,17,33,34,37],eight:[25,32],eigval:[25,29,32],eigvalu:[11,13,21,36,37,38],eigvec:[25,29,32],eigvector:[11,13,21,36,37,38],eispack:[25,32],either:[1,5,6,7,8,9,10,11,13,15,16,23,26,27,29,32,33,34,35,36,37,39,40,41],elabor:29,elarn:3,electr:[0,3,12,32,38,39],electron:32,eleg:11,element:[1,2,3,4,5,6,7,8,11,12,13,17,18,20,21,22,23,24,25,26,27,28,31,33,34,35,36,39,40,41],elementari:[10,13,25,37,38],elementwis:[3,13,37,38],elementwise_grad:[2,13,23,37,38,41],elessar:32,elif:[3,4,14,21,23,41],elim:25,elimin:[3,8],els:[1,2,3,4,7,9,12,13,23,25,36,37,38,39,40,41],elu:[1,40,41],elus:[0,32],email:[28,30,32],embed:[0,11,33],embodi:[6,19,26,35],emit:29,emner:31,emphas:[0,10,24,32],emphasi:[0,24,31,32],empir:[1,11,29,40,41],emploi:[0,1,5,6,11,13,26,27,29,32,33,34,35,36,37,39,40],employ:[0,32,33],empti:[6,10,23,35,41],emul:[12,38,39],en:[24,31],enabl:[11,21,23,41],enbodi:[6,35],encod:[0,3,5,9,11,14,17,32,33,34],encompass:[0,26,29,32],encount:[0,1,5,6,7,13,21,29,32,33,35,36,37,38,39,40,41],encourag:[26,27],end:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,21,23,25,26,29,30,32,33,34,35,36,37,38,39,40,41],end_box:[13,38],end_nod:[2,13,38],end_valu:[13,38],endpoint:[3,6],energi:[0,4,6,33,35],enet_coordinate_desc:6,enforc:[12,38,39],eng:31,engin:[0,1,3,4,24,32,40,41],english:[26,27],enorm:3,enough:[0,6,13,32,35,36,37],ensembl:[1,9,40,41],ensur:[0,1,2,3,5,6,11,13,21,23,29,33,34,35,36,37,38,39,40,41],ensure_initi:[3,4],entail:32,enter:[5,6,17,33,34],enthought:[0,15,24,26,32],entir:[1,3,7,9,23,24,29,32,36,37,38,39,40,41],entiti:[9,12,25,32,39],entri:[0,5,8,11,12,25,32,33,34,35,39],entropi:[1,3,7,10,13,23,32,37,38,39,40,41],enumer:[0,1,2,3,4,6,8,23,32,33,34,39,40,41],env:[0,1,2,3,4,6,7,8,11,13,21,23,29,32,33,34,36,38,39,40,41],environ:[2,21,24,26,41],eo:[0,6,32,35],eol:[0,32],eosfit:[0,32],epoch:[0,1,3,4,12,13,21,22,23,27,32,37,38,39,40,41],epoch_num:[3,4],epsilon:[0,5,6,7,13,19,26,32,33,34,35,36,37,38],epsilon_0:[0,32],epsilon_1:[0,32],epsilon_2:[0,32],epsilon_:[0,32],epsilon_i:[0,32,33],eq:[3,13,14,25,29,36,37],eqnarrai:[3,5,6,34,35],equal:[0,1,2,3,4,5,6,8,9,11,12,13,14,15,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],equat:[1,3,4,5,6,7,8,9,10,11,13,14,16,17,18,19,21,25,26,29,35,38,40],equilibrium:[2,12,38,39,41],equiv:[3,13,25,29,36,37],equival:[0,1,5,7,8,11,13,21,24,25,32,33,34,35,37,38,39,40,41],erf:29,eriador:32,eric:[23,41],eridg:32,err:[0,10],err_:[6,35],err_sqr:[2,41],errat:[13,36,37],errno:9,erron:[2,41],error:[1,2,4,5,6,7,9,11,12,13,15,16,17,18,19,21,23,24,25,26,27,29,34,36,37,38,39,40,41],error_estimate_corr_tim:29,error_handl:[3,4],error_hidden:[1,39,40,41],error_output:[1,39,40,41],escap:[13,36,37,38],especi:[1,3,9,12,13,26,27,37,38,39,40,41],essenti:[0,5,6,9,10,12,14,26,27,29,33,38,39],establish:[0,6,10,11,15,26,27,32],estim:[0,1,5,6,7,10,11,13,24,29,32,33,36,37,38,39,40,41],estimated_mse_fold:[6,35,36],estimated_mse_kfold:[6,35,36],estimated_mse_sklearn:[6,35,36],et:[0,2,4,15,16,17,27,31,32,33,34,35,36,37,38,39,40,41],eta0:[8,13,36,37],eta:[0,1,3,8,12,13,21,23,27,32,36,37,38,39,40,41],eta_:[13,21,37,38],eta_t:[13,37,38],eta_v:[0,1,3,23,32,39,40,41],etc:[0,1,3,5,7,8,9,11,12,13,14,15,21,22,24,25,26,27,29,33,36,37,38,39,40,41],ethic:[24,32,33],etsim:35,euclidean:[0,14,33],evalu:[0,2,3,4,5,6,9,13,26,29,32,33,34,35,36,37,38],evaluationform:[20,26,37,38],evaluationgrad:[20,26,37,38],evalut:[13,37,38],even:[0,1,3,4,5,6,8,9,10,11,12,13,14,24,25,29,32,33,34,35,36,37,38,39,40,41],evenli:4,event:[5,7,10,29,34,35,36],eventu:[0,5,6,11,12,13,26,27,30,33,34,35,36,37,38,39],everi:[0,1,2,3,4,5,6,9,10,11,12,13,14,23,24,29,30,32,33,34,35,36,37,38,39,40,41],everyth:[4,12,21,22,23,39,41],everywher:[4,13,36,37],evolv:[0,32],exact:[0,5,11,12,13,25,29,32,33,37,39],exactli:[0,3,4,6,12,24,26,33,35,38,39],exam:32,examin:[6,35],exampl:[5,11,12,13,15,16,19,20,22,23,24,25,26,27,29,31],exce:[1,12,13,21,37,38,39,40,41],excel:[0,1,4,5,10,27,32,33,40,41],except:[3,4,6,8,9,23,25,41],excess:[0,32],excit:[0,32],exclud:[1,6,12,26,33,34,35,36,38,39,40,41],exclus:[0,1,3,6,29,32,35,36,40,41],execut:[2,3,4,5,13,33,37,38,41],execute_with_cancel:[3,4],executing_eagerli:[3,4],exemplifi:[13,37,38],exercic:[30,32],exercis:[5,24,26,27,28,30,34,36,37,38,39,40],exercisesweek35:17,exhaust:[6,35,36],exhibit:[0,5,6,8,32,33,35],exist:[0,1,2,3,5,6,7,8,9,13,18,25,26,27,32,33,34,35,36,37,40,41],exit:[5,25,33],exp:[0,1,2,5,6,7,8,10,11,12,13,15,16,21,23,26,29,32,33,34,35,36,37,38,39,40,41],exp_term:[1,39,40,41],expand:[5,7,11,13,33,36,37],expans:[0,3,5,8,10,12,13,32,33,36,37,39],expect:[0,1,5,6,7,11,12,13,15,16,19,21,24,26,27,32,33,36,37,38,39,40,41],expectation_value_of_h_wrt_p:29,expens:[6,10,13,36,37,38],experi:[0,1,6,8,13,24,26,32,33,35,36,37,38,40,41],experiment:[0,3,4,6,9,29,32,35],experimental_get_tracing_count:[3,4],expert:[1,9,40,41],explain:[0,6,9,10,11,13,19,26,32,36,37],explained_variance_ratio_:11,explan:27,explanatori:[0,32],explicit:[0,3,6,13,21,25,26,32,33,34,37,38],explicitli:[0,4,21,32],explod:[1,40,41],exploit:[0,3,12,13,32,37,38,39],explor:[1,4,6,8,13,24,26,27,36,37,38,40,41],expon:[1,23,39,40,41],exponenti:[0,1,5,6,10,13,26,29,32,34,35,36,37,38,40],export_graphviz:9,export_text:9,exporttext:9,expos:[24,32],express:[0,2,3,5,6,7,10,12,13,16,21,22,25,26,27,29,34,35,38,39,41],exptmean:29,exptvari:29,extend:[0,2,7,11,13,17,24,32,41],extens:[0,12,15,24,32,38,39],extent:[0,1,6,31,32,35,40,41],extern:[3,6,9],extra:[1,3,5,30,32,33,39,40,41],extract:[0,3,5,6,7,8,11,13,25,32,33,36,37],extrapol:[0,32],extrem:[0,1,4,5,6,7,8,9,13,16,25,33,34,35,36,37,38,40,41],extremum:[13,36,37],extrins:11,ey:[0,5,6,13,14,25,32,34,35,36,37],f11:[0,32],f12:[0,32],f13:[0,32],f1:[13,37,38],f1_grad:[13,37,38],f1d:[13,37],f2:[13,37,38],f2_grad_x1:[13,37,38],f2_grad_x1_analyt:[13,37,38],f2_grad_x2:[13,37,38],f2_grad_x2_analyt:[13,37,38],f3:[13,37,38],f3_grad:[13,37,38],f3_grad_analyt:[13,37,38],f4:[13,37,38],f4_grad:[13,37,38],f4_grad_analyt:[13,37,38],f5:[13,37,38],f5_grad:[13,37,38],f6:[13,37,38],f6_for:[13,37,38],f6_for_grad:[13,37,38],f6_grad_analyt:[13,37,38],f6_while:[13,37,38],f6_while_grad:[13,37,38],f7:[13,37,38],f7_grad:[13,37,38],f7_grad_analyt:[13,37,38],f8:[13,37,38],f8_grad:[13,37,38],f9:[0,13,32,37,38],f9_altern:[13,37,38],f9_alternative_grad:[13,37,38],f9_grad:[13,37,38],f:[0,1,2,3,4,5,6,7,8,10,12,13,14,16,18,19,21,22,23,25,29,30,32,33,34,35,36,37,38,39,40,41],f_0:[3,10],f_1:[10,13,36,37],f_2:[12,13,36,37,38,39],f_3:[12,38,39],f_:10,f_d:29,f_grad:[13,37,38],f_grad_analyt:[13,37,38],f_i:[0,6,12,16,35,38,39],f_m:[3,10],f_n:3,f_raw:2,f_vec:[2,41],f_wrap:2,face:[13,36,37,38],facecolor:[6,8,29,35],facil:[0,15,24,32,35,36,37,38,39,40,41],facilit:[12,38,39],fact:[0,1,3,5,9,11,12,13,32,33,34,35,36,37,38,39,40,41],factor:[0,1,3,5,6,9,10,11,13,25,29,32,33,34,35,37,38,39,40,41],factori:[13,37,38],fade:6,fafab0:[9,10],fahimeh:[30,32],fail:[0,3,4,6,7,8,11,13,30,32,35,36,37],failur:[7,36],fairli:[1,2,29,40,41],fake:4,fake_loss:4,fake_output:4,fale:27,fall:[8,9,28],fals:[0,1,2,3,4,5,6,7,9,10,14,23,25,26,32,33,34,35,36,37,38,39,40,41],famili:[0,7,8,29,36],familiar:[0,3,5,6,8,15,24,25,26,29,32,34,35],famou:[6,12,23,39,41],far:[0,3,4,5,6,8,11,12,13,14,32,33,36,37,38,39],fashion:[0,9,10,32],fast:[1,3,6,10,12,13,24,29,32,35,36,37,39,40,41],faster:[1,11,13,37,38,40,41],fastest:[13,25,36,37],favor:[7,36],favorit:29,fc:3,featur:[0,1,3,5,6,7,8,10,11,12,13,18,23,24,26,27,29,32,34,35,36,37,38,39,40,41],feature_nam:[0,1,7,9,33,36,40,41],feautur:9,fed:[1,39,40,41],feed:[0,2,3,11,23,24,27,32],feed_forward:[1,23,39,40,41],feed_forward_out:[1,39,40,41],feed_forward_train:[1,39,40,41],feedback:[4,20,32],feeddorward:4,feedforward:[1,4,12,23,39,40,41],feel:[0,5,6,11,13,15,16,21,22,24,26,27,30,32,34,37,38],feet:[0,33],fei:32,felt:[26,27],fetch:[6,26,33],fetch_california_h:33,fetch_openml:33,few:[1,3,4,5,9,29,32,37,39,40,41],fewer:[0,9,11,32],ffnn:[1,12,23,27,38,39,40,41],field:[0,3,6,12,24,32,38,39],fifth:[0,6,15,16,26,32],fig:[0,1,2,3,4,6,7,12,13,14,23,26,32,36,37,38,39,40,41],fig_id:[0,6,7,9,32,33,35,36],figaxi:29,figsiz:[0,1,2,3,4,6,7,8,9,10,23,32,33,35,36,39,40,41],figur:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,21,24,26,27,32,33,34,35,36,37,38,39,40,41],figure_id:[0,6,7,9,32,33,35,36],figurefil:[0,6,7,9,32,33,35,36],file:[0,2,3,4,5,6,7,9,13,26,27,32,33,34,35,36,38],file_prefix:4,filenam:[32,33],filenotfounderror:9,filepath_or_buff:[0,32],fill:[5,9,23,33,41],filter:[3,4],filter_traceback:[3,4],filtered_flat_arg:[3,4],filtered_tb:[3,4],financ:[0,32],find:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,21,24,26,27,29,32,33,34,36,39,40,41],fine:[0,14,15,32],finish:[2,23,41],finit:[3,5,6,12,13,17,29,33,34,35,37,38,39],first:[0,1,2,3,5,6,7,8,9,10,11,13,14,15,16,17,21,23,25,26,29,30,31,35,38,40],first_moment:[21,37,38],first_term:[21,37,38],firsteigvector:11,fit:[1,3,4,5,6,7,8,9,11,12,13,15,16,17,21,23,26,27,29,33,35,36,37,38,39,40,41],fit_beta:[6,33,34],fit_intercept:[0,5,6,33,34,35],fit_mod:9,fit_transform:[0,6,8,9,11,35,36],fiti:[0,32],five:[0,9,17,26,32,33,36],fix:[0,3,4,6,10,11,12,13,21,22,26,27,32,35,36,37,38,39],fixedformatt:6,fixedloc:6,flag:4,flat:[12,13,21,36,37,38,39],flatten:[1,3,4,5,25,39,40,41],flexibl:[1,6,8,10,12,23,27,32,33,35,38,39,40,41],flip:[30,32],float32:[4,9,21,23,41],float64:[4,21,23,25,32,33,38,39,40,41],floatingpointerror:[23,41],floor:[23,41],flop:[5,25,33],flow:[1,4,12,38,39,41],fluctuat:[5,34],flush:[23,41],fly:11,fm:[0,32],fmax:3,fmesh:[13,37],fn:[3,4,7],focu:[0,3,4,5,6,15,24,27,31,32,33,34,35],focus:[1,6,7,25,33,34,36,39,40,41],fold:[6,9,26],folder:[0,1,4,6,13,26,27,32,35,37,39,40],follow:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],font:[0,7,29,32,36],fontdict:29,fontsiz:[1,6,8,9,10,29,40,41],fontweight:[1,40,41],footprint:3,foral:[8,33],forc:[0,5,6,10,11,32,33,34,36],forcast:4,forecast:[4,12,38,39],forest:[0,1,9,24,32,40,41],forget:11,form:[0,3,4,5,6,7,8,9,11,12,13,17,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40],formal:[3,4,14,29],format:[0,1,3,4,6,7,8,9,10,11,23,24,29,31,33,34,35,36,38,39,40,41],format_data:4,formatstrformatt:[6,13,26,36,37],formul:[4,6,11,14],formula:[3,13,29,36,37,38],forth:[4,12,38,39],fortran2003:[24,32],fortran2008:[26,27],fortran90:29,fortran:[0,15,24,25,32],fortun:[0,11,33],forward:[0,3,4,6,23,24,25,27,32,35],forward_backward:[3,4],forward_funct:[3,4],found:[1,2,4,5,6,12,13,19,20,23,26,27,32,33,34,35,37,38,39,40,41],foundat:[24,32],four:[4,5,6,8,12,23,25,26,28,30,32,34,38,39,40,41],fourier:[0,32],fourierdef1:3,fourierdef2:3,fourierseriessign:3,fourth:[12,32,33,39],fp:7,frac:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,25,26,27,29,32,33,34,35,36,37,38,39,40,41],fractal:9,fraction:9,frame:[7,32,36],framework:[1,8,10,29,40,41],frank:[5,11,21,22,27],frankefunct:[5,6,11,26,33],fredli:[30,32],free:[0,6,11,13,15,16,21,22,24,25,26,27,29,30,31,32,37,38],freecodecamp:24,freedom:[5,34],freeli:[0,26,32],frequenc:[3,4,6,7,29,35,36],frequent:[0,8,9,13,32,36,37],frequentist:24,fresh:10,fridai:[16,30,32],friedman:[6,18,26,28,31,32,33],friendli:4,frodo:32,frog:3,from:[0,1,2,3,4,6,7,8,9,11,13,14,16,17,18,19,22,23,24,25,26,29,30,31,32,40,41],from_cod:9,from_logit:[3,4],from_tensor_slic:4,fromnumer:2,front:[0,4,5,15,16,32,33,34],fulfil:[2,5,12,33,38,39,41],full:[0,1,3,5,7,9,10,13,23,29,32,33,36,37,38],full_matric:[5,33],fulli:[3,6,12,28,29,35,36,38,39],fun:[2,13,24,32,38],fun_nam:[],func:[0,2,23,32,33,41],functionali:11,fundament:[0,6,24,32,35],funtion:2,further:[2,7,9,32,41],furthermor:[0,3,5,6,7,11,12,13,17,24,26,32,33,34,35,36,37,38,39],futur:[0,4,8,9,32,33],futurewarn:[0,32,33],fy:[15,26,27,28,30,31,32],fys4155:[26,27],fys5419:[31,32],fys5429:[31,32],g0:[2,41],g:[0,1,2,3,4,6,8,9,10,11,13,29,32,34,35,36,37,38,39,40,41],g_0:[2,41],g_1:[2,10,41],g_2:[2,10,41],g_:[2,9,10,41],g_analyt:[2,41],g_dnn_ag:[2,41],g_euler:[2,41],g_i:[2,41],g_m:[3,10],g_n:3,g_re:[2,41],g_t:[2,23,41],g_t_d2t:[2,41],g_t_d2x:[2,41],g_t_dt:[2,41],g_t_hessian:[2,41],g_t_hessian_func:[2,41],g_t_invers:[23,41],g_t_jacobian:[2,41],g_t_jacobian_func:[2,41],g_trial:[2,41],g_trial_deep:[2,41],g_vec:[2,41],gain:[1,5,7,9,10,13,33,34,35,37,38,40,41],galleri:[0,32],game:4,gamge:32,gamma1:8,gamma2:8,gamma:[0,2,8,9,10,11,13,21,32,36,37,38,41],gamma_0:10,gamma_1:10,gamma_1x:10,gamma_:[0,32],gamma_i:[0,8,29,32],gamma_j:[13,37,38],gamma_k:[13,36,37],gamma_m:10,gamma_x:[0,32],gap:[6,8],gate:[4,12],gather:[0,1,12,33,38,39,40,41],gaug:[12,38,39],gaussbacksub:25,gaussian:[4,5,6,8,14,29,34,35],gaussian_point:14,gaussian_rbf:8,gave:[13,37,38],gbc:[28,32],gca:[2,6,8,13,26,37,41],gd:[1,22,27,36,40,41],gd_clf:10,gdclassiffiercgain:10,gdclassiffierconfus:10,gdclassiffierroc:10,gdm:[13,21,37,38],gdregress:10,ge:[1,5,7,29,33,36,40,41],gen_loss:4,gen_tap:4,gender:[0,32],genener:4,gener:[0,1,2,3,5,6,8,10,11,12,13,14,15,16,17,19,20,21,23,25,26,29,31,33,34,35,36,37,38,39,40,41],generaliz:[23,41],generallay:[12,38,39],generate_and_save_imag:4,generate_imag:4,generate_latent_point:4,generate_simple_clustering_dataset:14,generated_imag:4,generator_loss:4,generator_loss_list:4,generator_model:4,generator_optim:4,genom:24,geodes:11,geometr:[0,13,32],geometri:[5,34,35],georg:31,geotif:[6,26],geq:[2,5,8,9,13,33,34,36,37,41],geron:[0,15,21,28,31,32,37,38,40,41],get:[0,1,2,3,4,5,6,7,9,10,11,13,15,20,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],get_dummi:9,get_paramet:[2,41],get_split:9,get_yaxi:8,get_yticklabel:6,getattr:[],gibb:[24,32],gif:4,gini:10,gini_index:9,ginvers:13,git:[0,15,24,32],giter:[13,21,37,38],github:[0,6,15,17,19,20,21,24,26,27,28,30,31,32,33,36,37,38,41],gitlab:[0,15,24,26,27,32],give:[0,1,2,3,5,6,7,8,9,10,12,13,14,17,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],given:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],global:[6,7,13,26,36,37,38],gloriou:27,glorot:[1,40,41],gnew:13,go:[0,1,3,5,6,8,9,11,12,13,26,32,33,34,35,36,37,39,40,41],goal:[0,7,9,32,36],goe:[0,1,2,5,6,13,14,18,25,32,33,34,35,36,37,38,39,40,41],golden:[13,37],gone:[5,33,34],gong:[1,39,40],good:[1,3,4,5,6,9,10,11,13,17,21,23,24,29,31,33,34,35,36,37,38,40,41],goodfellow:[4,22,27,28,31,32,33,34,36,37,38,39,40,41],googl:[1,4,21,24,32,40,41],got:[1,6,26,39,40,41],gotcha:21,gotten:[23,41],gov:[6,26],gp:31,gpu:[1,13,21,24,32,37,38,40,41],grad:[2,13,21,23,37,38,41],grad_analyt:[13,37,38],grade:28,gradient:[0,3,4,7,8,9,12,22,23,24,32,33,39],gradient_bia:[23,41],gradient_desc:[3,21,37],gradient_weight:[23,41],gradientboostingclassifi:10,gradientboostingregressor:10,gradients_of_discrimin:4,gradients_of_gener:4,gradients_util:[3,4],gradienttap:4,gradual:[1,14,40,41],grai:[4,6,26],graph:[1,9,11,12,13,36,37,38,39,40,41],graph_from_dot_data:9,graph_funct:[3,4],graphic:[0,1,9,32,40,41],grasp:[0,32],gray_r:[1,3,39,40,41],grayscal:3,great:[5,13,36,37,41],greater:[1,7,29,36,39,40,41],greatli:[13,37,38],greedi:[9,36],green:[0,3,9,29],gregor:[23,41],grei:4,grid:[1,3,6,7,8,12,29,33,34,35,38,39,40,41],gridsearch:36,gridsearchcv:36,grossli:[13,36,37],ground:[0,32],group:[0,6,7,9,14,24,26,27,28,30,32,35],groupbi:[0,32],grow:[1,3,9,10,39,40,41],growth:[0,32],gru:4,guarante:[0,3,4,13,29,32,33,36,37],guess:[1,4,10,13,14,21,27,36,37,38,39,40,41],guestrin:10,guid:[1,40,41],guidelin:[20,37,38],h1:[2,41],h:[0,1,5,6,8,13,16,18,21,26,29,30,31,32,33,36,37,38,39,40,41],h_1:[2,13,36,37,41],h_2:[2,13,36,37,41],h_:[0,13,32,36,37],h_m:10,ha:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],haa:[30,32],habit:[0,33],had:[0,1,6,7,13,32,35,36,37,39,40,41],hadamard:[1,12,13,21,37,38,39,40,41],half:[1,8,9,40,41],halv:10,hand:[0,1,2,3,5,11,12,13,15,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],handi:[3,26,27],handl:[0,1,2,5,9,11,24,34,40,41],handle_unknown:9,handsid:[12,39],handwrit:[12,38,39],handwritten:[1,5,32,39,40,41],handwrittennot:[19,32,36,37],happen:[1,2,3,4,5,6,10,13,29,33,37,38,39,40,41],hard:[1,7,8,10,13,36,37,39,40,41],hardcopi:[24,32],harder:[0,1,33,40,41],harmon:3,hasn:[1,23,39,40,41],hassl:[0,15,24,32],hast:[24,32],hasti:[0,6,15,16,17,18,26,28,31,32,33,34,35,36],hat:[0,1,5,6,7,9,10,11,12,13,17,18,25,26,33,34,35,37,38,39],have:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,33,34,35,36,37,38,39,40,41],haven:[1,39,40,41],he:[7,36],head:[0,4,10,29,33],header:[0,32,33],heads_proba:10,health:[0,33],hear:[0,13,32,37,38],heart:[0,7,32,36],heatmap:[0,1,3,7,23,32,33,36,39,40,41],heavili:[0,32],heavisid:[1,39,40,41],height:[1,3,6,33,34,39,40,41],hein:41,held:[13,21,37,38],help:[0,1,4,12,13,16,21,26,27,32,37,38,39,40,41],helper:[4,14],henc:[0,5,6,8,9,10,12,13,18,26,32,33,34,35,36,37,38,39],henrik:[30,32],her:[7,36],here:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],hereaft:[0,8,12,32,39],hermitian:25,hessenberg:25,hessian:[0,2,5,13,16,21,34,38,41],heterogen:[9,10],hi:[7,36],hidden:[1,3,4,12,23,27,38,39],hidden_bia:[1,23,39,40,41],hidden_bias_gradi:[1,39,40,41],hidden_deriv:[23,41],hidden_func:[23,41],hidden_layer_s:[0,1,23,32,39,40,41],hidden_neuron:4,hidden_nodes1:[23,41],hidden_nodes2:[23,41],hidden_weight:[1,23,39,40,41],hidden_weights_gradi:[1,39,40,41],hierarch:[5,33,34],high:[0,1,2,3,4,5,6,9,10,11,13,14,21,24,25,26,27,32,33,35,36,37,38,40,41],higher:[0,1,3,5,6,8,13,21,22,26,27,32,33,34,35,36,37,38,40,41],highest:[1,2,39,40,41],highli:[0,3,4,10,18,24,25,27,31,32,33,34,35],highwai:[0,33],hing:8,hint:[13,16,27,33,36,37],hip:24,hire:[0,32],hist:[4,6,7,29,35,36],histogram:[0,6,7,29,33,36],histor:[7,11,36],histori:[3,4,12,38,39],histplot:33,hitherto:[5,34],hjorth:[30,32,33,34,35,36,37,38,39,40,41],hobbi:29,hoc:[5,33],hoff:31,hold:[1,3,6,13,14,21,23,35,36,37,38,39,40,41],holder:[0,32],holm:41,holomorphic_grad:[2,13,38],home:[0,33],homepag:[26,27,32],homework:[6,13],homogen:[1,3,9,10,13,21,37,38,40,41],honchar:[2,41],hopefulli:[0,11,29,32],horizont:11,hors:[3,7,36],hot:[1,9,39,40,41],hour:[1,24,28,29,30,32,35,39,40,41],house_pric:33,how:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,23,24,25,26,27,29,32,33,34,35,37,38,39,40,41],howev:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],hspace:[0,4,8,10,29,32],hstack:[1,23,33,40,41],htf:[28,32],html:[0,7,11,17,19,24,26,28,30,31,32,33,36,39,40,41],http:[0,3,4,6,7,11,13,17,19,20,21,24,25,26,27,28,30,31,32,33,34,36,37,38,39,40,41],huang:[0,32],huber:[0,32],huge:[1,3,4,24,39,40,41],human:[0,1,3,6,9,12,32,33,34,38,39,40,41],humid:9,hundr:[1,40,41],hungri:[1,40,41],hybrid:28,hydrogen:[0,32],hyper:[21,27],hyperbol:[1,4,12,40,41],hyperparam:8,hyperparamet:[3,4,5,6,9,13,17,23,32,33,34,35,36,37,38],hyperplan:11,hz:[3,4],i0:[0,32],i1:[0,6,8,12,32,33,34,35,38,39],i2:[0,8,12,32,38,39],i3:[0,12,32,38,39],i5:[0,32],i:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,30,32,33,34,35,36,37,38,39],i_1:[5,6,34,35],i_2:[5,6,34,35],i_:[13,36,37],ian:31,ic:[1,27,39,40,41],id:[7,13,36,37],ida:[30,32],idea:[0,1,2,3,4,6,9,10,12,13,25,26,27,32,33,34,35,36,37,38,39,40,41],ideal:[0,2,6,8,13,23,29,32,33,35,38,41],idem:[6,35],ident:[5,6,12,13,17,23,25,26,33,37,38,39,41],identical:[34,35],identifi:[0,1,7,9,11,12,13,14,32,33,36,37,38,39,40,41],idx:[],ieor:29,ifi:[31,41],ifs:[24,32],ignor:[0,1,3,9,23,33,40,41],ii:[23,25,29],iii:[23,25,32],ij:[0,1,3,6,8,12,14,16,18,25,26,29,32,33,34,35,38,39,40,41],ik:[0,25,32,33],illustr:[5,7,10,12,13,14,24,32,35,36,37],ilsvrc:[37,38],im:6,imag:[1,3,4,6,9,11,12,14,23,27,31,32,38,39,40,41],image_at_epoch_:4,image_batch:4,image_height:3,image_path:[0,6,7,9,32,33,35,36],image_width:3,imageio:[6,26],imagenet:32,images_from_seed_imag:4,imagin:[1,40,41],immedi:[0,3,4,6,15,24,32],implement:[0,2,3,4,5,6,8,9,10,11,12,13,14,17,21,22,23,26,27,29,32,33,34,35,36,37,38],impli:[3,5,6,7,13,25,33,34,35,36,37],implicit:3,implicitli:[11,29],importantli:3,impos:[0,6,11,12,32,38,39],imposs:[0,5,32,33],impress:[0,12,23,32,38,39,40,41],improv:[0,4,5,9,10,11,13,21,26,27,33,38],impur:9,imread:[6,26],imshow:[1,3,4,6,26,39,40,41],in1:[],in2:[],in3050:[31,32],in3310:32,in4080:[31,32],in4300:[31,32],in4310:31,in5400:3,in5550:31,in_out_neuron:4,inaccur:[13,36,37],inact:[12,38,39],inadequ:[0,32],inch:[6,33,34],includ:[0,1,2,3,4,5,6,7,11,12,15,16,17,20,22,24,26,27,29,30,31,32,33,34,35,39,40,41],include_bia:[6,9,35],inclus:[17,40],incom:[12,38,39],incorrect:[1,39,40,41],incoveni:8,increas:[0,1,3,4,5,6,7,8,9,11,12,13,21,26,29,32,33,34,35,36,37,38,39,40,41],increasingli:29,increment:37,ind:6,inde:[0,2,4,5,6,13,32,33,41],indefinit:4,independ:[0,5,6,7,8,12,13,29,32,33,36,37,38,39],index:[0,1,3,4,10,14,24,25,27,29,31,32,33,39,40,41],index_col:[0,32],indic:[0,1,3,4,5,6,9,10,11,13,16,21,23,26,27,32,33,37,38,39,40,41],indispens:[6,35],individu:[1,6,7,10,12,29,32,33,35,36,38,39,40,41],indu:[0,33],indx1:[2,41],indx2:[2,41],indx3:[2,41],indx:25,ineffici:[3,13,37,38],inequ:[8,13],inequaltii:[36,37],inertia:[13,21,37,38],inf1000:[24,32],inf1100:[24,32],inf1100l:[24,32],inf1110:[24,32],inf3000:32,infeas:9,infer:[0,1,4,6,31,32,35,39,40,41],infer_nrow:[0,32],inferenc:[1,40,41],infil:[0,6,7,9,32,35,36],infin:[5,6,7,11,18,33,34,35,36],infinit:3,infinitesim:29,influenc:[6,10,35,36],influenti:[1,39,40,41],info:32,inform:[0,1,3,4,6,9,11,12,13,14,21,22,25,26,27,31,32,35,36,37,38,39,40,41],infti:[3,6,13,29,35,36,37],ingeni:[13,36,37,38],ingrad:2,ingredi:[0,9,32],inher:[6,35],inherit:[25,32],init:[23,41],initi:[0,1,2,6,10,13,14,23,25,27,29,32,35,36,37,38,39,40,41],initial_epoch:[3,4],inititi:[23,41],inject:14,inlin:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],inner:[0,13,33,37],inp:4,inplac:[13,37,38],input:[0,1,3,4,5,6,7,8,9,10,12,13,14,15,21,23,26,27,29,32,33,34,35,36,37,38,39,40],input_dim:[1,40,41],input_nod:[23,41],input_shap:[3,4],inputs:[1,40,41],inputs_shuffl:[0,1,33,39,40,41],insert:[3,5,6,8,10,29,33,34,35],insid:[0,4,7,33,36],insight:[0,1,5,21,22,24,27,32,33,34,35,40,41],insist:[6,13,33,34,37],inspect:36,inspir:[0,1,12,27,32,38,39,40,41],instabl:[2,41],instal:[0,1,5,6,9,15,40,41],instanc:[0,1,2,4,6,9,11,13,23,32,33,35,36,37,39,40,41],instanti:10,instead:[0,1,2,3,4,5,6,8,9,11,13,14,21,25,26,29,32,33,35,36,37,38,39,40,41],institut:[1,39,40,41],instruct:[0,1,15,16,32,40,41],int32:10,int64:33,int64index:32,int_0:29,int_:[3,6,29,35],int_a:29,intak:[0,33],integ:[1,2,13,14,23,25,29,32,37,38,39,40,41],integer_vector:[1,39,40,41],integr:[3,6,29,32,35],intellectu:32,intellig:[0,14,31,32],intend:[10,32],intens:[1,27,40,41],intention:14,interact:[0,6,9,12,24,26,27,32,38,39],intercept:[0,6,8,11,13,16,26,32,34,35,36,37],intercept_:[0,6,8,9,13,32,33,34,35,36,37],interceptol:35,interceptridg:35,interchang:[5,12,25,34,35,38,39],interconnect:[1,40,41],interest:[0,1,2,3,4,5,6,7,8,9,12,21,24,26,27,29,32,33,34,35,36,37,38,39,40,41],interfac:[0,1,23,25,33,39,40,41],interior:[0,9,32],intermedi:[25,33],intern:[1,10,12,38,39,40,41],interpol:[1,3,4,6,12,26,38,39,40,41],interpr:[5,33,34],interpret:[0,1,6,9,10,12,13,17,19,25,26,27,29,39,40,41],interv:[0,3,5,6,7,13,18,26,29,32,33,34,36,37],intial:[13,36,37],intract:[0,4,33],intrins:[3,11,25,29,32],intro:[24,31,32,41],introduc:[0,1,5,6,8,10,12,17,25,26,29,32,35,36,39,40,41],introduct:[1,2,4,13,17,20,31,33,36,37,41],introductori:[0,4,25,31,32,33],intuit:[0,5,6,8,12,13,21,26,32,34,35,37,38,39,40,41],inv:[0,5,13,21,32,33,34,36,37,38],invalid:[1,8,39,40],invalu:[0,13,15,24,32,36,37],invari:[1,39,40,41],invd:[5,34],inver:[8,38,39],invers:[0,3,6,13,15,16,17,21,22,26,27,32,33,36,37,38],inverse_transform:8,invert:[0,5,7,10,13,21,32,34,36,37,38],invh:[13,21,37,38],invok:[0,8,33],involv:[0,2,6,7,11,12,33,35,36,37,38,39,41],io:[0,17,19,24,26,28,30,31,32,33,41],ion:38,ip:[0,8,29,32],ipca:11,ipykernel_18986:[],ipykernel_19041:[],ipykernel_19107:[],ipykernel_19139:[],ipykernel_19152:[],ipykernel_19176:[],ipykernel_19181:[],ipykernel_19201:[],ipykernel_19294:[],ipykernel_19329:[],ipykernel_19344:[],ipykernel_19367:[],ipykernel_19394:[],ipykernel_31563:1,ipykernel_31624:6,ipykernel_31672:13,ipykernel_31707:26,ipykernel_31718:32,ipykernel_31736:35,ipykernel_31749:37,ipykernel_31761:39,ipykernel_31766:[],ipykernel_31871:40,ipykernel_74401:[],ipykernel_87501:[],ipykernel_96069:[],ipynb:[24,32],ipython:[0,5,7,9,11,14,15,24,26,27,32,33,36],iq:[6,35],iri:[8,9],irreduc:[6,35],irrelev:[5,33],irrespect:[0,32],irvin:27,isbox:[13,38],iseffici:[37,38],isn:[5,34,35],isnan:[23,41],isnul:[0,33],isomap:11,isotop:[32,35,36,37,39,40,41],issu:[1,9,25,33,34,40,41],it_arrai:[13,37],item:[0,13,32,37,38],items:[25,32],iter:[1,2,3,4,6,7,8,11,13,14,21,23,29,35,36,38,39,40,41],its:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,23,24,25,26,27,29,32,34,35,36,37,38,39,40,41],itself:[5,6,12,19,26,27,29,33,34,35,39],iv:23,ix:[23,41],j1:25,j:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,17,18,19,23,25,26,29,31,32,33,34,35,36,37,38,39,40,41],j_:6,j_lasso_sk:6,j_ridge_sk:6,j_sk:6,jackknif:[6,24,32,35],jacobian:[2,13,36,37,38],jacobian_shap:[],jakobsen:[30,32],jason:4,jax:[22,24,27,32],jax_descend_i:21,jax_descend_x:21,jax_enable_x64:21,jax_grad:21,jensen:[30,32,33,34,35,36,37,38,39,40,41],jerom:[18,26,31],ji:[12,25,39],jit:[13,37,38],jj:[0,5,6,32,34,35],jk:[0,1,6,12,25,32,38,39,40],jl:[0,32],jm:25,jmlr:41,jnp:[13,21,37,38],job:[2,8,10,41],join:[0,4,6,7,9,32,33,35,36],joint:[4,5,34,35],judg:[13,36,37],judgement:[6,26],julia:[24,25,26],jump:[26,29],junk:4,jupit:32,jupyt:[0,15,19,24,26,31,32,35],just:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],justif:[0,32],justifi:[3,10],k0:[7,36],k1:[7,36],k:[0,1,3,5,6,7,8,9,10,11,12,13,14,23,24,25,26,29,30,32,33,34,37,38,39,40,41],kaggl:[6,26,27],kajda:[23,41],kappa_d:29,karl:[30,32],karush:8,kate:32,katrin:[30,32],keep:[0,1,4,5,6,11,13,14,25,26,27,32,33,34,35,36,37,38,40,41],keepdim:[1,6,10,23,25,35,39,40,41],kei:[0,1,3,6,12,23,33,38,39,40,41],kept:[4,6,14,35],kera:[0,4,24,26,27,32],kernel:[0,1,3,24,32,33,40,41],kernel_regular:[1,3,40,41],kernel_s:4,kernelpca:11,kev:[0,32],kevin:[31,32],keyboardinterrupt:[2,3,4,23,41],keyword:[6,13,23,25,26,32,37,41],kfold:[6,35,36],kg:[1,39,40,41],ki:25,kick:[1,13,37,38,40,41],kiener:[2,41],kilomet:[6,33,34],kind:[0,2,3,4,8,12,13,14,32,33,37,38,39,41],kj:[6,12,25,33,34,35,39,40],kjm:[24,32],kkt:8,kl:29,km:[12,32,38,39],kmean:14,kmeanspoint:14,kn_k:14,know:[0,1,2,5,6,8,13,24,32,33,34,36,37,38,40,41],knowledg:[0,24,32],known:[1,3,4,5,6,7,8,9,12,25,26,27,29,31,33,34,35,36,38,39,40,41],kondev:[0,32],kp:29,kpca:11,kristin:41,kroneck:14,kuhn:8,kumar:41,kvalsund:[30,32],kwarg:[0,2,3,4,13,23,32,38,41],kwd:[0,3,4,32],kwown:[0,32],l0:[7,36],l1:[0,1,3,7,32,36,40,41],l1_l2:[1,3,40,41],l1regl:5,l2:[1,3,39,40,41],l:[0,1,2,3,5,6,7,8,10,11,12,13,19,23,25,26,29,32,33,35,36,37,38,40,41],l_1:[7,36],l_2:[7,13,27,36,37],l_:25,l_j:[12,39],l_ja:[23,41],la:[13,37],la_i:[12,39],la_k:[12,39,40],lab:[20,24,26,32,37,38],label:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,21,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],label_prob:[37,38],labelencod:[7,10,36],labels:[6,8,9],labels_shuffl:[0,1,33,39,40,41],laboratori:[28,33,34],lack:[0,32],lagari:[2,41],lagrang:[8,11],lam:[23,41],lambda:[0,1,2,3,5,6,7,8,10,12,13,17,18,21,23,26,27,29,32,33,34,35,37,38,39,40,41],lambda_0:11,lambda_1:[5,8,11,33],lambda_2:[8,11],lambda_:11,lambda_i:[8,11],lambda_iy_i:8,lambda_jy_iy_j:8,lambda_k:8,lambda_n:[5,8,33],lamda:[1,40,41],land:[0,8,33],landmark:8,landscap:[13,21,36,37,38],langl:[0,6,11,29,32,33],languag:[0,1,4,8,15,24,25,26,27,31,32,40,41],lapack:[25,32],laplac:[5,34,35],laptop:24,larg:[0,1,2,4,5,6,8,9,10,11,13,15,24,25,26,29,31,32,33,35,36,37,38,39,40,41],larger:[0,3,5,6,8,10,11,13,17,29,32,33,34,35,36,37,38],largest:[4,8,11],lasso:[0,7,24,32],lasso_sk:6,last:[0,1,2,3,4,5,6,7,8,9,10,12,13,15,17,18,22,23,25,26,29,30,32,34,37,39,40,41],latent:4,latent_dim:4,latent_point:4,latent_space_value_rang:4,later:[0,1,4,6,7,8,12,13,14,15,23,24,26,27,32,36,37,38,39,40,41],latest:[4,24],latest_checkpoint:4,latex:32,latter:[0,3,6,7,8,11,13,16,17,25,26,29,32,33,34,35,36,37,38],lattic:[12,38,39],law:[0,32],lax_numpi:21,layer:[0,4,13,21,23,27,32,37,38],lbfg:[7,9,10,11,36],lcc:[5,6,34,35],lda:11,ldot:[0,6,11,19,26,32,35,36],le:[5,7,10,13,17,21,29,33,34,36,37,38],lead:[0,1,3,5,6,7,8,9,10,11,12,13,16,17,25,29,32,33,34,35,36,37,38,39,40,41],leaf:9,leaki:[1,27,40,41],leakyrelu:4,lear:[13,36,37],learn:[3,4,5,6,7,8,9,10,12,18,22,25,28,30,31],learnabl:3,learner:10,learnig:32,learning_r:[3,8,10,21],learning_rate_init:[0,1,23,32,39,40,41],learning_schedul:[13,21,37,38],learnt:[26,27],least:[0,7,8,10,11,15,16,17,19,21,22,24,25,27,29,35,36],leat:[13,21,37,38],leav:[0,1,3,5,6,9,11,32,34,35,36,40,41],lectur:[0,1,5,10,11,12,13,15,17,21,22,24,25,26,27,28,30,31,37,38],lecture_11_backpropag:41,lecturenot:[0,17,19,24,26,31,32],left:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,16,17,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],leftarrow:[8,12,39,40],legend:[0,2,3,4,5,6,7,8,9,10,13,32,33,34,35,36,37,38,41],len:[0,1,2,3,4,5,6,8,9,10,11,12,23,25,32,33,34,35,37,38,39,40,41],len_index:[0,32],length:[0,1,2,3,4,8,9,13,16,24,32,33,36,37,38,39,40,41],length_of_sequ:4,leq:[0,5,7,8,13,14,17,29,32,33,34,36,37],less:[0,1,3,4,5,6,8,9,13,24,29,32,33,34,35,36,37,38,40,41],lessen:[1,40,41],let:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,23,25,29,32,33,34,35,36,37,38,39,40,41],letter:[0,16,25,29,32,33],level:[0,1,5,6,9,24,25,26,27,28,30,32,33,35,40,41],li:[8,11,32],lib:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],liblinear:[8,10],librari:[0,1,2,3,4,5,6,9,10,11,15,21,22,25,26,27,29,31,33,34,35,36,39,40,41],licens:[0,1,15,24,26,27,32,35,40,41],lie:[0,6,11,29,33,35],life:[0,1,8,12,32,38,39,40,41],lifetim:[13,37,38],like:[0,1,2,3,4,5,6,7,9,10,11,12,13,15,16,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],likelihood:[0,1,5,9,32,33,37,38,39,40,41],lim_:29,lima:[30,32],limit:[0,5,6,7,8,11,12,21,25,26,27,32,33,39],lin_clf:8,lin_model:[0,33],lin_reg:9,linalg:[0,2,5,6,8,11,13,21,25,29,32,33,34,35,36,37,38,39,41],line1:8,line2:8,line2d:[13,21,37],line3:8,line:[0,2,3,4,6,8,9,10,11,13,15,21,23,26,32,33,34,35,36,37,38,41],linear:[1,3,5,6,7,9,10,11,12,17,18,21,23,24,26,29,35,37,38,39,40,41],linear_model:[0,5,6,7,8,9,10,11,13,32,33,34,35,36,37,38,39],linear_regress:[6,23,35,41],linearli:[5,33],linearloc:[6,13,26,36,37],linearregress:[0,6,7,9,32,33,34,35,36],linearsvc:8,lineat:34,liner:[1,3,39,40,41],linerar:10,linewidth:[0,2,4,6,8,9,10,26,35,41],link:[0,4,9,12,24,26,27,30,32,39,40],linlag:[5,34],linpack:[25,32],linreg:[0,32],linspac:[0,2,3,4,6,8,9,10,13,15,16,21,25,29,32,33,34,35,37,38,41],linu:4,linux:[0,1,15,24,26,32,40,41],liquid:[0,32],list:[0,1,2,3,4,9,23,24,26,27,32,33,37,40,41],listcomp:[],listedcolormap:[9,10],literatur:[1,7,14,31,35,36,40,41],littl:[1,3,9,12,39,40,41],live:8,ll:[0,29,32,33],lle:[0,33],lloyd:[4,14],lmb:[0,2,5,6,34,35,36,41],lmbd:[0,1,3,23,32,39,40,41],lmbd_val:[0,1,3,23,32,39,40,41],lmbda:[13,36,37],ln:[1,13,36,37,39,40],load:[0,1,4,6,7,9,10,26,33,36,40,41],load_boston:[0,33],load_breast_canc:[1,7,9,10,11,23,36,40,41],load_data:[3,4],load_digit:[1,3,23,39,40,41],load_iri:[8,9],loc:[0,3,6,7,8,9,10,32,35,36],local:[0,1,2,3,4,7,12,13,32,33,36,37,38,39,40,41],locat:[2,3,8,41],lock:[3,4],log10:[0,5,6,23,34,35,36,41],log:[0,1,2,4,5,6,7,9,10,11,13,23,25,26,27,32,33,34,35,36,37,38,39,40,41],log_:[0,32],log_clf:10,logarithm:[0,5,7,25,32,34,35,36],logbook:[26,27],logic:[0,1,9,32,40,41],logist:[0,1,2,8,9,10,11,12,13,21,23,24,33],logistic_predict:[37,38],logistic_regress:[23,41],logisticregress:[7,9,10,11,36,38,39],logit:[7,36],logreg:[7,9,10,11,36,38,39],logspac:[0,1,3,5,6,23,32,34,35,36,39,40,41],longer:[2,3,8,10,14,25,27,29,32,41],loocv:[6,35,36],look:[0,1,2,3,4,5,6,7,8,9,10,11,13,18,21,23,25,26,27,29,32,33,34,35,36,37,38,40,41],loop:[1,4,6,10,12,14,23,24,25,32,35,39,40,41],lose:[1,39,40,41],loss:[0,1,3,4,5,6,7,8,10,11,13,25,26,27,32,34,35,38,39,40,41],loss_fil:4,lossfil:4,lost:4,lot:[0,1,4,6,23,33,35,37,38,40,41],low:[0,6,9,10,11,26,27,32,33,35],lower:[0,1,3,6,9,10,16,23,25,33,40,41],lowercas:[25,32],lowest:[9,13,29,37,38],lr:[1,3,4,10,40,41],lrelu:[23,41],lstat:[0,33],lstm:4,lstm_2layer:4,lstsq:[0,32,33],lt:[6,35],lu:[0,5,32,33],lubksb:25,luckili:[2,41],ludcmp:25,lux:25,lvert:[1,39,40,41],lw:[0,32],m1:[3,4],m:[0,1,2,3,5,6,8,9,10,11,12,13,21,25,28,29,30,31,32,33,34,35,36,37,38,39,40,41],m_1:14,m_:[9,12,39],m_h:[0,32],m_k:14,m_l:[12,39],m_n:[0,32],m_p:[0,32],m_t:[13,37,38],ma:11,machin:[1,3,4,5,6,7,9,10,11,12,15,21,22,25,28,31,33,34,35,38,39,40,41],machinelearn:[0,6,17,19,20,24,26,28,30,31,32,33,36,37,38],mackai:31,made:[0,1,3,4,5,6,7,9,11,12,18,26,27,32,33,36,38,39,40,41],mae:[0,32],magic:4,magnitud:[1,6,7,13,33,34,36,37,38,39,40,41],mai:[0,1,2,3,5,6,7,8,9,11,12,13,18,21,22,23,24,25,26,27,29,33,34,35,36,37,38,39,40,41],mail:[28,30],main:[0,1,3,4,5,6,7,9,25,26,27,31,32,33,36,40,41],mainli:[0,5,6,7,9,32,33,34,35,36],maintain:[6,33,35],major:[1,6,9,10,13,25,32,35,36,37,38,39,40,41],make:[1,2,3,4,5,6,7,8,11,12,13,21,23,24,25,26,27,29,31,34,35,36,37,38,39,40,41],make_axes_locat:6,make_classif:[38,39],make_moon:[8,9,10],make_pipelin:[0,6,10,33,35],make_vjp:[2,13,38],makedir:[0,6,7,9,32,33,35,36],makeplot:[0,32],malcondit:25,malign:[1,7,9,36,40,41],mammographi:[5,34,35],manag:[0,2,3,15,24,26,32,41],mandatori:[30,32],mani:[0,1,3,4,5,6,7,8,9,11,13,14,21,22,23,24,25,26,27,29,31,32,33,34,35,36,37,38,40,41],manifold:11,manner:3,manual:[6,33,34,36],map:[0,1,2,6,7,8,11,12,14,26,29,32,36,38,39,40,41],margin:[0,5,8,32],marit:[0,32],mariu:41,mark:32,marker:[0,7,21,25,32,33,36],markov:[24,32],marsaglia:29,mass:[0,1,5,13,33,37,38,39,40,41],massag:[0,32],masses2016:[0,32],masses2016ol:[0,32],masses2016tre:0,masseval2016:[0,32],master:[6,19,20,26,28,30,32,36,37,38,41],mat1100:[24,32],mat1110:[24,32],mat1120:[24,32],mat:[24,32],match:[0,1,4,5,13,14,32,33,36,37,38,40,41],materi:[4,5,7,13,17,25,30,37,38,39,40],math:[3,7,12,13,21,23,25,29,31,32,35,36,37,38,39,41],mathbb:[0,4,5,6,7,8,11,12,13,14,17,18,19,25,26,29,32,33,34,35,36,37,38,39],mathbf:[0,5,6,7,8,13,18,19,21,25,26,32,33,34,35,36,37,38],mathcal:[1,5,6,7,13,19,26,34,35,36,37,39,40,41],matheemat:3,mathemat:[0,6,11,12,13,17,24,25,29,31,32,34,35,36,40],mathemati:32,mathrm:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,17,18,19,23,26,29,32,33,34,35,36,37,38,39,40,41],matmul:[1,2,5,23,34,39,40,41],matnat:31,matplotlib:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],matplotlibdeprecationwarn:[6,13,26,37],matric:[0,1,3,4,6,7,8,11,13,16,17,23,24,33,36,37,40,41],matrix:[0,2,3,4,6,7,8,10,13,15,16,17,18,19,21,22,23,26,27,29,35],matshow:[1,40,41],matter:[2,3,13,33,36,37,38,41],max:[0,1,2,3,4,9,10,12,13,21,23,30,32,36,37,38,39,40,41],max_depth:[0,9,10],max_diff1:[2,41],max_diff2:[2,41],max_diff:[2,41],max_it:[0,1,7,8,11,13,23,32,36,37,38,39,40,41],max_iter:14,max_leaf_nod:10,max_queue_s:[3,4],max_sampl:10,maxdegre:[0,6,10,33,35],maxdepth:10,maxim:[1,4,5,7,8,11,34,35,36,39,40],maximum:[0,1,2,3,5,7,8,9,10,13,14,23,32,33,37,38,39,40,41],maxpolydegre:[5,6,34,35,36],maxpooling2d:3,mbox:[5,6,18,26,33,34,35],mccorduck:32,mcculloch:[12,38,39],md:[11,20,26,37,38],mdoel:4,mean:[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,27,29,35,37,38,39,40,41],mean_absolute_error:[0,32],mean_divisor:14,mean_i:29,mean_matrix:14,mean_squared_error:[0,4,6,7,10,32,33,35,36],mean_squared_log_error:[0,32],mean_vector:14,mean_x:29,meaning:[0,4,7,32,36],meansquarederror:[0,32],meant:[2,3,7,10,13,36,37,38],measur:[0,1,2,5,6,9,11,12,14,19,26,27,29,32,33,34,35,39,40,41],mechan:[0,4,29,32,41],median:[0,32,33],medicin:[12,38,39],medium:[4,8,13,27,37,38],medv:[0,33],meet:[0,30],mehta:[0,27,32,33,34],memori:[3,4,11,12,13,21,25,32,37,38,39],mention:[0,12,13,26,27,29,32,36,37,38,39],mere:[0,15,27,32],meshgrid:[2,5,6,8,9,10,11,23,26,33,41],messag:[5,13,37,38],messi:[2,41],met:[0,3,8,32,33],metal:[3,4],meteorolog:9,meter:[6,33,34],method:[0,1,2,3,4,5,7,8,11,12,14,16,17,18,19,22,24,25,27,29,31,32,33,34,39,40],metion:[6,26],metric:[0,1,3,6,7,9,10,14,15,16,23,32,33,35,36,39,40,41],metropoli:[24,32],mev:[0,29,32],mgd:[13,37,38],mglearn:[24,32],mgrid:[13,37],mhjensen:[1,2,3,6,7,8,11,21,23,33,36,39,40,41],mi:10,mia:[30,32],michael:[27,39,40,41],michigan:[32,33,34,35,36,37,38,39,40,41],microsoft:31,mid:[1,39,40,41],midel:4,midnight:[16,17,18,19,20,21,22,23],midpoint:9,might:[0,1,2,4,6,9,13,33,34,36,37,38,40,41],mild:9,millimet:[6,33,34],million:[0,32,33,37,38],mimic:[12,38,39],min:[0,2,5,8,9,32,41],min_:[0,2,5,14,17,32,33,34,41],min_samples_leaf:9,mind:[0,6,13,26,32,33,34,35,36,37],mindboard:4,mine:[24,32],mini:[1,11,12,13,21,22,27,36,39,40,41],minibatch:[1,11,13,23,39,40,41],minibathc:[13,37,38],miniforge3:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],minim:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,17,18,21,23,26,33,34,35,37,38,39,40],minima:[0,1,7,13,32,36,37,38,39,40,41],minimum:[0,1,2,6,8,9,11,13,33,35,36,37,38,39,40,41],minmaxscal:[0,23,33,41],minor:[6,13,26,29,37],minst:[1,40,41],minu:[7,36],mirror:9,misc:[6,26],misclassif:[8,9,10],misclassifi:[8,10],miser:0,mismatch:[1,40,41],miss:[0,7,10,33],mistak:4,mit:31,mix:[1,2,32,40,41],mixtur:[13,21,37,38],mk:[9,25],mkdir:[0,6,7,9,32,33,35,36],ml:[0,1,10,13,25,26,27,33,36,37,38,40,41],mlab:29,mle:[5,7,36],mlp:[1,38,40,41],mlpclassifi:[1,23,38,39,40,41],mlpregressor:[0,32],mm:25,mn:[12,29,38,39],mnist:[1,11,23,27,39,40,41],mod:29,mode:[23,28,30,32,41],model:[2,3,5,7,8,9,10,11,13,14,15,16,18,19,21,23,24,26,29,31,33,34,35,36,37],model_select:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],moder:10,modern:[0,6,7,24,32,35,36],modif:[2,12,13,37,38,39,41],modifi:[0,1,3,5,7,8,10,12,13,32,33,34,36,37,38,39,40,41],modul:[0,7,11,25,32,34,36],modular:29,modulo:29,moe:[11,33],moment:[5,6,13,21,23,29,34,35,41],moment_correct:[23,41],momentum:[22,23,27,41],momentum_schedul:[23,41],monitor:[13,21,37,38],monoton:[5,12,29,34,35,38,39],mont:[0,6,24,29,31,32,35],moor:[5,6,34],more:[0,1,2,4,5,7,8,9,10,11,12,13,14,18,22,23,24,27,29,39],moreov:[0,3,32],morten:[30,32,33,34,35,36,37,38,39,40,41],most:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,24,26,29,32,33,34,35,36,37,38,39,40,41],mostli:[1,11,40,41],motion:[0,13,32,37,38],motiv:[1,4,40,41],move:[0,4,5,6,7,9,12,13,14,21,23,26,29,32,33,34,35,36,37,38,39,41],mpl:[0,7,32,36],mpl_toolkit:[2,6,13,26,36,37,41],mplot3d:[2,6,13,26,36,37,41],mplregressor:[1,39,40,41],mse:[0,4,5,6,9,10,15,16,17,19,23,26,27,32,33,34,35,36,41],mse_simpletre:10,mselassopredict:[5,34],mselassotrain:[5,34],mseownridgepredict:[6,34],msepredict:[5,34],mseridgepredict:[0,5,6,34,36],msetrain:[5,34],msg:[0,32,33],msle:[0,32],mt:[7,12,36,38,39],mu0:29,mu1:29,mu2:29,mu:[0,6,11,13,29,32,35,37,38],mu_1:33,mu_:[6,29,33,34,35],mu_i:[6,33,34,35],mu_n:11,mu_x:29,much:[0,1,2,3,4,5,6,8,9,10,11,12,13,25,26,29,32,33,34,35,37,38,39,40,41],multi:[0,1,3,7,23,24,32,33,36,41],multiclass:[1,7,36,39,40],multidimension:[11,12,32,38,39],multilay:[1,40,41],multinomi:[7,36],multipl:[2,4,5,6,7,12,13,29,33,35,36,37,38],multipli:[3,5,6,11,13,23,25,29,33,34,35,37,41],multiplum:8,multivari:[0,2,10,11,24,29,32,41],multivariate_norm:[11,14],murphi:[11,31,32,34],must:[0,1,2,5,6,8,10,12,13,14,29,32,33,35,36,37,38,39,40,41],mut_add:2,mutabl:2,mutat:[7,36],mutual:[1,3,6,13,35,36,37,40,41],mx_:29,myenv:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],myriad:[0,15,24,32],mz1:29,mz2:29,n1:25,n2:25,n:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],n_0:[12,29,38,39],n_:[1,2,3,8,12,29,38,39,40,41],n_boostrap:[6,10,35],n_bootstrap:[6,35],n_categori:[1,3,23,39,40,41],n_cluster:14,n_compon:11,n_epoch:[13,21,23,37,38,41],n_estim:10,n_examples_to_gener:4,n_featur:[1,23,39,40,41],n_filter:3,n_hidden:[2,41],n_hidden_neuron:[0,1,23,32,39,40,41],n_i:29,n_input:[0,1,3,23,33,39,40,41],n_instanc:9,n_iter:[36,37],n_iter_i:[7,11,36],n_job:10,n_k:14,n_l:[12,29,38,39],n_layer:[1,40,41],n_m:9,n_neuron:[1,40,41],n_neurons_connect:3,n_neurons_layer1:[1,40,41],n_neurons_layer2:[1,40,41],n_point:14,n_sampl:[6,8,9,10,14,35,38,39],n_split:[6,35,36],n_step:4,n_t:[2,41],n_x:[2,41],nabla:[1,13,36,37,39,40,41],nabla_:[2,13,21,36,37,38,41],nabla_w:[13,37,38],nafter:[23,41],nag:[13,37,38],naimi:[0,32],naiv:[7,36],naive_kmean:14,najafi:[30,32],nall:[0,32],name:[0,1,3,4,5,6,7,8,9,10,12,13,14,15,23,24,25,26,29,30,32,33,34,35,36,37,38,39,40,41],nameerror:[6,10,15,26,35,36,37],nan:[23,41],narrow:[13,37,38],nary_f:[2,13,38],nary_op_arg:[2,13,38],nary_op_kwarg:[2,13,38],nary_oper:[2,13,38],nation:[1,5,33,34,35,39,40,41],nativ:[24,32],natur:[0,1,4,8,9,12,13,26,27,29,31,32,36,37,38,39,40,41],navier:[12,38,39],nb:29,nb_:25,nbconvert:32,nd:14,ndarrai:[2,6,23,41],ndef:13,nderiv:[23,41],ne:[9,10,25,29,33],nearest:[1,3,6,11,39,40,41],nearli:[13,36,37],neat:32,neatli:37,neccesari:[6,35],necess:[2,41],necessari:[0,1,3,4,8,14,23,32,39,40,41],necessarili:[0,4,11,29,32],necesserali:[5,34,35],neck:[7,36],need:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,22,23,25,27,29,33,34,35,36,37,38,39,40,41],neg:[0,1,3,5,6,7,10,13,25,29,32,34,35,36,37,38,39,40,41],neg_mean_squared_error:[6,35,36],neglect:29,neglig:29,neighbor:[3,6,11],neither:[4,13,37,38],neq:[13,14,29,36,37],nerual:[23,41],nervou:[12,38,39],nest:[2,9,12,38,39],nesterov:[13,37,38],net:[2,4,12,38,39,41],netlib:[25,32],network:[0,9,13,21,24,31,33,37],neural:[0,13,21,24,31,33,36,37],neural_network:[0,1,2,23,32,38,39,40,41],neuralnetwork:[1,39,40,41],neuralnetworksanddeeplearn:[39,40,41],neuron:[1,2,3,4,12,40,41],neutral:[0,32],neutron:[0,32],never:[1,3,4,6,9,29,35,39,40,41],new_box:[2,13,38],new_chang:[13,21,37,38],new_hobbit:32,new_root:[13,38],new_trac:[13,38],new_tracing_count:[3,4],newaxi:[0,3,6,9,35,36],newli:[0,32],newton:[1,7,8,13,29,39,40],next:[0,1,2,3,4,5,6,8,9,13,14,21,22,23,32,33,34,36,37,39,40,41],next_guess:[13,37],next_input:4,nf8_grad:13,nfrom:13,ng:[1,39,40,41],ngini:9,nhow:[23,41],ni:14,nice:[0,1,5,11,32,33,34,35,39],nielsen:[27,39,40,41],nimport:13,niter:[13,21,36,37,38],nitric:[0,33],nlambda:[0,5,6,34,35,36],nlp:31,nm:29,nm_n:[0,32],nmse:[6,35],nn:[2,5,6,12,25,34,35,38,39,41],nn_model:[1,40,41],nnmin:[2,41],node:[1,2,3,9,10,12,23,27,38,39,40,41],node_constructor:[],nois:[0,4,5,6,8,9,10,13,15,16,19,26,32,33,34,35,36,37],noise_dimens:4,noisi:[1,6,19,26,35,39,40,41],non:[0,1,3,4,5,6,7,9,10,11,12,13,14,21,25,26,29,32,33,34,35,36,37,38,39,40,41],noncommerci:[27,35,41],none:[0,1,2,3,4,5,9,10,13,23,29,32,33,34,35,36,37,38,40,41],nonlinear:[3,6,8,9,11,12,35,38,39],nonneg:[6,9,13,35,36,37],nonparametr:6,nonsens:29,nonsingular:25,nonumb:[3,7,8,13,21,25,36,37,38],nonxla:[3,4],nor:[1,4,13,37,38,40,41],norm:[0,1,5,6,8,11,13,17,32,33,34,35,36,37,38,39,40,41],normal:[3,4,5,6,7,8,9,10,11,12,13,15,16,18,19,21,23,24,25,26,27,29,32,33,34,36,37,38,39],normali:[25,32],norvig:32,norwai:[6,26,27,32,38],notat:[0,2,5,6,13,14,21,29,32,33,34,35,37,41],note:[0,1,2,3,4,5,6,7,8,11,12,13,14,15,16,19,22,23,24,25,26,27,29,31,32,36,37,38,39,40,41],notebook:[0,1,3,9,15,24,26,27,32,35,39,40,41],notesexercise5week452022:32,notessep14:[19,36],notessep28:37,noth:[1,2,5,8,12,14,23,29,33,34,38,39,40,41],notic:[4,5,12,13,25,29,32,34,37,38,39],notimplementederror:[23,41],notion:3,noutput:[23,41],novel:[3,6,10,36],novemb:[1,23,28,30,32,40,41],now:[0,2,4,5,6,7,8,10,11,12,14,15,16,17,22,23,24,25,26,27,29,32,33,36,39],nowadai:[0,1,3,9,24,32,40,41],nox:[0,33],np:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],npr:[2,41],nprint:13,nsampl:[6,9,35,36],nt:[2,41],nthi:[0,32],ntrained_model:6,nu:29,nuclear:[5,33],nuclei:[0,29,32],nucleon:[0,32],nucleu:[0,32],num:4,num_allow_arg:[0,32],num_coordin:[2,41],num_equ:[23,41],num_hidden_neuron:[2,41],num_it:[2,41],num_iter:21,num_neuron:[2,41],num_neurons_hidden:[2,41],num_not:[23,41],num_output:[3,4],num_point:[2,41],num_tre:10,num_valu:[2,41],number:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,22,23,25,26,27,28,30,32,34,35,36,39,40],numberid:[7,36],numberparamet:3,numer:[0,5,6,9,10,11,12,13,17,21,24,25,31,32,33,34,35,36,37,38,39],numpi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,23,24,26,29,33,34,35,36,39,40,41],numpy_vjp:[],numpy_wrapp:[],nunmpi:[5,33],nvalu:9,nx:[2,13,41],nx_test:6,nx_train:6,nx_train_mean:6,ny:[23,29,41],ny_pr:6,ny_train:6,ny_train_mean:6,o:[0,6,7,8,9,11,15,21,25,30,31,32,33,36],obei:[6,11,13,33,34,35,37],object:[0,1,2,4,6,8,10,13,23,25,32,33,36,37,38],obliqu:[5,33],observ:[0,1,3,5,6,7,8,9,10,11,12,13,14,29,34,35,36,37,38,39,40,41],obtain:[0,1,5,6,7,8,9,10,12,13,14,17,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],obviou:[5,6,11,29,33],obviouli:32,obvious:[0,4,5,6,21,22,25,27,32,34,35],oc:33,occupi:[0,33],occur:[0,6,8,9,25,29,32],oct:[27,41],octob:[20,21,22,23,28,30,32,38],od:0,odd:[0,3,7,32,33,36],odenum:[2,41],odesi:[2,41],oen:0,off:[1,3,4,5,9,13,19,29,34,35,37,38,39,40,41],offer:[6,11,24,25,28,30,32,35],offic:[30,32],offici:[28,32],often:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,16,24,25,29,32,33,35,36,37,38,39,40,41],ofter:[25,32],og:[23,41],ol:[0,13,15,16,17,18,22,27,32,33],old:[1,5,10,13,34,35,36,37,39,40,41],ols_fit:35,ols_fit_beta:35,ols_sk:6,ols_svd:6,olsbeta:[0,5,34],omega:[2,3,6,41],omega_0:3,omit:[0,5,32,33,34,35],on_train_batch_begin:[3,4],onc:[1,6,9,11,13,35,36,37,38,40,41],one:[0,1,3,4,5,6,7,8,9,10,11,13,14,19,21,22,23,24,25,26,27,29,30,32,33,34,35,38,40],onehot:[1,23,39,40,41],onehot_vector:[1,39,40,41],onehotencod:9,ones:[0,2,5,6,8,9,10,11,13,21,23,25,26,32,33,34,35,36,37,41],ones_lik:4,onl:3,onli:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],onlin:[11,28],onto:[5,11,33],op_nam:[3,4],open:[0,1,4,6,7,9,15,24,26,28,30,32,35,36,40,41],oper:[0,1,3,5,6,10,11,12,13,15,24,29,32,33,34,35,37,38,39,40,41],operation:29,oplu:29,opmiz:[13,37,38],opportun:[0,32],oppos:[6,13,37,38],opposit:[1,5,8,33,40,41],opt:[1,5,27,32,34,40,41],optim:[0,2,3,4,5,6,7,9,10,11,14,15,16,17,18,19,21,22,23,26,27,34,35],optimis:[1,3,40,41],optimizer_v2:3,option:[0,1,3,5,6,7,8,11,21,23,25,26,27,33,34,35,36,39,40,41],optionalxlacontext:[3,4],optmiz:[1,8,13,21,33,37,38,39,40,41],oral:32,orang:0,order:[0,1,2,3,5,6,7,8,9,10,11,12,15,16,22,23,25,26,27,29,32,33,34,35,36,39,40,41],ordinari:[0,2,3,7,11,13,15,16,17,19,21,22,24,27,35,36,37,38],ordinrari:35,oreilli:31,org:[0,3,4,7,11,21,24,25,31,32,36,37,38,41],organ:[6,7,10,25,35,36],orient:[1,5,23,29,33,34],origin:[0,3,5,6,8,11,12,13,25,32,33,35,37,38,39],orthogn:[5,33],orthogon:[0,5,6,8,11,13,17,25,32,33,34,37],orthonorm:[5,33,34],os:[0,1,4,5,6,7,8,9,30,32,33,34,35,36,40,41],oscar:[1,40,41],oscil:[3,13,37,38],oslo:[0,15,24,26,27,28,30,32,33,34,35,36,37,38,39,40,41],osx:[0,15,24,26,32],other:[0,1,2,3,5,6,7,8,10,13,14,15,19,24,26,27,28,29,30,31,34,35,37,40],otherwis:[0,1,4,7,13,21,25,27,32,33,36,37,38,39,40,41],ouput:[5,7,12,34,35,36,39,40],our:[1,2,3,6,7,8,9,10,12,14,15,16,17,18,19,21,22,23,24,25,26,27,29,34,35,38],ourmodel:0,ourselv:[0,5,6,8,11,13,32,33,34,35,36,37],out1:[],out2:[],out:[0,1,2,4,5,6,7,8,9,10,11,12,13,16,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],out_deriv:[23,41],out_fil:9,outcom:[0,7,9,10,12,29,33,36,39],outdoor:9,outer:[6,12,13,39,40],outfil:4,outgrad:2,outlier:[0,8,32,33],outlin:[6,10,11,35],outlook:9,outperform:10,output:[0,1,3,4,5,6,7,8,9,10,12,13,16,23,25,26,27,29,32,33,34,35,36,37,38,39],output_bia:[1,23,39,40,41],output_bias_gradi:[1,39,40,41],output_func:[23,41],output_nod:[23,41],output_shap:4,output_weight:[1,23,39,40,41],output_weights_gradi:[1,39,40,41],outputlayer1:[12,38,39],outputlayer2:[12,38,39],outsid:4,over1:[13,37,38],over:[0,1,3,4,5,6,9,10,12,13,21,25,26,32,33,34,35,36,37,38,39,40,41],overal:[1,10,39,40,41],overcast:9,overcom:[12,13,37,38,39],overdetermin:[0,32],overfit:[0,1,3,6,9,10,13,21,23,35,37,38,39,40,41],overflow:[1,5,34,35,39,40,41],overflowerror:[23,41],overhead:[12,39],overlap:[3,7,8,9,36],overlin:[0,5,6,9,10,11,14,25,32,33,34,35],overst:[0,32],overtrain:4,overview:[3,36],overwritten:[23,41],own:[4,5,6,8,12,13,21,22,23,24,25,26,34,35,37,38,39,40,41],owner:[0,33],ownmsepredict:0,ownmsetrain:0,ownridgebeta:[0,6,34],ownypredictridg:0,ownytilderidg:0,oxid:[0,33],p0:[2,41],p1:[2,41],p:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,23,25,29,32,33,34,35,36,37,39,40,41],p_:[2,4,8,9,41],p_hidden:[2,41],p_i:[5,29,34,35],p_j:29,p_n:29,p_output:[2,41],p_x:29,pack:[0,32],packag:[0,1,2,3,4,5,6,7,8,11,13,15,21,22,23,24,26,27,29,33,34,36,37,38,39,40,41],pad:[3,4],page:[0,24,32],pai:[0,1,9,13,37,38,40,41],pair:[0,2,3,9,24,29,32,33,41],pamilla:32,panda:[0,4,5,6,7,9,11,15,24,26,34,35,36],panel:32,paper:[1,40,41],paradigm:[0,32],parallel:[3,4,10,13,21,24,25,32,37,38],param:[2,4,41],param_distribut:36,param_grid:36,paramat:[2,41],paramet:[0,1,2,3,4,5,6,7,8,9,10,12,13,16,17,18,19,21,22,23,26,27,29,34,35,39,40,41],parameter:[0,6,10,26,32,33],parametr:[0,6,15,16,32,33,35],paramt:[3,5,34,35],parent:2,parent_argnum:[],parser:[0,32],part:[0,1,3,5,6,10,17,18,21,22,23,25,28,29,30,32,34,35,38,40,41],partial:[0,1,5,6,7,8,10,11,12,13,16,29,32,33,34,35,36,37,39,40],particip:[24,28,30,32],particl:[0,4,13,29,32,37,38],particular:[0,1,2,3,5,6,9,10,11,12,13,16,26,29,31,32,33,34,35,36,37,38,39,40,41],particularli:[5,6,8,11,13,21,29,33,35,36,37,38],partit:[1,4,9,39,40,41],partli:[6,32],pass:[2,3,12,14,23,36],password:[26,27],past:[10,29],patch:[6,29,35],path:[0,4,6,7,9,15,24,32,33,35,36],pathcollect:21,patient:[7,36],patter:4,pattern:[0,3,4,12,28,31,32,38,39],pauli:[0,32],pc:[11,24],pca:[0,7,24,32,33,36],pcolor:6,pcolormesh:6,pd:[0,4,5,6,7,9,11,32,33,34,35,36],pde:[2,41],pdf:[0,3,4,5,6,9,19,20,26,27,31,32,34,35,36,37,41],pedagog:[0,32,33],penal:[6,33,34,35],penalti:[6,13,26,33,34,35,36,37],penros:[5,6,34],pentagon:[13,36,37],peopl:[0,1,9,13,24,33,37,38,39,40,41],per:[0,1,6,28,30,32,33,35,40,41],perc_print:[23,41],percentag:[0,10,11,23,30,33,41],perceptron:[0,1,7,32,36,41],peregrin:32,perfect:[0,1,13,21,32,37,38,39,40,41],perfectli:[4,6,35],perform:[0,2,3,4,5,6,8,10,11,12,13,14,15,16,17,19,21,23,24,25,26,27,29,32,33,34,35,36,37,38],performac:4,perhap:[0,5,13,32,33,34,36,37],perimet:[1,9,40,41],period:[1,4,29,39,40,41],permut:11,persist:[13,37,38],person:[5,6,7,28,30,32,33,34,35,36],perspect:31,pertin:[12,27,39,40],petal:[8,9],peter:31,phantom:29,phase:[6,12,38,39],phd:41,phenomena:29,phi:8,phi_k:8,philosophi:[13,37],phone:[30,32],photo:4,php:27,phrase:[0,32],physic:[0,1,4,7,12,13,27,29,30,31,32,33,34,35,36,37,38,39,40,41],physicist:27,pi:[2,3,5,6,7,9,12,13,29,34,35,36,37,38,39,41],pick:[1,9,10,11,13,14,37,38,39,40,41],pickl:[1,40,41],pictur:[0,32],pie:[24,32],piec:[11,14],pillow:[0,15,24,26,32],pinv:[5,6,13,21,33,34,35,37,38,39],pip3:[0,1,15,26,32,40,41],pip:[0,1,15,24,26,32,40,41],pipelin:[0,6,8,10,33,35],pippin:32,pit:4,pitfal:[6,33,34],pitt:[12,38,39],pixel:[1,3,4,39,40,41],pixel_height:[1,3,39,40,41],pixel_width:[1,3,39,40,41],place:[0,4,6,8,13,25,26,32,35,36,37],plai:[0,3,4,5,6,8,11,24,32,33,34,35,36],plain:[8,10,12,13,14,21,22,27,36,37,39],plan:[6,9,30,31,32],plane:[8,9],plateau:[5,34],platform:[3,4,24,32],plausibl:[12,38,39],pleas:[6,7,11,13,26,27,30,32,33,36,37,38],plenti:[1,40,41],plethora:[3,12,38,39],plot:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,24,25,26,27,29,32,33,34,37,38,39,40,41],plot_confusion_matrix:[7,10,36],plot_count:6,plot_cumulative_gain:[7,10,36],plot_data:[1,40,41],plot_dataset:8,plot_decision_boundari:[9,10],plot_import:10,plot_max:4,plot_min:4,plot_model:4,plot_numb:4,plot_predict:8,plot_regression_predict:9,plot_result:4,plot_roc:[7,10,36],plot_surfac:[2,6,13,26,37,41],plot_train:9,plot_tre:[9,10],plqvvvaa0qudcjd5baw2dxe6of2tius3v3:[],plt:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],plu:[0,3,5,7,32,33,34,36],pm:[8,35],pmatrix:[2,41],pml:31,pn:3,png:[0,4,6,7,9,32,33,35,36],point:[0,1,2,3,5,6,7,8,9,10,11,13,14,15,16,17,19,21,22,23,25,26,29,30,32,33,35,36,37,38,39,40,41],point_1:4,point_2:4,poisson:[24,29,32],poli:[6,8,35,36],poly100_kernel_svm_clf:8,poly3:0,poly3_plot:0,poly3dcollect:[13,37],poly_degre:[23,41],poly_featur:[8,9],poly_features10:9,poly_fit10:9,poly_fit:9,poly_kernel_svm_clf:8,polydegre:[0,5,6,10,33,34,35],polygon:[13,36,37],polym:[12,38,39],polymi:26,polynomi:[0,5,6,7,8,9,10,11,15,16,17,19,21,22,26,27,32,33,35,36],polynomial_featur:[6,35],polynomial_svm_clf:8,polynomialfeatur:[0,6,8,9,33,35,36],polytrop:[0,6,32,35],pool:3,pool_siz:3,poor:[1,13,21,36,37,38,40,41],poorli:[0,33],pop:[],popul:[0,5,32,33,34,35],popular:[0,1,3,6,7,8,9,11,12,15,24,25,26,29,32,33,36,38,39,40,41],popularli:[0,32],portabl:10,portion:[11,13,21,37,38],pose:[0,4,5,6,11,29,32,35],posit:[0,1,2,3,5,7,8,10,11,13,14,17,23,25,29,32,33,34,35,36,37,38,39,40,41],possibl:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40],possible_gradient_typ:[3,4],possible_gradient_types_non:[3,4],possibletapegradienttyp:[3,4],posterior:[5,34,35],postpon:[0,32,33],postscript:[26,27],postul:[5,34,35],potenti:[0,3,5,6,12,13,32,33,34,35,37,38,39],pott:[12,38,39],power:[0,1,5,6,8,9,12,13,32,33,35,37,38,39,40,41],pp:[5,6,18,34,35,36],practic:[0,5,6,7,8,26,27,29,33,34,35,36],practition:[0,1,3,32,40,41],pre:32,preced:[1,11,12,29,38,39,40,41],preceed:[4,23,41],preceq:8,precis:[0,2,5,11,13,25,26,27,29,32,33,34,35,37,38,41],pred:[6,35,37,38],pred_train:[23,41],pred_val:[23,41],predicit:0,prediciton:[23,41],predict:[0,1,5,6,7,8,9,10,15,16,23,24,26,31,32,33,34,35,36,38,39,40,41],predict_prob:[1,39,40,41],predict_proba:[7,10,36,38,39],predictor:[0,5,6,7,9,10,11,32,33,34],prefer:[0,1,6,8,9,11,13,15,24,26,27,32,40,41],prepar:[0,6,25,26,27,32,33],preprocess:[0,4,6,7,8,9,10,11,23,34,35,36,41],prerequisit:0,prescript:[26,27],presenc:[13,37,38],present:[0,5,6,7,9,12,13,21,23,25,26,27,29,32,33,34,37,38,39,41],preserv:[3,11,25],press:[13,31,36,37],pretrain:[1,4,40,41],pretti:[0,4,8,9,15,24,26,32],prev_centroid:14,prev_g:2,prev_g_flag:2,prevent:[13,29,37,38],previou:[0,1,2,3,4,5,6,8,10,11,12,13,21,22,23,25,26,27,29,33,36,37,38,39,40,41],previous:[2,3,9,10,29,41],price:[0,4,9,13,33,37,38],primal:8,primari:[0,7,32,36],prime:29,primit:2,princip:[0,5,7,24,32,33,36],principl:[0,6,7,8,14,32,35,36],print:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,21,23,25,29,32,33,34,35,36,37,38,39,40,41],print_funct:[8,9],print_length:[23,41],printout:[0,32],prior:[0,5,6,32,33,34,35],privat:[0,32],pro:27,prob:[1,29,40,41],probabilist:[0,31,32,33],probabl:[0,1,3,4,6,7,10,13,23,24,32,33,36,37,38,39,40,41],problem:[0,3,4,5,6,7,8,9,10,11,12,16,17,23,24,25,26,27,29,35],probml:31,proce:[0,5,6,7,8,9,10,11,13,25,32,33,34,35,37],procedur:[2,4,5,6,8,10,11,13,21,26,33,34,35,36,37,38,41],proceed:25,process:[0,2,4,6,9,10,12,13,15,21,24,25,26,29,31,32,35,36,37,38],prod:31,prod_:[1,5,7,34,35,36,39,40],produc:[0,3,4,5,6,9,10,11,12,13,24,25,26,29,32,33,34,35,37,38,39],product:[0,1,3,5,6,7,8,12,13,16,21,24,25,32,33,34,35,36,39,40,41],profess:[0,32],profil:[3,4],profile_util:[3,4],progag:27,program:[0,1,4,5,6,8,12,14,15,16,21,24,25,28,29,30,32,33,35,38,39,40],programm:25,progress:[1,4,14,23,37,40,41],prohibit:[6,35],project1:[6,26],project:[0,1,2,3,5,11,13,17,18,19,20,21,22,23,24,28,30,33,34,35,37,38,39,40,41],project_root_dir:[0,6,7,9,32,33,35,36],promin:[12,38,39],promis:8,promot:[30,32],prone:9,pronounc:[13,24,32,37,38],proof:[0,11,12,13,32,35,36,37,39],prop:[23,41],propag:[2,3,13,23,27,37,38],proper:[0,2,6,7,26,32,35,41],properli:[1,6,8,10,13,21,26,27,37,38,40,41],properti:[0,1,3,12,13,16,17,25,32,35,37,38,39,40],proport:[0,1,5,9,11,13,16,29,32,33,37,38,39,40,41],propos:[1,4,6,10,23,26,27,32,40,41],propto:[5,13,34,35,36,37,38],proton:[0,32],prove:[3,13,36,37,38],provid:[0,1,3,4,5,6,8,9,10,12,13,15,21,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],proxi:[1,13,21,37,38,40,41],prune:9,pseudo:[25,29,37],pseudocod:[26,27],pseudoinv:[5,34],pseudoinvers:[5,6,34],pseudorandom:[6,29,35],psycholog:[0,32],pt:[13,37],ptratio:33,punish:[0,1,23,32,39,40,41],pure:[3,9,29],purest:9,puriti:9,purpos:[0,3,10,12,14,32,33,38,39],put:[1,32,40,41],py:[0,1,2,3,4,5,6,7,8,11,13,21,23,26,32,33,34,35,36,37,38,39,40,41],pycod:32,pydata:24,pydot:9,pyhton2:32,pylab:[0,7,32,36],pylint:[3,4],pypi:24,pyplot:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],pythagora:[5,34,35],python2:[0,15,26,32],python3:[0,1,2,3,4,6,7,8,11,13,15,21,23,24,26,32,33,34,36,38,39,40,41],python:[1,2,3,4,5,6,8,11,12,13,14,16,21,22,26,27,29,33,34,37,38,39,40,41],pytorch:[0,24,26,27,32],pywrap_tf:[3,4],q:[5,6,8,11,23,29,33,35,41],qp:8,qquad:[2,11,13,25,37,38,41],qr:[5,6,25,33],quad:[1,13,25,37,39,40,41],quadrat:[0,8,9,13,15,16,32,37],qualit:[4,9,26,27,29],qualiti:[0,9,15,16,24,32,33],quantifi:[1,40,41],quantil:10,quantit:[0,6,9,26,27,32,35],quantiti:[0,2,5,6,7,9,10,11,12,14,16,25,29,32,33,34,35,36,39,41],quantum:[4,12,31,32,38,39],quartil:[0,33],quench:5,queri:9,question:[0,5,6,9,11,12,13,26,30,32,33,34,35,37,38,39],qugan:4,quick:[4,29],quick_execut:[3,4],quickli:[1,3,9,11,13,23,36,37,40,41],quit:[1,5,6,9,10,12,33,35,38,39,40,41],quot:[4,32],r2:[0,5,6,27,32,33,34,36],r2_score:[0,32,33],r2score:[0,32],r:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,21,23,24,25,26,29,33,34,35,36,37,38,39,41],r_1:9,r_2:9,r_j:9,r_m:9,rad:[0,33],radial:[0,8,12,33,38,39],radioact:29,radiu:[0,1,9,33,40,41],rag:2,rain:9,rais:[0,2,13,23,32,34,38,41],ramp:[1,40,41],ran0:29,ran1:29,ran2:29,ran3:29,rand:[0,4,5,6,9,10,13,15,16,21,23,25,32,33,34,35,36,37,38,41],randint:[6,9,13,21,35,37,38],randn:[0,1,2,5,6,9,11,13,15,16,21,23,32,33,34,35,36,37,38,39,40,41],random:[0,1,2,3,4,5,6,8,9,13,14,15,16,21,23,24,25,26,32,33,34,35,37,38,39,40,41],random_forest_model:10,random_index:[13,21,37,38],random_indic:[1,3,39,40,41],random_st:[0,7,8,9,10,11,33,36,38,39],randomforestclassifi:10,randomizedsearchcv:36,randomli:[1,6,9,13,14,21,23,35,36,37,38,39,40,41],randuniform:36,rang:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,21,23,25,29,32,33,34,35,36,37,38,39,40,41],rangl:[0,6,11,29,32,33],rangle_x:29,rank:[5,33],rankdir:4,raphson:[1,8,13,39,40],rapidli:[0,32],rare:[1,13,32,35,36,37,38,39,40,41],rate:[0,1,2,3,4,8,9,10,12,13,22,27,33,36,39,40],rather:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,25,29,32,33,34,35,36,37,38,39,40,41],ratio:[4,7,9,10,11,36],rational:[0,32],ravel:[5,6,7,8,9,10,11,13,23,25,33,35,36,37,41],raw:3,raw_df:33,rbf:[8,11,12,38,39],rbf_kernel_svm_clf:8,rbf_pca:11,rc:[0,29,33],rcond:[0,32,33],rcparam:[0,1,3,7,8,9,10,29,32,36,39,40,41],re:[2,4,13,36,37,41],reach:[1,4,5,6,7,9,10,11,12,13,14,23,34,35,36,37,38,39,40,41],read:[0,2,3,4,5,6,7,8,11,12,16,21,22,23,25,26,27,28,29,31,34,36,37,38,39,40,41],read_csv:[0,6,7,9,32,33,35,36],read_fwf:[0,32],reader:[0,6,25,29,32,33,34],readi:[0,1,5,6,8,10,11,12,23,25,26,32,34,35,39,40,41],readili:[1,39,40,41],readthedoc:24,real:[0,1,2,4,7,10,11,12,13,23,25,33,35,36,38,39,40,41],real_loss:4,real_output:4,realist:8,realiti:29,realiz:[1,12,38,39,40,41],realli:[0,1,32,40,41],rearrang:[13,37,38],reason:[0,1,3,4,10,13,31,32,36,37,38,40,41],reassign:[1,40,41],reat:[23,41],reber:[23,41],recal:[5,6,9,10,11,12,25,29,32,33,34,35,36,37,39],recast:3,receiv:[1,3,10,12,29,38,39,40,41],recent:[0,2,3,4,6,9,10,13,15,21,26,31,32,34,35,36,37,38,41],recept:[3,12,38,39],receptive_field:3,recip:[0,6,7,25,26,27,32,33,36],reciproc:[5,34],recogn:[0,4,5,10,32,34,35],recognit:[0,1,3,12,28,31,32,38,39,40,41],recommend:[0,2,3,4,5,6,8,13,15,18,21,22,24,25,26,27,31,34,35,39,40,41],reconsid:9,reconstruct:11,record:[10,20,26,27,28,30,32,37,38],rectangl:[9,13,36,37],rectangular:[5,33],rectifi:[1,3,12,38,39,40,41],recur:[0,24,32],recurr:[0,1,24,32,40,41],recurs:[9,24,25,32],red:[0,3,4,6,8,9,21,35,37],redefin:[0,10,32,33],redefinit:34,reduc:[1,3,5,6,9,10,11,13,21,32,34,35,36,37,38,39,40,41],reduct:[0,10,11,24,29,32,33],refer:[0,1,2,3,5,6,7,11,12,13,14,20,25,26,27,31,32,33,35,36,37,38,39,40,41],referenc:[2,41],refin:[12,38,39],refit:[6,35],reflect:[0,1,4,5,26,27,29,32,40,41],refresh:[24,32],refreshprogrammingskil:32,reg:[10,11],regard:[1,9,13,37,40,41],regardless:[12,38,39],region:[3,4,6,9,12,26,38,39],regist:[6,26,29],reglasso:[5,34],regr_1:[0,9],regr_2:[0,9],regr_3:[0,9],regress:[1,8,11,12,15,16,21,22,23,24,25,40,41],regressor:[0,7,10,23,32,36,41],regridg:[0,5,6,34,35,36],regular:[0,3,4,5,6,7,9,13,17,23,27,30,32,33,34,35,37,38],regularis:6,reilli:[0,15,31,32],reinforc:[0,8,24,32,41],reiniti:[23,41],reiter:[1,40,41],reject:7,rel:[0,4,6,7,9,12,13,29,32,33,35,36,37,38,39],relat:[0,1,3,4,5,11,13,14,25,29,32,34,35,37,38,40,41],relationship:[0,4,9,32],relativeerror:[0,32,33],releas:[1,3,4,6,13,24,26,27,32,35,37,40,41],relev:[0,1,5,7,11,15,21,22,23,24,26,27,29,32,40,41],reli:[0,6,8,32],reliabilti:[26,27],reliabl:[7,29,36],relu:[3,4,23,27,39],remain:[1,2,4,6,12,25,29,33,34,35,36,38,39,40,41],remaind:29,reman:[2,41],remark:[1,40,41],rememb:[0,8,13,25,26,27,32,37,38],remind:[0,5,11,13,25,29,33,34,35],remov:[0,4,5,6,32,33,34,35],render:[0,32,33],reorder:[5,7,33,34,36],reorgan:[0,32],repeat:[0,1,3,4,5,6,9,10,11,13,14,21,22,25,26,27,29,32,34,35,36,37,38,39,40,41],repeated:32,repeatedli:[0,6,10,13,35,37,38],repet:3,repetit:[6,32,33,35,36,37],rephras:[13,36,37],replac:[0,1,3,4,5,6,10,12,14,15,16,21,22,24,26,27,32,33,34,35,36,39,40,41],replica:[6,35],repo:[26,27],report:[20,32,37,38],reportexampl:[20,26],reportsampl:20,repositori:[0,4,26,27,32,33],repres:[0,1,2,3,4,5,6,7,8,9,10,12,13,27,29,32,33,34,35,36,37,38],represent:[0,1,3,6,29,32,35,36,39,40,41],representd:3,reproduc:[0,5,6,9,12,15,16,23,24,26,29,32,33,39,41],repuls:[0,32],request:[0,13,21,32,37,38],requir:[0,1,3,4,5,6,8,9,11,12,13,17,25,32,33,34,35,36,37,38,39,40],rerun:[23,41],res1:[2,41],res2:[2,41],res3:[2,41],res_analyt:[2,41],res_analytical1:[2,41],res_analytical2:[2,41],res_analytical3:[2,41],resaml:[6,26],resampl:[0,7,10,19,23,24,32,33,36,37,41],rescal:[0,11,12,33,38,39],rescu:[5,34,35],reseach:[6,26],research:[0,4,13,21,24,31,32,37,38],resembl:[6,29,35],reserv:[1,5,6,29,34,35,39,40,41],reset:[23,41],reset_weight:[23,41],reshap:[0,1,2,3,4,6,8,9,10,15,16,23,25,32,33,35,39,40,41],residenti:[0,33],residu:[0,5,13,32,37],resiz:[5,33],resourc:32,respect:[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,21,23,26,29,32,33,34,35,36,37,38,39,40,41],respond:[12,38,39],respons:[0,7,9,12,32,33,36,38,39],rest:[0,5,33],restat:[0,12,32,39],restor:4,restored_discrimin:4,restored_gener:4,restrict:[0,3,9,12,32,38,39],result:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,21,22,23,24,25,26,27,29,32,35,36,37,38,39,40,41],retail:[0,33],retain:[5,6,33,35,36],rethink:35,return_data:14,return_sequ:4,return_x_i:9,reus:[1,3,6,18,19,20,26,27,40,41],reveal:[0,12,32,38,39],revers:[1,23,25,40,41],review:[24,25],revisit:[14,39],revolut:32,reward:[0,4,32],rewrit:[0,3,5,6,7,8,10,11,12,13,19,25,26,29,34,36,37,38,39],rewritten:[2,6,8,10,29,35,41],rewrot:[13,36,37],rf:10,rgb:3,rgoj5yh7evk:24,rh:[6,35],rho2:[23,41],rho:[0,10,13,21,23,32,37,38,41],rho_1:10,rho_2:10,rho_m:10,rich:[0,32],ride:9,rideclass:9,ridedata:9,ridg:[7,11,13,21,22,24,27,32],ridge_fit:35,ridge_fit_beta:35,ridge_sk:6,ridgebeta:[5,34],ridgecv:36,right:[0,1,2,3,5,6,7,8,9,10,12,13,14,16,17,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],right_sid:[2,41],rightarrow:[0,1,5,6,8,11,12,13,29,32,33,35,36,37,38,39,40,41],rigor:[0,32],ring:6,rise:[0,32],risk:[0,13,15,16,32,36,37,38],rival:4,river:[0,33],rm:[0,23,29,33,41],rms_prop:[23,41],rmse:[0,33],rmsporp:[13,21,37,38],rmsprop:[1,3,4,13,22,27,40,41],rnd_clf:10,rng:29,rnn1:4,rnn2:4,rnn:[4,12,38,39],rnn_2layer:4,rnn_input:4,rnn_output:4,rnn_train:4,rntrick1:29,rntrick2:29,rntrick3:29,rntrick4:29,ro:[0,13,21,32,36,37,38],robert:[18,26,31],robust:[0,32],robustscal:[0,33],roc:[7,10],role:[0,2,5,6,8,24,32,33,34,35,36,41],roll:6,room:[0,30,32,33],root:[0,5,9,13,29,32,33,34,36,37,38],rot:32,rotat:[1,8,9,10,40,41],rotation_matrix:9,roughli:[1,3,40,41],round:[0,7,9,13,23,33,36,37,38,41],routin:[13,25,32,36,37],row:[0,1,2,5,6,7,9,11,23,25,32,33,34,35,36,39,40,41],rr:[5,33],rrr:[5,33],rug:[13,36,37,38],rule:[0,1,5,6,13,26,32,33,34,35,37,38,40,41],run:[0,1,2,3,4,5,6,8,9,11,13,15,21,23,24,26,27,32,33,34,35,36,37,38,40,41],runtim:[1,6,14,40,41],runtimewarn:[1,6,35,39,40,41],russel:32,rust:[0,15,24,25,32],rv_frozen:36,rvert:[1,39,40,41],rvert_2:[1,39,40,41],s:[0,1,2,3,4,5,6,7,9,11,12,13,16,17,18,23,24,25,26,27,29,32,33,34,39,40,41],s_1:6,s_:[3,6],s_i:[6,7,36],s_j:6,s_k:6,saddl:[13,36,37,38],sai:[0,1,2,3,4,5,6,7,8,9,10,11,12,25,26,29,32,33,34,35,36,39,40,41],said:[6,9,13,36,37],sake:[0,5,7,11,32,33,34,36],sale:[0,32],sam:32,same:[0,1,2,3,4,5,6,8,9,11,12,14,17,23,25,26,29,32,33,34,36,39,40,41],samm:10,sampl:[0,1,2,3,4,5,6,7,8,9,10,13,14,15,16,19,21,24,25,26,29,32,33,34,35,36,37,38,39,40,41],sample_vari:14,sample_weight:[3,4],sampleexptvari:29,samwis:32,sastri:11,satisfactori:[0,32],satisfi:[1,2,3,6,8,13,17,25,29,35,36,37,39,40,41],satur:[1,6,35,40,41],save:[0,4,6,7,9,13,21,32,33,35,36,37,38],save_fig:[0,6,7,9,10,32,33,35,36],savefig:[0,4,6,7,9,29,32,33,35,36],savetxt:4,saw:[5,33],scalabl:10,scalar:[2,5,6,10,13,33,34,35,38,41],scale:[0,1,3,5,6,7,8,9,10,11,12,13,15,16,17,21,23,24,25,26,27,30,32,34,36,37,38,39,40,41],scale_mean:4,scale_std:4,scaler:[0,7,8,9,10,11,23,33,35,41],scan:[5,7,34,35,36],scari:[5,34,35],scatter:[0,1,6,7,8,9,14,21,32,33,34,35,36,40,41],scenario:[6,13,36,37,38],schedul:[13,30,37,38],scheduler_arg:[23,41],schedulers_bia:[23,41],schedulers_weight:[23,41],scheme:[1,13,36,37,38,40],schrage:29,scienc:[0,1,10,12,13,24,28,29,30,31,33,36,37,38,39,40,41],scientif:[0,15,24,26,27,32,37,38],scientist:[0,32],scikit:[3,5,6,7,8,9,10,13,21,24,25,26,27,28,31,38],scikit_learn:[0,16],scikitlearn:32,scikitplot:[7,10,36],scipi:[0,3,5,6,13,15,24,25,26,32,33,34,35,36,37],scl:6,score:[0,1,3,6,7,9,10,11,15,16,22,23,26,27,30,32,33,35,36,37,38,39,40,41],scores_kfold:[6,35,36],scratch:[1,13,38,39,40,41],sdg:[13,21,37,38],seaborn:[0,1,3,6,7,21,23,27,32,33,36,39,40,41],seamless:[0,15,24,26,32],seamlessli:[23,41],search:[0,1,3,5,9,13,32,34,37,38,39,40,41],sec:6,second:[0,2,3,4,5,6,7,8,9,11,12,14,15,16,23,24,25,26,27,29,30,32,33,35,36,39,41],second_correct:[23,41],second_mo:[21,37,38],second_term:[21,37,38],secondeigvector:11,secondli:[12,39,40],section:[4,11,17,25,29,33,34,36,37,38],sector:[0,32],see:[0,1,2,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],seed:[0,1,2,3,4,5,6,8,9,11,13,14,15,16,21,23,26,29,32,33,34,35,36,37,38,39,40,41],seed_imag:4,seek:[1,2,8,40,41],seem:[1,3,4,37,38,39,40,41],seemingli:[0,32],seen:[0,1,3,5,10,12,17,29,32,39,40,41],segment:[13,23,36,37,41],seismic:6,seldomli:[0,32],select:[1,5,6,8,9,10,11,17,26,27,28,29,30,31,32,33,34,35,39,40,41],self:[1,3,4,5,21,23,33,34,39,40,41],sell:4,semest:[7,28,36],semi:[8,13,36,37],semilogx:6,send:[5,12,13,30,32,37,38,39],senior:[28,30],sens:[0,4,6,8,26,32,35],sensibl:3,sensit:[0,5,6,9,13,32,33,34,35,38],sent:[2,35,41],sentdex:[],sentenc:[4,12,38,39],sep:[33,35],separ:[0,1,2,4,6,8,9,12,14,15,24,26,29,32,35,38,39,40,41],septemb:[16,17,18,19,20,26,32,33,37],sequenc:[2,3,4,7,9,10,12,13,24,25,29,32,36,37,38,39],sequenti:[1,3,4,10,12,29,38,39,40,41],seri:[0,1,2,3,4,5,6,10,11,12,13,25,32,33,34,35,36,37,38,39,40,41],serif:[0,7,29,32,36],serv:[0,1,2,3,5,7,13,21,26,31,32,33,34,35,36,37,38,40,41],servic:[26,27],session:[1,20,26,28,30,32,35,36,37,38,39,40,41],set:[1,4,5,6,7,8,10,11,13,14,16,17,21,24,25,26,27,29,30,34,35,37,38],set_major_formatt:[6,26],set_major_loc:[6,26],set_tick:[1,8,40,41],set_ticklabel:[1,40,41],set_titl:[0,1,2,3,7,12,14,23,32,36,38,39,40,41],set_xlabel:[0,1,2,3,7,12,23,32,36,38,39,40,41],set_xlim:[7,12,36,38,39],set_xticklabel:[1,40,41],set_ylabel:[0,1,2,3,7,23,32,36,39,40,41],set_ylim:[7,12,36,38,39],set_ytick:[7,36],set_yticklabel:[1,6,40,41],set_zlim:[6,26],seth:4,setminu:[6,36],setosa:[8,9],setosa_or_versicolor:8,setp:[6,35],setup:[1,4,6,8,21,23,24,27,32,33,39,40],sever:[0,3,5,6,7,8,9,11,12,13,21,24,25,27,29,32,33,34,35,36,37,38,39],sgd:[1,3,21,22,27,36,40,41],sgd_clf:8,sgdclassifi:8,sgdreg:[13,36,37],sgdregressor:[13,36,37],sgn:[5,33,34],shallow:[13,37,38],shape:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,23,25,32,33,34,35,36,37,39,40,41],shape_bas:[],share:[1,3,23,32,40,41],she:[7,36],shell:21,shift:[1,6,12,29,34,38,39,40,41],ship:3,shire:32,shortcom:[13,36,37,38],shorten:4,shorter:29,shorthand:[32,35],shortli:[25,32],should:[0,2,3,5,6,8,9,11,12,13,15,16,21,22,23,25,26,27,29,32,33,34,35,37,38,39],should_sync:[3,4],show:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],show_shap:4,shown:[0,4,5,7,8,11,12,13,21,23,25,33,36,37,38,39,41],shrink:[3,5,6,8,11,26,33,34],shrinkag:[5,6,33,34],shrunk:11,shuffl:[0,1,3,4,6,13,21,33,35,36,37,38,39,40,41],side:[0,2,5,8,12,13,25,27,32,34,35,36,37,38,39,41],sigh:[24,32],sigma0:29,sigma1:29,sigma2:29,sigma:[0,1,5,6,7,10,11,12,13,17,18,19,25,26,29,32,33,34,35,36,37,38,39,40,41],sigma_0:[5,33,34],sigma_1:[5,33,34],sigma_2:[5,33,34],sigma_:[5,25,32,33,34,35],sigma_fn:[7,12,36,38,39],sigma_i:[0,5,32,33,34],sigma_j:[5,17,33,34],sigma_m:[6,29,35],sigma_n:[11,29],sigma_t:[13,37,38],sigma_x:29,sigmoid:[1,2,4,7,8,10,12,23,27,36,37,38,39],sigmundson:[6,33,34],sign:[1,2,7,8,10,29,30,36,39,40,41],signal:[1,3,10,12,38,39,40,41],signatur:[3,4],signifi:4,signific:[1,40,41],significantli:[1,13,21,29,36,37,38,39,40,41],sim:[4,5,6,13,18,26,29,34,35,37,38],similar:[0,1,2,3,4,5,6,7,8,9,10,11,14,17,23,24,25,26,27,32,33,34,35,36,40,41],similarli:[0,1,3,5,8,10,13,20,29,32,33,34,40,41],similiar:[23,41],simpl:[1,2,3,5,6,7,8,10,11,12,14,15,16,17,19,21,22,23,24,25,26,27,29,35,39,40,41],simple_rnn:4,simplefilt:[23,41],simplepredict:10,simpler:[0,1,5,6,7,13,16,19,21,22,23,24,26,27,32,34,37,38,40,41],simplernn:4,simplest:[0,1,3,4,9,10,12,14,32,38,39,40,41],simpletre:10,simpli:[0,1,2,4,5,6,8,9,10,11,12,15,23,24,25,26,27,29,32,33,34,35,38,39,40,41],simplic:[2,5,6,7,8,9,10,11,12,14,33,34,35,36,38,39,41],simplicti:[5,33],simplifi:[0,6,9,15,24,26,32,33,34,35],simplist:[3,6,29,35],simul:[6,35],simultan:[6,35],sin:[0,1,2,3,4,9,12,13,21,25,32,37,38,39,40,41],sinc:[0,1,2,3,5,6,7,8,9,10,11,13,21,23,25,29,31,32,33,34,35,36,37,38,39,40,41],sine:[3,12,38,39],singl:[0,1,2,3,5,6,7,8,9,12,13,23,25,27,29,32,33,34,35,36,37,40,41],singular:[0,6,13,25,26,32,34,35,36,37],sinusoid:3,site:[0,1,2,3,4,6,7,8,11,13,21,23,26,27,28,32,33,34,36,38,39,40,41],situat:[0,4,5,7,13,21,29,32,33,36,37,38],six:[3,29],size:[0,1,2,3,4,5,6,8,9,10,11,13,21,22,23,25,26,27,29,32,34,35,36,37,38,39,40,41],sketch:10,ski:9,skill:[0,32],skip:[3,4,11],skiprow:33,skl:[0,6,32,33,34],sklearn:[0,1,3,5,6,7,8,9,10,11,13,14,23,32,33,34,35,36,37,38,39,40,41],skplt:[7,10,36],skrankefunct:[23,41],sl:[6,34,36],slack:8,slice:[2,25,32,41],slide:[0,3,15,16,26,27,29,32,33,35,37,39,40,41],slight:[6,13,35,37,38],slightli:[1,2,3,5,6,7,10,29,33,34,35,36,40,41],slope:[8,11,12,38,39],slow:[0,2,8,13,33,36,37,38,41],slower:[5,25,32,33,34],slowest:25,slowli:[12,39],slp:[1,39,40,41],small:[0,1,2,3,5,6,8,9,10,11,12,13,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],smaller:[0,1,2,5,6,8,9,11,13,29,32,33,34,35,36,37,38,40,41],smallest:[0,4,14,15,16,32,36],smallest_row_index:14,smooth:[0,3,6,9,13,26,32,36,37],sn:[0,1,3,6,7,23,32,33,36,39,40,41],sne:11,sneak:32,so:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],soar:6,social:[0,32],societ:32,soft:[1,7,10,12,36,38,39,40,41],soften:8,softmax:[3,7,23,36,41],softwar:[0,8,15,24,25],sol:8,sole:[0,6,32],solid:[0,7,32,36],solut:[0,1,2,3,5,6,8,10,11,13,17,18,25,26,27,29,32,33,34,35,36,37,38,40],solution_ev:37,soluton:[2,41],solv:[0,1,3,5,6,8,10,11,12,13,25,26,27,32,33,38,39,40],solve_expdec:[2,41],solve_ode_deep_neural_network:[2,41],solve_ode_neural_network:[2,41],solve_pde_deep_neural_network:[2,41],solveod:[2,41],solveode_popul:[2,41],solver:[2,7,8,9,10,11,21,25,36,41],some:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,23,29,34,35,38,39,40,41],some_model:[6,33,34],somehow:4,someth:[0,1,3,4,7,9,11,26,27,29,32,33,36,39,40,41],sometim:[0,1,11,12,13,14,32,33,37,38,39,40,41],somewhat:[38,39],soon:[25,30],sophist:[0,32],sopt:[13,37],sort:[5,6,9,11,29,33,35],sound:[3,5,34,35],sourc:[0,1,3,6,15,24,25,26,27,29,32,33,35,40,41],space:[0,1,4,5,8,9,11,12,13,14,21,29,33,34,35,36,37,38,39,40,41],span:[0,3,5,9,11,25,32,33],spare:[1,40,41],spars:[2,3,6,25,32],sparse_add:2,sparse_mtx:[25,32],sparsecategoricalcrossentropi:3,sparseobject:[],sparsiti:10,spatial:[1,2,3,12,38,39,40,41],speak:29,special:[6,7,10,12,13,25,29,32,33,34,35,36,37,39],specif:[0,1,2,3,4,5,6,7,8,9,11,12,16,23,24,25,26,27,29,31,32,33,34,35,36,38,39,40],specifi:[0,3,5,6,7,9,11,13,14,21,23,26,29,32,34,35,36,37,38],specifici:[0,10,32],spectacular:3,spectral:[1,40,41],speech:[0,1,3,4,12,32,38,39,40,41],speed:[1,2,4,13,37,38,39,40,41],spend:29,spent:[26,27],sphere:[0,33],spin:6,spite:[0,32],spline:8,split:[1,3,4,5,6,8,9,10,11,14,17,23,26,29,34,35,36,40,41],splite:0,splitter:[1,10,40,41],spontan:29,spot:3,spread:[0,11,29,32,33],spring:[23,41],springer:[18,26,31,32,34],spuriou:[13,21,37,38],sqquar:34,sqrsignal:3,sqrt:[0,3,4,5,6,8,10,11,13,17,21,23,29,33,34,35,37,38,41],squar:[1,2,3,4,7,8,9,11,13,14,15,16,17,19,21,22,24,25,27,29,35,36,37,38,39,40,41],squarederror:10,squaredeuclidean:14,squash:[12,38,39],srtm:[6,26],srtm_data_norway_1:[6,26],stabil:[5,26,27],stabl:[0,4,5,6,7,9,11,24,32,33,34,36],stack:[3,4],stacklevel:[0,32],stage:[5,13,21,23,26,27,37,38,41],stai:[0,2,4,5,11,17,23,32,33,41],stand:[0,5,9,12,32,33,34,38,39],standadscal:33,standard:[0,1,4,5,6,7,8,10,12,15,16,17,19,21,22,25,26,27,29,32,34,36,38,39,40,41],standard_basi:[],standardscal:[0,6,7,8,9,10,11,33,34,35],stanford:[13,36,41],start:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,20,22,23,25,26,27,29,30,32,33,35,36,37,39,40,41],start_box:[13,38],start_nod:[13,38],start_tim:14,starting_point:21,stat:[6,33,35,36],state:[1,2,4,5,6,7,8,10,11,12,13,24,27,29,33,34,35,36,37,38,39,40,41],statement:[0,7,25,36],stationari:[36,37],statist:[0,1,3,4,7,9,10,11,12,13,14,18,25,26,28,31,33,36,37,38,39,40,41],statu:[0,7,11,32,33,36],stavang:[6,26],std:[0,4,6,32,33,35],stdout:[23,41],steep:[13,21,36,37,38],steepest:38,step:[0,1,2,3,4,6,7,9,10,11,12,13,14,21,22,23,25,26,32,39,40,41],step_fn:[7,12,36,38,39],step_length:[13,37,38],step_num:[3,4],step_siz:37,steps_list:9,steps_per_epoch:[3,4],stereo:3,still:[0,2,3,5,6,11,13,17,29,35,36,37,38,41],stimuli:[12,38,39],stk2100:[31,32],stk3155:[15,26,27,28,30],stk4021:[31,32],stk4051:[31,32],stk4155:[28,30],stk5000:31,stk:[31,32],stochast:[0,1,5,6,8,11,12,15,16,22,23,26,32,34,35,36,39,40,41],stock:4,stoke:[12,38,39],stone:[0,7,26,32,36],stop:[1,4,7,9,11,13,14,21,23,36,39,40,41],storag:[5,33],store:[0,1,2,3,6,11,13,23,26,29,32,37,38,39,40,41],storehaug:[30,32],str:[1,3,4,23,39,40,41],straight:[0,6,8,13,32,33,35,36,37],straightforward:[0,2,3,5,6,8,9,10,13,25,32,33,34,35,36,37,41],strategi:[0,1,9,32,39,40,41],stratifi:[6,35],strength:[0,5,14,33],stretch:11,strict:[8,13,36,37],strictli:[8,13,36,37],stride:[4,25],strike:6,string:[1,39,40,41],stroke:[7,36],strong:[3,6,9,10,12,25,29,35,38,39],strongli:[0,8,23,24,25,27,33,41],stronli:[0,33],structur:[0,1,2,3,6,9,10,12,24,32,35,36,37,38,39,40,41],stuck:[1,13,36,37,38,39,40,41],student:[0,26,27,28,30,31,32,41],studi:[0,3,4,5,6,7,8,11,12,13,17,19,21,23,24,26,27,31,32,33,34,37,38,39,41],studier:31,style:[0,7,9,25,32,36],sub:[9,12,38,39],subarg:[13,38],subdivid:[0,25,32],subfield:[0,32],subject:[6,8,29],submit:32,subplot:[0,1,3,4,6,7,8,9,10,13,14,23,26,32,33,35,36,37,39,40,41],subplots_adjust:[8,29],subprogram:[25,32],subract:[0,33],subroutin:[0,32],subscript:[1,39,40,41],subsequ:[1,4,5,6,12,25,29,33,35,38,39,40,41],subset:[1,6,9,12,13,24,32,35,36,37,38,39,40,41],subspac:[0,8,11,33],substanti:[9,10],substep:11,substitut:[3,6,12,25,35,38,39],subsubset:9,subtask:6,subtl:[1,40,41],subtract:[0,4,5,6,11,13,17,21,23,25,26,29,34,35,37,38,41],subtre:9,subval:[13,38],succeed:[0,4,32],success:[3,7,9,13,29,36,37],successfulli:[4,9],sudo:[0,15,24,26,32],suffer:[0,1,2,5,10,32,33,34,40,41],suffici:[1,6,8,11,13,35,36,37,39,40,41],suggest:[1,13,27,31,37,38,40,41],suit:[8,12,38,39],suitabl:[0,29,33],sum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,36,37,38,39,40,41],sum_:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,25,26,27,29,32,33,34,35,36,37,38,39,40,41],sum_i:[0,2,5,6,8,13,17,19,26,33,34,35,37,38,41],sum_j:6,sum_ja_:0,sum_k:[6,8,12,25,39,40],sum_logist:[13,37,38],sum_m:3,sum_n:3,sum_nx_:3,summar:[5,6,9,23,27,34,35,36,37,39,40,41],summari:[1,3,4,10,21,27,28,34,39,40,41],summat:[0,3,16,33],sundai:[17,18,19,20,21,22,23],sunni:9,superconduct:[33,34],superfici:3,superscript:[1,12,38,39,40],supervis:[0,5,6,7,9,12,24,32,33,35,36,38,39],supplement:[7,36],support:[0,1,9,10,11,13,24,32,33,37,38,40,41],suppos:[0,5,6,7,8,10,11,12,13,25,32,33,34,35,36,37,38,39],suppress:[5,13,34,37,38],sure:[0,1,4,6,23,26,40,41],surf:[6,26],surfac:[0,6,26,32],surpass:6,surpris:[0,32],surround:[3,24],survei:[0,5,6,32,33,34,35],svc:[8,9,10],svd:[0,6,11,17,32,35],svdinv:[5,34],svm:[8,9,10,11],svm_clf:[8,10],swath:[5,33],sy:[13,23,36,37,41],symbol:[1,5,11,13,24,29,32,33,34,37,38,39,40,41],symmeteri:[1,40,41],symmetr:[0,5,8,11,12,13,25,32,33,37,38,39],symmetri:[6,9],sympi:[0,15,24,26,32],synonim:29,syntax:[1,13,40],syntaxerror:[1,8,40],system:[0,1,3,4,6,7,9,10,12,13,15,23,24,25,26,32,36,37,38,39,40,41],systemat:[4,6,35],t0:[3,6,13,21,37,38],t1:[2,13,21,37,38,41],t2:[2,41],t3:[2,41],t:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,32,35,36,37,38,39,40,41],t_0:[2,9,13,37,38,41],t_1:[13,37,38],t_:[2,41],t_b:10,t_batch:[23,41],t_i:[1,2,5,12,27,33,39,40,41],t_j:[12,39],t_k:9,t_test:[23,41],t_train:[23,41],t_val:[23,41],tabl:[9,23,26,27,29,30,32,38,39,40,41],tabul:[0,32],tabular:32,tackl:4,tag:[2,3,4,5,6,7,12,13,14,21,25,29,33,36,37,38,39,41],taht:[0,32],tail:29,tailor:[2,8,11,32,41],taiwan:[0,32],take:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],taken:[0,1,3,6,10,13,25,32,35,37,38,39,40,41],tan:3,tangent:[1,4,12,13,36,37,38,39,40,41],tanh:[1,4,7,8,12,36,37,38,39,40,41],tape:[3,4],target:[0,1,3,4,5,6,7,8,9,10,11,12,23,27,32,33,34,35,36,37,38,39,40,41],target_nam:9,task:[0,1,3,6,9,11,12,14,20,23,26,32,35,38,39,40,41],tau:[3,5,29,34,35],taught:32,tax:[0,33],taylor:[2,13,36,37,41],taylornr:[13,36,37],tba:37,tc:8,td:[1,6,13,26,32,35,37,39,40],teach:32,team:[1,40,41],teaser:0,technic:[0,5,6,13,15,32,33,37,38],techniqu:[0,1,8,10,13,24,29,31,32,33,35,36,37,38,40,41],technolog:[0,1,32,39,40,41],tell:[0,4,6,10,11,13,29,35,37,38],temp1:[1,40,41],temp2:[1,40,41],temp:[1,40,41],temperatur:[0,9,32],temporarili:[1,40,41],ten:[3,17,32],tend:[3,5,6,8,9,10,12,13,14,21,33,34,35,37,38,39],tendenc:[0,32],tension:[6,35],tensor:[3,4],tensorflow:[0,2,4,8,14,15,23,24,25,26,27,28,31,32,33],term1:[5,6,11,26,33],term2:[5,6,11,26,33],term3:[5,6,11,26,33],term4:[5,6,11,26,33],term:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,23,26,29,32,33,34,36,37,38,40,41],termin:[0,4,5,9,10,13,15,21,32,33,37,38],terrain1:[6,26],terrain:[6,21,22,26,27],test:[3,4,5,6,7,8,9,10,13,17,19,21,22,25,26,29,35,36,37,38],test_acc:3,test_accuraci:[1,3,23,39,40,41],test_error:6,test_imag:[3,4],test_ind:[6,35,36],test_input:4,test_label:[3,4],test_loss:3,test_pr:[1,23,39,40,41],test_predict:[1,39,40,41],test_rnn:4,test_scor:[7,10,36],test_siz:[0,1,3,5,6,10,32,33,34,35,36,39,40,41],test_split:9,tester:34,testerror:[0,6,33,35],testi:4,testpredict:4,testx:4,text:[0,1,2,4,5,8,9,11,13,15,21,25,27,29,31,32,33,35,36,37,38,39,40,41],textbook:[17,21,22,26,27,33,35],textual:9,textur:[1,9,40,41],tf:[1,3,4,13,14,36,37,40,41],tfe_py_execut:[3,4],th:[0,1,2,5,6,7,9,12,13,14,15,16,25,26,29,32,33,34,35,36,37,38,39,40,41],than:[0,1,2,3,4,5,6,7,9,10,11,12,13,17,24,27,29,32,33,34,35,38,39,40,41],thank:[4,6,33,34,41],thats:[23,41],theano:[1,24,32,40,41],thei:[0,1,2,3,4,5,6,7,8,9,11,12,13,25,26,29,33,34,35,36,37,38,39,40,41],them:[0,1,3,4,6,8,9,10,11,12,13,23,25,26,27,32,33,34,35,37,38,39,40,41],theme:[0,32],themselv:[0,29,32],thenc:[6,35],theorem:[2,6,7,33,36,38,40,41],theoret:[0,4,10,32],theori:[0,1,3,8,9,12,13,18,24,26,31,32,34,37,38,39,40,41],thereaft:[0,5,6,11,12,15,16,17,25,26,27,32,35,39,40],therebi:[0,5,7,11,32,33,34,36],therefor:[0,1,2,3,4,6,7,8,11,13,29,32,33,35,36,37,38,39,40,41],therein:11,thereof:[0,6,13,32,35,37,38],thesi:41,theta:[1,4,13,21,29,37,38,39,40,41],theta_:[1,13,37,38,39,40,41],theta_i:[1,39,40,41],theta_linreg:[13,21,37,38],theta_t:[13,37,38],thetaand:[38,39],thetaor:[38,39],thetaxor:[38,39],thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,23,24,25,26,27,28,29,31,33,34,35,36,37,38,39,40,41],thing:[0,1,2,4,5,7,9,29,32,34,35,36,40,41],think:[0,1,3,4,6,9,12,13,14,23,29,32,35,36,37,38,39,40,41],third:[0,3,6,13,21,30,32,35,36,37,38],thirti:[7,36],thorughout:32,those:[0,3,5,6,8,9,10,11,21,25,26,27,28,32,33,35],though:[1,2,3,4,13,25,29,37,38,39,40,41],thought:[6,14,26,27,29,35],thousand:[0,1,26,32,33,37,38,40,41],thread:[3,4],three:[0,1,3,5,6,8,9,12,15,23,25,26,28,29,30,32,33,34,35,36,38,39,40,41],threshold:[1,3,9,10,11,12,13,23,37,38,39,40,41],through:[0,1,2,3,4,5,6,8,11,12,13,14,24,25,29,32,33,34,35,36,37,38,39,40,41],throughout:[0,4,5,14,23,24,25,29,32,41],thu:[0,1,2,5,6,7,8,10,11,12,13,21,26,30,32,33,34,35,36,37,38,39,40,41],thumb:[0,6,26,32,33],thursdai:[30,32,37,38],tibshirani:[6,18,26,28,31,32,33,35],tick_param:6,ticker:[6,13,26,29,36,37],tif:[6,26],tight_layout:[1,7,36,40,41],tightli:11,tild:[0,5,6,7,11,15,16,17,18,19,26,29,32,33,34,35,39,40,41],till:[0,4,7,8,9,10,12,25,32,33,36,37,39,40],time:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,21,23,24,25,26,27,29,32,33,34,35,36,39,40,41],timeit:4,timer:4,tini:[1,40,41],tip:3,titl:[0,1,2,3,4,6,7,8,9,10,13,21,26,29,32,33,35,36,37,38,39,40,41],tmp:[13,37,38],tmp_log:[3,4],tn:[2,3,7,41],to_categor:[1,3,4,39,40,41],to_categorical_numpi:[1,39,40,41],to_numer:[0,6,32,35],todai:3,togeth:[0,3,6,8,11,13,21,23,24,32,33,37,38,41],toi:[14,37,38],told:[13,37,38],toler:[2,6,14,41],tolist:4,tomographi:[12,38,39],too:[0,2,4,5,6,9,11,13,15,29,31,32,33,35,36,37,38,41],took:[8,32],tool:[0,1,3,6,13,24,33,35,37,38,40,41],toolbox:8,top:[0,3,5,6,9,10,18,24,32,34,35],topic:[0,5,6,7,8,24,26,27,33,34,36,41],topograph:26,topolog:[1,3,12,38,39,40,41],toposort:[],torkjellsdatt:[30,32],toss:[10,29],total:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,22,23,25,27,29,30,32,33,35,36,37,39,40,41],total_loss:4,totalclustervari:14,totalscatt:14,toward:[1,2,7,12,13,26,36,37,39,40,41],towardsdatasci:[37,38],town:[0,33],tp:[4,7],tpng:9,tpu:[13,21,24,32,37,38],tqdm:6,tr:33,trace:[2,3,4,13,38],trace_stack:[13,38],traceback:[0,2,3,4,6,9,10,13,15,26,32,34,35,36,37,38,41],traceback_util:[3,4],tracer:[2,13,38],tracing_count:[3,4],track:[3,13,14,25,36,37,38],tract:[0,33],tractabl:[0,32,33],trade:[5,9,19,34,35],tradeoff:[0,5,19,26,32,33,34,36],tradit:[0,1,4,6,32,35,39,40,41],train:[2,3,5,6,8,9,10,11,12,13,17,19,21,23,26,27,34,35,36,37,38],train_acc:[23,41],train_accuraci:[0,1,3,32,39,40,41],train_dataset:4,train_end:[0,1,33,39,40,41],train_error:[6,23,41],train_funct:[3,4],train_imag:[3,4],train_ind:[6,35,36],train_label:[3,4],train_pr:[1,39,40,41],train_siz:[0,1,3,33,39,40,41],train_step:4,train_test_split:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],train_test_split_numpi:[0,1,33,39,40,41],trainabl:4,trainable_vari:4,trained_model:[6,33,34],trainerror:[0,33],traini:4,training_checkpoint:4,training_dataset:4,training_gradi:[13,21,37,38],training_gradient_fun:[37,38],training_loss:[37,38],trainingerror:[6,35],trainpredict:4,trainscor:4,trainx:4,trait:[0,32],trajectori:4,trajectory_i:21,trajectory_x:21,transfer:9,transform:[0,5,6,7,8,9,10,11,12,13,21,23,24,25,32,33,34,35,36,37,38,39,41],transit:[6,12,38,39],translat:[1,4,6,10,33,34,39,40,41],translate_vjp:[],transpos:[1,5,11,25,33,34,39,40,41],travers:[0,5],treat:[0,1,3,6,12,13,29,32,33,34,35,36,37,38,39,40,41],tree:[0,1,6,24,26,32,39,40,41],tree_clf:[9,10],tree_clf_:9,tree_clf_sr:9,tree_reg1:9,tree_reg2:9,tree_reg:9,trend:29,treue:7,trevor:[18,26,31],tri:[2,3,4,9,13,36,37,38,41],triain:0,trial:[0,2,4,6,13,29,32,35,36,37],triangl:[13,36,37],triangular:25,trick:[3,4,8,11,13,21,29,37,38],trickier:29,tridiagon:25,trillion:24,trivial:[0,1,5,11,29,32,34,40,41],troubl:[0,8,12,33,39],truck:3,true_beta:[6,33,34],true_divid:[1,39,40],true_fun:[6,35],truli:32,truncat:21,tucker:8,tuesdai:[30,32,35,36,37,38,39,40,41],tumor:[7,9,27,36],tumour:[7,36],tunabl:[1,21,22,27,40,41],tune:[4,9,13,21,22,25,27,32,36,37,38],tupl:[2,13,23,38,41],turn:[0,1,5,6,7,8,9,10,11,12,13,19,25,26,29,32,33,35,36,37,38,39,40,41],tutori:[1,4,40,41],tv:[2,41],tveito:[2,41],tweak:[1,4,10,29,40,41],twice:[13,36,37],twist:11,two:[0,1,2,4,5,6,7,9,10,11,12,13,15,16,22,23,25,28,29,31,32,34,35,37,38,39,40,41],tx:[13,36,37,38,39],tx_1:[13,36,37],txt:4,ty:[13,36,37],type:[0,1,3,6,8,10,13,16,23,25,26,29,33,34,35,36,37,40],typeerror:[2,13,38],typic:[0,1,2,3,4,5,7,9,10,12,13,21,27,29,32,33,34,35,36,37,38,39,40,41],typo:[26,27],u:[0,2,5,6,8,10,11,12,17,25,32,33,34,38,39,41],u_:25,u_i:[12,38,39],u_m:10,ua:[0,32],ubuntu:[0,15,24,26,32],uci:[0,27,33],uio:[26,27,30,31],un:14,unari:[25,32],unary_f:[2,13,38],unary_oper:[2,13,38],unary_to_nari:[2,13,38],unbalanc:[6,9,35,36],unbias:[0,5,6,32,34,35],uncent:[6,34],uncertainti:[0,5,32,34,35],uncertitud:29,unchang:[1,3,40,41],uncorrel:[10,29],undefin:[5,33],under:[0,1,5,6,10,13,15,16,24,26,27,32,33,34,35,36,37,40,41],underdetermin:[0,32],underfit:[1,6,35,40,41],underflowproblem:[5,34,35],undergo:[5,34,35],undergradu:[28,30],underli:[0,1,9,13,29,32,37,38,40,41],underset:[4,14],understand:[0,1,3,5,6,10,13,14,21,23,24,32,33,34,36,37,38,40,41],understood:[8,13,37,38],undesir:8,undetermin:[5,8,34,35],undo:4,unexpect:[6,35],unexpected:29,unfair:[6,33,34],unfortun:[1,8,9,10,40,41],unicode_liter:[8,9],uniform:[0,1,5,6,11,13,15,16,26,29,32,33,36,37,39,40,41],uniformli:[13,29,36,37,38],unifrompdf:29,unimport:[13,36,37],union:[5,6,34,35,36],uniqu:[0,2,6,13,14,25,32,35,36,37,41],unique_cluster_label:14,unit:[0,1,3,4,5,10,12,29,32,33,34,38,39,40,41],unitari:[5,6,25,33],unitarili:[25,32],uniti:29,univari:29,univers:[0,1,2,13,15,24,26,27,28,30,32,33,34,35,36,37,38,40,41],unix:[1,40,41],unknow:[0,25,32],unknown:[0,1,3,4,5,6,8,10,13,16,21,25,32,33,34,35,37,38,39,40],unknowwn:[12,39],unlabel:[1,40,41],unless:[0,3,6,11,13,26,27,32,33,35,36,37],unlik:[1,3,8,13,36,37,38,40,41],unnecessarili:9,unord:3,unravel:[1,39,40,41],unrol:[3,11],unseen:[0,7,9,36],unstabl:[1,40,41],unsupervis:[0,1,4,12,24,32,38,39,40,41],unsymmetr:[25,32],untak:[],until:[1,2,4,9,12,13,14,23,36,37,38,39,40,41],untouch:0,unusu:[12,38,39],up:[1,3,4,5,6,8,10,11,13,14,16,18,24,25,26,27,29,30,34,37,38],updat:[1,2,10,12,13,14,21,23,37,38,39,40,41],update_chang:[23,41],update_matrix:[23,41],uploa:32,upload:[24,26,27,31],upon:[0,1,6,7,11,23,25,26,40,41],upper:[0,8,9,16,25,33],uppercas:[25,32],upsampl:4,upscal:4,url:41,us:[4,5,6,8,9,10,11,12,14,15,16,17,18,19,22,25,26,28,29,31,34,35],usa:[32,38],usag:[0,8,24,32,33],usd10000:[0,33],usd:[0,33],use_bia:4,use_multiprocess:[3,4],usecol:[0,32],useless:[1,39,40,41],user:[0,1,2,3,4,6,7,8,11,15,21,23,24,25,26,32,33,34,36,39,40,41],usernam:[26,27],userwarn:[3,6,21],usetex:29,usg:[6,26],usr:29,usual:[0,3,4,7,12,13,14,32,36,37,38,39],ut:[5,34],util:[0,1,3,4,6,7,10,14,23,27,32,33,35,36,40,41],ux:25,v0:29,v1:29,v2:29,v:[2,4,5,6,11,13,17,21,23,24,33,34,37,38,41],v_0:11,va:[1,40,41],val:[13,37,38],val_acc:[23,41],val_accuraci:3,val_error:[23,41],val_loss:4,val_set:[23,41],vale:[2,41],valid:[0,1,4,7,9,10,13,21,23,24,27,29,32,33,37,38,40,41],validation_batch_s:[3,4],validation_data:[3,4],validation_freq:[3,4],validation_split:[3,4],validation_step:[3,4],valu:[0,1,2,3,4,6,7,8,9,10,12,13,14,15,16,19,21,23,24,25,26,32,37,38,39,40,41],valuat:9,valued_at_a:[23,41],valued_at_z:[23,41],valueerror:[0,32],valy:4,van:[0,18,26,32,33,34,35],vandenbergh:[8,13,36,37],vandermond:[0,32],vanilla:[0,6,11,14,33,34],vanish:[1,4,13,29,36,37,40,41],var_x:29,varabl:8,varepsilon:[5,6,18,26,34,35],varepsilon_:[5,6,34,35],varepsilon_i:[5,6,34,35],vari:[0,1,3,5,6,10,15,16,32,35,39,40,41],variabl:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,21,23,25,32,33,34,35,38,39,40,41],varianc:[0,1,5,7,9,10,11,13,14,18,19,21,24,25,27,29,32,33,36,37,38,40,41],variance_i:[5,11,33],variance_x:[5,11,33],variant:[0,1,6,8,12,13,32,33,36,37,38,39,40,41],variat:[3,4,11,32],varieti:[0,3,12,15,24,26,32,38,39],variou:[1,3,5,6,7,8,9,11,12,13,16,18,21,22,23,24,25,26,29,33,34,37,38,39,40,41],varydimens:4,vastli:3,vaue:[1,40,41],vault:0,vdot:[2,13,36,37,41],ve:[26,27],vec:[6,35],vector:[0,1,2,3,4,5,6,7,9,10,11,13,14,16,17,21,23,24,34,35,36,37,40,41],vector_mean:14,ventur:[0,8,15,24,32],verbos:[1,3,4,40,41],veri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,26,27,29,31,32,33,34,35,36,37,38,39],verifi:[3,11,25,32],versatil:[8,32],versicolor:[8,9],version:[0,3,4,10,13,14,15,24,25,26,27,29,32,33,37,38],versu:[1,40,41],vert:[0,1,5,6,7,8,9,11,13,17,32,33,34,35,36,37,39,40],vert_1:[5,6,33,34,35],vert_2:[5,6,11,17,33,34,35],vi:[23,41],via:[0,5,6,7,8,9,10,11,12,15,19,23,24,25,26,28,29,30,32,33,34,35,36,38,39,41],vidal:11,video:[0,1,12,24,28,30,32,33,34,35,36,39,40,41],view:[1,3,5,6,12,13,21,29,31,32,34,35,37,38,39,40,41],vii:[23,41],viii:[23,41],violat:8,virginica:9,viridi:[0,1,2,3,23,32,39,40,41],virtual:[1,40,41],viscos:[13,37,38],viscou:[13,37,38],visibledeprecationwarn:2,vision:[0,3,32],visual:[0,3,11,12,15,23,24,32,33,38],visualis:[1,40,41],viz:[6,8,29],vjp:[2,13,38],vjp_argnum:[],vjpfun:[],vjpmaker:[],vjpnode:[13,38],vjps_dict:[],vmap:[13,37,38],vmax:[1,6,40,41],vmin:[1,6,40,41],voic:3,volum:[0,3,32],volume18:41,vote:10,voting_clf:10,votingclassifi:10,votingsimpl:10,vs:[0,2,4,6,33,35,37],vspace:[2,13,38],vstack:[5,11,23,25,29,32,33,41],vt:[5,33,34],w1:8,w2:[8,11],w3:8,w:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,23,25,29,32,33,35,36,37,38,39,40,41],w_1:[8,25],w_1x_1:8,w_1x_:8,w_2:[8,25],w_2x_2:8,w_2x_:8,w_3:25,w_4:25,w_:[1,12,38,39,40,41],w_h:[23,41],w_hidden:[2,41],w_i:[1,2,10,39,40,41],w_ix_i:[12,38,39],w_j:25,w_m:25,w_output:[2,41],w_px_:8,w_px_p:8,wa:[0,1,3,4,5,6,7,10,11,12,13,14,17,23,25,26,32,33,34,35,36,37,38,39,40,41],wai:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,17,25,27,29,32,33,34,36,37,38,39,40,41],walk:9,walker:29,wang:[0,32],want:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],warn:[0,1,4,8,23,32,33,39,40,41],warrant:[6,35,36],wast:[3,37,38],watch:[3,4,24],wave:3,wavelet:8,we:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,25,26,27,28,29,30,31,33,34,35,36,39],weak:[9,10,14],weather:[1,12,38,39,40,41],web:[24,28,30,32,33],weblink:27,webpag:32,websit:[6,25,26,28,32],wedg:[8,29],wednesdai:[30,32,35,36,37,38,39,40,41],wee:11,week:[0,5,6,7,26,27,28,30],weekli:[24,26,30,31,32,38],weight:[0,1,2,3,6,7,9,10,12,13,23,26,27,29,33,36,37,38],weight_arrai:[23,41],weigth:[2,41],welcom:[8,24],well:[0,1,2,3,4,5,6,7,8,9,10,12,13,15,16,19,20,21,23,24,25,26,27,29,31,32,33,34,35,36,37,38,39,40,41],went:8,were:[0,1,3,4,5,6,7,8,10,11,12,14,23,29,32,33,35,36,38,39,40,41],wessel:[0,18,26,32,33,34,35],what:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,23,24,25,26,27,29,36,37,38,39,40,41],whatev:3,when:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,21,23,25,26,27,29,32,33,34,35,36,39,40,41],whenev:[13,21,29,37,38],where:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],wherea:[6,29,35],wherein:[1,12,38,39,40,41],whether:[0,3,5,7,9,26,27,29,32,34,36],which:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,23,24,25,26,27,28,29,30,32,33,34,35,36,39],whichev:[1,3,40,41],white:9,whiteboard:[19,33,34,35,36,37],who:[0,28,32],whole:[1,3,4,5,9,11,13,34,35,37,38,39,40,41],whose:[0,6,10,29,33,35],whow:[11,33],whrn:35,why:[0,1,3,6,13,21,26,34,36,37,40],wide:[0,1,3,6,7,12,15,24,25,26,32,35,36,38,39,40,41],widehat:[6,35],width:[0,3,8,9,32],wieringen:[0,18,26,32,33,34,35],win:10,wind:9,wing:[30,32],winther:[2,41],wiothout:[6,33,34],wiscons:[7,36],wisconsin:[10,23,27,41],wisdom:[6,34],wise:[0,1,5,12,13,33,37,38,39,40,41],wish:[0,2,5,7,8,11,13,14,23,25,26,27,32,33,36,37,41],with_std:[0,33,35],wither:6,within:[0,2,3,4,7,9,12,13,14,29,31,32,36,37,39,41],withinclust:14,without:[0,1,5,6,8,9,11,12,13,21,22,27,32,33,34,35,37,38,39,40,41],without_trac:[3,4],wo5dmep_bbi:[],won:[0,32],wonder:8,woodi:32,word:[0,1,3,4,5,6,7,14,23,29,32,33,34,35,40,41],work:[0,1,4,6,7,8,9,13,15,21,24,26,27,28,29,30,32,33,35,36,37,38,39,40,41],worker:[3,4],workshop:32,world:[0,8,32,33],worldwid:[0,32],wors:[0,1,3,4,6,32,35,40,41],worst:9,worth:9,worthi:[26,27],would:[0,1,3,5,6,7,8,9,10,11,12,13,25,26,27,29,32,33,34,35,36,37,38,39,40,41],wrap:[6,25,32],wrap_util:[2,13,38],wrapper:[0,32],write:[0,1,2,3,5,6,7,8,12,13,15,16,17,20,21,23,25,26,32,33,35,36,37,38,39,40],written:[0,2,3,5,11,12,13,16,24,25,26,27,29,32,33,34,35,36,37,38,39,41],wrong:[1,8,39,40,41],wrongli:10,wrote:[5,11,33],wrt:[10,13,21,37,38],wth:[10,13,21,37,38],www:[24,25,26,27,31,32,41],wx_1:8,x0:8,x1:[4,8,9,10,13,37,38],x1_exampl:8,x1d:8,x2:[8,9,10,13,37,38],x2d:[8,11],x2d_train:11,x2dsl:11,x3:8,x:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,25,26,27,29,32,35,36,37,38,39,40,41],x_0:[0,5,11,25,32,33,34,35],x_1:[0,2,5,6,7,8,9,10,11,13,23,25,29,32,33,34,35,36,37,38,39,40,41],x_2:[0,2,5,6,7,8,9,10,11,13,23,25,29,32,33,35,36,37,38,39,40,41],x_3:[8,25,29],x_4:25,x_:[0,2,3,5,6,8,10,11,13,14,18,25,26,29,32,33,34,35,36,37,41],x_batch:[23,41],x_center:11,x_data:[1,39,40,41],x_data_ful:[1,39,40,41],x_hidden:[2,41],x_i:[0,1,2,5,6,7,8,9,10,11,12,13,14,17,25,29,32,33,34,35,36,37,38,39,40,41],x_input:[2,41],x_ix_:[0,32],x_iy_i:8,x_j:[0,2,8,9,12,16,29,33,38,39,41],x_jy_j:8,x_k:[12,14,25,29,33,38,39],x_l:29,x_m:[6,12,25,29,35,38,39],x_n:[0,2,3,6,8,11,12,13,25,29,32,35,36,37,38,39,41],x_new:[2,9,10],x_offset:[6,33,34],x_output:[2,41],x_p:[3,7,9,36],x_poli:9,x_poly10:9,x_pred:4,x_prev:[2,41],x_reduc:11,x_scale:8,x_small:[13,37,38],x_test:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],x_test_own:6,x_test_scal:[0,6,7,9,10,11,33,34,35],x_tot:4,x_train:[0,1,3,4,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],x_train_mean:[6,33,34,35],x_train_own:6,x_train_scal:[0,6,7,9,10,11,33,34,35],x_val:[1,23,40,41],xarrai:[24,32],xavier:[1,40,41],xbnew:[13,36,37],xcode:[0,15,24,26,32],xdclassiffierconfus:10,xdclassiffierroc:10,xg_clf:10,xgb:10,xgbclassifi:10,xgboost:9,xgboot:10,xgbregressor:10,xgparam:10,xgtree:10,xi:[8,13,21,37,38],xi_1:8,xi_:8,xi_i:8,xinv:[34,38,39],xk:8,xla:[3,4,13,21,24,32,37,38],xlabel:[0,1,2,3,4,5,6,7,8,9,10,13,21,26,29,32,33,34,35,36,37,38,40,41],xlim:[6,10,35],xm:9,xmesh:[13,37],xnew:[0,13,21,32,36,37,38],xp:29,xpanda:[0,33],xpd:[5,11,33],xplot:0,xs:9,xscale:[0,33],xsr:9,xt_x:[13,21,36,37,38],xtest:[6,35,36],xtick:[3,6,8,9,35],xtrain:[6,35,36],xu:[0,32],xx:[0,25,32],xy:[0,6,8,25,26,32],xytext:8,xz:[25,32],y1:4,y2:4,y3:4,y:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],y_0:[0,5,11,25,32,33,34,35],y_1:[0,5,8,9,11,13,25,32,33,34,35,36,37],y_1y_1:8,y_1y_1k:8,y_1y_2:8,y_1y_2k:8,y_1y_n:8,y_1y_nk:8,y_2:[0,5,8,9,11,25,32,33],y_2y_1:8,y_2y_1k:8,y_2y_2:8,y_2y_2k:8,y_3:[0,9,25],y_4:25,y_:[0,1,5,6,10,11,25,32,33,34,35,39,40,41],y_data:[0,1,5,6,32,33,34,35,36,39,40,41],y_data_ful:[1,39,40,41],y_decis:8,y_fit:[0,33],y_i:[0,1,5,6,7,8,9,10,11,12,13,15,16,17,18,19,25,26,27,32,33,34,35,36,37,38,39,40,41],y_if_:10,y_ix_:[0,32],y_ix_i:[7,8,13,33,36,37],y_iy_jk:8,y_j:[6,8,12,19,26,35,38,39],y_k:[12,38,39],y_m:25,y_model:[0,4,5,6,32,33,34,35,36],y_n:[8,13,36,37],y_ny_1:8,y_ny_1k:8,y_ny_2:8,y_ny_2k:8,y_ny_n:8,y_ny_nk:8,y_offset:[6,33,34],y_plot:9,y_pred1:9,y_pred2:9,y_pred:[0,1,4,6,7,8,9,10,33,34,35,36,39,40,41],y_pred_rf:10,y_pred_tre:10,y_proba:[7,10,36],y_scaler:[6,34,35],y_test:[0,1,3,4,5,6,7,9,10,11,32,33,34,35,36,39,40,41],y_test_onehot:[1,39,40,41],y_test_predict:[0,33],y_test_scal:35,y_tot:4,y_train:[0,1,3,4,5,6,7,9,10,11,32,33,34,35,36,39,40,41],y_train_mean:[6,33,34],y_train_onehot:[1,39,40,41],y_train_predict:[0,33],y_train_scal:[6,34,35],y_val:[1,40,41],yadav:41,yand:[23,38,39,40,41],ye:[3,6,7,35,36],year:[0,24,32,40],yet:[0,1,6,8,11,13,23,32,36,37,38,39,40,41],yi:[13,21,37,38],yield:[0,2,5,6,8,10,12,13,14,25,29,32,34,35,36,37,38,39,41],yk:8,ylabel:[0,1,2,3,4,5,6,7,8,9,10,13,21,26,29,32,33,34,35,36,37,38,40,41],ylim:[3,6,35],ym:9,ymesh:[13,37],yn:0,yo:[8,9,10],yor:[23,38,39,40,41],yoshua:[1,31,40,41],you:[0,1,2,3,4,5,6,8,9,10,11,13,15,16,17,19,20,21,22,23,24,25,26,27,29,30,31,33,34,35,36,37,38,39,40,41],young:[0,32],your:[1,2,4,5,6,8,11,13,17,19,20,21,22,23,24,25,26,34,35,36,37,38,39,40,41],yourself:[11,13,32,37],youtub:24,ypred:[6,35,36],ypredict2:[13,21,36,37,38],ypredict:[0,13,21,32,33,36,37,38],ypredictlasso:[5,34],ypredictol:[0,5,34,35],ypredictown:[6,33,34],ypredictownridg:[6,34],ypredictridg:[0,5,6,34,35,36],ypredictskl:[6,33,34],yridg:32,ys:9,ytest:[6,35,36],ytick:[3,6,8,9,35],ytild:[0,6,32,33,35],ytilde_test_ol:35,ytilde_test_ridg:35,ytildelasso:[5,34],ytildenp:[0,32,33],ytildeol:[0,5,34],ytildeownridg:[6,34],ytilderidg:[5,6,34],ytrain:[6,35,36],yx:[25,32],yxor:[23,38,39,40,41],yy:[25,32],yz:[25,32],z:[0,1,2,3,4,5,6,7,8,9,11,12,13,23,25,26,29,32,33,35,36,37,38,39,40,41],z_0:[25,32],z_1:[25,32],z_2:[25,32],z_:[1,2,12,25,32,39,40,41],z_c:[1,39,40,41],z_h:[1,23,39,40,41],z_hidden:[2,41],z_i:[1,12,38,39,40],z_j:[1,12,40,41],z_k:[12,33,39],z_m:[1,39,40],z_matric:[23,41],z_mod:9,z_o:[1,23,39,40,41],z_output:[2,41],zaman:29,zaxi:[6,26],zero:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],zeros_lik:4,zeroth:33,zfill:4,zip:[2,4,6,13,38],zm_h:[0,32],zn:[0,33],zone:[0,33],zoom:32,zx:[25,32],zy:[25,32],zz:[25,32]},titles:["3. Linear Regression","14. Building a Feed Forward Neural Network","15. Solving Differential Equations with Deep Learning","16. Convolutional Neural Networks","17. Recurrent neural networks: Overarching view","4. Ridge and Lasso Regression","5. Resampling Methods","6. Logistic Regression","8. Support Vector Machines, overarching aims","9. Decision trees, overarching aims","10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods","11. Basic ideas of the Principal Component Analysis (PCA)","13. Neural networks","7. Optimization, the central part of any Machine Learning algortithm","12. Clustering and Unsupervised Learning","Exercises week 34","Exercises week 35","Exercises week 36","Exercises week 37","Exercises week 38","Exercises week 39","Exercises week 41","Exercises week 42","Exercises weeks 43 and 44","Applied Data Analysis and Machine Learning","2. Linear Algebra, Handling of Arrays and more Python Features","Project 1 on Machine Learning, deadline October 9 (midnight), 2023","Project 2 on Machine Learning, deadline November 13 (Midnight)","Teaching schedule with links to material","1. Elements of Probability Theory and Statistical Data Analysis","Teachers and Grading","Textbooks","Week 34: Introduction to the course, Logistics and Practicalities","Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression","Week 36: Statistical interpretation of Linear Regression and Resampling techniques","Week 37: Statistical interpretations and Resampling Methods","Week 38: Logistic Regression and Optimization","Week 39: Optimization and Gradient Methods","Week 40: Gradient descent methods (continued) and start Neural networks","Week 41 Neural networks and constructing a neural network code","Week 42 Constructing a Neural Network code with introduction to Tensor flow","Week 43: Deep Learning: Constructing a Neural Network code and solving differential equations"],titleterms:{"1":[0,15,16,17,18,26,32,33],"12":39,"13":27,"14":35,"19":40,"2":[0,15,16,17,18,27,32,33],"2023":[26,30],"21":36,"23":36,"26":41,"3":[0,15,16,32,33],"31":33,"34":[15,32],"35":[16,33],"36":[17,34],"37":[18,35],"38":[19,36],"39":[20,21,37],"4":[0,33],"40":[21,38],"41":[21,39],"42":[22,40],"43":[23,41],"44":[23,41],"5":0,"7":34,"9":26,"case":[8,10,29,33,34,36,37],"class":36,"do":[1,32,34,35,37,38,39,40,41],"final":[12,21,27,33,34,37,38,39,41],"function":[0,1,6,7,8,10,11,12,13,21,23,26,27,29,32,33,34,35,36,37,38,39,40,41],"import":[5,21,25,32,33,34],"new":[4,34,35],A:[0,1,4,8,9,21,32,34,35,36,40,41],AND:[23,38,39,40,41],And:[21,32,33,34,36,37,38],But:[21,37,38],In:30,Is:[40,41],Ising:6,OR:[38,39,40,41],The:[0,1,2,3,5,6,7,8,9,11,12,17,23,24,32,33,34,35,36,37,38,39,40,41],To:[32,33],With:[4,34],about:[32,33],abov:[23,34,41],activ:[1,12,23,27,34,38,39,40,41],ad:[0,6,17,26,32,33,38,39],adaboost:10,adagrad:[13,21,37,38],adam:[13,21,37,38],adapt:[10,21,37,38],adjust:[1,39,40,41],advanc:21,adversari:4,again:[3,9,36],ai:32,aim:[8,9,17,18,19,20,21,22,23,32],aka:[32,33],al:21,algebra:[25,32],algorithm:[9,10,11,12,21,27,33,37,38,39,40],algortithm:[13,36,37],all:8,an:[0,4,10,32],analys:[5,33],analysi:[0,5,6,11,24,26,27,29,32,33,34,35],analyt:[0,16,17,21,41],ani:[13,36,37],anoth:[9,34,35],appli:24,approach:[0,8,14,32,35,37,38],approxim:[12,39],architectur:[1,39,40,41],argument:[37,38],arrai:[25,32],artifici:[38,39],assist:30,assumpt:[34,35],august:33,autocorrel:29,autograd:[2,13,21,37,38,41],automat:[13,21,37,38,41],avoid:[37,38],b:[17,26,27,37,38],back:[1,11,12,39,40,41],background:[24,26,27,35],bag:10,base:[13,21,35,37,38],basic:[0,5,7,9,10,11,25,33,34,35,36],batch:[1,37,38,40,41],bay:[5,34,35],befor:11,beta:[34,35],better:[8,38,39],bia:[6,26,35],bias:[39,40,41],binari:[1,39,40],bind:32,bird:10,boldsymbol:[33,34,35],boost:10,bootstrap:[6,10,35],boston:[0,33],breast:[1,40,41],brief:[32,35,36,37],bring:[12,39],build:[1,3,9,23,40,41],c:[26,27,32],calcul:33,can:[21,32,35,37,38],cancer:[1,7,9,11,36,40,41],cart:9,center:33,central:[13,24,29,35,36,37],chain:[12,39],challeng:36,chang:10,channel:32,chi:[0,32],choic:[40,41],choos:[1,39,40,41],cifar01:3,classic:11,classif:[1,9,10,23,27,36,39,40,41],classifi:[8,36],clip:[1,40,41],cluster:14,cnn:3,code:[0,1,2,5,9,11,12,13,14,21,23,27,32,33,34,35,36,37,38,39,40,41],collect:[1,3,39,40,41],come:36,commun:32,compact:36,compar:[2,10,41],comparison:34,compet:[21,37,38],complet:33,complex:[0,6,26,33],complic:[6,37,38],compon:11,comput:[9,37,38],computation:35,computerlab:32,con:9,concept:29,condit:[34,35,36,37],confid:35,conjug:[13,37],construct:[39,40,41],continu:38,contn:32,convex:[8,13,36,37],convolut:[3,12,38,39],correctli:[34,35],correl:[11,33,36],correspond:[36,37],cost:[1,10,23,33,34,35,36,37,39,40,41],cours:[24,31,32],covari:[5,11,29,33],cover:32,critic:27,cross:[6,26,35,36],cython:32,d:[26,27],data:[0,1,3,6,7,9,11,15,16,23,24,26,29,32,33,34,36,39,40,41],dataset:[1,3,39,40,41],deadlin:[26,27,32],decai:[2,37,38,41],decis:[9,10],decomposit:[5,11,17,25,33],deep:[1,2,36,40,41],defin:[1,32,39,40,41],definit:39,degre:[0,33],deliveri:[26,27],delta:35,dens:[0,32],deriv:[5,12,33,34,35,36,37,39,40,41],descent:[2,10,13,21,27,36,37,38,41],descript:26,design:33,detail:[3,32,41],develop:[1,39,40,41],diagon:11,differ:[8,27,37,38],different:21,differenti:[2,13,37,38,41],diffus:[2,41],dimension:[2,3,8,23,26,33,41],directli:[37,38],disadvantag:9,discret:29,discuss:36,distribut:[5,29,34,35],distrubut:[34,35],doe:[33,34,38,39],domain:29,dot:[37,38],down:[1,40,41],dropout:[1,40,41],e:[26,27],each:36,economi:33,electron:[26,27],element:[0,29,32,37,38],elimin:25,energi:32,ensembl:10,entropi:[9,36],environ:[0,15,32],equat:[0,2,12,32,33,34,36,37,39,41],error:[0,10,32,33,35],essenti:32,estim:[34,35],et:21,etc:32,euler:[2,41],evalu:[1,27,39,40,41],exampl:[0,1,2,3,4,6,7,8,9,10,21,32,33,34,35,36,37,38,39,40,41],exercis:[0,6,15,16,17,18,19,20,21,22,23,32,33,35,41],expect:[18,29,34,35],expens:35,experi:29,explor:[0,15,16,32],exponenti:[2,41],express:[17,18,32,33,36,37],extend:[36,37],extrapol:4,extrem:[10,32],ey:10,f:[26,27],fall:30,famili:[1,32,33,40,41],famou:25,fantast:33,featur:[9,25,33],feed:[1,12,38,39,40,41],find:[35,37,38],fine:[1,40,41],first:[4,12,27,32,33,34,36,37,39,41],fit:[0,10,32,34],fix:33,flow:40,fold:[35,36],forc:3,forest:10,format:[26,27,32],forward:[1,2,12,38,39,40,41],fourier:3,frank:[6,26,33],freedom:[0,33],frequent:33,frequentist:[0,32],fridai:36,from:[5,10,12,21,27,33,34,35,36,37,38,39],full:[2,39,40,41],funtion:[40,41],further:[3,5,33],g:26,gan:4,gate:[23,38,39,40,41],gaussian:25,gd:[13,21,37,38],gener:[4,9,32],geometr:[11,36,37],get:21,gini:9,good:[0,32],goodfellow:21,grade:[30,32],gradient:[1,2,10,13,21,27,36,37,38,40,41],grid:36,group:36,growth:[2,41],ha:24,hand:[23,41],handl:[25,32,33],happen:[34,35],have:32,heard:32,hessian:[33,36,37],hidden:[2,40,41],histogram:35,homework:[36,37],hous:[0,33],how:36,hyperbol:[38,39],hyperparamet:[1,39,40,41],hyperplan:8,i:[1,40,41],id3:9,idea:11,ideal:[36,37],ident:[34,35],identifi:35,ii:[32,41],iid:[34,35],iii:41,illustr:[34,38,39],implement:[1,39,40,41],implic:[5,33],improv:[1,37,39,40,41],includ:[13,21,36,37,38],increment:11,independ:[34,35],index:9,inform:30,input:[2,41],instal:[24,26,32],instructor:30,intercept:33,interpret:[5,11,32,33,34,35,36,37],interv:35,introduc:[11,13,21,33,37,38],introduct:[0,6,24,25,26,27,32,38,39,40],invers:[5,25,34],invert:33,iter:[10,37],its:33,iv:41,jacobian:[33,41],jax:[13,21,37,38],job:[38,39],julia:32,jungl:10,k:[35,36],kera:[1,3,40,41],kernel:[8,11],l:39,lagrangian:8,lambda:36,lasso:[5,6,26,33,34,35,36],last:[33,35,36,38],later:[5,33],layer:[1,2,3,12,39,40,41],learn:[0,1,2,11,13,14,15,16,21,23,24,26,27,32,33,34,35,36,37,38,39,40,41],least:[5,6,18,26,32,33,34],lectur:[32,33,34,35,36,39,40,41],level:10,librari:[24,32],likelihood:[7,34,35,36],limit:[1,13,29,35,36,37,38,40,41],linear:[0,8,13,25,27,32,33,34,36],link:[5,11,28,31,33,34,35],literatur:[26,27],logist:[7,27,32,36,37,38,39,40,41],loop:[37,38],loss:[33,36,37],lu:25,machin:[0,8,13,24,26,27,32,36,37],made:[34,35],mai:32,main:29,make:[0,9,10,15,16,32,33],mani:[10,12,39],manipul:33,margin:[34,35],mass:32,materi:[28,32,33,34,35,36,41],math:[5,33],mathemat:[3,5,8,33,37,38,39],matric:[5,25,32,34],matrix:[1,5,11,12,25,32,33,34,36,37,38,39,40,41],matter:[0,32],max:33,maximum:[34,35,36],mean:[0,32,33,34,36],measur:36,meet:[5,10,29,32,33],mercer:8,method:[6,9,10,13,21,23,26,35,36,37,38,41],midnight:[26,27],min:33,mini:[37,38],minibatch:[21,37,38],minim:[32,36,41],ml:32,mle:[34,35],mlp:[12,39],mnist:[3,4],model:[0,1,4,6,12,32,38,39,40,41],moment:[37,38],momentum:[13,21,37,38],moon:[8,9],more:[3,6,21,25,26,32,33,34,35,36,37,38,40,41],multi:[38,39,40],multiclass:[23,41],multilay:[12,38,39],multipl:[1,3,39,40,41],multipli:8,need:[26,32],network:[1,2,3,4,7,12,23,27,32,36,38,39,40,41],neural:[1,2,3,4,7,12,23,27,32,38,39,40,41],neuron:[38,39],newton:[21,36,37,38],nice:[40,41],noen:[21,37,38],non:8,normal:[0,1,35,40,41],notat:[12,38,39],note:[21,33,34,35],novemb:27,now:[1,9,13,21,34,35,37,38,40,41],nuclear:[0,32],nueral:36,numba:32,number:[0,2,21,29,33,37,38,41],numer:[2,26,27,29,41],numpi:[21,25,32,37,38],object:[3,39,40,41],obtain:11,octob:[26,39,40,41],od:[2,41],off:[6,26],ol:[5,6,21,26,34,35,37,38],one:[2,12,36,37,39,41],ones:[38,39],oper:25,optim:[1,8,13,24,32,33,36,37,38,39,40,41],order:[13,21,37,38],ordinari:[5,6,18,26,32,33,34,41],organ:[0,32],orient:[39,40,41],oslo:31,other:[4,9,11,12,23,25,32,33,36,38,39,41],our:[0,4,5,11,13,32,33,36,37,39,40,41],outcom:[24,32],output:[2,40,41],overarch:[0,4,8,9,17,18,19,20,21,22,23,32,33],overview:[10,32,37,38],own:[0,10,11,15,16,27,32,33],packag:[25,32],panda:[32,33],paper:26,paramet:[32,33,36,37,38],part:[13,24,26,27,33,36,37],partial:[2,41],pass:[1,39,40,41],pca:11,pdf:29,pencil:26,perceptron:[12,38,39,40],perform:[1,9,39,40,41],period:3,perspect:[1,40,41],plan:[33,34,35,36,37,38,39,40,41],plot:[35,36],point:4,poisson:[2,41],polynomi:[3,34],popul:[2,41],possibl:41,practic:[13,21,30,32,37,38],pre:[1,3,39,40,41],predict:4,predictor:36,preprocess:33,prerequisit:[3,24,32],princip:11,principl:3,pro:9,probabl:[5,29,34,35],problem:[1,2,13,21,32,33,34,36,37,38,39,40,41],procedur:[9,32],process:[1,3,39,40,41],product:[37,38],program:[2,13,26,27,36,37,41],project:[6,26,27,32,36],prop:[13,37,38],propag:[1,12,39,40,41],properti:[5,29,33,36],python:[0,9,15,24,25,32],quick:8,r:32,random:[10,11,29,36],raphson:[36,37],rate:[21,23,37,38,41],read:[9,32,33,35],real:[6,26,32],recommend:[32,33,37,38],rectangular:34,recurr:[4,12,38,39],recurs:[37,38],reduc:[0,33],reduct:3,reformul:[2,41],regress:[0,5,6,7,9,10,13,17,18,26,27,32,33,34,35,36,37,38,39],regular:[1,36,39,40,41],relat:33,relev:[31,33,35,36,38,39],relu:[1,40,41],remark:3,remind:[6,8,32,36,37],repeat:33,replac:[13,37,38],report:[26,27],repositori:35,repres:[23,39,40,41],requir:[2,24,41],resampl:[6,26,34,35],rescal:[6,34],residu:33,resourc:[2,41],result:[33,34],review:40,revisit:[13,36,37],rewrit:[32,33,35],rewritten:36,ridg:[0,5,6,17,18,26,33,34,35,36,37],rm:[13,37,38],rmsprop:[21,37,38],rule:[12,39],s:[8,10,21,35,36,37,38],same:[13,21,35,37,38],sampl:11,scale:[33,35],schedul:[23,28,32,41],schemat:9,scheme:[2,41],scienc:32,scikit:[0,1,11,15,16,23,32,33,34,35,36,37,39,40,41],search:36,second:[13,21,37,38],select:36,semest:30,sensit:[36,37],septemb:[34,35,36],session:34,set:[0,2,3,9,12,15,23,32,33,36,39,40,41],setup:41,sgd:[13,37,38],should:[1,40,41],sigmoid:[40,41],similar:[13,21,37,38],simpl:[0,4,9,13,32,33,34,36,37,38],singl:[10,38,39],singular:[5,11,17,33],size:33,slightli:[37,38],soft:8,softmax:[1,39,40],softwar:[26,32],solut:41,solv:[2,34,36,37,41],solver:13,some:[13,25,32,33,36,37],specif:41,specifi:[2,41],split:[0,15,16,32,33],squar:[0,5,6,10,18,26,32,33,34],standard:[13,33,35,37],start:[21,38],state:[0,32],statement:32,statist:[5,6,24,29,32,34,35],steepest:[10,13,36,37],step:[27,35,36,37,38],still:33,stochast:[13,21,27,29,37,38],stop:[37,38],strongli:32,studi:36,subtract:33,suggest:32,sum:35,summari:[30,32,38],superposit:3,supervis:[1,40,41],support:8,svd:[5,33,34],syntax:[37,38],systemat:3,t:[33,34],taken:21,teach:[28,30],teacher:[30,32],technic:[34,41],techniqu:[6,11,26,34],technolog:24,tensor:40,tensorflow:[1,3,40,41],tent:32,term:[35,39],test:[0,1,15,16,23,27,32,33,34,39,40,41],textbook:[31,32],than:[36,37],thei:32,theorem:[5,8,11,12,29,34,35,39],theori:29,thi:[17,18,19,20,21,22,32],think:33,thursdai:[33,34,35,36,39,40,41],time:[37,38],tip:[13,21,37,38],togeth:[12,39],tool:32,top:[1,40,41],topic:32,toward:11,trade:[6,26],tradeoff:[6,35],train:[0,1,4,15,16,32,33,39,40,41],transform:3,tree:[9,10],trial:41,tuesdai:34,tune:[1,40,41],two:[3,8,24,26,33,36],type:[2,4,12,32,38,39,41],uio:32,understand:35,univers:[12,31,39],unsupervis:14,unsupport:[37,38],up:[0,2,9,12,15,21,23,32,33,35,36,39,40,41],us:[0,1,2,3,7,13,21,23,24,27,32,33,36,37,38,39,40,41],usag:[23,34,35,41],valid:[6,26,35,36],valu:[5,11,17,18,29,33,34,35,36],vari:[21,37,38],variabl:[29,36,37],varianc:[6,26,34,35],variou:[0,15,27,32,35,36],vector:[8,12,25,32,33,38,39],veri:[40,41],video:[37,38],view:[0,4,10,33],visual:[1,9,39,40,41],vs:3,wai:[9,21,35],warm:21,wave:[2,41],we:[21,32,37,38,40,41],websit:[40,41],wednesdai:34,week:[15,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,40,41],weekend:36,weekli:[28,35],weight:[39,40,41],what:[0,32,33,34,35],when:[37,38],which:[1,21,37,38,40,41],why:[32,33,35,38,39,41],wisconsin:[7,36],wrap:[33,35],write:[4,11,27,34,41],x:[33,34],xgboost:10,xor:[23,38,39,40,41],yet:34,you:32,your:[0,10,15,16,27,32,33],yourself:36,z_j:39}})
\ No newline at end of file
+Search.setIndex({docnames:["chapter1","chapter10","chapter11","chapter12","chapter13","chapter2","chapter3","chapter4","chapter5","chapter6","chapter7","chapter8","chapter9","chapteroptimization","clustering","exercisesweek34","exercisesweek35","exercisesweek36","exercisesweek37","exercisesweek38","exercisesweek39","exercisesweek41","exercisesweek42","exercisesweek43","intro","linalg","project1","project2","schedule","statistics","teachers","textbooks","week34","week35","week36","week37","week38","week39","week40","week41","week42","week43"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["chapter1.ipynb","chapter10.ipynb","chapter11.ipynb","chapter12.ipynb","chapter13.ipynb","chapter2.ipynb","chapter3.ipynb","chapter4.ipynb","chapter5.ipynb","chapter6.ipynb","chapter7.ipynb","chapter8.ipynb","chapter9.ipynb","chapteroptimization.ipynb","clustering.ipynb","exercisesweek34.ipynb","exercisesweek35.ipynb","exercisesweek36.ipynb","exercisesweek37.ipynb","exercisesweek38.ipynb","exercisesweek39.ipynb","exercisesweek41.ipynb","exercisesweek42.ipynb","exercisesweek43.ipynb","intro.md","linalg.ipynb","project1.ipynb","project2.ipynb","schedule.md","statistics.ipynb","teachers.md","textbooks.md","week34.ipynb","week35.ipynb","week36.ipynb","week37.ipynb","week38.ipynb","week39.ipynb","week40.ipynb","week41.ipynb","week42.ipynb","week43.ipynb"],objects:{},objnames:{},objtypes:{},terms:{"0":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],"00":[0,1,5,6,9,11,23,32,33,36,39,40,41],"000":[1,3,23,39,40,41],"0000":9,"00000":9,"000000":[5,11,32,33],"0000000010":[23,41],"00000000e":[5,33,36,39],"0000164":21,"000054":32,"0000747":21,"0001":[1,17,23,39,40,41],"0001042":[],"0001225":33,"00012934":[],"00015239":[],"0001539814498783133":[],"00016826":[],"00018647":[],"00019432":[],"00019883":[],"00019998":5,"00020665":[],"00021438167895478945":[],"00022035":[],"00022902":[],"0002364":[],"0002382102844775691":36,"00024087":5,"0002442":[],"00025381":[],"00027064":[],"00028129":[],"00029012":5,"00029993":[],"00031174":[],"00031535148309577417":6,"00031535148309580783":6,"00033136014047192484":9,"0003324":[],"00034548":[],"00034944":5,"00036838":[],"00038288":[],"00040825":[],"000417932":2,"00042089":5,"00042432":[],"00045244":[],"000464088":2,"00047025":[],"00048049":[],"00048325":[],"00050142":[],"00050694":5,"00052115":[],"00053008":[],"0005557":[],"00057757":[],"00058016":6,"00060705":6,"00061058":5,"00061585":[],"00062595":6,"00063364":35,"00063862":35,"00064009":[],"0006527":[],"00066668":6,"00067395":[],"00068088":35,"00068251":[],"00068734":6,"00068946":6,"00070937":[],"00072412":[],"00073541":5,"00075597":35,"00075639":[],"00076495":6,"00076617":33,"00076905":6,"0007698473260556325":6,"0007698473260556343":6,"00078616":[],"00079129":6,"00079910":35,"00079968":5,"00081564":[],"00083346":35,"00083826":[],"00084705":6,"00085889":6,"00086063":33,"00087126":[],"00087697":6,"00088573":5,"00089187":35,"00090992":33,"00091628":[],"00092647":6,"000929":[],"00092904":35,"0009485400848532":[],"00096314":5,"00096557":[],"001":[1,2,8,13,17,23,36,37,39,40,41],"00100519":6,"00102956":[],"00104613":[],"0010479245926411787":[6,35],"00105081":6,"00105497":[],"00106677":5,"00107008":[],"00107405":6,"00111756":6,"00114101":[],"0011526":6,"00115506":33,"00115669":33,"00115999":5,"00117627":[],"00118508":6,"00118591":[],"00119699":35,"00125459":21,"00126452":[],"00128479":5,"00131428":[],"001323":6,"00134327e":[],"00137818":6,"00139705":5,"00140139":[],"00140849":35,"00143234":21,"00145652":[],"00148047":21,"00148709":[],"00149311":6,"00149956":6,"00152117":6,"00154733":5,"00154860":35,"00155308":[],"00156376":6,"00161414":[],"00163526":21,"00168251":5,"00169021":21,"00170724":[],"00172117":[],"00172452":[],"00174276":6,"00175331":6,"00178871":[],"00182747":33,"00183398":33,"00183869":[],"00186347":5,"00186362":[],"00186694":21,"001880":5,"00190742":[],"00192967":21,"00198187":[],"00199495":[],"00200":8,"00202624":5,"00202679":[],"00202756":6,"00203959":[],"00211371":[],"00213144":21,"00217499":6,"00219194":35,"00219502":[],"00219624":[],"00220306":21,"00224413":5,"00225484":[],"00225909":[],"00228742":6,"00229911":[],"00234197":[],"0023548":6,"002381316302584886":6,"0023813163025848865":6,"00242398":[],"00242847":[],"00242954":35,"00242999":6,"00243186":6,"00243341":21,"0024401":5,"00245177":[],"0024598":[],"00249435":6,"00249831":[],"00251517":21,"00254359":33,"00259385":[],"00266858":2,"00267887":[],"00270244":5,"00272586":[],"00274989":6,"00277816":21,"00283853":33,"00286972":[],"00287151":21,"00289724":6,"0029114":[],"00292838":[],"00293132":[],"00293838":5,"0030207":[],"00305172":[],"003100":32,"00310113":2,"00312361":6,"00313452":21,"00313577":[],"00315593":6,"00316561":[],"00317175":21,"0032153180657605116":[6,35],"00323332":6,"00324512":[],"00324969":[],"0032542":5,"00325450":35,"00327833":21,"003301":6,"00334743":[],"00335448":[],"00335936":[],"0033955154592040923":[6,35],"00341073e":[],"00346394":[],"00348543":32,"00353575":33,"00353823":5,"00354492":[],"00358844":[],"00359612":[],"003620":32,"00362111":21,"0036237":6,"0036367":6,"0036718":33,"00369758":6,"00370554":[],"0037095":[],"00374279":21,"00375475":[],"003755":[],"00379522":[],"0038332550504751595":36,"0038335":6,"00383872":[],"003909404072811221":[6,35],"00391839":5,"00392139":[],"00396398":[],"00398509":[],"0039987":6,"004":[5,34,35],"004091940707753925":[6,35],"00410387":6,"00410478":6,"00410646":[],"00411073":[],"004113634617443131":[6,33],"00411363461744314":[6,33],"004113634617443147":[6,33],"00413413":21,"0041559863458613296":[6,35],"00420072":35,"00424046":[],"00424909":2,"00424967":6,"00426027":5,"00426531":[],"00427304":21,"00431775":25,"00433417":11,"00439287":[],"00440346":6,"00440395":[],"00441613":[],"00443743":6,"00445655":11,"00446979":[],"00447992":11,"004480":11,"00451679":[],"00453622":[],"00455536":[],"004579219539673834":[6,35],"00458878":6,"00460304":[],"00460405":33,"004610275230656182":[6,35],"00462287":6,"00463639":33,"00465099":35,"00469926":[],"00471782":5,"00471983":21,"00472199":6,"00472512":6,"00472549":[],"00474485":[],"00478655":[],"00480366":[],"00480371":[],"0048526":[],"00487843":21,"0048938":[],"0049544":6,"004999999999999994":[],"005000000000000001":0,"00502702":[],"00504808":[],"00512927":5,"00517114":6,"00519105":[],"00526348":6,"0053018":6,"00537764":[],"00538851":21,"00542313":[],"00550379":33,"00552246":33,"00554552":6,"00555311":[],"00556826":6,"00556958":21,"0055941":[],"00562524":33,"0056799":5,"00569405":33,"00575271":[],"00579953":6,"00584432":33,"00588657":6,"00594042":[],"00595615":[],"00598615":[],"00600971":[],"00607783":6,"00610607":33,"00611979e":[],"00613258":[],"00615193":21,"00615394":[],"006162":6,"00617499":5,"00619918":[],"00620347":[],"00626773":33,"00627535":[],"00630331":6,"00631057":[],"00635475":[],"00635865":21,"00642221":6,"00642268":[],"00642935":[],"00644939":33,"00646613":[],"00651112":[],"00658316":[],"00660427":6,"00663699":[],"00665974":[],"00669662":[],"00672607":6,"00673407":6,"00676387":6,"00679797":[],"0068011":6,"00680794":[],"006829400694106674":[],"00683748":5,"00683964":6,"00686806":[],"0068697":[],"00687175":[],"0070235":21,"007024126888938144":[6,35],"00703355":[],"00704231":[],"00712321":[],"0071642501586093735":[],"00719176":6,"0072595":21,"00726135":33,"0072675":[],"00727211":[],"00727646693":[0,32],"007315":[32,33],"00736955":[],"00738008":[],"00739382":33,"0074331":5,"00753349":[],"00754534":[],"00759119":6,"007607459165915922":33,"00761275":[],"00769731":[],"00777931":[],"007785":[],"00778523":[],"00781918":35,"00784393":6,"00788598":[],"007891914573161948":[],"00798188":33,"00798988":[],"00799998":[],"00801855":21,"00803064":6,"00805074":35,"00805892":[],"00813803":6,"00817631":6,"00817834":[],"00823002":5,"00825399":33,"00827728":6,"00828799":21,"00830822":[],"00831018":6,"00832189":[],"00834567":6,"00843617":[],"00844667":[],"00848904":6,"00851512":[],"00857028":33,"00858536":[],"00862101":[],"0086649156":[0,32],"008675369724975977":5,"00868983":[],"00880924":33,"008897354602673473":33,"00890232":[],"00894639":5,"00905423":6,"00906293":[],"00915433":33,"00915458":21,"009163470508352218":5,"009164545680330616":[6,35],"00917248":6,"00920609":[],"00922229":[],"00923278":33,"00929251598272297":[],"00934327e":33,"00934499":6,"00934865":[],"0093869":[],"009442796383765939":33,"00946219":21,"00946636":33,"00952322":[],"00952586":[],"0096208":6,"00976647":[],"009855809602167547":[],"00986552":[],"00989896":[],"00990475":5,"00992331":6,"00996754":6,"01":[0,1,2,5,6,9,11,13,17,21,23,31,32,33,35,36,37,38,39,40,41],"010018312644139219":[6,35],"01004321":[],"01006401":[],"0100706":6,"0100949":33,"01018743":[],"01023308":21,"010315":11,"01031541":11,"010331721306655165":[6,35],"01033856":[],"01035984":[],"01038358":[],"01045155":21,"01045774":33,"01050849":[],"010516485576646504":[6,35],"0105301":33,"01054509":33,"0105536":[],"01059601":33,"0106014":[],"01066519":6,"01066976":[],"01068907":33,"01076611":5,"01076733":[],"01080274":21,"01089797":[],"0109":[],"010902":32,"01094846":[],"01097423":[],"0110":29,"01103246":[],"01107621901137467":[6,35],"01112952":[],"011225":2,"01128968":[],"01130932":[],"0113104":6,"01135167":[],"01148039":[],"01161357":33,"01164198":33,"01165807":[],"01176096":33,"01179792":6,"011917343246903285":[],"01191824":5,"01193226":21,"012073649469946107":[6,35],"0120771":[],"01214101":[],"01219292":6,"01222822":33,"01223198":6,"01229732982000352":29,"01231917":6,"01233322":21,"01233332":[],"01247118":[],"01257265":[],"01265755":33,"012658":33,"01267006":[],"01268892":[],"01272215":[],"01288591":[],"01289962":33,"01290811e":[],"01290947":6,"01291943":[],"01295356":5,"01300561":[],"013121574062587286":[6,35],"01318643":6,"013341":[],"01335857":33,"01344196":[],"01347636":[],"01347916":6,"01348565":6,"01362274":21,"013623165903312745":[],"01362461":[],"01365363":33,"01366733":[],"01367553":6,"01372375":[],"01382052":[],"01389847":33,"01397146":6,"01405935":6,"01408051":21,"01409821":[],"01416528":6,"01420034":[],"01424197":[],"01427149":[],"01432847":[],"01433809":5,"014436800088896381":[6,35],"01448147":33,"01449782":6,"01455922":25,"01456159":33,"01458337":6,"014586":33,"01458611":33,"0146081":6,"01463049":6,"01463052":[],"01476097":33,"01477821":[],"01478446":[],"01492":[],"0149713":33,"01502518":[],"0150723888951771":6,"01507238889517717":6,"01508632":[],"01508966":[],"01514564":[],"01521658e":[],"01524072":33,"015244":33,"01526688":[],"01529503":[],"01529708":33,"01531845":6,"01537557":[],"0154222":[],"01542292":35,"01544605":[],"01549377":6,"01549939":35,"01550546":35,"01552289":[],"01555268":21,"01558197":5,"01562311":[],"01566461":[],"01580414":33,"01581562":[],"01591021":33,"01594452":35,"01596986":33,"01600491":[],"01603602":[],"01607534":21,"01616709":33,"01619664":[],"016285782696017142":[6,35],"01633169":[],"01633913":6,"01640891":6,"01655318":6,"016587414993045335":[6,35],"01663866":[],"01667827":[],"01671556":[],"01678384":[],"01691871":[],"01691985":6,"0169643":5,"016972818397989375":25,"01704432":[],"01708691":33,"01708781":6,"01708852":6,"01713366":6,"01722502":[],"01724499":5,"01731293":[],"01735584819559331":[6,35],"017355848195593312":[6,35],"01747077":[],"01762067":[],"01765474":[],"017665":5,"01775594":21,"01783414e":33,"01809873":[],"018232":[32,33],"01831050e":6,"01831207e":6,"01835274":21,"01859922":[],"01865187e":[],"01866537":6,"0186893":[],"01873344":11,"01873869":5,"01881546":[],"01882522":[],"01896127":33,"01897575":[],"01898855":6,"01899119":[],"01905883":6,"01908936":6,"019140656913589":[],"01914066":[],"01916913":[],"0191717":33,"01918548":[],"01919702":[],"01931743":[],"01936105":[],"01963203":33,"01963611":6,"01969145":6,"01975416527168255":[6,35],"01975848":6,"01989299":[],"01989549":[],"01999282":[],"02":[0,4,6,7,12,23,32,36,38,39,41],"0200568":[],"02017377":33,"02024701e":[],"02024962":6,"020271":21,"020404272938413143":[],"02044454":[],"02054837e":6,"02061026":[],"02061094":[],"02066371":33,"02068067":6,"02071142":[],"0207306":[],"02073509":5,"02075115":33,"02079171":[],"02081274":33,"02083512":33,"02089297":33,"02095266":21,"02098261":6,"02103178":33,"02109939":33,"02123176":6,"0212604":[],"02126208":[],"02138725":[],"021592704588021174":[6,35],"021592704588021178":[6,35],"02178583":[],"02183021":[],"02186131":[],"02198702e":6,"02198703e":6,"02208512":6,"02215597":[],"022210866177877393":32,"02228115":6,"02229529":6,"02231445":[],"02252765":5,"02276062":32,"02279888":33,"02284019":[],"02287894":[],"02288816":[],"022999498260366198":[6,35],"02308518":[],"02314144":21,"02329285":33,"02348765":6,"02355925":[],"02365049":6,"02385515":33,"02392053":21,"02400359":[],"02416381":[],"02424794":35,"02447466":[],"0245528":6,"024632":33,"02468681":[],"02485679":33,"02492265":5,"02498832":6,"025027":[],"02503753":6,"02507163":32,"02509184":11,"025092":11,"02511518":6,"02522069":6,"02531037":[],"02536494":[],"02542246":[],"02546675":35,"025709":[11,33],"02574735e":[],"02582613386840159":29,"02586427":6,"02588522":33,"02593026":[],"0260906":6,"02610528":[],"02618169":[],"02622906":[],"026250840755899812":[],"02625193":8,"02635835":[],"02641575":21,"026605727637184554":[6,35],"026605727637184558":[6,35],"02702978":[],"02707227":5,"02723445":6,"02730775":21,"02745507":33,"02757522":33,"02760977349102238":[6,35],"027609773491022394":[6,35],"02761736":[],"02763182":33,"02764023":[],"02790465":[],"02804715":[],"02809859":[],"02816083":33,"028389":[],"02838933":[],"02845284":[],"02857":4,"02881357":33,"02892224":[],"029":[],"02912421":33,"02942218":33,"02944425":[],"029483":5,"02950229":33,"0296969":[],"0297291":33,"029733":[32,33],"02976145":6,"02992852":[],"02994311":5,"02f":[6,26],"03":[1,6,23,33,36,39,40,41],"0301458":21,"03025391":[],"03032441e":6,"03049638":32,"03060273":[],"03061555":25,"03063575":[],"03065428":[],"03074083":[],"03077640549":4,"03099776":5,"031":[5,34,35],"03107818":[],"03113051":[],"03117156":21,"03119091":[],"03172365":[],"03195835":[],"03196357":6,"03203047":[],"03251863":5,"03256632e":[1,39,40,41],"03267527":6,"03279636":6,"0330308045183219":6,"0330308045187757":6,"03308408":5,"03321947":32,"03338173":[],"03365768507152769":[6,35],"03370315":[],"03376827":33,"033790755027115954":[],"03389964":[],"034047":32,"034169230664804":[],"03438051":21,"03443175":[],"03447512":6,"034557":33,"034985":33,"03543039":[],"03543455":[],"03543958":[],"03557316":21,"0356":[23,41],"03562355":6,"03568439":6,"0358":[23,41],"0359":[23,41],"035909":32,"0359565":5,"0361":[23,41],"03616508":[],"0362":[23,41],"03630548":6,"03633213":33,"0364":[23,41],"0365":[23,41],"0366352614656884":[],"0367":[23,41],"0369":[23,41],"0370":[23,41],"03707133":11,"03717939":[],"0372":[23,41],"03727597":[],"03728183e":[],"0373":[23,41],"03735403":[],"0374748":[],"0375":[23,41],"0376":[23,41],"03774822e":[],"0377961":32,"0378":[23,41],"03781367141738902":[6,35],"0380":[23,41],"0381":[23,41],"03813208":[],"03814292":6,"03815288":6,"038211969489939":29,"03821197":29,"0383":[23,41],"038300":[11,33],"0385":[23,41],"03856554":[],"0386":[23,41],"03868779":[],"0388":[23,41],"0389":[23,41],"03894328":[],"03894873":33,"039":[],"039039":5,"03903968":33,"03908546":[],"0391":[23,41],"03914571":21,"0393":[23,41],"03935519":[],"03946221":[],"0395":[23,41],"0396":[23,41],"0398":[23,41],"03982972":33,"039967668952797":6,"0399676689527975":6,"04":[1,6,11,23,36,39,40,41],"0400":[23,41],"0401":[23,41],"040102":5,"04010697":6,"04014929":[],"0401585":[],"0403":[23,41],"0405":[23,41],"04057027":21,"04058784":[],"04063602":6,"0407":[23,41],"0408":[23,41],"04084872":[],"041":9,"0410":[23,41],"04103307":33,"041050166905828786":[],"04107874":5,"041079":5,"04111096":[],"0411487294305088":6,"041148729430523":6,"0412":[23,41],"0414":[23,41],"0415":[23,41],"0417":[23,41],"0419":[23,41],"04191629":[],"04193203":33,"04198166":33,"042044382097756156":[],"0421":[23,41],"04214702":33,"04218461":[],"04220758":6,"04223754":[],"04225015":[],"0423":[23,41],"0424":[23,41],"04259402":[],"0426":[23,41],"04276619":[],"0428":[23,41],"04292593":[],"04295757":35,"043":9,"0430":[23,41],"04310095":[],"04314342":[],"04315108":5,"0431531":[],"0432":[23,41],"0434":[23,41],"04346721":5,"0435":[23,41],"04355837":6,"04362":9,"04362755":[],"0437":[23,41],"04372783":[],"0437499":2,"04389027":6,"0439":[23,41],"0441":[23,41],"04423486":6,"04426647":[],"04426744e":33,"0443":[23,41],"044334":[32,33],"04438319":21,"04448923":[],"0445":[23,41],"044613":6,"0447":[23,41],"0447389":[],"04478101":33,"0449":[23,41],"0451":[23,41],"0453":[23,41],"04537385":6,"04543942":6,"04547353":[],"0455":[23,41],"04555073":[],"04566964":6,"0457":[23,41],"04574692":[],"0458":9,"04581197":25,"04584982e":[],"0459":[23,41],"04597076":21,"0461":[23,41],"04619338":21,"0463":[23,41],"04648335":5,"0465":[23,41],"046531":[],"04662395":33,"04669463":[],"0467":[23,41],"04683565":5,"0469":[23,41],"04690007":[],"0471":[23,41],"04720848":[],"0473":[23,41],"04746791":33,"0475":[23,41],"0477":[23,41],"04778116":[],"04784395":6,"0479":[23,41],"0481":[23,41],"04816611e":[],"04818727730430286":[6,35],"04822955":33,"04828291":0,"0483":[23,41],"0485":[23,41],"0486":[23,41],"04869126e":[],"0487":[23,41],"048920":32,"04892055":6,"0489354":[],"04899609":33,"0490":[23,41],"04909093":6,"04912436":6,"0492":[23,41],"04926746":35,"0494":[23,41],"049462":32,"049556996627824":6,"0495569966278269":6,"04956816":32,"0496":[23,41],"0496375":[],"04977051":21,"0498":[23,41],"04it":6,"05":[1,4,6,13,23,26,33,38,39,40,41],"0500":[23,41],"05009826":6,"05024857":[],"0503":[23,41],"0505":[23,41],"05056463":[],"050663":[],"05066303":[],"0507":[23,41],"0509":[23,41],"05091289":[],"05100875":6,"0510594":25,"0511":[23,41],"05126901":[],"0514":[23,41],"051418":5,"0516":[23,41],"051649":[11,33],"0517473":5,"0518":[23,41],"05183886":[],"0520":[23,41],"05227921801205679":[6,35],"0523":[23,41],"052305":33,"05234611":[],"0523738":21,"05238712":[],"0525":[23,41],"05263":9,"0526992":25,"0527":[23,41],"052992":[],"0530":[23,41],"05302":9,"0532":[23,41],"0534":[23,41],"053417":33,"05357244":[],"05364854":8,"0537":[23,41],"05383795":6,"053849":5,"0539":[23,41],"053944":[],"0541":[23,41],"05412502":[],"05419212":21,"05432856":[],"054375":[],"0544":[23,41],"05446143":[],"05447415":6,"05459089":[],"0546":[23,41],"054617":33,"054655":33,"0549":[23,41],"054954":[],"05505310046363":2,"0551":[23,41],"05515143e":[],"05526765":33,"0553":[23,41],"05533":9,"05544019":[],"0556":[23,41],"055676":[32,33],"055697":11,"055734":33,"0558":[23,41],"055910":33,"055987":33,"05599455":[],"056019":11,"056030":[],"0561":[23,41],"05614483":5,"05623":9,"0563":[23,41],"056418":11,"05648":9,"05651951":6,"0566":[23,41],"05667":9,"056683":33,"0568":[23,41],"056898":11,"0571":[23,41],"057124":[],"05715377":11,"057154":11,"05716368155342902":[6,35],"057179":[],"057219":[],"057231":11,"0573":[23,41],"057300":33,"057361":11,"057393":33,"057406":[],"057418":33,"057457":33,"057462":11,"057502":11,"0576":[23,41],"057613":11,"057657":11,"057722":33,"0578":[23,41],"05781491e":[],"057831":11,"057835":33,"05785343":6,"057864":11,"05789007":6,"05792524":[],"05796251":6,"05807125":6,"0581":[23,41],"058121":11,"058216":11,"0582573":[],"05825965":[],"05834444":33,"058388":11,"0584":[23,41],"058435":[],"05852973":[],"058552":33,"058556":[],"058567":11,"0586":[23,41],"058645":33,"05873105":21,"058738":[],"05880359":29,"05883":9,"05884":9,"058854":33,"0589":[23,41],"058921":11,"058952":33,"058996":33,"059004":11,"05900655":21,"059031":33,"0591":[23,41],"059182":[],"0594":[23,41],"059427":[],"059439":11,"05966593":[],"0597":[23,41],"059736":[],"05977068":33,"059807":33,"05982961":[],"059830":[],"05989727":[],"0599":[23,41],"059949":11,"059951":33,"05999":9,"059993":33,"06":[6,23,33,37,38,41],"060001":[],"060037":[],"060083":33,"0602":[23,41],"06020587":6,"060254":33,"06026294":[],"060278":[],"060300":[],"060334":[],"060349":32,"060387":[],"06043581":6,"0605":[23,41],"060567":[],"0607":[23,41],"060716":33,"06072551":[],"06075426":[],"060756":33,"060872":33,"0610":[23,41],"061013":[],"061034":[],"061084":[],"061092":[],"061138":11,"061163":33,"061239":[],"061264":[],"061281":11,"0613":[23,41],"061359":33,"061443":33,"061452":33,"061484":11,"0615":[23,41],"061614":33,"061642":[],"061679":32,"061747":11,"061775":[],"0618":[23,41],"061813":11,"061826":11,"061833":11,"061836":[],"061869":11,"061888":11,"061915":[],"06200174":5,"062016":33,"062071":11,"062082":[],"062082386342319454":[6,35],"0621":[23,41],"062100":[],"062221":[],"062273":11,"062292565":4,"06231773":[],"062337":33,"062351":[],"062390":11,"0624":[23,41],"062470":[],"062523":11,"062599":33,"0626":[23,41],"062624":33,"062631":11,"062675":11,"062749":[],"062797":[],"062852":11,"062874":33,"062894":11,"0629":[23,41],"062963":11,"062967":[],"06299237e":[],"063000":[],"06301519":25,"063019":33,"063055":[],"063061":33,"06307625":[],"063080":33,"063081":[],"063159":11,"0632":[23,41],"063260":33,"06331463":[],"063325":[],"063359":11,"063407":[],"063434":11,"063436":[],"063443":32,"0635":[23,41],"063597":11,"063653":33,"063716":[],"063722":11,"063723":11,"063724":32,"063747":11,"063760":[],"0638":[23,41],"063822":[],"063832":[],"063894":33,"063905":11,"063912":[],"063927":[],"06394871":21,"063953":5,"06397412":[],"063980":5,"063982":[],"06406913":25,"06407201":[],"064074":33,"0641":[23,41],"064101":5,"064134":11,"064145":11,"06424868":21,"064294":[],"0643":[23,41],"064320":5,"064412":[],"064420":[],"06444":9,"064444":11,"064501":33,"064527":11,"064532":[],"06453579006728322":[6,35],"0646":[23,41],"064602":[],"064606":33,"064609":33,"064634":[],"064640":5,"064696":11,"064699":33,"064793":33,"06481015":[],"06484621":38,"064856":[],"064874":[],"06488406":[],"064896":5,"0649":[23,41],"06491736":6,"064938":5,"064948":5,"064987":[],"065006":[],"065026":32,"065069":5,"065077":33,"065089":[],"06511966":[],"065158":[],"0652":[23,41],"065214":[],"065215":11,"065249":[],"065289":5,"065378":33,"065390":33,"065410":33,"06547790180152352":[6,35],"06547790180152355":[6,35],"0655":[23,41],"065517":[],"065582":11,"065588":[],"065593":11,"065614":11,"065645":11,"065735":11,"06578047":[],"0658":[23,41],"065801":[],"065808":11,"065815":[],"065872":[],"065910":[],"065982":[],"066042":[],"066066":33,"066077":[],"0661":[23,41],"066344":[],"06637":9,"06638817":[],"0664":[23,41],"06642248":[],"066438":[],"066453":[],"066467":11,"066474":33,"066500":33,"066612":33,"066647":33,"06664867":[],"06666117":[],"0666807":2,"06668613e":[],"0667":[23,41],"066762":[],"066768":11,"066787":33,"066804":[],"06682268":[],"0668226833598415":[],"066837":[11,33],"066854":33,"066870":11,"066992":11,"066999":33,"0670":[23,41],"067009":[],"067139":11,"06724062":5,"0673":[23,41],"067315":11,"067328":[],"067409":[],"067419":[],"067420":5,"067437":[],"067440":[],"067457":5,"067591":5,"0676":[23,41],"067611":[],"067630":[],"067637":33,"067660":5,"067707":33,"067745":[],"067748":[],"067820":5,"067826":[],"067832":[],"0679":[23,41],"067915":[],"067955":5,"067979":[],"068":[],"068082":11,"068083":[],"068141":5,"0682":[23,41],"068241":[],"068257":11,"068264":33,"068307":33,"068340":5,"068403":[],"068406":11,"068407":5,"06842111e":[],"068441":33,"06844519414009444":[6,35],"06844519414009445":[6,35],"0685":[23,41],"06853772":[],"068551":11,"06855126e":[],"068606":[],"068629":33,"068650":11,"068727":33,"068734":[],"0687531":[],"068757":[],"0688":[23,41],"068815":5,"068816":[],"068906":33,"068945":5,"068974":[],"068987":[],"068997":11,"069028":33,"069033":[],"069055":[],"0691":[23,41],"06915522":[],"069213":[],"069257":[],"069296":[],"069320":11,"069365":[],"069384":[],"069388":[],"0694":[23,41],"069452":33,"069522":11,"069570":5,"069584":[32,33],"069594":[],"069629":[],"06962991":21,"069630":[],"069634":5,"0697":[23,41],"069739":[],"069746":[],"069766":[],"069803":[],"069822":[],"069939":[],"06995653":21,"06it":6,"07":[6,23,33,41],"0700":[23,41],"070009":11,"070042":[],"07004211":[],"070043":[32,33],"070067":[],"070107":[],"070146":33,"070157":[],"07016":9,"07017":9,"07020234":[],"070213":33,"070220":[],"070228":[],"070275":[],"0703":[23,41],"07039":9,"070406":5,"0704374681593734":11,"070441":[],"070457":33,"070461":11,"070569":[],"070582":33,"070597":[],"07062318":6,"070645":11,"070694":11,"0707":[23,41],"070737":33,"070769":[],"070795":[],"070811":[],"070889":[11,33],"070964":11,"070986":33,"0710":[23,41],"071062":[],"071138":[],"07115":9,"071191":[],"071252":11,"071258":[],"0713":[0,23,32,41],"07130734":[],"071323":5,"07136324":[],"07139233":[],"071423":[],"07145103":11,"071452":[],"071498":[],"071554":[],"071579":5,"0716":[23,41],"07160048164232538":[6,35],"0716004816423254":[6,35],"071601":5,"071611":[],"071662":5,"071685":5,"071726":5,"071773":[],"071788":[],"071792":5,"071801":[],"071805":5,"071872":[],"071879":[],"07188255":[],"0719":[23,41],"071942":11,"071951":5,"072000":[5,33],"072009":[],"072022":5,"072098":[5,11],"072111":33,"072128":[],"072132":33,"072168":[],"07226292":[],"072285":11,"0723":[23,41],"072305":5,"072310":[],"072369":[],"072404":[],"072410":5,"072476":33,"072483":11,"072486":5,"072495":5,"07250301":29,"0726":[23,41],"072621":33,"072624":[],"072637":5,"072707":5,"072790":[],"072805":[],"072830":[],"07285":3,"07286416":[],"0729":[23,41],"072914":[],"072931":[],"072953":[],"072967":5,"072973":5,"073008":[],"073059":5,"073079":5,"073080":5,"073088":[],"073152":[],"073184":5,"073187":5,"0732":[23,41],"07321674":[],"07331468":[],"073354":[],"073362":[],"073376":5,"073387":5,"073406":5,"073421":5,"073422":[],"073444":[],"073445":[],"073465":5,"073471":5,"073476":5,"073494":[],"073498":5,"073541":[5,11],"07358383":[],"073586":5,"073598":[11,33],"0736":[23,41],"073618":5,"073630":[],"073634":[],"073640":11,"073644":33,"073708":[],"073712":5,"073716":[],"073720":11,"073728":[],"073797":5,"073802":11,"073840":5,"073853":[],"073858":[],"0739":[23,41],"073972":[],"073980":[],"073984":[],"07404236":25,"074067":[11,33],"074084":33,"07410236e":[],"074108":5,"074161":5,"07417526":25,"0742":[23,41],"07420079":[],"074201":[],"074210":33,"07421084":5,"074323":33,"074327":[],"074330":[],"074340":11,"074419":[],"074439":[],"074455":5,"074457":[],"074509":[],"0745177":[],"074545":[],"074560":[],"07456491":5,"074577":5,"0746":[23,41],"074686":[],"074708":11,"074772":[],"074780":[],"074879":[],"0749":[23,41],"07490892":6,"074969":[],"074970":[],"075030":11,"075058":[],"075089":5,"0752":[23,41],"075249":[],"075331":11,"075342":[],"075421":11,"075513":[],"075521":[],"075523":[],"075582":[],"075587":[],"0756":[23,41],"075684":11,"075758":[],"075779":[],"07581582":21,"075816":33,"075889":33,"0759":[23,41],"075980":[],"075984":[],"075990":[],"076012":[],"076105":[],"076125":[],"076127":[],"076136":[],"076150":33,"07617146":21,"076249":[],"076266":[],"07627734":[],"0763":[23,41],"076354":[],"07641937":35,"0764924":6,"076504":[],"076527":11,"076587":[],"076592":[],"0766":[23,41],"076662":[],"076721":[],"07678":9,"076820":[],"076825":[],"076833":[],"076857":[],"07692307692307693":9,"076938":[11,33],"076950":[],"076996":[],"0770":[23,41],"077068":5,"07706814":5,"077168":33,"077171":[],"077219":[],"077226":[],"0773":[23,41],"077313":5,"077330":5,"077403":5,"077429":5,"077455":5,"077460":33,"077542":[],"077549":[],"0776":[23,41],"077613":[],"077630":5,"077650":[],"077705":[],"077710":[],"077756":[],"07777777777777778":[1,39,40],"077931":5,"078":[],"0780":[23,41],"078029":[],"078041":5,"07804489":33,"078110":33,"078187":[],"07820":9,"078329":[],"078336":33,"0784":[23,41],"078412":[],"07842458":[],"078467":[],"078540":33,"078545":[],"078548":5,"078593":[],"07864":9,"078656":[],"0787":[23,41],"078707":[],"07871":9,"078845":[],"078868":[],"078974":33,"078986":33,"0791":[23,41],"079121":[],"079124":[],"079165":[],"079226":[],"079255":5,"07929472":[],"079381":11,"0794":[23,41],"079432":[],"079434":[],"07944154":[25,32],"079455":[],"079581":[],"0796891867672603":[6,35],"079731":11,"0798":[23,41],"079878":[],"07988085572440823":[],"079882":[],"079946":33,"079948":11,"08":[6,9,23,29,33,37,38,41],"0801":[23,41],"080105":[],"080163":[],"080181":[],"080233":11,"080256":[],"080284":11,"08030109":[],"080406":[],"080411":[],"08043851":5,"080473":[],"0805":[23,41],"080502":5,"080505":[],"080571":5,"080607":11,"080616":33,"08066381":29,"080690":[],"080750":11,"080755":5,"080764":33,"08076969085177746":[],"080773":[],"0809":[23,41],"080903":5,"080906":5,"080933":[],"080935":5,"080953":11,"080980":5,"081057":5,"081120":5,"081126":[],"081136":5,"081164":5,"0812":[23,41],"081246":[],"081276":33,"08131003":6,"081466":5,"08156108":6,"081570":[],"081584":[],"08159374":[],"0816":[23,41],"081617":5,"081621":5,"08165104":33,"081655":33,"081677":11,"081679":5,"081680":[],"08174081":[],"081742":5,"081772":[],"081804":5,"08185019":21,"08185315":[],"081896":5,"081916726599974":[],"081955":[],"081960":5,"081976":[],"0819836":[],"0820":[23,41],"082189":[],"082205":[],"08221578":[],"082225":5,"082246":5,"082255":[],"0823":[23,41],"082347":[],"08238863600759742":[],"08245909":[],"082506":[],"08251519":6,"082517":[],"08255129":21,"08256285":[],"082577":[],"082653":33,"0827":[23,41],"08271388":29,"08272096":33,"082746":11,"082760":[],"082781":[],"082875":32,"08293853":21,"08299273e":6,"083000":[],"083066":[],"083096":[],"0831":[23,41],"08318298e":[1,39,40,41],"083317":[],"08333333":[23,41],"08333333333333333":[1,9,39,40],"08336233266":4,"08339896":25,"0835":[23,41],"083527":[32,33],"08352721390288316":32,"08376632":[6,33],"083766322923899":[6,33],"0837663229239043":[6,33],"0838":[23,41],"083853":[],"08389064":[],"08394792":32,"083988":[],"084075":[],"084076":33,"0842":[23,41],"084207":11,"084247":[],"08426840630693412":[6,35],"08426840630693413":[6,35],"08449894":[],"08455":9,"0846":[23,41],"08474":9,"084764":[],"084809":33,"08481871":[],"084843":[],"0850":[23,41],"085023":[],"08505008":[],"085235":[],"0853136633465326":36,"085391":[],"0854":[23,41],"085454":[],"08551306":6,"08551338":[],"08551625":[],"08576932":6,"0858":[23,41],"08593216":6,"0861":[23,41],"08611111111111111":[1,39,40],"086441":[],"0865":[23,41],"086518":[],"08652153831327969":5,"086636":5,"086843":[],"086864":[],"086868":5,"0869":[23,41],"08690":9,"086900":5,"086932":5,"08703034":[],"087247":[],"087250":[],"087271":5,"08728068":[],"0873":[23,41],"087311":5,"08758":9,"087603":[],"087642":[],"0877":[23,41],"08770809":[],"087887":32,"0881":[23,41],"088155":[],"08815506":[],"0881981":5,"08823":27,"08844723450419088":[],"0885":[23,41],"088697":[],"08871404":5,"08881497884574564":33,"08888888888888889":[1,39,40],"0889":[23,41],"08902":9,"0892144853354966":36,"08928088":[],"0893":[23,41],"0895387":33,"089539":33,"0897":[23,41],"089710":[],"08973767":[],"08988514":21,"08996":9,"09":[1,23,33,39,40,41],"0901":[23,41],"09030678":21,"090365":[],"0905":[23,41],"09076319":[],"0910":[23,41],"0914":[23,41],"09149148":[],"09166666666666666":[1,39,40],"0917":9,"09172409":6,"09179697e":[],"0918":[23,41],"092":[],"0922":[23,41],"09251":9,"0926":[23,41],"093":[],"0930":[23,41],"09308274":[],"09327269724691106":[],"09336399":[],"093408":[],"0935":[23,41],"0939":[23,41],"09391542":25,"09408163":32,"094082198961999e":6,"0940821989652176e":6,"0943":[23,41],"09444444444444444":[1,39,40],"0948":[23,41],"0952":[23,41],"09524714":32,"09527217":[],"0956":[23,41],"09599224":[],"09609807":5,"0961":[23,41],"0965":[23,41],"0969":[23,41],"09726322":[],"0973":[23,41],"0974":[23,41],"09744":9,"09760094":[],"0978":[23,41],"09780":9,"09787053":21,"09791":9,"0983":[23,41],"09832963":21,"09858511":[],"09861229":[25,32],"0987":[23,41],"09903804":8,"09919198949274803":[6,35],"0992":[23,41],"09951287404314545":[1,39,40],"0996":[23,41],"0998713":[],"0n":[0,32],"0s":[4,23,41],"0x10febc640":21,"0x10febcf10":21,"0x1162c32b0":[],"0x1183f2640":13,"0x118c9b1c0":13,"0x118f6d610":[],"0x11ada9670":37,"0x11de12520":[],"0x11df37280":[],"0x11f5f6520":37,"0x11fdbfd60":[],"0x1268ba940":[],"0x127a38670":[],"0x127e425e0":[],"0x13002a640":[],"0x1305bb1c0":[],"0x13eaa7490":[],"0x13ef4e1c0":[],"0x156346610":36,"0x16c9a8880":[],"0x2800bca90":[],"1":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,20,21,22,23,25,27,28,29,30,31,34,35,36,37,38,39,40,41],"10":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,17,21,23,25,26,28,29,30,32,33,34,35,36,37,38,39,40,41],"100":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,21,23,25,29,30,32,33,34,35,36,37,38,39,40,41],"1000":[0,1,2,4,5,8,11,13,14,21,23,24,29,32,33,36,37,38,39,40,41],"10000":[2,5,6,10,11,13,29,34,35,41],"100000":8,"10001":10,"1001":[9,29],"1002":29,"1003":29,"10030":9,"10035098":11,"100351":11,"1005":29,"1007":34,"10077114273548984":[6,35],"1009":29,"101":[23,41],"101058":[],"1011":29,"1013":29,"1013904243":29,"10141413e":6,"1015":29,"10156593":[],"10160394":[],"10188623":[],"102":[3,23,33,41],"1023":29,"10230":9,"1024":3,"10247463629935179":[],"10251317e":[],"1026":29,"10268273":[],"1027":29,"103":[1,23,39,40,41],"1030":29,"10340":9,"10354083919795562":[],"1036131":25,"1037":29,"10378326e":[1,39,40,41],"1038":29,"10391807":6,"10398646080125036":[6,35],"10398646080125037":[6,35],"10399758":[],"104":[23,41],"1040":29,"10405456":11,"10430":9,"10440776":[],"104411":[32,33],"1047":29,"10479359":25,"10490195":25,"105":[23,41],"10520":9,"10555555555555556":[1,39,40],"10572":35,"10589577":5,"106":[23,41],"106095":[11,33],"10638925":[],"1063892533225306":[],"106431":32,"10656534":21,"10683216":[],"107":[23,41],"10706523":21,"10741066e":21,"10776220958055382":11,"1078":35,"10790125813226321":33,"108":[6,9,23,41],"10812381":5,"108124":5,"10851799e":21,"1089452":[],"109":[23,41],"10913":6,"10927588":[],"109276":[],"10931453":6,"10954867e":[],"10959669":32,"10960":9,"10983954":[],"10e":[23,41],"10m":4,"10th":9,"10x":[0,32],"11":[0,2,3,4,5,6,7,8,9,10,11,12,13,15,16,18,21,23,25,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41],"110":[23,41],"1100":29,"11007935789924998":25,"1101":29,"11022302e":[5,39],"11022363":[],"11039573e":[],"11078018494378859":[],"111":[1,7,12,23,36,38,39,40,41],"11100":9,"11112589053037751":9,"11197884":[],"112":[23,41],"11202337":35,"112383":[11,33],"1124":9,"113":[23,41],"11352187":[],"11388888888888889":[1,39,40],"11390":9,"114":[23,41],"11400145":32,"11427818":[],"114550":35,"11462415":5,"11482289e":6,"115":[23,35,41],"11507992e":[1,39,40,41],"11547777218876518":[6,35],"115822":6,"11587186":32,"11590":9,"116":[23,41],"1160326":21,"11657689":21,"11660":9,"11666666666666667":[1,39,40],"117":[8,23,35,41],"117430":32,"11744554e":6,"11749517":[],"11780":9,"118":[2,23,41],"1182":35,"118318":[32,33],"11837308":[],"11837671":[],"1184":4,"11840":9,"11890":9,"11896755":[],"119":[2,23,41],"11911824":29,"119936":2,"11m":[],"12":[0,1,2,3,4,5,6,8,9,11,12,13,21,23,25,29,31,32,33,35,37,38,40,41],"120":[2,3,23,41],"12011393e":[],"12023635e":[],"1203":9,"1203284":8,"12044974":33,"120450":33,"120508":[],"12050822":[],"1206":8,"121":[8,9,10,23,41],"12129289":[],"1213":35,"12155548":[],"1215pm":[30,32],"12182967":6,"122":[2,8,9,10,23,41],"12222222222222222":[1,39,40],"12224317":[],"122282":32,"123":[2,23,41],"12318726e":6,"12330033":33,"12333649":6,"123711":6,"12380":9,"124":[0,23,32,41],"12400":9,"12417157":21,"12427537":21,"125":[23,41],"12552073e":6,"12568438":[],"12591227":33,"12594172":[],"126":[9,23,41],"1261":9,"12618549":5,"12634093":21,"1265":9,"12693357":21,"12695501":[],"127":[4,23,41],"1271":6,"12765651865754318":5,"1277":6,"12777777777777777":[1,39,40],"127812":32,"12790":9,"128":[3,4,13,23,37,38,41],"12814914":[],"128664":6,"12871842":33,"129":[2,23,41],"12921833":[],"1297":9,"1298":9,"129963":35,"12998822":[],"12m":[],"12pm":[30,32],"13":[0,2,4,5,6,9,11,12,13,21,22,23,25,29,32,33,35,36,38,39,41],"130":[9,23,41],"13003291":6,"13055555555555556":[1,39,40],"130694":33,"13069442":33,"13076331":[],"131":[9,23,41],"13155259":21,"132":[9,23,41],"13220608e":6,"1326":9,"1326197715":32,"13280":9,"133":[7,23,36,41],"13310008":25,"13333333":[23,41],"134":[23,41],"13404683":[],"13410999":[],"134110":[],"13422946e":[],"13444436":[],"1345":35,"1346":35,"135":[9,23,41],"13535942":6,"13542726":[],"13580759":29,"136":[23,41],"136236":6,"13646574":5,"13661243e":6,"13679863":6,"137":[23,41],"1371":6,"13740":9,"137400784702911":33,"13749148e":[],"13756504":21,"13759245e":[],"137652":[11,33],"1377":[3,4],"1378":[3,4],"1379":[3,4],"138":[23,41],"1380":[3,4],"1381":[3,4],"1382":[3,4],"13821034":21,"13827006":[],"13829298":[],"1383":[3,4],"1384":[3,4],"1385":[3,4],"1386":[3,4],"13865173":5,"138775":[11,33],"1388888888888889":[1,39,40],"1388976715362099":[],"13890":9,"139":[23,41],"1392559585048734e":6,"139255958997547e":6,"13925918083728273":[],"139431112903922":35,"1394311129039245":35,"1395084586525954":35,"1395235273363669":35,"13987729":[],"13m":[],"14":[0,2,4,5,6,8,9,10,11,12,13,21,23,25,29,31,32,33,38,39,40,41],"140":[2,9,23,41],"14021063":6,"14023656":[],"141":[2,23,41],"14100":9,"1412":[21,37,38],"1416398":6,"14174745":6,"1418":9,"142":[9,23,41],"14250":9,"14277718e":33,"143":[2,7,23,36,41],"1437":[1,39,40,41],"1438149":[],"14389839":29,"144":[23,41],"14400":9,"1440501043841336":[1,39,40,41],"14421971":25,"14440":9,"1446729567":4,"144993":32,"145":[2,23,41],"14526269":25,"14549142":32,"146":[2,23,41],"14629156":35,"146704":[],"14670413":[],"14697721":[],"147":[23,41],"14710":9,"14722222222222223":[1,39,40],"147400":[11,33],"147420":[11,33],"1479":9,"148":[3,4,23,41],"148009":[],"14812206":6,"14845":6,"14857":6,"14859":6,"149":[3,4,23,41],"149294":[],"149299":[],"14962649":[],"14978631":21,"14g":[6,35],"14m":[],"15":[0,2,3,4,6,7,8,9,12,13,15,16,17,18,21,23,29,32,35,36,37,38,39,41],"150":[3,4,8,9,23,41],"15005476":5,"15047127":[],"15048894":21,"15055258":21,"150726":[],"15098090e":6,"151":[3,4,23,41],"15119514":13,"15130074e":6,"1513237":[],"151515":[],"151517":35,"15183857":[],"152":[3,4,9,23,41],"15200":9,"1520039":[],"152701":[],"1527777777777778":[1,39,40],"153":[23,41],"153036":[32,33],"15313054":35,"1532465":13,"15383855":[],"15384615384615385":9,"154":[23,41],"15443469e":36,"15457792":21,"155":[9,23,41],"15553403":[],"156":[23,41],"15649598":[],"15673992":[],"15693449e":[],"156956":5,"15697121e":[],"157":[23,41],"15724663":25,"1575":9,"158":[9,23,41],"15827078":25,"15863713":[],"1587":9,"159":[23,41],"1590":9,"15913825":32,"15962297":[],"15975618":[],"15990":9,"15990395":[],"15g":[6,35],"15m":[],"15pm":32,"16":[1,2,3,4,5,6,8,9,10,21,23,29,32,33,34,35,38,39,40,41],"160":[23,41],"1600552":[],"1603":3,"16043757":32,"1608179281668718":29,"16081793":29,"16087734":[],"161":[23,41],"16111111111111112":[1,39,40],"16168603e":[],"162":[23,41],"16211139":5,"16220":9,"162246":5,"16231451":4,"1625":9,"1628":9,"162999":32,"163":[2,23,41],"16304863":33,"163049":33,"1630775253":[1,39,40],"16309331":21,"16342407":5,"16343471":6,"16356503":35,"16384":3,"16385836":21,"16389131":13,"164":[2,23,41],"16456084":[],"164812":5,"16481217":5,"16492688":25,"165":[2,23,41],"16500":9,"16521791":[],"16570701":[],"166":[2,9,23,41],"16650509":25,"16666667":[23,41],"167":[2,23,41],"16762223e":[],"167787":5,"168":[9,23,41],"16805821e":6,"169":[23,41],"16921883":[],"169219":[],"16933554":[],"17":[1,2,4,5,6,8,9,18,21,23,29,33,35,38,39,40,41],"170":[23,41],"17006020e":[],"17022089147584388":[],"17078905":25,"1709":9,"171":[23,41],"17121077":[],"17136288":[],"17138811":32,"17144765665252978":[],"171525":33,"1715252":33,"17174962e":[1,39,40,41],"172":[23,41],"17222222222222222":[1,39,40],"17257288":[],"1726":9,"17275391":[],"173":[21,23,41],"17300":9,"17305512":[],"1731":9,"17362603":[],"174":[23,41],"17440757e":[],"17446471":6,"17451":[],"17469167":5,"174692":5,"175":[23,41],"1752":9,"175300":[32,33],"17540272":[],"176":[23,41],"17603044":[],"17615838052499":[],"17641709":6,"17647619":6,"177":[23,41],"17733642":[],"17758251":21,"17777777777777778":[1,39,40],"178":[23,41],"17801022":5,"17829104":25,"17841553":21,"17861098":6,"179":[23,41],"17917768":5,"179404":[],"17949575":5,"17953942":11,"1797":[1,3,39,40,41],"17m":[],"18":[2,4,6,7,8,9,10,13,19,21,23,29,35,36,37,38,41],"180":[23,41],"18029127":5,"1803":27,"18065292":25,"1807":4,"1809":9,"181":[9,23,41],"1812":9,"18128852":[],"182":[23,41],"1821":9,"183":[2,23,41],"18314387":[],"18333333333333332":[1,39,40],"1836":35,"18383522":33,"184":[2,9,23,41],"18409473e":[],"18433544":[],"184519":[32,33],"18474816e":[],"18488944":[],"18489312":[],"1849":[3,4],"185":[2,23,41],"1850":[3,4],"1851":[3,4],"18518557":29,"1852":[3,4],"1853":[3,4],"1854":[3,4],"1855":[3,4],"1856":[3,4],"1857":[3,4],"185713":[],"18571316":[],"1858":[3,4],"1859":[3,4],"186":[2,23,41],"1860":9,"18611111111111112":[1,39,40],"18613217e":6,"18624242":[],"18660":9,"18670072e":33,"18673098":11,"187":[23,41],"1871257":25,"18726877":[],"1875353":32,"18761375":13,"18780801":32,"188":[23,41],"18807824e":[],"18824315":[],"18829946":[],"1887":6,"189":[23,41],"189367":32,"189496":[32,33],"189621963782685":11,"189622":[32,33],"18993003":25,"19":[2,4,6,9,13,21,23,25,29,32,35,38,41],"190":[23,41],"19003":6,"191":[23,41],"19123037":21,"19166136":[],"19166666666666668":[1,39,40],"191963":32,"192":[23,41],"19207979":5,"1921649":[],"19220":9,"193":[23,41],"19314584":25,"19335893":21,"19343949":[],"1937079":[],"19393543":21,"194":[23,41],"1940":[0,33],"194042826649355e":6,"1940428268204826e":6,"19426595":21,"1943":[12,38,39],"19431161":[],"194312":[],"19436962e":[],"19463967":[],"194861702085775":[],"195":[23,41],"1956":9,"19569961":[6,33],"19590868":[],"196":[23,41],"19652884e":[],"19683648":[23,41],"197":[23,41],"1970":[25,32],"19717411":25,"19721923":[23,41],"1973":9,"197370":[11,33],"19740":9,"19743643":[],"19769458e":[],"19772911":32,"1979":[6,35],"198":[23,41],"19800":9,"19824029":[23,41],"19825288e":[],"19888258":[],"199":[23,41],"19910208":25,"19983530":6,"1999":[27,35,41],"1_1":[12,38,39],"1_2":[12,38,39],"1_3":[12,38,39],"1cm":[0,8,10,29,32],"1d":[1,2,3,39,40,41],"1e":[1,2,4,13,14,21,23,37,38,39,40,41],"1e10":14,"1e4":6,"1f":[1,40,41],"1k":25,"1n":[0,32],"1s":[23,41],"1x":[0,32],"2":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,28,29,31,34,35,36,37,38,39,40,41],"20":[0,1,2,4,6,7,8,9,13,21,23,29,30,32,33,34,35,36,38,39,40,41],"200":[0,2,3,4,8,9,10,23,41],"2000":[0,23,33,41],"20015436":6,"20017452":[],"2004":[13,36],"2006":31,"2008":32,"201":[23,41],"2010":[1,40,41],"20101684":13,"2011":[1,39,40,41],"2014":4,"20142361":[],"2015":[1,40,41],"2016":[0,32],"2017":41,"2018":[0,6,33,35],"2019":[8,9],"202":[23,41],"2021":[6,14,33,34,36],"2022":32,"2023":[3,4,15,16,17,18,19,20,21,22,23,27,32,34,35,36,37,38,39,40,41],"2027":9,"20272874":[],"20277777777777778":[1,39,40],"20289224":[],"203":[23,41],"20355156":35,"20371418":[],"204":[23,41],"20484434":[],"204932":11,"20493234":11,"20494446":32,"205":[23,41],"20500":9,"205231":32,"20594513":[],"206":[23,41],"2060":9,"2069":9,"20695722":[],"207":[23,41],"207545":[11,33],"207888":32,"208":[23,41],"20820528e":[],"20833333333333334":[1,39,40],"20867052175003364":[6,35],"209":[23,41],"20916295":33,"20956318":[],"20967833":25,"209789":32,"20980":9,"21":[0,1,2,3,4,5,6,7,9,12,13,15,21,23,25,32,33,35,38,39,40,41],"210":[23,41],"210340":[11,33],"21053692":21,"21055226":[],"21058097":5,"21059098":[],"211":[23,41],"21110005":35,"21130":9,"21152452":21,"2116753732":4,"21169159e":6,"212":[23,41],"21275991":32,"213":[23,41],"213103":[11,33],"213743":[11,33],"214":[23,41],"21401303e":[],"21460652":[],"214607":[],"21467941":29,"21493779":29,"215":[23,41],"21546249":[],"21596432":6,"216":[23,41],"216290":[11,33],"216683":[11,33],"21682143":13,"217":[23,41],"21710121":[],"2171263":25,"218":[23,41],"21860973":25,"21879159":[],"219":[23,41],"2193546":25,"22":[0,1,2,4,5,6,9,12,13,19,21,22,23,25,32,33,35,36,37,38,39,40,41],"220":[23,41],"22001043":[],"22044605e":[5,33,39],"22092934e":[],"221":[8,23,41],"22103874e":[],"221180":[32,33],"22130126":[],"2216":9,"2218":9,"221805":2,"221921":5,"222":[23,41],"22209775e":[],"222400":[32,33],"22241171":[],"22297358":25,"223":[23,41],"22328509":[],"22368396":[],"223884":5,"22388434":5,"224":[23,41],"22416937":[],"22467274":35,"225":[4,23,41],"22574374":[],"226":[23,41],"22616902":32,"226296567359957":[],"22663583":29,"22690428":5,"227":[23,41],"22729927":[],"228":[23,41],"2284246870217162":[6,35],"22847924":5,"22885848":25,"228942":4,"229":[23,41],"229241":21,"22974406":29,"23":[1,2,4,6,7,9,12,13,21,23,25,32,35,38,39,40,41],"230":[23,41],"23002365e":6,"23031634":21,"23047985":[],"23076923076923078":9,"231":[23,41],"23110543":[],"23167717":5,"23192074e":[],"232":[23,41],"232435":[32,33],"23257415":[],"233":[23,41],"23305112":13,"23333333333333334":[1,39,40],"2338675":33,"233868":33,"23392132":[],"234":[6,23,41],"235":[23,41],"23516186":32,"23528337":35,"2361161":32,"23636536":21,"2364":9,"23643365":35,"237":[23,41],"23780865":25,"2379":6,"238":[23,35,41],"239":[23,41],"2397":9,"23971032":33,"23979359":[],"24":[0,1,2,4,6,9,13,19,21,23,25,29,32,35,38,39,40,41],"240":[23,41],"24005098e":[],"24085321":35,"241":[23,41],"24128917":5,"24140":9,"24159785":33,"2416":9,"24175744e":6,"2419":9,"242":[23,41],"24251681":[],"24252405":21,"24280599":[],"242806":[],"243":[23,41],"2430":9,"24390":9,"244":[23,41],"24444444444444444":[1,39,40],"245":[23,41],"24569547":[],"246":[2,23,41],"24602503e":[],"2465439":[],"24679418":13,"247":[23,41],"24785221":29,"248":[23,41],"24828523":25,"24829908":5,"249":[23,41],"24906604e":6,"24960675":21,"24968001e":[],"25":[2,3,4,5,6,7,8,9,11,13,15,20,21,23,26,32,33,35,36,38,39,40,41],"250":[2,4,7,9,23,36,41],"25000":[0,33],"25050227":21,"250636":32,"25077762":21,"25084316":[],"251":[23,41],"25139357":[],"251879":[32,33],"252":[23,41],"252436":[32,33],"253":[23,41],"254":[23,41],"255":[3,23,41],"255001":[32,33],"25561567":[],"256":[2,4,23,41],"25617654e":6,"25617658e":6,"25650679":[],"25663096":[],"257":[23,41],"2572":9,"2575":9,"258":[23,41],"25844504":[],"25872167e":[],"259":[23,41],"259153":[11,33],"25920793":[39,40],"2597":9,"25it":6,"26":[2,4,6,9,13,21,23,35,38],"260":[23,41],"26037366":[],"261":[23,41],"261498":5,"26149831":5,"2619":33,"262":[23,41],"262638":[],"26263837":[],"26291451":[],"26292364":35,"26297455":33,"263":[23,41],"26301436":5,"26318493":32,"26372759":[],"264":[4,23,41],"26409315307910025":6,"2640931530791004":6,"264377":[],"26437713":[],"264421":32,"265":[23,41],"2650":9,"265109911":4,"26514544":[],"2654":9,"266":[23,41],"26666667":13,"267":[23,41],"26710969":5,"26776828":[],"26780278":5,"268":[9,23,41],"26803966":[],"26931499":[],"2697447":[],"26995402":33,"27":[0,1,2,4,6,13,21,23,33,35,38,39,40,41],"270":[23,41],"2707158":25,"27092910":6,"271":[23,41],"27152452":32,"2717818":21,"272":[23,41],"273":[23,41],"27305669":21,"273094":5,"27309401":5,"27424746e":[],"27438488":[],"275":[23,41],"2750":9,"27547557":[],"276":[23,41],"276263":[11,33],"27650338":[],"27693602e":39,"277":[23,41],"27700":9,"27717261":[],"2774877574815404":9,"27760":9,"27793476":[],"277935":[],"278":[23,41],"27859357":[],"279":[23,41],"27919014":32,"27924636":5,"27971414":[],"27n_":29,"28":[1,2,3,4,6,9,13,16,21,23,33,35,37,38,39,40,41],"280":[23,41],"28008933":[],"280179":32,"280573":5,"280647":[11,33],"28081221e":[],"28096517":[],"281":[23,41],"281930":32,"28194659":21,"282":[23,41],"28205578e":33,"28206156":[],"28210895":[],"282259":32,"282727":[11,33],"28294305":25,"283":[23,41],"2830637392":4,"283078":[],"28336218e":6,"28390":9,"28391978":33,"284":[23,41],"28443039":35,"28475098":8,"28490569":[],"285":[23,41],"28566769":[39,40],"28585116":25,"286":[23,41],"28607817":[],"2861":29,"28621796e":[],"28638913":[],"28641189":[],"28662669":[],"287":[23,41],"2871":9,"2873":9,"288":[23,41],"28818554":5,"288186":5,"2882":29,"28837459":[],"2886":29,"289":[23,41],"2890":[0,32],"28908491":[],"2892":29,"29":[2,4,6,7,9,20,21,23,35,36,41],"29022057":13,"29097377":29,"291":[23,41],"29135778":[],"291358":[],"2915":29,"29153991":[],"29167186":5,"29174301":21,"29199381":[],"292":[23,41],"29228133":[],"29275129":[],"29282684":25,"293":[23,41],"2931":32,"29350903":[],"29374695":32,"29384004e":[],"294":[23,41],"29401213":[],"2941718e":[],"29454955e":[],"29496954e":[],"295":[23,41],"2953":[3,4],"2954":[3,4],"2955":[3,4],"2956":[3,4],"2957":[3,4],"29588674":25,"29592687":21,"296":[23,41],"29633889":13,"296414":32,"29679459":21,"2968":32,"29726695":25,"29731502":21,"29732036":32,"298":[23,41],"2980":32,"29822833":6,"29894362":11,"299":[23,41],"2990":32,"299748":[32,33],"2_":[12,38,39],"2_1":[12,38,39],"2_2":[12,38,39],"2_3":[12,38,39],"2_i":[12,38,39],"2_m":[6,29,35],"2_t":[13,37,38],"2_x":29,"2b":29,"2c8f433990d1":[37,38],"2cm":8,"2d":[1,3,11,12,24,32,38,39,40,41],"2e":[6,35],"2f":[0,7,9,10,11,12,32,33,36,38,39],"2g":[2,41],"2g_i":[2,41],"2k":3,"2m":[6,35],"2n":[0,2,3,32,33,41],"2nd":9,"2p":29,"2pm":[30,32],"2pt":4,"2x":[0,3,8,13,32,37,38],"2x_ix_jy_iy_j":8,"2x_j":8,"2y_i":10,"2y_j":8,"3":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,21,23,24,25,26,27,28,29,30,34,35,36,37,38,39,40,41],"30":[0,1,4,6,7,9,10,13,21,23,30,32,33,35,36,37,38,40,41],"300":[21,23,38,39,41],"3000":[23,41],"30000":[0,32],"30010":9,"301":[23,41],"30119421":8,"30125775":21,"30129931":25,"30150056":32,"30170017":[39,40],"30177145":[],"302":[23,35,41],"30258509":[25,32],"303":[6,23,41],"30335380e":[],"30339081517583943":29,"30361418":38,"30442964":33,"30447937":[],"30466214e":6,"30478013":[],"30494363":[],"305":[0,23,32,41],"30567713":[],"306":[0,23,32,41],"30630294":[],"30677003":[],"306770031113352":[],"307":[0,32],"3072":3,"3073":35,"307631":[],"30763135":[],"3076923076923077":9,"30774404":21,"30787294":6,"308":[0,23,32,41],"309":[0,23,32,41],"30914432":25,"30940":9,"30971881":[],"30990916":32,"31":[4,6,12,23,25,29,38,39,41],"310":[0,23,32,41],"31022577":[],"310277":5,"31027702":5,"310579":33,"3105791":33,"31082439":25,"311":[0,32],"31113868e":[],"312":[23,34,41],"3123314713548606":[6,35],"31248389":32,"31276579e":6,"31290684":33,"313":[23,34,41],"31318084":5,"3139661":[],"31415359e":[],"31457796":5,"315":[6,23,34,41],"3155":[0,5,6,34,35,36],"31579721":[],"31588043":25,"31588332":[],"316":[23,34,41],"31650694":6,"317":[23,41],"31705377":[],"31714002":32,"31718909":11,"317367":11,"3175938":5,"317594":5,"318":[23,41],"31803769":[],"31814386":29,"3189":35,"31895514":21,"31896852":8,"319":[23,41],"31927572":[],"31995103":[],"32":[3,4,6,12,13,23,25,29,35,37,38,39,41],"3200":[1,39,40,41],"321":[23,41],"32141575":32,"32149601703519115":[6,35],"3214960170351912":[6,35],"3215":9,"32185967":25,"322":[23,41],"32221699":21,"32244056":21,"32265589":[],"3228044":[],"32341247e":[],"32372846":21,"32382849":32,"324":[2,23,41],"3245":2,"32450054":33,"325":[23,41],"3250":[1,6,39,40,41],"32577534":[],"32584888":[],"326":[23,41],"32615859":[],"326238":[32,33],"32632463":[],"326325":[],"327":[23,41],"32708194":[],"327291":11,"32729105":11,"3273472571412799":11,"328":[23,41],"3283771":25,"329":[23,41],"32941592e":[],"329492":32,"33":[4,9,12,23,25,29,30,35,38,39,41],"330":[23,41],"33020191":[],"3303366":[],"33066907e":[5,33],"33078483":32,"33079132":32,"33104875":[],"33113018":[],"33159476":25,"33166055e":5,"331939":[32,33],"332":[23,41],"3329671101137754":29,"333":[7,23,36,41],"33333333":13,"33408606":[],"33486875":21,"335":[23,41],"33534416":[],"33537181":32,"335849":[],"336":[23,41],"33600213":32,"33746734":[],"33746734412664":[],"338":[23,41],"33800793":25,"33860497":[],"339":[23,41],"33903511":[],"33995567":[],"339961":[],"3399612":[],"34":[4,9,23,25,35,41],"340":[23,41],"340071371496255":33,"34011629":25,"3403":9,"340583":32,"340782":[11,33],"341":[23,41],"34100913":[],"34114547":5,"34149655":[],"341497":[],"34154132":[],"34158540e":[],"34193915":33,"342680":[32,33],"343":[23,41],"3436":[0,32],"3437":[0,32],"3439564710454786":[],"344":[23,41],"34412923":33,"34447052":[],"345":[23,41],"34517495":[],"34569596":5,"346":[23,41],"34685874":[],"347":[23,41],"348":[23,41],"348676117830458":5,"349":[23,41],"34998197":[],"35":[0,4,6,9,17,23,26,30,32,35,41],"350":[23,41],"35058127":21,"35084272":21,"351":[23,41],"35140":9,"35146218":29,"351636":[11,33],"35182854":5,"352":[23,41],"35248847":21,"35255737e":21,"353":[23,41],"354":[23,41],"35412147":35,"3544313922":6,"35470445e":[5,33],"355":[23,41],"35533773":6,"35564856":[],"356":[23,41],"356399":[32,33],"3568919":[],"357":[23,41],"357508":[32,33],"35771826":6,"358":[23,41],"3581341341":4,"35825829e":[],"35846425":35,"359":[5,23,34,41],"3592571":[],"3597516959642966":[],"3597517":[],"36":[0,4,5,6,23,26,29,35,41],"360":[1,39,40,41],"36051635":[],"361":[23,41],"3613":9,"361556":[32,33],"3616476":[],"362":[23,41],"3621311":5,"363":[23,41],"3632959111950474e":6,"363295916323784e":6,"364":[23,41],"36403046":29,"36420967":[39,40],"36434588":[],"36550376":32,"3655222":5,"366":[23,41],"367":2,"3676":4,"36789460e":[],"3679":4,"36795972e":[],"368":[23,41],"36802977":32,"3689":4,"369":[23,41],"369139":[11,33],"36it":6,"37":[4,6,9,19,23,26,32,36,41],"370":[23,41],"3701":4,"3703":4,"3703468543933255":[],"3705":4,"3706":4,"370782966":4,"371":[23,41],"37112277":[],"3713":4,"3716":4,"372":[23,41],"37239927e":33,"3724":4,"37266855":32,"3729492":[],"373":[23,41],"3730":4,"3733":4,"37335014":32,"3737":4,"37376184":32,"37388140e":[],"37396662":6,"374":[23,41],"3743":4,"37477725":29,"374777250972322":29,"3749":4,"375":[23,41],"3756":4,"375694":32,"3758":4,"376":[23,41],"3765":[],"376547":32,"3766":4,"37667238":25,"3767":4,"377":[23,41],"3770":[],"3773":[],"377372":33,"37737221":33,"3777801602":6,"378":[23,41],"3780":4,"3782":4,"3784":4,"37853034e":[],"3786":[],"3787":4,"3789":[],"37900111":6,"37917253":[],"3795":[],"3798":4,"3799":[],"38":[4,9,23,26,29,41],"380":[9,23,41],"3800":4,"3802":4,"38020451":[],"380205":[],"3804":4,"38046294":32,"38088413":[],"3812":4,"38135654":21,"38135733e":6,"3814":[],"3815":4,"3816":[],"38165546":[],"3817475779":[6,35],"382":[23,41],"38201155":21,"3821":[],"382187":32,"38259375":[],"383":[23,41],"38319502e":[],"3834":[],"3836":[],"3837":[],"3838":[],"38380352":21,"3838917029":37,"384":[23,41],"3840":[],"3842":4,"3842967":[],"38461538461538464":9,"38461539":37,"38465596":[],"385":[23,41],"38511413":[],"3853":[],"38533185":6,"3855":4,"3856":4,"386":[9,23,41],"38629436":[25,32],"3865":[],"387":[23,34,41],"3871":4,"3873":4,"38764522e":[],"3877":[],"3878":[],"38782352":32,"38787447":[],"38831624":[],"3886":35,"3888":4,"389":[23,41],"38916861e":6,"3893":[],"3894":4,"38962192e":6,"3898":4,"39":[0,4,9,22,23,27,30,32,38,39,41],"390":[23,41],"3901":[],"3907":[],"3907408":[],"39078751e":[],"391":[23,41],"3911":4,"3918":4,"3919":[],"39197698":33,"391977":33,"392":[23,41],"3920":4,"39200159":32,"3921":4,"39214397":33,"392144":33,"3923":[],"3928":[],"39287528":[],"3929":4,"393":[23,41],"39300201":[],"39308683e":[],"3932":[],"394":[23,41],"3944":[],"39457095":[],"3948":[],"39483726":[],"395":[23,41],"39541528":[],"3957":4,"39572825":[],"39579407":5,"396":[23,41],"39612983":[],"3962":4,"39644178":[],"3967":4,"397":[23,41],"3970":[],"39706038":5,"39730396":26,"3975":[],"397700":[11,33],"39789527":[25,32],"3979":4,"398":[23,41],"3980313467":6,"39890447":[],"39895173e":[],"399":[23,41],"39931051e":33,"3996":[],"39965905e":[],"399836":[32,33],"3999":[],"3d":[2,3,4,6,13,26,35,37,41],"3f":[1,3,9,40,41],"3n":25,"3s":4,"3x":[2,8,41],"3x_i":[2,41],"3y":8,"3yk470mj5p931p9dtkk0y6jw0000gn":[1,6,13,26,32,35,37,39,40],"4":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,23,25,26,27,29,32,34,35,36,37,38,39,40,41],"40":[0,1,4,6,9,22,23,26,27,30,32,35,39,40,41],"400":[4,23,41],"4000":[9,23,32,41],"40009482":32,"401":[23,41],"4010":4,"40111899":11,"401119":11,"4014":[],"40182469":25,"401842":[11,33],"402":[23,41],"40216748":[],"4033":[],"40362053":[],"40389562":[],"404":[23,33,41],"404130":[],"40413036":[],"4043":4,"4050":[31,32],"40500157":[],"40512793":25,"405890":[11,33],"406":[23,41],"40620066":33,"406201":33,"40629059":[],"40644745":[],"4066":[],"40666305":32,"408":[23,41],"4082":6,"4087":9,"4087793":5,"40892146":[],"40927184e":6,"40contain":27,"41":[2,4,9,22,23,25,27,41],"410":[23,41],"41021561":[],"4107":9,"41097603":[],"411":[23,41],"411730":5,"41173033":5,"412":[23,41],"41219619":[],"41246325":[],"41291861":[],"413":[23,41],"41371745":[],"414":[23,41],"41433969":5,"415":[23,41],"415066":[],"41506637":[],"41511965e":[1,39,40,41],"415201":32,"4155":[2,15,41],"41594943":21,"416":[23,41],"4162706317":6,"4166666666666667":9,"417":[23,41],"41716708":21,"41771755":[],"41790059":21,"418":[23,41],"418506":[11,33],"4187996":[],"41882037e":6,"41894238":25,"419":[23,41],"42":[1,4,8,9,10,23,25,39,41],"420":[23,41],"421120085426022":[],"42138688e":[],"42172457":[],"42198678":[],"421987":[],"422":[23,41],"42239354":[],"422658":11,"42265837":11,"423":[23,41],"4230769230769231":9,"4234":4,"424":[23,41],"42441033":5,"42450":9,"42457498":5,"424575":5,"42484459":38,"425":[23,41],"42535003":25,"425564":[],"42556446":[],"42578415":[],"4258049":[],"42584543":[],"426":[6,7,23,36,41],"427":[23,41],"428":[23,41],"42800148":[],"428741":[],"42874148":[],"429":[23,35,41],"429345":[],"42934502":[],"42967903e":[],"43":[0,1,4,7,9,25,36,39,40],"430":[23,41],"43043913":[],"43054282":5,"4310":32,"432":[23,41],"433":35,"43330971e":6,"434":[23,41],"43425860e":[],"43466245":32,"43490863":[],"43496417":[],"435163":[32,33],"4353":[],"43579948e":6,"436":[23,41],"43639284e":33,"436462435":4,"43647835":32,"437":[23,41],"43766686":11,"438":[23,41],"438060758":6,"43809274e":[],"438136":[32,33],"439":[23,41],"43902948":32,"439230":6,"43941514":32,"43951204":29,"43it":6,"44":[0,1,4,25,39,40],"440":[23,41],"44089210e":[5,33],"441":[23,41],"44116407":32,"441182":[],"44118245":[],"441264":32,"442":[23,41],"442600":[11,33],"443":[23,41],"443217":[32,33],"44347438":[],"444":[9,23,41],"44402322":25,"44407741e":[],"44418822":[],"44520102":[],"44595818":32,"446":[23,41],"446033":35,"44624525e":33,"446453":32,"44729805":[],"44732200e":[],"44781662":11,"447817":11,"448":[23,41],"44842116":[],"449":[23,41],"44921888":[],"44970586e":[1,39,40,41],"45":[4,9,23,30,32,41],"450":9,"45014":25,"450257":[11,33],"4504":9,"45062284":32,"45065211":[],"45073476e":[],"450m":[],"451":[23,41],"45134965":[],"45207509":[],"45253585":32,"452553":32,"45255977":[],"45281756":[],"45290234":21,"452m":4,"453":[23,41],"45308692":[],"453m":4,"454":[23,41],"45405253e":[],"454m":4,"455":[23,41],"45502684":21,"455173":35,"4555094":[],"455592":[],"4557763":11,"455947":[32,33],"455m":4,"456":[9,23,41],"45610021":[],"45642521":[],"456m":4,"457":[2,4,23,41],"457m":4,"458":[23,41],"458027":[32,33],"458078":[11,33],"458m":4,"459":[23,41],"45915671e":33,"45922756e":[],"45960079":5,"459m":4,"46":[2,4,9,23,30,32,41],"460":[23,41],"4600624385659884":[],"4601":9,"46022436e":[],"460m":4,"461":[23,41],"46153846153846156":9,"461m":4,"462":[7,23,36,41],"4627795":29,"462m":[],"463":[23,41],"46313714":[],"46383925e":6,"46383926e":6,"463861":32,"464":[23,41],"464m":4,"466":[23,41],"467":[23,41],"46754435":32,"4676059":33,"467606":33,"467818":[],"46781836":[],"467m":4,"468":[23,41],"46873567":25,"468m":[],"469":[23,41],"46984697e":6,"47":[2,4,9,23,30,32,41],"470":[23,41],"47042744":5,"470714":[32,33],"47075725":6,"470m":4,"47116868e":6,"4712168":29,"47125748":5,"47132891":5,"47176716":35,"47176783":35,"47179152":35,"471874":[],"47187428":[],"472":[23,41],"47202442":35,"472445":5,"47244548":5,"47297104":25,"473":[23,41],"47313680":35,"47364408":25,"473m":[],"47430124e":[],"47447472":[],"475":[23,41],"475405":[],"47540513":[],"476":[23,41],"47610036":6,"477":[23,41],"47700752":32,"47701204":[],"477m":[],"47815203":11,"479":[23,41],"479465113":4,"479m":[],"47it":6,"48":[2,3,4,9,23,35,41],"480":32,"481":[23,41],"48134747":[],"481401":[],"48140137":[],"48145226":[],"481979":6,"482":[23,41],"48240312e":[],"48243352e":[],"48257387":[30,32],"483":[23,41],"483257001":13,"48336413":[],"48356153e":[],"483m":[],"484":[23,41],"48418018":[],"48423285":[],"48461009":[],"48464841":[],"48476997":11,"484m":[],"48598711":[],"485m":[],"486":[23,41],"48629506":[],"486852":11,"48685204":11,"4871984":29,"487m":[],"488":[23,41],"48815255e":[],"488m":[],"489502":[],"48950243":[],"48994188":5,"49":[4,5,6,9,11,23,26,33,37,38,41],"490":[23,41],"49057373":32,"49078463":[],"491":[23,41],"49152":3,"49216685":21,"492m":[],"493":[23,41],"49313815":21,"493m":4,"4940954":[0,32],"495":[23,41],"49545139":21,"49555885e":[],"4959161509357395e":6,"495916150936645e":6,"495m":[],"49616116":[],"497":[3,4,23,41],"4974810657432664":[],"497m":[],"498":[3,4,23,41],"49865980e":[],"499":[3,4,23,41],"4990":29,"4992":29,"4993133":25,"4997":29,"499m":[],"4c4c7f":[9,10],"4d":3,"4f":6,"4pm":[30,32],"4s":[],"4y":8,"4y_i":10,"5":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],"50":[1,2,3,4,6,7,8,9,10,13,21,23,32,33,35,36,37,38,39,40,41],"500":[1,3,4,6,9,10,13,23,35,36,37,38,39,40,41],"5000":[23,41],"50000000e":39,"50000455":5,"50000553":5,"50000718":5,"50000855":5,"50000969":5,"50001063":5,"50001142":5,"50001207":5,"50001261":5,"50001306":5,"50001343":5,"50001374":5,"500014":5,"50001414":5,"50001422":5,"50001439":5,"50001454":5,"50001466":5,"50001476":5,"50001485":5,"50001492":5,"50001498":5,"50001502":5,"50001506":5,"5000151":5,"50001512":5,"50001515":5,"50001517":5,"50001518":5,"50001519":5,"50001521":5,"50001522":5,"50001523":5,"50001524":5,"50001525":5,"50046106":21,"50079895":[],"500m":[],"501":[3,4],"5018":29,"50184628e":[],"501m":[],"502":[3,4,23,41],"50227564e":6,"50274255":[],"503":[3,4,23,41],"50321091":5,"504":[3,4,23,41],"50427787":35,"50462474":[],"5046808":29,"505":[3,4,23,41],"50519365":[],"50562981":[],"506":[0,3,4,23,33,41],"50653545":32,"506553":33,"50655336":33,"50691065":[],"50697511":[],"507":[3,4,23,41],"50721349":[],"507d50":[9,10],"508":[3,4],"50837888e":[],"50846111e":6,"50846112e":6,"509":[23,41],"5092982":25,"50it":6,"50j":[13,37],"50x10":[1,39,40,41],"51":[4,10,23,41],"510":[1,23,39,40,41],"511":[3,4,23,41],"511888":5,"51191552":6,"512":[3,4,23,41],"51374050":35,"514":[23,41],"514219":[32,33],"515":[23,41],"515m":[],"516":[23,41],"517":[23,41],"51741855":25,"5177783846":4,"51845286":[],"518895":32,"519":[23,41],"52":[3,4,23,37,38,41],"52015514":[],"52067151":32,"52078202":29,"52180619":32,"522":[23,41],"52204004":[],"52209178":[],"5222222222222223":[1,39,40],"522836":32,"522m":[],"523":[23,41],"52362157e":33,"524":[23,41],"52400486e":[],"52482437":[],"525054":[],"52512898":29,"52518625":[],"525739":[],"52573941":[],"526":[23,41],"526744":[11,33],"52687741":25,"527":[23,41],"5276":4,"52775466":35,"52795454":[],"528":[23,41],"52856208":[],"52874252":5,"529":[23,41],"52942586":11,"52944573":[],"529446":[],"52950417":[],"5297947920715131":[],"53":[3,4,9,23,41],"5303329":11,"53049637":38,"5305555555555556":[1,39,40],"531":[23,41],"531280":[32,33],"532":[23,41],"5320148":[],"53250091":[],"53278871":[],"532789":[],"533":[23,41],"534":[23,41],"5340022":[],"534362":32,"535":[23,41],"53515878":25,"53542722":[],"53558374":25,"536":[23,41],"5364857":25,"5369485":21,"537":[23,41],"53700083":25,"53703498":6,"53738247":35,"53755010e":[],"5378811":11,"538":[23,41],"53811172e":[],"5384615384615384":9,"539":[23,41],"539261":[11,33],"53946725":21,"54":[3,4,6,9,23,29,41],"540":[9,23,41],"54039921":5,"54041041e":5,"541605":[32,33],"542":[23,41],"54285633":[],"543939":33,"54393936":33,"544":[23,41],"544439":[32,33],"545":[23,41],"54637219":35,"54644868":25,"547":[23,41],"549":[23,41],"55":[1,3,4,9,23,39,40,41],"55086461":[],"552":[23,41],"552042":[],"55315304":[],"55328795e":[],"554":[23,41],"555":[23,41],"5555555555555556":[1,39,40],"555m":[],"556":[23,41],"55649207":32,"556m":[],"557":[23,41],"557795":[11,33],"558":[23,41],"55854694":11,"55865092":32,"55867377":32,"55868255":[],"559":[23,41],"5594":6,"55955126":[],"55972302e":[],"55it":6,"56":[1,3,4,9,23,39,40,41],"560":[23,41],"56033697":5,"5608253":32,"561":[23,41],"5615739502773949":32,"56171141":[],"56198284":5,"561m":[],"56240703e":[],"56249706":25,"56288861":[],"562888614232874":[],"563":[23,41],"563167":32,"56364308":[],"56366546":[],"56399029e":[],"564":[9,23,41],"564374":[11,33],"56465688":[],"56475572":32,"56477354":[],"565":[9,23,41],"56536":[0,32],"56570797e":[],"56589683":35,"566":[9,23,41],"56636537":[],"56636616e":6,"567":9,"56740132":[],"568":[9,23,35,41],"568587":[],"56858701":[],"569":[1,9,40,41],"56912044e":6,"56939714":5,"56965674":35,"57":[0,3,4,8,9,23,30,32,41],"570":9,"571":[5,23,34,41],"571105947979344e":6,"571105947979394e":6,"57201944e":6,"572069":32,"57285536":[],"573":[23,41],"573029":[],"57302926":[],"574":[23,41],"574465":[11,33],"575":[23,41],"57572321":[],"576":[23,35,41],"57670824":[],"5769230769230769":9,"577":[23,41],"578":[23,41],"5786304":[],"579":[23,41],"57935482":32,"57952471e":[],"58":[3,4,9,10,23,30,32,41],"580":[23,41],"58076367":11,"5808118":[],"5810785":32,"58182803":32,"58193124":[],"581m":[],"582":[23,41],"58268575":[],"5828247":[],"5829913":[],"5833333333333334":9,"583595":[32,33],"584":[23,41],"58427764":29,"58465096":21,"58492636e":33,"585":[23,41],"587":[23,41],"58739348":21,"58742004e":[],"58793527":25,"58818643":[],"58841019e":[],"5888888888888889":[1,39,40],"589":[23,41],"58948138":[],"58948347":[],"59":[4,9,23,41],"590":[23,41],"59004971":[],"591317992":4,"5914397":25,"592":[23,41],"59222238":[],"593":[23,41],"59327016":25,"594":[23,41],"59412285":32,"5944444444444444":[1,39,40],"59446603":[],"59511582":[],"59545081":29,"59589728e":[],"596":[23,41],"59642735":29,"596m":[],"5974862":[],"598":[23,41],"59895188":[],"599":[23,41],"59916814e":[],"5cm":29,"5f":[8,37],"5x":8,"5y":8,"6":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,25,29,30,32,33,34,35,36,37,38,39,40,41],"60":[1,3,4,6,9,23,40,41],"600":[23,41],"6000":[23,41],"60000":4,"601":[23,41],"6019067271":4,"60293962":5,"603":[23,41],"603636":32,"6037092":[],"60383004":[],"604":[23,41],"60420593":5,"605":[23,41],"60543038":33,"606":[23,41],"60673226":11,"6067329321734374":[],"60675691":25,"606760":5,"607":[23,41],"6071713":[],"608":[23,41],"60815105":6,"60883945":32,"609":[23,41],"60943791":[25,32],"60it":6,"61":[7,23,36,41],"610":[23,41],"61043964e":[],"611":[23,41],"6111111111111112":[1,39,40],"61197218":[],"612":[23,41],"61238907":[23,41],"612939":[32,33],"613":[23,41],"613579":[32,33],"61394448":[],"614":[23,41],"614808":[11,33],"61480907":25,"615":[23,41],"61504341":[],"61532006":[],"6153846153846154":9,"61585143":[],"616":[23,41],"61653285e":[],"617":[23,41],"61702282":6,"61775176":35,"618":[23,41],"618982":[32,33],"619":[23,41],"61939429":[23,41],"61971639e":[],"61992828e":[],"61it":6,"62":[3,4,23,41],"620":[23,41],"621102":32,"622":[23,41],"623":[23,41],"62373464":11,"624":[23,41],"625":[7,36],"62554614":[],"626635268":[6,35],"627":[23,41],"62841921":[],"62862896":[],"6289054":[],"62894215":5,"629":[23,41],"629100":5,"62910047":5,"62919818":[],"62it":6,"63":[0,1,3,4,6,7,23,33,35,36,39,40,41],"630":[23,41],"6300745149331701":33,"63025821e":6,"63162342":33,"63180447":35,"632":[23,41],"63227278":32,"63249532e":6,"63277911e":[],"633":[23,41],"633949":32,"634":[23,41],"634715":[],"63471545":[],"63498144":5,"6353716266230895":29,"63537163":29,"63567272":[],"636":[23,41],"63659131":21,"63677721":[],"637":[23,41],"637129335071195":33,"638":[23,41],"63837812":32,"63849228e":[],"63875295":[],"639":[23,41],"63957747":21,"64":[1,3,4,7,13,23,25,32,36,37,38,39,40,41],"64012627":5,"64056395":29,"641":[23,41],"64111239":[],"64147722":[],"64158883e":36,"642":[23,41],"64291044e":[],"64292493":[],"64299732":[],"643":[23,41],"64316192":35,"64316482":35,"64391062":[],"643m":[],"645":[23,41],"64502836":[],"64527549":33,"64550753":[],"64594566":5,"645946":5,"646":[23,41],"646283":[11,33],"64695862":25,"647":[6,23,41],"64733822":29,"64742912e":6,"647473":[11,33],"648":[23,41],"64846973e":[],"649":[23,41],"649382":[11,33],"64969451":[],"649695":[],"64x50":[1,39,40,41],"65":[1,3,4,7,8,9,23,25,36,39,40,41],"650":[23,41],"65036493":[],"65196615":[],"652":[23,41],"652187":[],"65218729":[],"65322635":29,"6536392":33,"654":[23,41],"65408703e":[],"65409368":29,"65442354":33,"654424":33,"654m":[],"655":[23,41],"65565751":[],"65571174e":33,"65599456":33,"65626992":38,"65628888":[],"6568551":[],"657":[23,41],"65704027":[],"657041":32,"65715086":29,"65720414":[],"65743689":33,"658":[23,41],"65825344":25,"65833132":33,"65885453":5,"65891389":33,"658914":33,"65913552":29,"66":[3,4,23,41],"660":[23,41],"660470":11,"66047048":11,"66051179":[],"66064822":33,"66080313":33,"661":[23,41],"662":[23,41],"66204648":6,"66219404":6,"6628996975186953":33,"66294408":33,"66323494":[],"6638":9,"664":[23,41],"66490332e":21,"665":[23,41],"66510547":13,"6652177":33,"66545355":[],"66560":9,"66562658e":[],"665m":[],"666597":32,"666897":[],"66689729":[],"667":[9,23,41],"667239":32,"66798429":[],"668":[23,41],"668172":[32,33],"66878535":21,"669":[23,41],"66m":4,"67":[9,23,41],"670":[23,41],"67035174":[],"67047975e":6,"671":[23,41],"67109613":25,"67189384":[],"671m":[],"672":[23,41],"67264685":[],"672721":[32,33],"67314874e":5,"67347822":[],"674":[23,41],"67432237e":[],"67541155":13,"67554897":[],"676":[23,41],"67640036":[],"67671601":[],"677":[23,41],"678":[23,41],"6780674":[],"67890723":[],"68":[23,41],"680":[23,41],"68037392":5,"680374":5,"681":[23,41],"68192193":5,"682":[23,41],"68286725":33,"683":[23,41],"68419351":[],"684194":[],"685":[23,41],"68534263e":6,"68542204":5,"685643":[],"68564345":[],"68581655":38,"68592431":35,"6860597312101988":[],"6869":9,"687":[23,41],"68711054":25,"68759903e":[],"687m":[],"688":[23,41],"6887363571":4,"68929213e":6,"689345":32,"689519":[11,33],"68971917":29,"68992377":32,"69":[7,9,23,29,36,41],"690":[9,23,41],"69009002":[],"690617":[32,33],"69069n_":29,"690710":[],"69071035":[],"691":[23,41],"69111133e":[],"692":[1,23,35,39,40,41],"692268":[],"69226802":[],"69230769":37,"6923076923076923":9,"69233822":29,"692m":[],"693":[23,41],"69314603":21,"694":[23,41],"69481287":29,"69484813e":5,"695":[23,41],"69504801":6,"69519297":25,"69582036":[],"696":[23,41],"69634577e":6,"69695259":5,"697":[23,41],"69714468":[],"6980":[21,37,38],"69818111":[],"69873514":[],"699":[23,41],"69908626":6,"6999536":11,"69997503":33,"6n_":29,"6pm":32,"7":[0,1,2,3,4,5,6,7,8,9,11,12,13,15,21,23,25,26,28,29,31,32,33,35,36,37,38,39,40,41],"70":[1,6,7,9,23,36,39,40,41],"700":[23,41],"7000":[23,41],"70037324e":33,"701":[23,41],"70115106":[23,41],"701370":5,"702":[23,41],"70224083":13,"70249832":25,"703":[23,41],"70344416":5,"704":[23,41],"70408916":32,"705":[23,41],"70506522":32,"70573539":[],"706":[23,41],"70653767":4,"706833":[],"707":[23,41],"70710678":[5,33],"708":[23,41],"7082333":32,"70832814":5,"7086067479626619":33,"70899024":32,"709":[23,41],"7094664":[],"70967214":25,"709698":32,"71":[1,23,39,40,41],"710":[23,41],"7100524":[],"71038664":25,"711":[23,41],"71137935":29,"71142161":33,"711422":33,"7119":9,"712":[23,41],"712018":[11,33],"71269506e":[],"71285447":[],"713":[23,41],"713163":32,"7135487":[],"71375273e":[],"714":[23,41],"71424969":[],"71437567912473":[],"71437568":[],"71467081":[],"71504681":[],"71640333":[],"71647328":32,"717":[23,41],"71727268":5,"717273":5,"71737253":33,"71761101":33,"718":[23,41],"718165":5,"71977472":25,"72":[23,25,41],"720":[23,41],"7207467":32,"721":[23,41],"7215423":32,"72174172":11,"722":[23,41],"72228205":32,"72271878e":6,"723":[23,41],"72328506":[],"7236674":5,"724":[3,23,41],"725":[23,41],"72546953":32,"72651548":25,"727":[23,41],"72742343e":[],"728":[23,41],"72859758":5,"72981762":8,"73":[6,23,32,35,41],"730":[23,41],"731000":[32,33],"732":[23,41],"73231305":[],"73293298":[],"7330932":29,"733096":[32,33],"73379189":32,"734":[23,41],"734107":[],"73410729":[],"73441814":29,"73448544":[],"73456649":[],"73482109":[23,41],"735":[23,41],"736":[23,41],"737":[23,41],"74":[6,23,35,37,38,41],"740":[9,23,41],"74081822":8,"740m":[],"741":[23,41],"741391":[],"7413913":[],"741m":[],"742":[23,41],"74280244":[],"743189104728408":11,"74384949":33,"74391438":25,"744":[23,41],"74401372":[],"74430995":29,"74462857":[],"745":[23,41],"74577867":[],"746":[23,41],"74607851":33,"747":[23,41],"74724767":[],"74731872":25,"748":[23,41],"74818082":[],"74829661":33,"74840212":5,"7484672e":[],"749":[23,41],"7490462":[],"749765":[32,33],"75":[5,6,8,9,11,23,26,32,33,35,39,40,41],"750445":[32,33],"75050135":33,"75054469":29,"7506274061293645":[],"751":[23,41],"751699":[11,33],"75170092":5,"75174305":11,"75268791":[],"75269037":33,"75282841":[],"753":[23,41],"75315452":[],"75354069":[],"754":[23,41],"75457798":[],"75472506":21,"755":[23,41],"75576555":33,"756":[23,41],"75627883":[],"756279":[],"75631027":[],"756352":[32,33],"757":[23,41],"75719828":[],"75770568":33,"758":[23,41],"75823753e":[],"7588118737641243":32,"759":[23,41],"75963425":[],"76":[9,23,30,32,41],"76004012":[],"76010633":[],"76077707e":[],"76084455":[],"761":[23,41],"76135601":25,"76174289e":[],"762":[23,41],"763":[23,41],"7640203256838339":11,"7644":[],"764997683364458":[],"765":[7,36],"7651068":[],"766":[23,41],"7664107":[],"76771975":[],"769":[23,41],"7692307692307693":9,"76936315":5,"7694444444444445":[1,39,40],"7697":35,"7698352":32,"76985203":29,"77":[9,23,30,32,37,38,41],"770204":[],"77025447e":[],"77067609":32,"77133246":29,"77152076":5,"7718":9,"77184871":21,"772":[23,41],"77203046":25,"77265448":[],"77265782":32,"773":[23,41],"77343022e":[],"774":[23,41],"77448317e":[],"7748567":[],"775":[23,41],"77589027":[],"776":[23,41],"77632628":[],"77636e":[13,38],"77646856":[],"777":[23,41],"77714169":8,"7779287093124035":[],"77794957":[],"778":[23,41],"7782028952":4,"77856932":[],"779":[23,41],"78":[23,41],"780":[23,41],"78009660e":33,"7803213":32,"78156479e":5,"78177713":[],"78184120e":6,"782":[23,41],"78220032":25,"78299706":[],"783":[23,41],"78316665":29,"784":[23,41],"785061":32,"78521833":25,"78524451e":[],"78556129":[],"786":[23,41],"7865355":32,"788":[23,41],"788388":11,"78838813":11,"78882958":[],"78886274":[],"789":[23,41],"7893215781870513":5,"78941903":5,"78951443":[],"79":[23,32,41],"790":[23,41],"79035184":25,"79072516":[],"791":[23,41],"79106945e":[],"79111643":5,"79125269":[],"791809":[],"792":[23,41],"793":[23,41],"793167":[32,33],"79328516":[],"794282":[11,33],"794906":[],"79490641":[],"795":[23,41],"795225339396409":[],"79550688e":[],"79578306":[],"796":[23,41],"79675445":[],"797":[23,41],"79787771":[],"797e":6,"798":[23,41],"79896478e":[],"799":[23,41],"79909592":35,"79914677":[],"7993408651198877":35,"79934087":35,"7995707762668065":35,"7d7d58":[9,10],"8":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"80":[0,1,5,6,8,9,23,33,34,35,39,40,41],"800":[4,7,23,36,41],"8000":[23,41],"80074264":25,"80152684":[],"80189569":[],"80207897":25,"80228781e":[],"802550782087107":[],"803":[23,41],"80354994":6,"80389541":32,"804":[23,41],"80447153":32,"80460179":35,"80469739":5,"805":[23,41],"80540415e":[],"80548430e":[],"8055555555555556":[1,39,40],"80609615e":6,"80609616e":6,"80625657":[39,40],"807":[23,41],"808":[23,41],"80802836":[],"80847477e":6,"80861057":[],"808611":[],"81":[1,23,39,40,41],"81048318e":6,"81071342":[],"811":[23,41],"81114345":[],"81122914":21,"81160425":5,"812":[23,41],"81333804":6,"813929":11,"81392948":11,"814":[7,11,23,36,41],"815":[23,41],"81597834":35,"815am":[30,32],"81633628":11,"816454":[32,33],"81651921":[],"81664404":[],"816847":[32,33],"817":[23,41],"81753152":[],"81759234":21,"81784973":[],"818":[23,41],"8182":[],"81840893":32,"81853487e":21,"8186717":[],"819":[23,41],"81948868":25,"81953844":32,"8197":[],"82":[23,41],"820":[23,41],"82001111":29,"820122":11,"82012236":11,"821":[23,41],"82102668":[],"82139086e":[],"82198978":5,"822":[23,41],"82292185":32,"82296251":[],"823":[23,41],"82379443":11,"824":[23,41],"82410428":[],"8249367":21,"825":[23,41],"826":[23,41],"82651934e":[],"8265786":5,"827":[23,41],"827462":29,"82781715":21,"828":[23,41],"829":[23,41],"82909728":[],"82988221":25,"83":[23,32,41],"830":[23,41],"83009076":29,"8305555555555556":[1,39,40],"8306":6,"831":[23,41],"8311393813043355":29,"83140314":29,"83140314044099":29,"83146596":35,"83190841":[],"832":[23,41],"83298727":[],"832987270767667":[],"832m":[],"833":[23,41],"83384573":[],"834":[23,41],"8342":6,"83443463":25,"83443698":[],"83488328":[],"835":[23,41],"83505053":[],"8351":6,"83512277":5,"8353591":32,"836":[23,41],"836186":11,"83618601":11,"83657122":[],"837":[23,41],"83752888e":[],"83770406":[],"83774539":[],"83793362":[],"838":[23,41],"83870794e":[],"839":[23,41],"839818":32,"84":[23,41],"840":[23,41],"84082439":[],"84094234":[],"841":[23,41],"84132082":32,"84159521":[],"842":[23,41],"842101":11,"84210141":11,"842436":[32,33],"84290819e":[],"843":[23,41],"84355903e":[1,39,40,41],"84359332e":[],"84380376":[],"844":[23,41],"84443254e":[1,39,40,41],"84444399":[],"845":[23,41],"845716766413386":[],"84571677":[],"84575663":[],"846":[23,41],"8461538461538461":9,"84638256":[],"846383":[],"84666445":[],"84671508":29,"84698999":29,"847":[23,41],"84780262":6,"84783351e":[],"848":[23,41],"84835621":11,"84846601":[],"84858":34,"84859258":[],"849":[23,41],"84923989e":6,"84927263":[],"84929103":[],"84942247e":[],"84991754":32,"84994524":5,"84m":[],"85":[1,9,23,39,40,41],"850":[23,41],"850164":5,"85035714":[],"851":[23,41],"852":[23,41],"85263220":6,"85276246":25,"85278920e":5,"85288931":[],"85297050e":[],"853":[23,41],"85355539":21,"85365229":21,"853835":32,"854":[23,41],"855":[23,41],"85514104":[],"85548858":[],"856":[23,41],"85601654":0,"85601992":5,"85615662":[],"85654993":32,"85714286":36,"8574":[],"858":[9,23,41],"85813693":13,"858185":32,"8583333333333333":[1,39,40],"85888897e":[],"859":[23,41],"86":[23,41],"860":[23,41],"86012593":[],"86015267":[],"861":[23,41],"86117291":5,"86134827":5,"86145244":11,"861676":32,"862":[23,41],"86221134":[],"86252988":6,"86282204":32,"863":[23,41],"86341536":[],"8635085":[],"8638888888888889":[1,39,40],"864":[23,41],"86420934":32,"86452742":[],"865":[23,41],"866":[23,41],"86619181":[],"86630":9,"8666666666666667":[1,39,40],"86666667":36,"867":[23,41],"868":[23,41],"86810":9,"86811569":25,"86850963":25,"86852099":32,"869":[0,23,32,41],"87":[9,23,33,41],"870":[0,23,32,41],"8702784034":4,"87072815e":33,"871":[0,23,32,41],"872":[23,41],"8722222222222222":[1,39,40],"87242312":[],"8727831":29,"873":[0,23,32,41],"87381451":5,"874":[0,23,32,41],"87403627e":[],"87431418":25,"87458904":[],"875":[1,23,39,40,41],"87533278":[],"87533326":25,"875794":[],"8759":[13,38],"876":[6,23,41],"87627342":35,"877":[23,41],"87795661":[],"878":[23,41],"878123":32,"8784267":[],"879":[23,41],"8791492":29,"87931006":25,"87953769":25,"88":[13,23,37,38,41],"880":[23,41],"88046261":5,"8805555555555555":[1,39,40],"881":[23,41],"88168312e":6,"88182591":33,"882":[23,41],"88291866":21,"883":[23,41],"88305878":[],"88323026":33,"88336879":5,"884":[23,41],"884399":[],"88442538":5,"884669":33,"885":[23,41],"88529063e":6,"886":[23,41],"88613493":33,"887":[23,41],"88744469e":[],"888":[23,41],"888214":11,"88821402":11,"888577549915147":[],"8888888888888888":[1,39,40],"889":[23,41],"88901776":32,"88908909e":[],"8897518e":[],"89":[0,23,41],"890":[23,41],"89098129":25,"891":[23,41],"89126914e":33,"8915573":[],"892":[23,41],"89288636":11,"893":[23,41],"89321335":29,"894":[23,41],"89410423":5,"8942133":[],"8944444444444445":[1,39,40],"89481038":21,"895":[23,41],"896":[23,41],"89604286":32,"89609007":[],"896911":[],"8969113":[],"897":[23,41],"89793609":[],"898":[23,41],"89805982e":21,"89823921":[39,40],"89897156":32,"899":[23,41],"89996783":[],"8f":[6,35],"8g":[6,35],"8n":25,"8x8":[1,39,40,41],"9":[0,1,2,3,4,5,6,7,8,9,11,12,13,21,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,40,41],"90":[1,6,9,23,40,41],"900":[23,41],"9000":[23,41],"90075537":5,"901":[23,41],"9011":6,"902":[23,41],"90220243":5,"90223115":[],"90266948":5,"9027777777777778":[1,39,40],"90297441":[39,40],"903":[23,41],"90325763":[],"9036573":[],"904":[23,41],"9040":9,"904648525660773":[],"90475506e":6,"905":[23,41],"9050595316983907":25,"9054":35,"9055555555555556":[1,39,40],"90556496":25,"906":[23,41],"906747":5,"907":[23,41],"90793019":13,"908":[23,41],"90803422":[],"90854751":11,"908548":11,"90871918":21,"908736":[],"90873644":[],"909":[23,41],"909327":3,"90960269":32,"91":[23,30,32,41],"910":[9,23,41],"91022359":25,"91050344e":[],"91080327":21,"91086026":25,"911":[23,41],"9111111111111111":[1,39,40],"91128596":5,"912":[3,4,23,41],"9129629":[],"913":[23,41],"91358019":25,"91373404":29,"914":[3,4,23,41],"9142491":[],"91492986e":6,"915":[3,4,23,41],"91538877":[],"916":[23,41],"91619855":13,"91650774":[],"916508":[],"9165822":[],"9166666666666666":9,"917":[3,4,23,41],"917482":11,"91748202":11,"91760278":5,"91784246":[],"918":[3,4,23,41],"91812702":5,"918992":[32,33],"919":[23,41],"91966064":[],"92":[6,9,23,30,32,41],"920619":11,"92067658":[],"9208878":[],"921":[23,41],"92103867":[],"921368":5,"92136836":5,"922":[23,41],"922002":11,"92200223":11,"92236466e":[],"923":[23,41],"9230769230769231":9,"92351924":[],"923602":32,"924":[23,41],"92405283":[],"924e":6,"925":[1,23,39,40,41],"92507116e":[1,39,40,41],"92578916":5,"92579609e":[],"926":[23,41],"92630576":32,"92648983":[],"92651068":35,"927":[23,41],"92717417":[],"92729959":[],"92772833":[],"9277777777777778":[1,39,40],"928":[23,41],"92857143":[7,36],"929":[23,41],"92930426e":[],"9295763474254684":[],"93":[23,41],"930":[23,41],"93003138502386":29,"93022647":32,"9305555555555556":[1,39,40],"930829":5,"93082933":5,"931":[0,23,32,41],"93155188":5,"93158979":5,"932":[23,41],"932656":[],"93267138892912":[],"93267139":[],"933":[5,23,34,41],"934":[23,41],"93420126":[39,40],"93492130e":6,"935":[23,41],"93500562":[],"93528653e":[],"93571082":[],"936":[23,41],"93601008e":33,"937":[23,29,41],"937082":[32,33],"93799826":5,"938":[23,29,41],"93820524":[],"9387":9,"93884803":[],"939":[0,23,29,32,41],"93944615e":[],"93988393":[],"94":[7,23,29,36,41],"940":[23,41],"941":[23,41],"942":[23,41],"94226022e":6,"94230225":[],"942422095469182":[],"94256677":[],"94260358":[],"942604":[],"94273542":33,"94284104":5,"943":[23,41],"94320205":5,"94338159":[],"943439":[],"94399217":29,"944":[3,4,23,41],"94400087":25,"94433302e":[],"9444444444444444":[1,39,40],"94484047e":39,"945":[3,4,23,41],"94591015":[25,32],"946":[3,4,23,41],"94639099":11,"94642209":32,"946957":5,"94697839":[],"947":[3,4,23,41],"9472222222222222":[1,39,40],"948":[3,4,23,41],"94814932":[],"94815131":[],"9481513127527335":[],"94822514":6,"94823368":32,"9482527":5,"94854992":[],"94866246":[],"949":[3,4,23,41],"949162":11,"94916237":11,"94938706":[],"95":[1,7,9,11,23,35,36,39,40,41],"950":[3,4,23,41],"95008046":6,"9503219":29,"95055425":[],"951":[3,4,23,41],"951109":[],"95117099":[],"95166414":32,"95190644":[],"952":[23,41],"95231424":5,"95235306":21,"952387":33,"9527777777777777":[1,39,40],"95284275":5,"953":[23,41],"953065564":[1,39,40],"95327702":[],"95329348":[],"95351665":5,"95355327":[],"954":[23,29,41],"95429024":[],"955":[23,41],"95508909":[],"95511792":33,"955118":33,"9555555555555556":[1,39,40],"95558642":[],"955820c21e8b":4,"956":[23,41],"956563":[11,33],"95661705":32,"95679388":32,"95684892":5,"95686268":[],"95697233e":[],"957":[23,41],"95703":[13,38],"95746721":25,"95763525":[],"9578":[],"958":[23,41],"958228616652075":5,"959":[23,41],"95982273":13,"96":[6,7,11,23,35,36,41],"960":[23,29,41],"9601304850035702e":6,"960130485007504e":6,"96024953":5,"96033509e":[],"96046928":[],"96084663":5,"961":[23,29,41],"96183456":[],"962":[23,29,41],"962653":5,"962990":32,"963":[23,41],"963198":[],"9637117593816477":6,"964":[23,41],"9640435":5,"96459246":32,"96461989e":[],"9649652536":4,"965":[23,41],"96543101":32,"965548":[32,33],"96599594":25,"966":[23,41],"96611032":[],"96618584":25,"96631321":33,"96688672":5,"966899":32,"967":[23,41],"9674916":5,"96750421":[],"967809":[11,33],"96783837":13,"968":[23,41],"96804366":[],"96841776":[],"96850702":25,"96890557e":[],"969":[6,23,41],"96911909":29,"97":[7,23,36,41],"970":[23,41],"97005689":5,"97062694":[],"97069774":[],"970698":[],"971":[23,41],"97108e":[13,38],"9716":[],"972":[23,41],"9722222222222222":[1,39,40],"9723":[],"97243128":5,"97262227":[],"973":[23,41],"97300836":5,"974":[23,41],"97449977":32,"97488151":[],"97497404e":6,"975":[1,23,39,40,41],"97507735":5,"97514104e":[],"97594511":[],"976":[23,41],"97606135":29,"97606135399951":29,"9764":[],"97644118":[],"9765":[],"97690235":35,"977":[23,41],"97705827":5,"97758848":5,"9777777777777777":[1,39,40],"978":[23,34,41],"9780387310732":31,"9780387848570":31,"97804446":[],"9781492032632":31,"9783319210079595":[],"978553":5,"97866042":25,"97879245":[],"97898392":[6,33],"979":[6,23,41],"97906022e":33,"97926491":5,"97948913":[],"9797317":29,"98":[0,1,7,9,23,36,39,40,41],"980":[9,23,41],"98004227":[],"9805555555555555":[1,39,40],"98073929":5,"98091621":5,"981":[23,41],"98127617":[],"981321":[32,33],"98139097":5,"982":[23,41],"98201379":[23,41],"98215566e":[],"98275501":5,"983":[23,41],"98316168":32,"983310":[32,33],"984":[23,41],"98404993":[],"98413059":5,"984182":[],"98418221":[],"98430782":[],"984308":[],"98454786":5,"984601":[],"98460101":[],"9849967686928113":36,"985":[23,29,41],"98566191":5,"986":[23,29,41],"98601306":29,"9861111111111112":[1,39,40],"98620879e":[],"986699":5,"98680716":5,"98686102":[],"98694705":[],"987":[23,41],"98706221":[],"98716878":5,"9871776311306221":[],"98765625":25,"987722":11,"98772232":11,"988":[23,41],"98808176":5,"98822371":6,"988835":[],"9888544725633199":[],"9888888888888889":[1,39,40],"989":29,"9890348":5,"98914003":[],"9893447":5,"98947894":33,"9898ff":[9,10],"99":[6,7,9,11,13,21,23,35,36,37,38,41],"990":[9,23,41],"99006712":32,"99009525":5,"99051150":6,"99083639":[],"99084226e":[],"99088801":5,"991":[23,29,41],"99106686":[],"99115119":5,"9915165982451293":33,"99176998":5,"992":29,"99215828":[],"99242921":5,"99265097":5,"99268332":[],"993":[23,29,41],"99316252":5,"99330715":[23,41],"99371056":5,"99389612":5,"993993":[23,41],"99399301":[23,41],"99399308":[23,41],"99399309":[23,41],"99399315":[23,41],"994":[23,41],"9940253773173835":[],"9943201":5,"9947756":5,"99484719":32,"99492986":5,"995":[23,41],"9950597269547777":[],"9952222065466447":33,"99528218":5,"99539415":5,"9955500279779226":[],"99566069":5,"99578809":5,"995840825550726":33,"99589367":[],"996":[5,34,35],"99608161":5,"99630114":21,"9963311287748658":[],"9963961":5,"99650061":5,"9967458":5,"9969332511584248":[],"99700706":5,"99709215":5,"99729756":5,"99751458":5,"99752738":[23,41],"99758326":5,"99767262":[],"99775587":5,"9978254":[],"99793613":5,"99799099":5,"998":[23,41],"99813653":5,"99828624":5,"9983295":5,"99845267":5,"99854557":33,"998577":5,"99861053":5,"99862019":33,"99866581":[],"99869482":33,"99871521":5,"99876945":33,"99881845":5,"99883628":33,"99884384":5,"99884409":33,"99888222":[],"99891093":33,"99891873":33,"99893323":5,"99898558":33,"999":[9,21,23,29,37,38,41],"99901896":5,"99903755":5,"99906023":33,"99911427":5,"99912709":33,"99913489":33,"99918546":5,"99919837":5,"99920175":33,"99926459":5,"99927642":33,"9993237":5,"99932732":[],"99933188":5,"9993511":33,"9993736":[],"99938942":5,"99941797":33,"9994385":5,"99944037":[],"99944272":5,"99949077":[],"99949266":33,"99949306":5,"99953381":5,"99953475":5,"99956735":33,"99957911":5,"99961294":5,"9996357":[],"99965056":5,"99967865":5,"99970894":33,"99970988":5,"9997332":5,"99975913":5,"99977849":5,"99978365":33,"99980002":5,"9998161":5,"99984215":[],"99984732":5,"9998542":[],"99987324":5,"99988325":[],"99989476":5,"99991263":5,"99992263":21,"99992746":5,"99993978":5,"99995":5,"999955585168597":6,"99998193":21,"99998703":21,"99999773":21,"99999985":[],"9m":4,"9x":[6,26],"9y":[6,26],"\u00f8yvind":[6,33,34],"\u03b4":[23,41],"abstract":[1,20,23,37,40,41],"boolean":4,"break":[0,4,6,11,14,32],"byte":[25,32],"case":[0,1,2,3,4,5,6,7,11,12,13,14,16,21,23,24,25,26,27,32,35,38,39,40,41],"catch":[0,32],"class":[0,1,3,4,6,7,8,9,11,12,13,23,29,32,35,37,38,39,40,41],"default":[0,1,2,4,6,7,13,16,23,25,26,27,32,33,34,36,37,40,41],"do":[0,2,3,4,5,6,8,9,10,11,12,13,14,15,16,21,22,25,26,27,33,36],"ekstr\u00f8m":4,"export":9,"f\u00f8470":[30,32],"final":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,16,18,19,20,22,23,26,28,29,30,32,35,36,40],"float":[0,3,4,5,9,11,13,14,23,25,32,33,37,38,41],"function":[2,3,4,5,9,14,15,16,17,18,19,22,24,25],"import":[0,1,2,3,4,6,7,8,9,10,11,12,13,14,16,17,23,26,29,35,36,37,38,39,40,41],"int":[0,1,2,3,4,5,6,11,13,14,21,23,25,29,33,35,37,38,39,40,41],"long":[0,1,3,4,12,13,32,36,37,38,39,40,41],"m\u00f8svatn":[6,26],"new":[0,1,2,3,5,6,7,8,9,10,11,13,14,17,21,23,25,26,32,33,36,37,38,39,40,41],"null":32,"public":[0,24,32],"return":[0,1,2,3,4,5,6,7,8,9,11,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],"sch\u00f8yen":[6,33,34],"short":[4,5,23,26,27,34,35,41],"super":[3,5,23,33,34,41],"switch":[0,23,41],"throw":[3,6,29,35],"true":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,19,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"try":[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],"var":[1,5,6,10,11,13,18,19,26,29,32,33,34,35,37,39,40],"while":[0,1,3,4,5,6,7,8,9,11,12,13,23,29,32,33,34,35,36,37,38,39,40,41],A:[2,3,5,6,7,10,11,12,13,16,18,20,22,23,24,25,26,27,28,29,30,31,33,37,38,39],AND:2,And:[0,3,4,5,6,9,13,20,23,24,26,27,29,39,40,41],As:[0,1,2,3,4,5,6,8,10,12,13,16,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],At:[0,4,6,13,26,32,37],BE:[0,32],Be:[2,24,32,41],Being:[13,37],But:[0,1,2,3,5,6,9,10,27,29,33,34,35,40,41],By:[0,3,5,6,12,13,17,25,32,33,34,35,36,37,38,39],For:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41],IF:[6,34,35],IN:31,If:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],In:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,22,23,24,25,26,27,29,31,32,33,34,35,36,37,38,39,40,41],Is:11,Ising:[5,12,33,38,39],It:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],Its:[1,2,4,11,39,40,41],NO:[7,11,36],No:[3,4,6,9,23,32,34,36,38,41],Not:[0,1,5,6,23,32,33,34,35,38,39,40,41],OR:[23,29],Of:29,On:[0,3,15,28,29,30,31,32],One:[0,1,3,4,5,6,7,8,11,12,13,17,20,21,26,29,33,35,36,37,38,39,40,41],Or:[0,1,6,26,32,36,40,41],Such:[0,6,12,16,29,35,36,37,38,39],TO:[23,41],That:[0,5,7,10,11,12,14,19,26,29,32,34,35,36,39],The:[4,10,13,14,15,16,18,19,20,21,22,25,26,27,28,29,30,31],Their:[23,39,40,41],Then:[0,1,6,8,9,10,11,12,13,14,25,26,32,33,35,36,37,38,39,40,41],There:[0,3,4,5,6,8,9,11,12,14,23,25,26,28,29,30,32,33,34,36,37,38,39,41],These:[0,3,4,5,8,9,10,11,12,13,14,15,16,23,25,26,27,29,30,32,33,34,37,38,39,40,41],To:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,25,26,27,29,34,35,36,37,38,39,40,41],With:[0,5,6,8,9,10,11,12,14,18,25,26,27,29,32,33,35,38,39],_0:[5,8,10,11,13,33,36,37],_1:[2,5,6,8,10,11,12,13,14,25,33,34,35,36,37,38,39,40,41],_2:[2,5,8,11,12,13,25,33,37,38,39,41],_3:25,_4:25,_9:[13,37,38],_:[0,1,2,4,5,6,7,8,9,10,11,12,13,17,18,19,21,25,26,32,33,34,35,36,37,38,39,40,41],_________________________________________________________________:4,__call__:[3,4],__class__:[10,23,41],__doc__:[6,35],__future__:[8,9],__getattr__:34,__getitem__:[],__init__:[1,3,23,34,39,40,41],__main__:[2,41],__name__:[2,10,23,34,41],__traceback__:[3,4],_accuraci:[23,41],_auto10:[6,12,38,39],_auto11:[6,38],_auto12:[6,38],_auto1:[2,3,4,5,6,7,12,13,21,25,29,33,36,37,38,39,41],_auto2:[2,3,4,5,6,12,13,25,29,37,38,39,41],_auto3:[3,4,5,6,12,13,25,37,38,39],_auto4:[4,6,12,13,25,37,38,39],_auto5:[4,6,12,13,25,37,38,39],_auto6:[4,6,12,25,38,39],_auto7:[4,6,12,25,38,39],_auto8:[6,12,38,39],_auto9:[6,12,38,39],_backpropag:[23,41],_base:8,_build:[0,17,19,24,26,31,32],_build_call_output:[3,4],_c:[1,39,40,41],_call:[3,4],_call_flat:[3,4],_check_optimize_result:[7,11,36],_compon:11,_coordinate_desc:6,_decor:[0,32],_depth:9,_distn_infrastructur:36,_eagerdefinedfunct:[3,4],_feedforward:[23,41],_format:[23,41],_fraction:9,_h:[23,41],_handl:[3,4],_i:[0,1,2,5,6,7,8,11,12,13,15,16,17,19,26,32,33,34,35,36,37,38,39,40,41],_inference_funct:[3,4],_interpolatefunctionerror:[3,4],_j:[0,1,2,3,5,6,8,13,17,19,26,33,34,35,37,39,40,41],_jit_compil:[3,4],_k:[13,23,36,37,38,41],_l:[12,38,39,40],_lambda:[6,32],_leaf:9,_lock:[3,4],_logist:[7,11,36],_m:10,_make_vjp:[13,38],_maybe_define_funct:[3,4],_multilayer_perceptron:[1,23,39,40,41],_n:[2,5,8,11,13,33,36,37,41],_node:[9,13,38],_notokstatusexcept:[3,4],_num_output:[3,4],_o:[23,41],_p:[5,8,33],_process_traceback_fram:[3,4],_progress_bar:[23,41],_r:[3,4],_ratio:11,_sampl:9,_select_forward_and_backward_funct:[3,4],_set_classif:[23,41],_split:[6,9,26],_src:21,_stateful_fn:[3,4],_stateless_fn:[3,4],_t:[13,21,37,38],_test:[6,26],_trace:[13,38],_unpad:[],_valu:[13,38],_varianc:11,_weight:9,a0:3,a0faa0:[9,10],a1:[0,32],a2:[0,32],a3:[0,32],a4:[0,32],a_0:[0,21,22,27,32],a_1a:[0,32],a_1x:[21,22,27],a_2a:[0,32],a_2x:[21,22,27],a_3:[0,32],a_3a:[0,32],a_4:[0,32],a_4a:[0,32],a_:[0,1,16,25,32,33,39,40,41],a_h:[1,23,39,40,41],a_i:[0,1,2,12,32,39,40,41],a_j:[1,12,39,40],a_k:[0,1,12,39,40],a_matric:[23,41],aaron:31,ab:[0,2,5,13,14,21,32,33,34,37,38,41],ab_channel:24,abandon:[1,40,41],abbrevi:28,abid:29,abil:[0,10,32],abl:[0,1,4,5,6,7,10,12,13,16,26,33,36,37,38,39,40,41],about:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,24,25,26,27,30,34,35,36,37,38,39,40,41],abov:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,25,26,27,29,31,32,33,35,36,37,38,39,40],abovement:[6,35],abscissa:[13,36,37],absolut:[0,2,5,6,13,32,33,34,35,37,38,41],absorb:[33,34],acceler:[13,21,37,38],accept:[0,3,6,9,26,32,33],access:[0,3,11,29,33],accid:[4,6,35,36],accompani:[0,32,33],accomplish:[8,9,13,37,38],accord:[0,1,2,5,6,9,12,13,14,15,16,29,32,34,35,36,37,38,39,40,41],accordingli:11,account:[0,3,5,13,15,29,32,34,35,37,38],accumul:[12,13,21,23,29,37,38,39,41],accur:[0,3,4,6,10,13,35,37,38],accuraci:[0,1,3,4,5,6,7,9,10,11,12,23,27,32,33,36,38,39,40,41],accuracy_scor:[0,1,10,23,32,39,40,41],accuracy_score_numpi:[1,39,40,41],achiev:[0,1,5,6,8,12,25,32,34,35,38,39,40,41],aco:29,acquaint:[24,32],acquir:[1,24,32,40,41],acr:[0,33],across:[1,3,6,9,24,32,35,39,40,41],act:[1,3,23,25,39,40,41],act_func:[23,41],act_func_deriv:[23,41],action:29,activ:[0,2,3,4,9,28,30,32,35,36,37],actual:[0,1,4,5,6,8,11,16,25,29,32,33,34,35,40,41],ad:[1,3,4,5,8,13,15,16,23,25,34,35,36,37,40,41],ada_clf:10,adaboostclassifi:10,adadelta:[13,37,38],adagrad:[22,23,27,41],adagradmomentum:[23,41],adam:[1,3,4,22,23,27,30,32,40,41],adam_schedul:[23,41],adapt:[4,6,13,31,33,35,36],add:[0,1,2,3,4,5,6,8,10,11,12,15,16,17,21,22,23,26,27,29,32,33,34,35,37,39,40,41],add_outgrad:2,add_subplot:[1,7,12,14,36,38,39,40,41],addendum:5,addit:[0,2,3,5,6,7,8,9,10,12,13,15,17,21,22,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,41],addition:[12,13,36,37,38,39],address:[1,9,11,13,32,37,38,40,41],adjac:[3,12,38,39],adjoint:[5,33,34],adjust:[0,5,12,13,36,37,38],admir:[0,32],advanc:[4,6,12,31,32,35,38,39],advantag:[1,3,5,6,10,13,25,34,35,36,37,38,39,40,41],adversari:32,afecionado:32,affect:[3,23,41],affin:[0,3,8,11,33],afford:3,aficionado:32,aforement:14,african:[0,33],after:[0,1,2,4,5,6,9,11,12,13,15,20,21,23,24,25,26,27,29,32,33,34,35,37,38,39,40,41],afterward:[0,32],ag:[0,7,28,32,33,36],ag_0:[2,41],again:[0,1,4,5,6,7,8,10,11,12,13,15,16,21,22,23,26,27,29,32,33,34,35,37,38,39,40,41],against:[1,4,7,10,21,22,27,36,39,40,41],agegroup:[7,36],agegroupmean:[7,36],aggreg:[9,10],agorithm:10,agre:[5,6,29,34,35],agreement:[13,21,37,38],ahead:9,ai:[0,27,31],aid:[11,20],aim:[0,1,4,6,7,11,14,15,16,24,25,26,27,33,35,36,40,41],ainv:5,airplan:3,aka:[5,34,35],al:[0,2,4,15,16,17,27,31,32,33,34,35,36,37,38,39,40,41],alarm:[5,7,34,35],algebra:[0,3,5,13,21,24,33,34,35,37,38],algorithm:[0,1,2,4,5,6,7,8,13,14,22,23,24,25,26,29,31,32,34,35,36,41],align:[0,2,5,6,7,8,13,26,29,32,33,34,35,36,37,41],all:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],allevi:[1,13,36,37,40,41],alloc:[3,25],allow:[0,1,2,3,5,6,8,10,13,15,16,23,24,25,26,32,33,34,35,36,37,38,39,40,41],almost:[0,1,6,8,11,13,21,29,32,35,36,37,38,40,41],alon:[2,9,41],along:[2,3,4,5,6,9,10,11,23,24,25,32,33,34,35,36,41],alpha:[0,1,2,3,4,6,7,8,9,10,13,14,23,29,32,33,35,36,37,39,40,41],alpha_0:3,alpha_1:3,alpha_2:3,alpha_:10,alpha_i:[3,13,37],alpha_k:[13,37],alpha_m:10,alpha_n:3,alpha_opt:[13,37],alreadi:[2,3,4,5,6,10,12,24,25,29,32,33,34,35,38,39,41],also:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41],alter:[1,39,40,41],altern:[0,1,4,5,6,7,8,9,11,13,25,26,32,33,34,35,36,37,38,39,40,41],although:[0,1,5,6,8,10,13,16,21,23,32,34,35,37,38,40,41],alwai:[0,3,5,6,12,13,16,21,29,32,33,34,35,36,37,38,39],am:[4,33],ame2016:[0,32],american:[0,33],among:[0,3,5,9,10,12,25,32,33,34,38,39],amongst:[5,34,35],amount:[0,1,3,4,6,8,10,14,23,24,35,40,41],an:[1,2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,21,23,24,25,26,27,29,30,31,33,34,35,36,37,38,39,40,41],an_:29,anaconda:[0,1,15,24,26,32,40,41],analog:[13,37,38],analys:[6,34,35],analysi:[1,3,4,7,14,15,16,17,19,21,22,25,31,36,39,40,41],analyt:[2,3,5,6,7,12,13,15,22,24,26,27,32,33,34,35,36,37,38,39],analytical_gradi:21,analyz:[0,1,3,4,5,6,16,17,26,27,29,32,33,34,39,40,41],andrew:[1,39,40,41],angl:[0,3,9,33],anharmon:3,ani:[0,1,2,3,4,5,6,7,8,9,10,12,14,18,23,29,32,33,34,35,38,39,40,41],anim:[4,12,38,39],ann:[12,38,39],annot:[0,1,3,7,8,23,32,33,36,39,40,41],announc:32,anoth:[0,1,3,4,5,6,7,8,10,11,12,13,25,26,27,29,32,33,36,37,38,39,40,41],ans_vspac:[],ansatz:[0,32],answer:[0,1,3,5,6,25,26,27,30,32,34,35,39,40,41],antialias:[2,6,26,41],anticip:4,anymor:[1,8,40,41],anyon:[4,8],anyth:[1,29,40,41],anytim:[30,32],apach:[1,40,41],apart:[11,13,36,37],api:[1,24,32,40,41],appar:[2,41],appear:[0,1,3,13,16,23,25,29,32,37,38,39,40,41],append:[1,3,4,8,9,13,21,23,32,37,40,41],appendix:26,appl:[3,4],appli:[0,1,2,3,4,6,7,8,9,10,11,12,13,15,16,26,27,29,31,32,33,34,35,36,37,38,39,40,41],applic:[0,1,3,4,5,6,7,9,12,13,21,25,26,29,31,32,33,35,36,37,38,39,40,41],apply_gradi:4,approach:[1,2,4,5,6,9,10,11,12,13,17,21,23,24,29,31,33,36,39,40,41],appropri:[2,6,9,12,13,24,29,35,37,38,39,41],approv:32,approx:[0,2,3,6,10,11,13,29,32,35,36,37,38,41],approxim:[0,1,2,3,4,5,6,7,10,11,13,18,19,26,29,32,33,34,35,36,37,38,40,41],apt:[0,15,24,26,32],aq:29,ar:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],aragorn:32,arang:[1,3,4,6,7,9,10,12,13,23,26,32,36,37,38,39,40,41],arbitrari:[1,4,6,8,12,13,29,35,36,37,38,39,40,41],arbitrarili:[0,1,11,32,39,40,41],arc:[6,26],architectur:[3,4,12,23],archiv:27,area:[0,3,6,9,26,31,32],arg:[0,2,3,4,13,32,38],argmax:[1,11,39,40,41],argmin:[4,10,14],argnum:[2,13,38],argnum_0:[],argnum_1:[],args_with_tang:[3,4],argsort:11,argu:[1,13,37,38,40,41],argument:[0,2,3,5,6,11,12,13,21,23,26,32,33,34,35,39,41],argval:[],aris:[0,6,12,13,29,32,35,36,37,39],arithmet:[0,13,25,32,37,38],arm:[6,34],armadillo:25,around:[0,1,4,5,6,11,29,32,34,35,39,40,41],arr:[],arrai:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,21,23,24,26,29,33,34,35,36,37,38,39,40,41],arrang:[3,32],arraybox:[13,37,38],arriv:[0,6,9,11,25,29,32,35],arrow:[12,23,38,39,41],arrowprop:8,art3d:[13,37],art:[0,1,15,24,32,40,41],articl:[0,3,4,6,10,18,27,32,33,34,35],artifici:[0,2,7,12,31,32,36,41],artificialneuron:[12,38,39],arug:[13,37,38],arxiv:[3,4,21,27,37,38],as_fram:33,asap:32,asarrai:[0,2,6,9,21,33,34,37],ashort:20,asid:33,ask:[5,6,11,12,34,35,39],aspect:[0,6,24,26,32,33,34],assembl:[0,3,32],assert:[4,23,41],assess:[0,6,26,32,33,34,35],assici:4,assign:[0,7,8,9,12,13,14,23,28,30,31,32,33,36,37,38,39,40,41],associ:[0,6,9,12,14,29,32,35,38,39],assum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],assumpt:[0,3,5,6,9,11,18,26,29,32,33],ast:[0,5,6,18,26,32,34,35,36],astronomi:[32,33,34,35,36,37,38,39,40,41],astyp:[4,9,10],asymmetri:[0,32],asymptot:[4,6,35],async_wait:[3,4],atla:32,atom:[0,32],attempt:[0,4,6,7,8,10,32,34,36],attend:28,attent:[0,23,25,32,41],attr:[3,4,34],attract:[0,10,32],attribut:[0,9,13,23,27,32,34,35,41],attributeerror:[13,34],audi:[0,32],audio:[3,4],august:[15,16,32],aurelien:[0,15,28,31,32,38,40,41],austfjel:[6,26],author:[0,1,10,29,32,40,41],authour:32,auto:[6,9,10,23,29,41],autocor:29,autocorrelation_tim:29,autocorrelform:29,autocovari:29,autoencod:[4,24,32],autoencond:24,autograd:[22,23,24,27,32],autom:[0,24,31,32],automac:25,automag:32,automat:[0,1,2,3,4,11,16,22,23,24,25,32,39,40],automobil:3,autonom:4,avail:[0,1,4,6,10,11,15,20,21,24,25,26,27,28,30,31,32,35,39,40,41],averag:[0,1,3,6,9,10,13,14,21,23,29,30,32,33,34,35,36,37,38,39,40,41],avoid:[0,4,5,6,9,11,13,21,23,25,32,33,35,36,41],awai:[2,3,6,33,34,35,41],awar:[2,10,41],award:[30,32],ax:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,23,25,26,27,32,33,35,36,37,38,39,40,41],axes3d:[2,6,13,26,36,37,41],axes_grid1:6,axessubplot:33,axhlin:8,axi:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],axiom:[5,34,35],axlabel:[0,32],axvlin:[4,8],axvspan:4,b1:8,b2:8,b3:8,b:[0,1,3,4,5,6,8,9,10,12,13,14,15,16,21,23,29,30,32,33,34,35,36,39,40,41],b_0:0,b_1:[0,2,12,13,37,38,39,41],b_2:[0,13,37,38],b_5:[13,37,38],b_:[0,1,25,39,40,41],b_group:9,b_i:[0,1,2,12,32,38,39,40,41],b_ia_:[0,32],b_ia_i:0,b_index:9,b_j:[1,12,38,39,40,41],b_k:[0,1,12,13,37,38,39,40,41],b_m:[12,38,39],b_score:9,b_valu:9,bachelor:[28,30],back:[0,3,4,5,6,8,9,10,15,23,25,27,29,32,33,34,36,37,38],backbon:25,backend:[1,4,21,40,41],background:[31,32,33],backpropag:[1,23,39,40,41],backtrack:9,backup:25,backward:[1,2,4,12,23,25,39,40,41],backward_pass:2,bad:[6,23,33,34,41],badli:29,bag:[9,24,32],bag_clf:10,baggin:32,baggingboot:10,baggingclassifi:10,baggingtre:10,balanc:[6,35,36],baluka:41,band:25,bandwidth:25,bar:[0,6,11,15,16,23,26,32,41],barber:31,bare:[4,10],base:[0,1,3,4,5,7,8,9,10,14,24,29,30,31,32,33,34,36,39,40,41],basi:[5,7,8,10,11,12,13,25,33,34,36,37,38,39],basic:[6,8,12,13,14,24,26,29,32,37,38,39,40],batch:[3,4,11,12,13,21,22,23,27,36,39],batch_shap:4,batch_siz:[1,3,4,23,39,40,41],batchnorm:4,bay:[7,36],bayesian:[5,24,31,32,34,35],beam:[32,35,36,37,38,39,40,41],becattini:30,becaus:[0,1,2,3,4,5,6,8,9,12,13,14,32,34,35,36,37,38,39,40,41],beccatini:32,becom:[0,1,2,5,6,7,9,12,13,21,29,32,33,34,35,36,37,38,39,40,41],been:[0,1,2,3,4,5,6,11,12,13,23,24,25,26,27,32,33,34,35,37,38,39,40,41],befor:[0,1,2,3,4,5,6,7,8,12,13,14,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],beforehand:[0,29,32],begin:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,21,23,25,26,29,30,32,33,34,35,36,37,38,39,40,41],behav:[1,6,13,35,36,37,40,41],behavior:[0,1,13,32,36,37,38,40,41],behaviour:[12,38,39],behind:[0,1,6,8,13,32,36,37,39,40,41],being:[0,1,2,3,4,5,7,8,10,11,12,13,17,29,32,33,34,35,36,37,38,39,40,41],believ:[9,25],belong:[7,8,9,13,14,23,36,37,38,41],below:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],benchmark:10,benefici:[1,13,37,38,39,40,41],benefit:[0,1,4,11,13,15,24,32,36,37,38,39,40,41],bengio:[1,21,22,27,28,31,32,33,37,38,40,41],benign:[1,7,9,36,40,41],besid:[4,5,34],bessel:[5,33,34,35],best:[0,1,2,3,4,5,6,7,8,9,10,12,13,26,27,30,32,33,35,36,37,39,40,41],best_estimator_:36,beta1:[21,37,38],beta2:[21,37,38],beta:[0,1,3,5,6,7,10,11,13,16,17,18,19,21,23,26,32,33,36,37,38,39,40,41],beta_0:[0,1,3,5,6,7,13,32,33,34,35,36,37,39,40],beta_0x_:[0,32,33],beta_1:[0,1,3,5,6,7,10,13,32,33,34,35,36,37,38,39,40],beta_1x_0:[0,32],beta_1x_1:[0,7,32,36],beta_1x_2:[0,32],beta_1x_:[0,32,33],beta_1x_i:[7,13,33,36,37],beta_2:[0,3,13,32,33,37,38],beta_2x_0:[0,32],beta_2x_1:[0,32],beta_2x_2:[0,7,32,36],beta_2x_:[0,32,33],beta_2x_i:33,beta_3:3,beta_3x_i:33,beta_4x_i:33,beta_:[0,3,6,7,13,32,33,34,35,36,37,38],beta_i:[0,3,5,17,32,33,34],beta_j:[0,5,6,13,18,26,32,33,34,35,37,38],beta_k:[13,36,37],beta_linreg:[13,21,36,37,38],beta_m:10,beta_mg_m:10,beta_n:3,beta_ol:35,beta_p:[7,36],beta_px_p:[7,36],beta_ridg:35,betaol:35,betaridg:35,betavalu:5,better:[0,1,2,3,4,6,9,10,11,12,13,21,32,33,34,35,37,40,41],between:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,17,21,23,26,27,29,32,33,34,35,36,37,38,39,40,41],beyond:[0,1,5,6,8,13,21,26,32,33,36,37,38,40,41],bf:[13,14,25,29,36,37],bgd:[13,37,38],bia:[0,1,2,3,5,8,9,10,12,13,19,23,27,32,33,34,36,37,38,39,40,41],bias:[1,2,3,5,6,9,12,23,27,34,38],big:[0,1,2,5,6,14,18,32,34,35,39,40,41],bigger:[1,6,33,34,40,41],bigr:[12,38,39],bike:9,bilbo:32,billion:[3,12,24,38,39],bin:[0,7,29,33,36],binari:[0,3,5,7,9,10,12,23,27,32,34,35,36,41],binarycrossentropi:4,bind:[0,33],binomi:[24,29,32],binsboot:[6,35],bioinformat:[0,32],biolog:[1,12,38,39,40,41],bios1100:[24,32],bird:[0,3,32],birth:32,bishop:[28,31,32],bit:[1,4,25,29,32,39,40,41],bitwis:29,bivari:[2,41],bk:[0,13,33,37,38],bla:[25,32],black:[8,9,14,21],bledso:32,blob:[19,20,26,32,36,37,38],block:[6,10,24,25,29,32,35],blogpost:4,blue:[0,3],bluntli:32,bm:33,bmatrix:[0,1,3,5,7,8,11,13,23,25,32,33,34,36,37,39,40,41],bmi:[1,39,40,41],bodi:[0,1,4,12,32,38,39,40,41],bold:[1,40,41],boldfac:[0,5,16,33,34],boldsymbol:[0,1,2,3,5,6,7,8,10,11,13,14,15,16,17,18,19,21,23,26,32,36,37,38,39,40,41],boltzmann:[12,24,32,38,39],book1:31,book:[19,26,27,31,32,34,41],boost:[1,9,24,32,40,41],boostrap:10,bootstrap:[1,13,19,24,26,27,32,36,37,38,40,41],borrow:32,boston_dataset:[0,33],bot:8,both:[0,1,4,5,6,8,9,10,13,14,15,16,23,24,25,26,27,29,30,32,33,34,35,36,37,38,40,41],bottl:[7,36],bound:[0,8,12,33,37,38,39],boundari:[2,4,8,11,12,39,41],box:[4,9],boxed_arg:[],boyd:[8,13,36,37],bracket:[4,29],brain:[1,7,12,36,38,39,40,41],branch:9,breast:[5,7,11,27,34,35,36],breat:27,breviti:[13,21,37,38],brew:[0,15,24,26,32],brg:8,brief:[26,27,33],briefli:[0,32],bring:[0,5,6,10,27,32,33,34,40],broad:[0,3,4,32],brought:[13,21,24,32,37,38],brownle:4,browser:32,brute:[3,5,11,33,34,36],bs:[8,9,10],buffer_s:4,bui:4,build:[0,4,5,6,10,25,29,32,34,35,36,37,38,39],built:[0,1,3,4,6,33,35,40,41],bunch:11,busi:[0,33],c1:[8,11],c2:[8,11],c:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,19,24,25,29,30,31,33,34,35,36,37,38,39,40,41],c_0:29,c_1:[12,38,39],c_2:[12,38,39],c_3:[12,38,39],c_4:[12,38,39],c_:[0,8,9,10,13,21,29,33,36,37,38],c_i:[12,13,37,38,39],c_k:29,ca:[1,32,40,41],cach:10,cal:[0,8,10,12,13,15,16,32,36,37,39,40],calcul:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,18,21,23,25,27,29,32,34,35,36,37,38,39,40,41],california:[27,33],call:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],callabl:[3,4,23,41],callback:[3,4],calor:[0,33],cambridg:[13,31,36,37],can:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,29,30,31,33,34,36,39,40,41],cancel:[0,13,32,33,37,38],cancellation_manag:[3,4],cancer:[5,10,27,34,35],cancerpd:[7,36],candid:[8,9,10,37],cannot:[0,1,4,5,6,7,8,9,28,29,32,33,34,36,39,40,41],canopi:[0,15,24,26,32],canva:[26,27,32],cap:[5,34,35],capabl:[0,1,8,13,24,32,37,38,40,41],capac:[2,30,41],capita:[0,33],caption:[26,27],captur:[4,11,12,38,39],captured_input:[3,4],car:[3,4],card:[0,7,32,36],cardin:[1,40,41],care:[11,36],carefulli:[13,37],carlo:[0,6,24,29,31,32,35],carri:[2,6,7,26,35,36,41],cart:10,casella:31,cast:[1,40,41],cat:[3,4],categor:[0,1,3,9,11,32,39,40,41],categori:[0,1,3,7,10,12,14,23,32,33,36,38,39,40,41],categorical_crossentropi:[1,3,40,41],caus:[0,5,6,29,32,33,34,35],causal:0,causat:[0,32],cax:[1,40,41],cb:[6,32],cbar:[1,40,41],cc:[0,1,3,4,5,13,27,32,33,34,35,36,37,40,41],ccc:[5,12,34,38,39],cd_fast:6,cdf:29,cdot:[0,2,6,12,13,14,25,29,32,35,36,37,38,39,41],celebr:[13,36,37],cell:[0,2,3,4,6,9,10,13,15,26,32,34,35,36,37,38,41],center:[0,1,6,7,8,9,11,14,26,29,32,34,35,36,40,41],central:[0,3,5,6,8,16,25,27,32,33,34],centroid:[14,29],centroid_differ:14,centuri:3,certain:[0,3,6,7,9,29,32,33,35,36],certainti:35,cg:[13,37],cha:[0,33],chain:[0,1,13,24,29,32,37,38,40,41],challeng:[37,38],chanc:[1,5,13,29,34,35,37,38,39,40,41],chang:[0,1,2,3,4,5,6,8,9,11,12,13,14,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],channel:3,chap4:[39,40,41],chapter3:[0,19,26],chapter:[0,6,10,11,18,21,22,25,26,27,31,32,33,34,35,36,37,38,39,40,41],charact:[0,3,5,8,32,33],character:[8,9,10,12,29,38,39],characterist:[0,1,3,10,13,21,32,37,38,40,41],charg:[0,32],charl:[0,33],chase:4,chat:32,chd:[7,36],chddata:[7,36],cheap:[5,33],cheaper:[1,13,37,38,40,41],check:[0,1,3,4,5,6,11,13,23,25,32,33,37,38,40,41],checkmark:3,checkpoint:4,checkpoint_dir:4,checkpoint_prefix:4,chen:10,chiaramont:[2,41],choic:[0,1,2,3,4,6,9,12,13,14,19,23,25,27,32,33,35,36,37,38,39],choleski:[5,25,33],choos:[2,3,6,9,10,11,13,14,23,26,27,35,36,37,38],chosen:[0,1,2,6,8,9,10,13,16,21,27,29,32,35,36,37,38,40,41],chosen_datapoint:[1,39,40,41],christian:31,christoph:[28,31,32],cifar10:3,cifar:3,circ:[1,12,39,40,41],circl:[0,8,12,33,38,39],circuit:3,circumfer:9,circumv:[1,5,13,33,37,38,40,41],ckpt:4,clariti:29,class_nam:[3,9],class_val:9,class_valu:9,class_weight:[3,4],classic:[7,9,13,36,37,38,39],classif:[0,3,5,6,7,8,11,12,24,26,31,32,33,34,35,37],classifi:[0,1,4,7,9,10,11,23,27,32,39,40,41],classificaton:[1,39,40],classifii:10,clean:[1,39,40,41],clear:[1,5,10,12,13,21,37,38,39,40,41],clearli:[0,3,5,6,7,8,18,29,33,34,35,36],clever:[1,10,39,40,41],clf3:0,clf:[0,6,8,9,10,32,33],clf_lasso:6,clf_ridg:[6,32],clip:[3,29],clone:30,close:[0,1,2,4,6,8,9,11,12,13,14,26,29,31,32,35,36,37,38,39,40,41],closer:[3,5,13,33,37,38],closest:[8,11,13,14,37],closur:[24,32],cloud:[24,32],cluster:[0,1,4,6,11,24,32,35,39,40,41],cluster_label:14,cm:[1,2,3,6,8,9,13,26,36,37,39,40,41],cmap:[0,1,2,3,4,6,8,9,10,23,26,32,39,40,41],cmap_arg:6,cmb:28,cmd:9,cmu:33,cn_:29,cnn:[12,38,39],cnn_kera:3,cntk:[24,32],co:[0,2,3,6,9,13,21,32,35,37,38,41],code:[3,4,6,7,8,15,16,17,19,22,24,25,26,29,31],codebas:[23,41],coef0:8,coef:[0,32],coef_:[0,5,6,8,9,13,32,33,34,35,36,37],coeff:5,coeffici:[0,3,5,6,7,8,9,13,15,16,25,32,33,34,35,36,37,38],coerc:[0,6,32,35],coin:[10,29],coin_toss:10,col:[0,11,32,33],colab:[24,32],cold:9,colinear:[0,33],collabor:[26,27],collaps:8,collect:[0,2,6,10,11,21,24,29,31,32,35],collinear:[5,33,34],color:[0,3,4,6,8,9,10,21,26,29,37],color_channel:3,color_cod:6,colorbar:[1,6,26,40,41],coloumn:[23,41],colsample_bytre:10,colsaobject:10,colspec:[0,32],column:[0,1,2,5,6,7,8,9,11,12,17,23,25,32,33,34,35,36,38,39,40,41],columntransform:9,com:[4,6,19,20,21,24,26,27,31,32,34,36,37,38,39,40,41],combin:[1,2,5,6,7,10,29,34,35,36,37,38,40,41],come:[0,1,3,4,5,12,13,14,15,27,32,33,34,35,37,38,39,40,41],command:[0,1,32,40,41],comment:[0,4,5,6,15,16,26,27,32,33],commerci:[0,15,24,26,32],commod:[0,32],common:[0,1,3,5,6,7,9,11,13,14,26,27,29,32,33,35,36,37,38,39,40,41],commonli:[0,1,4,6,7,9,13,14,33,35,36,37,38,39,40,41],commun:[0,12,26,38,39],commut:3,commutatitav:3,compact:[0,1,3,5,6,7,9,11,12,13,14,32,33,34,35,37,38,39,40,41],compair:0,compar:[0,3,4,5,6,11,13,15,16,21,22,23,25,26,27,32,33,34,35,36,37,38],comparison:[2,4,13,27,37,38,41],compat:[7,36],compet:[0,32],competit:10,compil:[0,1,3,4,13,15,21,24,25,32,37,38,40,41],complet:[0,2,3,4,9,12,32,38,39,41],completenn:[12,38,39],complex:[1,5,8,9,11,12,13,15,16,19,27,32,35,37,38,39,40,41],complic:[0,1,9,13,32,35,36,39,40,41],compoment:33,compon:[0,1,3,4,5,6,7,9,14,16,23,24,32,33,34,35,36,39,40,41],components_:11,compos:[9,12,13,14,21,24,32,37,38,39],compphys:[0,6,17,19,20,24,26,28,30,31,32,33,36,37,38],compress:[0,32,33],compris:[6,36],compromis:[5,33],compulsori:[24,32],comput:[0,1,2,3,4,5,6,7,8,10,11,12,13,15,16,17,21,23,24,25,26,27,28,29,31,32,33,34,35,36,39,40,41],computation:[0,3,6,9,13,29,32,36,37,38],computationalscienceuio:32,computerlab:[26,27],con:27,concat:32,concaten:[2,4,6,14,41],concav:[1,9,13,33,36,37,40,41],concentr:[0,10,33],concept:[0,2,24,32,33,41],conceptu:[12,13,36,37,38,39],concern:[0,1,4,7,32,36,39,40,41],concic:32,conclud:[0,5,13,21,34,35,37,38],conclus:[1,39,40,41],concretefunct:[3,4],cond:[2,41],conda:[0,1,15,24,26,32,40,41],condis:33,condit:[0,2,4,5,6,8,9,11,13,29,32,33,38,41],conduct:[24,32],condwav:[2,41],confid:[0,5,6,7,8,18,26,32,33,34,36],configur:[3,21],confirm:[5,12,34,35,38,39],confus:[5,6,7,10,25,33,34,35],confusion_matrix:9,congruenti:29,conjug:[4,8],conjugaci:[13,37],conjunct:3,connect:[0,1,3,4,9,11,12,13,25,32,33,36,37,38,39,40,41],consequ:[5,6,8,10,12,13,33,34,35,36,37,38,39],conserv:[5,14,33],consid:[0,1,2,3,5,6,7,8,9,10,12,13,16,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],consider:[0,1,5,13,32,33,34,35,36,37,39,40,41],consist:[0,1,2,3,4,6,12,13,19,21,26,27,29,33,35,36,37,38,39,40,41],constant:[0,2,4,5,6,8,12,13,23,29,32,33,34,35,36,37,38,39,41],constitu:[0,32],constitut:[2,6,35,36,41],constrain:[1,3,5,7,11,34,36,39,40,41],constraint:[5,6,8,13,17,33,34,35,37,38],construct:[0,1,2,3,5,6,7,8,9,10,11,23,25,29,32,33,34,35,36],consult:27,contact:[0,32],contain:[0,2,3,4,5,6,7,8,9,11,12,13,17,19,21,22,23,25,26,27,29,31,32,33,34,35,36,37,38,39,41],contemporari:32,content:[1,24,25,32,40,41],context:[3,4,6,10,13,26,35,36,37,38],contigu:25,continu:[0,1,2,3,4,5,6,7,8,9,10,12,13,17,18,21,22,25,26,27,29,32,33,34,35,36,37,39,40,41],contour:[9,10,13,37],contourf:[8,9,10],contrast:[1,4,9,10,12,38,39,40,41],contribut:[0,3,5,13,21,29,32,33,34,37,38],contributor:[0,26,32],control:[0,1,3,9,13,15,24,32,37,38,39,40,41],conv2d:[3,4],conv2dtranspos:4,conv:[3,4],convei:32,conveni:[0,5,6,12,13,25,26,27,32,34,35,36,37,38,39,40],convent:[12,33,39],converg:[1,2,4,5,6,7,8,11,13,14,21,22,23,27,33,34,36,37,38,39,40,41],convergencewarn:[1,6,7,8,11,23,36,39,40,41],convert:[0,1,4,5,9,11,13,25,32,33,37,38,40,41],converttomatrix:4,convex:[4,5,7,33],convinc:[13,36,37],convolut:[1,4,24,32,40,41],cool:[4,9],coolwarm:[6,26],coordin:[5,12,14,33,34,38,39],coorel:[0,33],copi:[0,1,14,23,33,39,40,41],copyright:[27,35,41],core:[2,3,4,10,13,32,38],corel:32,coronari:[7,36],corr:[0,5,7,11,33,36],correalt:[11,24],correct:[0,1,2,3,4,5,7,13,25,29,32,33,34,35,37,38,39,40,41],correctli:[1,2,6,7,10,23,27,39,40,41],correl:[0,1,3,5,6,7,10,12,13,21,24,29,32,34,35,37,38,39,40,41],correlation_matrix:[0,5,7,11,33,36],correspond:[0,3,5,6,8,9,11,12,15,16,17,24,25,26,29,32,33,34,35,38,39],corss:41,cortex:[12,38,39],cosin:[3,6,35],cost:[0,2,3,5,6,7,8,9,12,13,16,17,19,21,26,27,32,38],cost_deep_grad:[2,41],cost_func:[23,41],cost_func_deriv:[23,41],cost_funct:[2,41],cost_function_deep:[2,41],cost_function_deep_grad:[2,41],cost_function_grad:[2,41],cost_function_train:[23,41],cost_function_v:[23,41],cost_grad:[2,41],cost_sum:[2,41],costcrossentropi:[23,41],costlogreg:[23,41],costol:[13,21,23,37,38,41],could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,17,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],coulomb:[0,32],count:[0,9,28,29,30,32],countor:[13,37],coupl:[4,5,6,34,35],cours:[0,1,3,5,11,26,27,28,30,33,35,40],courvil:[21,22,27,28,31,32,33,37,38],cov:[5,6,11,25,29,32,33,34,35],cov_xi:[5,11,33],cov_xx:[5,11,33],cov_yi:[5,11,33],covari:[0,7,24,25,32,34,36],covariance_matrix:[5,11,14,33],cover:[0,5,17,24,30,31,33,34],covert:[0,32],covxi:29,covxx:29,covxz:29,covyi:29,covyz:29,covzz:29,cpu:[1,3,4,40,41],cpu_util:[3,4],craft:3,crawford:32,creat:[1,2,3,4,5,6,9,10,11,12,13,23,24,26,32,34,36,37,38,39,40,41],create_biases_and_weight:[1,39,40,41],create_convolutional_neural_network_kera:3,create_neural_network_kera:[1,40,41],create_x:[5,11,23,33,41],credit:[0,7,30,32,36],crim:[0,33],crime:[0,33],criteria:[0,4,9,10,14,29,32],criterion:[9,10,13,36,37],critic:[6,26,32,33,34],critiqu:[26,27],cross:[0,1,3,7,9,10,13,23,24,27,29,32,33,34,37,38,39,40,41],cross_entropi:4,cross_val_scor:[6,35,36],cross_valid:[7,10,36],crossvalid:[6,35],crucial:[1,29,40,41],cs231:3,cs231n:41,cs231n_2017_lecture4:41,cs:[28,30],csr_matrix:[25,32],csv:[0,4,6,7,9,32,35,36],ctnk:[1,40,41],ctx:[3,4],cubic:0,cumbersom:[5,34,35],cumsum:[10,11,32],cumul:[7,10,29],cumulative_heads_ratio:10,cup:[5,34,35],current:[1,2,3,4,6,13,14,21,26,31,36,37,38,40,41],curs:[0,33],curv:[6,7,10,12,26,36,38,39],curvatur:[13,36,37,38],custom:[6,14,26],custom_cmap2:[9,10],custom_cmap:[9,10],cutpoint:9,cv:[6,7,10,35,36],cvxbook:[13,36],cvxopt:[5,8,33],cycl:[1,12,38,39,40,41],cyclotron:[33,34],d2_g_t:[2,41],d:[1,2,3,4,5,6,7,8,9,10,11,13,14,25,29,30,32,33,34,35,36,37,38,39,40,41],d_f:[13,36,37],d_g_t:[2,41],d_net_out:[2,41],da:3,dagger:[5,25,33],dai:[1,9,24,39,40,41],damp:3,daniel:[30,32],darget:9,darkr:29,dat:[0,32],dat_id:[0,6,7,9,32,33,35,36],data1:14,data2:14,data3:14,data4:14,data:[2,4,5,8,10,12,13,14,17,18,19,21,22,25,27,31,35,37,38],data_handl:[3,4],data_id:[0,6,7,9,32,33,35,36],data_indic:[1,39,40,41],data_modul:33,data_panda:32,data_path:[0,6,7,9,32,33,35,36],data_url:33,databas:[1,39,40,41],datafil:[0,6,7,9,26,32,33,35,36],datafram:[0,4,5,7,9,11,32,33,36],datapoint:[1,5,6,7,11,13,23,33,35,36,37,38,39,40,41],dataset:[0,4,6,7,8,9,10,11,13,14,15,16,19,23,26,27,32,33,35,36,37,38],datatyp:4,date:[15,16,17,18,19,20,21,22,23,26,27,32,33,34,35,36,37,38,39,40,41],daughter:10,david:31,davison:35,dbh:[1,39,40,41],dbo:[1,39,40,41],dc5e85cd93c3:27,dcomposit:25,ddot:[2,41],dead:[1,40,41],deadlin:[16,17,18,19,20,21,22,23,28],deal:[0,1,3,5,6,8,11,13,14,17,18,25,26,29,32,33,34,35,36,37,38,39,40,41],dealt:0,debt:[7,36],debug:[0,5,6,23,34,35,36,41],decad:[0,3,32],decai:[0,13,29,32],decemb:[28,30,32],decent:10,decid:[0,2,3,5,6,9,23,26,34,35,36,41],decim:[0,23,32,41],decis:[0,1,8,11,24,31,32,39,40,41],decision_funct:8,decision_tre:9,decisiontreeclassifi:[9,10],decisiontreeregressor:[0,9,10],declar:[0,4,25,32],decompos:[5,6,25,33],decomposit:[0,6,12,26,32,34,38,39],decompost:[5,33],deconvolut:3,decor:[0,32],decorrel:[10,13,21,37,38],decreas:[1,2,4,5,6,10,11,13,34,35,36,37,38,39,40,41],deduc:[0,32],deep:[3,7,12,13,21,24,27,28,31,32,33,37,38,39],deep_neural_network:[2,41],deep_param:[2,41],deep_tree_clf1:9,deep_tree_clf2:9,deep_tree_clf:[9,10],deepcopi:[23,41],deepen:[5,24,32],deeper:[0,3,4,32],deepimag:41,deeplearningbook:31,deer:3,def:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,21,23,26,29,32,33,34,35,36,37,38,39,40,41],def_covari:29,def_funct:[3,4],default_tim:4,defect:[5,33],defici:[5,33],defin:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,33,34,35,36,37,38],definit:[1,2,5,6,7,8,10,11,12,13,17,25,29,33,34,35,36,37,40,41],defint:29,defualt:[23,41],defun:[3,4],defvjp:[],degre:[3,5,6,8,9,10,11,15,16,17,19,26,29,32,34,35,36],del:[1,40,41],delet:6,delimit:4,deliv:[28,32],delta:[0,2,3,6,8,12,13,14,21,23,32,37,38,39,40,41],delta_0:3,delta_1:3,delta_2:3,delta_3:3,delta_4:3,delta_5:3,delta_:[1,25,39,40],delta_h:[0,1,32,39,40,41],delta_j:[3,12,39,40],delta_k:[12,39,40],delta_l:[1,3,39,40,41],delta_matrix:[23,41],delta_momentum:[13,21,37,38],delta_n:[0,3,32],delug:24,delv:[0,32],demand:[13,36,37],demonstr:[0,3,5,6,7,11,12,23,24,32,33,34,35,36,39,41],demystifi:[38,39,40,41],den:4,denomin:[1,5,34,35,39,40,41],denot:[1,2,6,7,13,29,36,37,38,39,40,41],dens:[1,3,4,40,41],dense_1:4,densiti:[0,2,6,29,32,35,41],depart:[27,30,32,33,34,35,36,37,38,39,40,41],depend:[0,1,2,4,5,6,7,8,11,12,13,15,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],depict:29,deploy:[0,15,24,26,32],deprec:[2,3,6,13,26,32,33,37],deprecate_nonkeyword_argu:[0,32],depth:[0,3,9,10,25,35,40,41],deriv:[0,1,2,6,7,8,10,11,13,16,17,19,21,23,24,26,32,38],derivati:[13,37,38],derivative_fn:[13,37,38],descend:[5,9,11,33,34],descent:[0,1,3,7,8,12,22,23,32,33,39,40],descent_i:21,descent_x:21,descr:33,describ:[0,2,4,5,6,8,10,11,12,13,18,21,25,26,27,32,34,35,37,38,39,41],descript:[0,8,9,23,27,32,41],design:[0,1,3,4,5,6,7,10,11,12,13,15,16,17,18,19,23,26,27,32,34,35,36,37,38,39,40,41],designmatrix:[0,32],desir:[0,2,4,5,13,14,23,32,33,36,37,41],despit:[1,12,38,39,40,41],destroi:25,det:[5,25,33],detail:[0,6,11,13,14,23,25,26,27,33,36,37,40],detect:[3,8,12,38,39],determin:[0,2,3,4,5,6,8,9,10,11,12,13,16,25,29,32,33,34,35,36,37,38,39,41],determinist:[7,13,29,36,37,38],dev:[1,40,41],develop:[0,3,5,8,10,11,12,21,22,23,24,25,26,27,32,33,34,35,38],deviat:[0,1,2,4,5,6,19,26,29,32,33,34,35,40,41],devic:[3,4],device_nam:[3,4],devis:[12,38,39],df1:32,df:[4,8,11,13,32,37],di:[0,33],diag:[5,8,33,34],diagnost:[1,10,40,41],diagon:[0,5,7,13,18,21,23,25,26,29,32,33,34,36,37,38,41],diagonaliz:[5,33],diagram:10,diagsvd:6,dice:[6,29,35],dict:[6,8,23,36,41],dict_kei:33,dictionari:[0,23,33,41],did:[0,1,5,6,7,10,11,14,26,27,32,34,35,36,37,40,41],die:[1,40,41],diff1:[2,41],diff2:[2,41],diff:[2,41],diff_ag:[2,41],diffeent:8,differ:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,17,21,23,24,25,26,29,31,32,33,34,35,36,39,40,41],different:[22,23,41],differenti:[0,3,16,21,22,23,24,25,32,33,36,39,40],differential_oper:[2,13,38],difficult:[0,1,6,10,13,21,26,29,32,35,37,38,40,41],difficulti:[0,1,13,32,36,37,38,40,41],diffonedim:[2,41],digit:[0,1,3,4,6,23,26,27,28,30,32,39,40,41],dilemma:[13,37,38],dilut:[1,40,41],dim:[4,11,14,23,25,41],dimens:[0,1,2,3,4,5,8,9,11,14,16,17,23,25,32,33,34,39,40,41],dimension:[0,4,5,6,9,11,13,14,19,21,22,24,25,27,32,34,35,36,37,38],dimensionless:[0,3,32],diment:25,dimnsion:4,diod:3,direct:[0,1,2,4,11,12,13,14,21,32,33,36,37,38,39,40,41],directli:[1,4,5,6,23,29,33,39,40,41],directori:9,disabl:[3,4],disadvantag:[0,32],disappear:[3,6,35],disc_loss:4,disc_tap:4,discard:[6,11,35,36],disciplin:[0,3,12,32,38,39],disclaim:29,discord:32,discourag:[13,33,36,37],discov:[0,32],discover:[5,34],discret:[1,3,5,7,13,34,35,36,37,38,40,41],discrimin:[4,7,10,11,36],discriminator_loss:4,discriminator_loss_list:4,discriminator_model:4,discriminator_optim:4,discuss:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,31,32,33,34,35,37,38,39,40,41],diseas:[7,36],disguis:[6,33,34,35],disord:[1,7,36,40,41],dispai:[38,39],displai:[0,1,3,4,5,6,7,8,9,10,11,12,14,23,26,29,32,33,35,36,38,39,40,41],displaystyl:[0,5,17,32,33,34],displot:33,disregard:[0,32],dissimilar:[11,14],dist:14,distanc:[0,8,9,11,14,29,33],distance_list:9,distinct:[3,7,8,9,10,14,36],distinctli:8,distinguish:[0,4,7,8,29,32,36],distplot:[0,33],distribut:[0,1,4,6,7,10,11,13,14,15,16,18,19,23,24,25,26,27,32,33,36,37,39,40,41],distrubut:[0,15,24,26,32],dive:[0,8,25,32],diverg:[1,13,36,37,38,40,41],divid:[0,1,3,5,6,7,8,9,11,12,27,29,32,33,34,35,36,38,39,40,41],divis:[6,8,9,13,21,23,25,29,35,36,37,38,41],dna:[7,36],dnn1:4,dnn2_gru2:4,dnn:[0,1,2,4,12,23,32,38,39,40,41],dnn_kera:[1,40,41],dnn_model:[1,40,41],dnn_numpi:[1,39,40,41],dnn_scikit:[0,1,23,32,39,40,41],doamin:[34,35],doc:[0,6,17,19,20,24,26,27,28,30,31,32,33,36,37,38],document:[4,7,11,13,33,36,37,38,41],doe:[0,1,2,3,4,5,6,8,10,11,12,13,16,21,23,25,26,29,32,35,36,37,40,41],doesn:[3,9,12,39],dog:[1,3,4,39,40,41],domain:[5,8,13,26,27,34,35,36,37],domin:[0,32],don:[0,1,3,5,6,8,11,13,15,21,23,24,26,27,32,33,37,38,39,40,41],done:[0,2,3,4,5,6,9,10,11,13,17,25,26,32,33,34,35,36,37,38,41],dot:[0,2,3,5,6,7,8,9,10,11,12,13,21,25,26,29,32,33,34,35,36,39,40,41],doubl:[3,4,25,32],doubli:[1,40,41],down:[0,3,6,9,11,12,13,21,32,36,37,38,39],download:[0,1,3,5,6,25,26,31,32,39,40,41],downsampl:3,dozen:[1,40,41],dq:[6,35],drag:[13,37,38],dramat:11,drastic:4,draw:[4,6,10,13,35,36,37],drawback:[0,1,3,13,33,36,37,38,40,41],drawn:[1,4,6,7,11,29,32,35,36,39,40,41],drive:[3,4],driven:3,drop:[0,1,5,6,11,13,21,29,32,33,34,35,37,38,40,41],dropna:[0,6,32,35],dropout:4,dt:[2,3,13,29,37,38,41],dtype:[0,1,2,3,4,14,21,23,25,32,33,38,39,40,41],dualiti:6,dub:[0,32],due:[1,2,5,6,8,10,12,13,23,30,32,33,35,36,37,38,39,40,41],dummi:[0,33],dure:[0,1,3,4,8,9,11,17,20,23,24,26,32,35,37,38,40,41],dwell:[0,33],dwh:[1,39,40,41],dwo:[1,39,40,41],dx:[2,3,8,29,41],dx_1:29,dx_1p:[6,35],dx_2p:[6,35],dx_mp:[6,35],dx_n:29,dxp:[6,35],dy:[1,8,29,40,41],dynam:4,dz:8,e:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,19,21,23,29,30,32,33,34,35,36,37,38,39,40,41],e_:[0,2,32,41],each:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,23,24,25,27,28,29,30,32,33,34,35,37,38,39,40,41],eager:[3,4,35],eapprox:[0,32],earli:[1,3,4,13,21,37,38,39,40,41],earlier:[0,5,7,8,9,11,12,13,20,21,32,33,36,37,38,39],earthexplor:[6,26],eas:[6,9,14,35],easi:[0,5,6,7,8,9,10,11,12,13,18,21,23,24,25,27,32,33,34,35,36,37,38,39,41],easier:[5,6,8,9,13,23,27,29,32,33,35,37,38,41],easiest:[13,36,37],easili:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,23,25,26,32,33,34,35,36,37,39,40,41],eastern:[30,32],ebind:[0,32],eblock:9,econometr:32,economi:5,ecosystem:[24,32],ect:28,edg:3,edgecolor:[6,35],edu:[13,27,33,36,41],educ:[0,26,27,32,33,36],eff:29,effect:[1,4,10,13,29,37,38,39,40,41],effic:[1,39,40,41],effici:[0,3,10,13,24,25,29,32,36,37,38],efron:[6,35],egrad:[13,37,38],eig:[5,11,13,21,25,29,32,33,36,37,38],eigen:29,eigenpair:[5,11,33],eigenvalu:[0,5,8,11,13,21,25,32,33,34,36,37,38],eigenvector:[5,11,13,17,33,34,37],eight:[25,32],eigval:[25,29,32],eigvalu:[11,13,21,36,37,38],eigvec:[25,29,32],eigvector:[11,13,21,36,37,38],eispack:[25,32],either:[1,5,6,7,8,9,10,11,13,15,16,23,26,27,29,32,33,34,35,36,37,39,40,41],elabor:29,elarn:3,electr:[0,3,12,32,38,39],electron:32,eleg:11,element:[1,2,3,4,5,6,7,8,11,12,13,17,18,20,21,22,23,24,25,26,27,28,31,33,34,35,36,39,40,41],elementari:[10,13,25,37,38],elementwis:[3,13,37,38],elementwise_grad:[2,13,23,37,38,41],elessar:32,elif:[3,4,14,21,23,41],elim:25,elimin:[3,8],els:[1,2,3,4,7,9,12,13,23,25,36,37,38,39,40,41],elu:[1,40,41],elus:[0,32],email:[28,30,32],embed:[0,11,33],embodi:[6,19,26,35],emit:29,emner:31,emphas:[0,10,24,32],emphasi:[0,24,31,32],empir:[1,11,29,40,41],emploi:[0,1,5,6,11,13,26,27,29,32,33,34,35,36,37,39,40],employ:[0,32,33],empti:[6,10,23,35,41],emul:[12,38,39],en:[24,31],enabl:[11,21,23,41],enbodi:[6,35],encod:[0,3,5,9,11,14,17,32,33,34],encompass:[0,26,29,32],encount:[0,1,5,6,7,13,21,29,32,33,35,36,37,38,39,40,41],encourag:[26,27],end:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,21,23,25,26,29,30,32,33,34,35,36,37,38,39,40,41],end_box:[13,38],end_nod:[2,13,38],end_valu:[13,38],endpoint:[3,6],energi:[0,4,6,33,35],enet_coordinate_desc:6,enforc:[12,38,39],eng:31,engin:[0,1,3,4,24,32,40,41],english:[26,27],enorm:3,enough:[0,6,13,32,35,36,37],ensembl:[1,9,40,41],ensur:[0,1,2,3,5,6,11,13,21,23,29,33,34,35,36,37,38,39,40,41],ensure_initi:[3,4],entail:32,enter:[5,6,17,33,34],enthought:[0,15,24,26,32],entir:[1,3,7,9,23,24,29,32,36,37,38,39,40,41],entiti:[9,12,25,32,39],entri:[0,5,8,11,12,25,32,33,34,35,39],entropi:[1,3,7,10,13,23,32,37,38,39,40,41],enumer:[0,1,2,3,4,6,8,23,32,33,34,39,40,41],env:[0,1,2,3,4,6,7,8,11,13,21,23,29,32,33,34,36,38,39,40,41],environ:[2,21,24,26,41],eo:[0,6,32,35],eol:[0,32],eosfit:[0,32],epoch:[0,1,3,4,12,13,21,22,23,27,32,37,38,39,40,41],epoch_num:[3,4],epsilon:[0,5,6,7,13,19,26,32,33,34,35,36,37,38],epsilon_0:[0,32],epsilon_1:[0,32],epsilon_2:[0,32],epsilon_:[0,32],epsilon_i:[0,32,33],eq:[3,13,14,25,29,36,37],eqnarrai:[3,5,6,34,35],equal:[0,1,2,3,4,5,6,8,9,11,12,13,14,15,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],equat:[1,3,4,5,6,7,8,9,10,11,13,14,16,17,18,19,21,25,26,29,35,38,40],equilibrium:[2,12,38,39,41],equiv:[3,13,25,29,36,37],equival:[0,1,5,7,8,11,13,21,24,25,32,33,34,35,37,38,39,40,41],erf:29,eriador:32,eric:[23,41],eridg:32,err:[0,10],err_:[6,35],err_sqr:[2,41],errat:[13,36,37],errno:9,erron:[2,41],error:[1,2,4,5,6,7,9,11,12,13,15,16,17,18,19,21,23,24,25,26,27,29,34,36,37,38,39,40,41],error_estimate_corr_tim:29,error_handl:[3,4],error_hidden:[1,39,40,41],error_output:[1,39,40,41],escap:[13,36,37,38],especi:[1,3,9,12,13,26,27,37,38,39,40,41],essenti:[0,5,6,9,10,12,14,26,27,29,33,38,39],establish:[0,6,10,11,15,26,27,32],estim:[0,1,5,6,7,10,11,13,24,29,32,33,36,37,38,39,40,41],estimated_mse_fold:[6,35,36],estimated_mse_kfold:[6,35,36],estimated_mse_sklearn:[6,35,36],et:[0,2,4,15,16,17,27,31,32,33,34,35,36,37,38,39,40,41],eta0:[8,13,36,37],eta:[0,1,3,8,12,13,21,23,27,32,36,37,38,39,40,41],eta_:[13,21,37,38],eta_t:[13,37,38],eta_v:[0,1,3,23,32,39,40,41],etc:[0,1,3,5,7,8,9,11,12,13,14,15,21,22,24,25,26,27,29,33,36,37,38,39,40,41],ethic:[24,32,33],etsim:35,euclidean:[0,14,33],evalu:[0,2,3,4,5,6,9,13,26,29,32,33,34,35,36,37,38],evaluationform:[20,26,37,38],evaluationgrad:[20,26,37,38],evalut:[13,37,38],even:[0,1,3,4,5,6,8,9,10,11,12,13,14,24,25,29,32,33,34,35,36,37,38,39,40,41],evenli:4,event:[5,7,10,29,34,35,36],eventu:[0,5,6,11,12,13,26,27,30,33,34,35,36,37,38,39],everi:[0,1,2,3,4,5,6,9,10,11,12,13,14,23,24,29,30,32,33,34,35,36,37,38,39,40,41],everyth:[4,12,21,22,23,39,41],everywher:[4,13,36,37],evolv:[0,32],exact:[0,5,11,12,13,25,29,32,33,37,39],exactli:[0,3,4,6,12,24,26,33,35,38,39],exam:32,examin:[6,35],exampl:[5,11,12,13,15,16,19,20,22,23,24,25,26,27,29,31],exce:[1,12,13,21,37,38,39,40,41],excel:[0,1,4,5,10,27,32,33,40,41],except:[3,4,6,8,9,23,25,41],excess:[0,32],excit:[0,32],exclud:[1,6,12,26,33,34,35,36,38,39,40,41],exclus:[0,1,3,6,29,32,35,36,40,41],execut:[2,3,4,5,13,33,37,38,41],execute_with_cancel:[3,4],executing_eagerli:[3,4],exemplifi:[13,37,38],exercic:[30,32],exercis:[5,24,26,27,28,30,34,36,37,38,39,40],exercisesweek35:17,exhaust:[6,35,36],exhibit:[0,5,6,8,32,33,35],exist:[0,1,2,3,5,6,7,8,9,13,18,25,26,27,32,33,34,35,36,37,40,41],exit:[5,25,33],exp:[0,1,2,5,6,7,8,10,11,12,13,15,16,21,23,26,29,32,33,34,35,36,37,38,39,40,41],exp_term:[1,39,40,41],expand:[5,7,11,13,33,36,37],expans:[0,3,5,8,10,12,13,32,33,36,37,39],expect:[0,1,5,6,7,11,12,13,15,16,19,21,24,26,27,32,33,36,37,38,39,40,41],expectation_value_of_h_wrt_p:29,expens:[6,10,13,36,37,38],experi:[0,1,6,8,13,24,26,32,33,35,36,37,38,40,41],experiment:[0,3,4,6,9,29,32,35],experimental_get_tracing_count:[3,4],expert:[1,9,40,41],explain:[0,6,9,10,11,13,19,26,32,36,37],explained_variance_ratio_:11,explan:27,explanatori:[0,32],explicit:[0,3,6,13,21,25,26,32,33,34,37,38],explicitli:[0,4,21,32],explod:[1,40,41],exploit:[0,3,12,13,32,37,38,39],explor:[1,4,6,8,13,24,26,27,36,37,38,40,41],expon:[1,23,39,40,41],exponenti:[0,1,5,6,10,13,26,29,32,34,35,36,37,38,40],export_graphviz:9,export_text:9,exporttext:9,expos:[24,32],express:[0,2,3,5,6,7,10,12,13,16,21,22,25,26,27,29,34,35,38,39,41],exptmean:29,exptvari:29,extend:[0,2,7,11,13,17,24,32,41],extens:[0,12,15,24,32,38,39],extent:[0,1,6,31,32,35,40,41],extern:[3,6,9],extra:[1,3,5,30,32,33,39,40,41],extract:[0,3,5,6,7,8,11,13,25,32,33,36,37],extrapol:[0,32],extrem:[0,1,4,5,6,7,8,9,13,16,25,33,34,35,36,37,38,40,41],extremum:[13,36,37],extrins:11,ey:[0,5,6,13,14,25,32,34,35,36,37],f11:[0,32],f12:[0,32],f13:[0,32],f1:[13,37,38],f1_grad:[13,37,38],f1d:[13,37],f2:[13,37,38],f2_grad_x1:[13,37,38],f2_grad_x1_analyt:[13,37,38],f2_grad_x2:[13,37,38],f2_grad_x2_analyt:[13,37,38],f3:[13,37,38],f3_grad:[13,37,38],f3_grad_analyt:[13,37,38],f4:[13,37,38],f4_grad:[13,37,38],f4_grad_analyt:[13,37,38],f5:[13,37,38],f5_grad:[13,37,38],f6:[13,37,38],f6_for:[13,37,38],f6_for_grad:[13,37,38],f6_grad_analyt:[13,37,38],f6_while:[13,37,38],f6_while_grad:[13,37,38],f7:[13,37,38],f7_grad:[13,37,38],f7_grad_analyt:[13,37,38],f8:[13,37,38],f8_grad:[13,37,38],f9:[0,13,32,37,38],f9_altern:[13,37,38],f9_alternative_grad:[13,37,38],f9_grad:[13,37,38],f:[0,1,2,3,4,5,6,7,8,10,12,13,14,16,18,19,21,22,23,25,29,30,32,33,34,35,36,37,38,39,40,41],f_0:[3,10],f_1:[10,13,36,37],f_2:[12,13,36,37,38,39],f_3:[12,38,39],f_:10,f_d:29,f_grad:[13,37,38],f_grad_analyt:[13,37,38],f_i:[0,6,12,16,35,38,39],f_m:[3,10],f_n:3,f_raw:2,f_vec:[2,41],f_wrap:2,face:[13,36,37,38],facecolor:[6,8,29,35],facil:[0,15,24,32,35,36,37,38,39,40,41],facilit:[12,38,39],fact:[0,1,3,5,9,11,12,13,32,33,34,35,36,37,38,39,40,41],factor:[0,1,3,5,6,9,10,11,13,25,29,32,33,34,35,37,38,39,40,41],factori:[13,37,38],fade:6,fafab0:[9,10],fahimeh:[30,32],fail:[0,3,4,6,7,8,11,13,30,32,35,36,37],failur:[7,36],fairli:[1,2,29,40,41],fake:4,fake_loss:4,fake_output:4,fale:27,fall:[8,9,28],fals:[0,1,2,3,4,5,6,7,9,10,14,23,25,26,32,33,34,35,36,37,38,39,40,41],famili:[0,7,8,29,36],familiar:[0,3,5,6,8,15,24,25,26,29,32,34,35],famou:[6,12,23,39,41],far:[0,3,4,5,6,8,11,12,13,14,32,33,36,37,38,39],fashion:[0,9,10,32],fast:[1,3,6,10,12,13,24,29,32,35,36,37,39,40,41],faster:[1,11,13,37,38,40,41],fastest:[13,25,36,37],favor:[7,36],favorit:29,fc:3,featur:[0,1,3,5,6,7,8,10,11,12,13,18,23,24,26,27,29,32,34,35,36,37,38,39,40,41],feature_nam:[0,1,7,9,33,36,40,41],feautur:9,fed:[1,39,40,41],feed:[0,2,3,11,23,24,27,32],feed_forward:[1,23,39,40,41],feed_forward_out:[1,39,40,41],feed_forward_train:[1,39,40,41],feedback:[4,20,32],feeddorward:4,feedforward:[1,4,12,23,39,40,41],feel:[0,5,6,11,13,15,16,21,22,24,26,27,30,32,34,37,38],feet:[0,33],fei:32,felt:[26,27],fetch:[6,26,33],fetch_california_h:33,fetch_openml:33,few:[1,3,4,5,9,29,32,37,39,40,41],fewer:[0,9,11,32],ffnn:[1,12,23,27,38,39,40,41],field:[0,3,6,12,24,32,38,39],fifth:[0,6,15,16,26,32],fig:[0,1,2,3,4,6,7,12,13,14,23,26,32,36,37,38,39,40,41],fig_id:[0,6,7,9,32,33,35,36],figaxi:29,figsiz:[0,1,2,3,4,6,7,8,9,10,23,32,33,35,36,39,40,41],figur:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,21,24,26,27,32,33,34,35,36,37,38,39,40,41],figure_id:[0,6,7,9,32,33,35,36],figurefil:[0,6,7,9,32,33,35,36],file:[0,2,3,4,5,6,7,9,13,26,27,32,33,34,35,36,38],file_prefix:4,filenam:[32,33],filenotfounderror:9,filepath_or_buff:[0,32],fill:[5,9,23,33,41],filter:[3,4],filter_traceback:[3,4],filtered_flat_arg:[3,4],filtered_tb:[3,4],financ:[0,32],find:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,21,24,26,27,29,32,33,34,36,39,40,41],fine:[0,14,15,32],finish:[2,23,41],finit:[3,5,6,12,13,17,29,33,34,35,37,38,39],first:[0,1,2,3,5,6,7,8,9,10,11,13,14,15,16,17,21,23,25,26,29,30,31,35,38,40],first_moment:[21,37,38],first_term:[21,37,38],firsteigvector:11,fit:[1,3,4,5,6,7,8,9,11,12,13,15,16,17,21,23,26,27,29,33,35,36,37,38,39,40,41],fit_beta:[6,33,34],fit_intercept:[0,5,6,33,34,35],fit_mod:9,fit_transform:[0,6,8,9,11,35,36],fiti:[0,32],five:[0,9,17,26,32,33,36],fix:[0,3,4,6,10,11,12,13,21,22,26,27,32,35,36,37,38,39],fixedformatt:6,fixedloc:6,flag:4,flat:[12,13,21,36,37,38,39],flatten:[1,3,4,5,25,39,40,41],flexibl:[1,6,8,10,12,23,27,32,33,35,38,39,40,41],flip:[30,32],float32:[4,9,21,23,41],float64:[4,21,23,25,32,33,38,39,40,41],floatingpointerror:[23,41],floor:[23,41],flop:[5,25,33],flow:[1,4,12,38,39,41],fluctuat:[5,34],flush:[23,41],fly:11,fm:[0,32],fmax:3,fmesh:[13,37],fn:[3,4,7],focu:[0,3,4,5,6,15,24,27,31,32,33,34,35],focus:[1,6,7,25,33,34,36,39,40,41],fold:[6,9,26],folder:[0,1,4,6,13,26,27,32,35,37,39,40],follow:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41],font:[0,7,29,32,36],fontdict:29,fontsiz:[1,6,8,9,10,29,40,41],fontweight:[1,40,41],footprint:3,foral:[8,33],forc:[0,5,6,10,11,32,33,34,36],forcast:4,forecast:[4,12,38,39],forest:[0,1,9,24,32,40,41],forget:11,form:[0,3,4,5,6,7,8,9,11,12,13,17,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40],formal:[3,4,14,29],format:[0,1,3,4,6,7,8,9,10,11,23,24,29,31,33,34,35,36,38,39,40,41],format_data:4,formatstrformatt:[6,13,26,36,37],formul:[4,6,11,14],formula:[3,13,29,36,37,38],forth:[4,12,38,39],fortran2003:[24,32],fortran2008:[26,27],fortran90:29,fortran:[0,15,24,25,32],fortun:[0,11,33],forward:[0,3,4,6,23,24,25,27,32,35],forward_backward:[3,4],forward_funct:[3,4],found:[1,2,4,5,6,12,13,19,20,23,26,27,32,33,34,35,37,38,39,40,41],foundat:[24,32],four:[4,5,6,8,12,23,25,26,28,30,32,34,38,39,40,41],fourier:[0,32],fourierdef1:3,fourierdef2:3,fourierseriessign:3,fourth:[12,32,33,39],fp:7,frac:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,25,26,27,29,32,33,34,35,36,37,38,39,40,41],fractal:9,fraction:9,frame:[7,32,36],framework:[1,8,10,29,40,41],frank:[5,11,21,22,27],frankefunct:[5,6,11,26,33],fredli:[30,32],free:[0,6,11,13,15,16,21,22,24,25,26,27,29,30,31,32,37,38],freecodecamp:24,freedom:[5,34],freeli:[0,26,32],frequenc:[3,4,6,7,29,35,36],frequent:[0,8,9,13,32,36,37],frequentist:24,fresh:10,fridai:[16,30,32],friedman:[6,18,26,28,31,32,33],friendli:4,frodo:32,frog:3,from:[0,1,2,3,4,6,7,8,9,11,13,14,16,17,18,19,22,23,24,25,26,29,30,31,32,40,41],from_cod:9,from_logit:[3,4],from_tensor_slic:4,fromnumer:2,front:[0,4,5,15,16,32,33,34],fulfil:[2,5,12,33,38,39,41],full:[0,1,3,5,7,9,10,13,23,29,32,33,36,37,38],full_matric:[5,33],fulli:[3,6,12,28,29,35,36,38,39],fun:[2,13,24,32,38],fun_nam:[],func:[0,2,23,32,33,41],functionali:11,fundament:[0,6,24,32,35],funtion:2,further:[2,7,9,32,41],furthermor:[0,3,5,6,7,11,12,13,17,24,26,32,33,34,35,36,37,38,39],futur:[0,4,8,9,32,33],futurewarn:[0,32,33],fy:[15,26,27,28,30,31,32],fys4155:[26,27],fys5419:[31,32],fys5429:[31,32],g0:[2,41],g:[0,1,2,3,4,6,8,9,10,11,13,29,32,34,35,36,37,38,39,40,41],g_0:[2,41],g_1:[2,10,41],g_2:[2,10,41],g_:[2,9,10,41],g_analyt:[2,41],g_dnn_ag:[2,41],g_euler:[2,41],g_i:[2,41],g_m:[3,10],g_n:3,g_re:[2,41],g_t:[2,23,41],g_t_d2t:[2,41],g_t_d2x:[2,41],g_t_dt:[2,41],g_t_hessian:[2,41],g_t_hessian_func:[2,41],g_t_invers:[23,41],g_t_jacobian:[2,41],g_t_jacobian_func:[2,41],g_trial:[2,41],g_trial_deep:[2,41],g_vec:[2,41],gain:[1,5,7,9,10,13,33,34,35,37,38,40,41],galleri:[0,32],game:4,gamge:32,gamma1:8,gamma2:8,gamma:[0,2,8,9,10,11,13,21,32,36,37,38,41],gamma_0:10,gamma_1:10,gamma_1x:10,gamma_:[0,32],gamma_i:[0,8,29,32],gamma_j:[13,37,38],gamma_k:[13,36,37],gamma_m:10,gamma_x:[0,32],gap:[6,8],gate:[4,12],gather:[0,1,12,33,38,39,40,41],gaug:[12,38,39],gaussbacksub:25,gaussian:[4,5,6,8,14,29,34,35],gaussian_point:14,gaussian_rbf:8,gave:[13,37,38],gbc:[28,32],gca:[2,6,8,13,26,37,41],gd:[1,22,27,36,40,41],gd_clf:10,gdclassiffiercgain:10,gdclassiffierconfus:10,gdclassiffierroc:10,gdm:[13,21,37,38],gdregress:10,ge:[1,5,7,29,33,36,40,41],gen_loss:4,gen_tap:4,gender:[0,32],genener:4,gener:[0,1,2,3,5,6,8,10,11,12,13,14,15,16,17,19,20,21,23,25,26,29,31,33,34,35,36,37,38,39,40,41],generaliz:[23,41],generallay:[12,38,39],generate_and_save_imag:4,generate_imag:4,generate_latent_point:4,generate_simple_clustering_dataset:14,generated_imag:4,generator_loss:4,generator_loss_list:4,generator_model:4,generator_optim:4,genom:24,geodes:11,geometr:[0,13,32],geometri:[5,34,35],georg:31,geotif:[6,26],geq:[2,5,8,9,13,33,34,36,37,41],geron:[0,15,21,28,31,32,37,38,40,41],get:[0,1,2,3,4,5,6,7,9,10,11,13,15,20,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],get_dummi:9,get_paramet:[2,41],get_split:9,get_yaxi:8,get_yticklabel:6,getattr:[],gibb:[24,32],gif:4,gini:10,gini_index:9,ginvers:13,git:[0,15,24,32],giter:[13,21,37,38],github:[0,6,15,17,19,20,21,24,26,27,28,30,31,32,33,36,37,38,41],gitlab:[0,15,24,26,27,32],give:[0,1,2,3,5,6,7,8,9,10,12,13,14,17,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],given:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],global:[6,7,13,26,36,37,38],gloriou:27,glorot:[1,40,41],gnew:13,go:[0,1,3,5,6,8,9,11,12,13,26,32,33,34,35,36,37,39,40,41],goal:[0,7,9,32,36],goe:[0,1,2,5,6,13,14,18,25,32,33,34,35,36,37,38,39,40,41],golden:[13,37],gone:[5,33,34],gong:[1,39,40],good:[1,3,4,5,6,9,10,11,13,17,21,23,24,29,31,33,34,35,36,37,38,40,41],goodfellow:[4,22,27,28,31,32,33,34,36,37,38,39,40,41],googl:[1,4,21,24,32,40,41],got:[1,6,26,39,40,41],gotcha:21,gotten:[23,41],gov:[6,26],gp:31,gpu:[1,13,21,24,32,37,38,40,41],grad:[2,13,21,23,37,38,41],grad_analyt:[13,37,38],grade:28,gradient:[0,3,4,7,8,9,12,22,23,24,32,33,39],gradient_bia:[23,41],gradient_desc:[3,21,37],gradient_weight:[23,41],gradientboostingclassifi:10,gradientboostingregressor:10,gradients_of_discrimin:4,gradients_of_gener:4,gradients_util:[3,4],gradienttap:4,gradual:[1,14,40,41],grai:[4,6,26],graph:[1,9,11,12,13,36,37,38,39,40,41],graph_from_dot_data:9,graph_funct:[3,4],graphic:[0,1,9,32,40,41],grasp:[0,32],gray_r:[1,3,39,40,41],grayscal:3,great:[5,13,36,37,41],greater:[1,7,29,36,39,40,41],greatli:[13,37,38],greedi:[9,36],green:[0,3,9,29],gregor:[23,41],grei:4,grid:[1,3,6,7,8,12,29,33,34,35,38,39,40,41],gridsearch:36,gridsearchcv:36,grossli:[13,36,37],ground:[0,32],group:[0,6,7,9,14,24,26,27,28,30,32,35],groupbi:[0,32],grow:[1,3,9,10,39,40,41],growth:[0,32],gru:4,guarante:[0,3,4,13,29,32,33,36,37],guess:[1,4,10,13,14,21,27,36,37,38,39,40,41],guestrin:10,guid:[1,40,41],guidelin:[20,37,38],h1:[2,41],h:[0,1,5,6,8,13,16,18,21,26,29,30,31,32,33,36,37,38,39,40,41],h_1:[2,13,36,37,41],h_2:[2,13,36,37,41],h_:[0,13,32,36,37],h_m:10,ha:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],haa:[30,32],habit:[0,33],had:[0,1,6,7,13,32,35,36,37,39,40,41],hadamard:[1,12,13,21,37,38,39,40,41],half:[1,8,9,40,41],halv:10,hand:[0,1,2,3,5,11,12,13,15,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],handi:[3,26,27],handl:[0,1,2,5,9,11,24,34,40,41],handle_unknown:9,handsid:[12,39],handwrit:[12,38,39],handwritten:[1,5,32,39,40,41],handwrittennot:[19,32,36,37],happen:[1,2,3,4,5,6,10,13,29,33,37,38,39,40,41],hard:[1,7,8,10,13,36,37,39,40,41],hardcopi:[24,32],harder:[0,1,33,40,41],harmon:3,hasn:[1,23,39,40,41],hassl:[0,15,24,32],hast:[24,32],hasti:[0,6,15,16,17,18,26,28,31,32,33,34,35,36],hat:[0,1,5,6,7,9,10,11,12,13,17,18,25,26,33,34,35,37,38,39],have:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,33,34,35,36,37,38,39,40,41],haven:[1,39,40,41],he:[7,36],head:[0,4,10,29,33],header:[0,32,33],heads_proba:10,health:[0,33],hear:[0,13,32,37,38],heart:[0,7,32,36],heatmap:[0,1,3,7,23,32,33,36,39,40,41],heavili:[0,32],heavisid:[1,39,40,41],height:[1,3,6,33,34,39,40,41],hein:41,held:[13,21,37,38],help:[0,1,4,12,13,16,21,26,27,32,37,38,39,40,41],helper:[4,14],henc:[0,5,6,8,9,10,12,13,18,26,32,33,34,35,36,37,38,39],henrik:[30,32],her:[7,36],here:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],hereaft:[0,8,12,32,39],hermitian:25,hessenberg:25,hessian:[0,2,5,13,16,21,34,38,41],heterogen:[9,10],hi:[7,36],hidden:[1,3,4,12,23,27,38,39],hidden_bia:[1,23,39,40,41],hidden_bias_gradi:[1,39,40,41],hidden_deriv:[23,41],hidden_func:[23,41],hidden_layer_s:[0,1,23,32,39,40,41],hidden_neuron:4,hidden_nodes1:[23,41],hidden_nodes2:[23,41],hidden_weight:[1,23,39,40,41],hidden_weights_gradi:[1,39,40,41],hierarch:[5,33,34],high:[0,1,2,3,4,5,6,9,10,11,13,14,21,24,25,26,27,32,33,35,36,37,38,40,41],higher:[0,1,3,5,6,8,13,21,22,26,27,32,33,34,35,36,37,38,40,41],highest:[1,2,39,40,41],highli:[0,3,4,10,18,24,25,27,31,32,33,34,35],highwai:[0,33],hing:8,hint:[13,16,27,33,36,37],hip:24,hire:[0,32],hist:[4,6,7,29,35,36],histogram:[0,6,7,29,33,36],histor:[7,11,36],histori:[3,4,12,38,39],histplot:33,hitherto:[5,34],hjorth:[30,32,33,34,35,36,37,38,39,40,41],hobbi:29,hoc:[5,33],hoff:31,hold:[1,3,6,13,14,21,23,35,36,37,38,39,40,41],holder:[0,32],holm:41,holomorphic_grad:[2,13,38],home:[0,33],homepag:[26,27,32],homework:[6,13],homogen:[1,3,9,10,13,21,37,38,40,41],honchar:[2,41],hopefulli:[0,11,29,32],horizont:11,hors:[3,7,36],hot:[1,9,39,40,41],hour:[1,24,28,29,30,32,35,39,40,41],house_pric:33,how:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,23,24,25,26,27,29,32,33,34,35,37,38,39,40,41],howev:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],hspace:[0,4,8,10,29,32],hstack:[1,23,33,40,41],htf:[28,32],html:[0,7,11,17,19,24,26,28,30,31,32,33,36,39,40,41],http:[0,3,4,6,7,11,13,17,19,20,21,24,25,26,27,28,30,31,32,33,34,36,37,38,39,40,41],huang:[0,32],huber:[0,32],huge:[1,3,4,24,39,40,41],human:[0,1,3,6,9,12,32,33,34,38,39,40,41],humid:9,hundr:[1,40,41],hungri:[1,40,41],hybrid:28,hydrogen:[0,32],hyper:[21,27],hyperbol:[1,4,12,40,41],hyperparam:8,hyperparamet:[3,4,5,6,9,13,17,23,32,33,34,35,36,37,38],hyperplan:11,hz:[3,4],i0:[0,32],i1:[0,6,8,12,32,33,34,35,38,39],i2:[0,8,12,32,38,39],i3:[0,12,32,38,39],i5:[0,32],i:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,30,32,33,34,35,36,37,38,39],i_1:[5,6,34,35],i_2:[5,6,34,35],i_:[13,36,37],ian:31,ic:[1,27,39,40,41],id:[7,13,36,37],ida:[30,32],idea:[0,1,2,3,4,6,9,10,12,13,25,26,27,32,33,34,35,36,37,38,39,40,41],ideal:[0,2,6,8,13,23,29,32,33,35,38,41],idem:[6,35],ident:[5,6,12,13,17,23,25,26,33,37,38,39,41],identical:[34,35],identifi:[0,1,7,9,11,12,13,14,32,33,36,37,38,39,40,41],idx:[],ieor:29,ifi:[31,41],ifs:[24,32],ignor:[0,1,3,9,23,33,40,41],ii:[23,25,29],iii:[23,25,32],ij:[0,1,3,6,8,12,14,16,18,25,26,29,32,33,34,35,38,39,40,41],ik:[0,25,32,33],illustr:[5,7,10,12,13,14,24,32,35,36,37],ilsvrc:[37,38],im:6,imag:[1,3,4,6,9,11,12,14,23,27,31,32,38,39,40,41],image_at_epoch_:4,image_batch:4,image_height:3,image_path:[0,6,7,9,32,33,35,36],image_width:3,imageio:[6,26],imagenet:32,images_from_seed_imag:4,imagin:[1,40,41],immedi:[0,3,4,6,15,24,32],implement:[0,2,3,4,5,6,8,9,10,11,12,13,14,17,21,22,23,26,27,29,32,33,34,35,36,37,38],impli:[3,5,6,7,13,25,33,34,35,36,37],implicit:3,implicitli:[11,29],importantli:3,impos:[0,6,11,12,32,38,39],imposs:[0,5,32,33],impress:[0,12,23,32,38,39,40,41],improv:[0,4,5,9,10,11,13,21,26,27,33,38],impur:9,imread:[6,26],imshow:[1,3,4,6,26,39,40,41],in1:[],in2:[],in3050:[31,32],in3310:32,in4080:[31,32],in4300:[31,32],in4310:31,in5400:3,in5550:31,in_out_neuron:4,inaccur:[13,36,37],inact:[12,38,39],inadequ:[0,32],inch:[6,33,34],includ:[0,1,2,3,4,5,6,7,11,12,15,16,17,20,22,24,26,27,29,30,31,32,33,34,35,39,40,41],include_bia:[6,9,35],inclus:[17,40],incom:[12,38,39],incorrect:[1,39,40,41],incoveni:8,increas:[0,1,3,4,5,6,7,8,9,11,12,13,21,26,29,32,33,34,35,36,37,38,39,40,41],increasingli:29,increment:37,ind:6,inde:[0,2,4,5,6,13,32,33,41],indefinit:4,independ:[0,5,6,7,8,12,13,29,32,33,36,37,38,39],index:[0,1,3,4,10,14,24,25,27,29,31,32,33,39,40,41],index_col:[0,32],indic:[0,1,3,4,5,6,9,10,11,13,16,21,23,26,27,32,33,37,38,39,40,41],indispens:[6,35],individu:[1,6,7,10,12,29,32,33,35,36,38,39,40,41],indu:[0,33],indx1:[2,41],indx2:[2,41],indx3:[2,41],indx:25,ineffici:[3,13,37,38],inequ:[8,13],inequaltii:[36,37],inertia:[13,21,37,38],inf1000:[24,32],inf1100:[24,32],inf1100l:[24,32],inf1110:[24,32],inf3000:32,infeas:9,infer:[0,1,4,6,31,32,35,39,40,41],infer_nrow:[0,32],inferenc:[1,40,41],infil:[0,6,7,9,32,35,36],infin:[5,6,7,11,18,33,34,35,36],infinit:3,infinitesim:29,influenc:[6,10,35,36],influenti:[1,39,40,41],info:32,inform:[0,1,3,4,6,9,11,12,13,14,21,22,25,26,27,31,32,35,36,37,38,39,40,41],infti:[3,6,13,29,35,36,37],ingeni:[13,36,37,38],ingrad:2,ingredi:[0,9,32],inher:[6,35],inherit:[25,32],init:[23,41],initi:[0,1,2,6,10,13,14,23,25,27,29,32,35,36,37,38,39,40,41],initial_epoch:[3,4],inititi:[23,41],inject:14,inlin:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],inner:[0,13,33,37],inp:4,inplac:[13,37,38],input:[0,1,3,4,5,6,7,8,9,10,12,13,14,15,21,23,26,27,29,32,33,34,35,36,37,38,39,40],input_dim:[1,40,41],input_nod:[23,41],input_shap:[3,4],inputs:[1,40,41],inputs_shuffl:[0,1,33,39,40,41],insert:[3,5,6,8,10,29,33,34,35],insid:[0,4,7,33,36],insight:[0,1,5,21,22,24,27,32,33,34,35,40,41],insist:[6,13,33,34,37],inspect:36,inspir:[0,1,12,27,32,38,39,40,41],instabl:[2,41],instal:[0,1,5,6,9,15,40,41],instanc:[0,1,2,4,6,9,11,13,23,32,33,35,36,37,39,40,41],instanti:10,instead:[0,1,2,3,4,5,6,8,9,11,13,14,21,25,26,29,32,33,35,36,37,38,39,40,41],institut:[1,39,40,41],instruct:[0,1,15,16,32,40,41],int32:10,int64:33,int64index:32,int_0:29,int_:[3,6,29,35],int_a:29,intak:[0,33],integ:[1,2,13,14,23,25,29,32,37,38,39,40,41],integer_vector:[1,39,40,41],integr:[3,6,29,32,35],intellectu:32,intellig:[0,14,31,32],intend:[10,32],intens:[1,27,40,41],intention:14,interact:[0,6,9,12,24,26,27,32,38,39],intercept:[0,6,8,11,13,16,26,32,34,35,36,37],intercept_:[0,6,8,9,13,32,33,34,35,36,37],interceptol:35,interceptridg:35,interchang:[5,12,25,34,35,38,39],interconnect:[1,40,41],interest:[0,1,2,3,4,5,6,7,8,9,12,21,24,26,27,29,32,33,34,35,36,37,38,39,40,41],interfac:[0,1,23,25,33,39,40,41],interior:[0,9,32],intermedi:[25,33],intern:[1,10,12,38,39,40,41],interpol:[1,3,4,6,12,26,38,39,40,41],interpr:[5,33,34],interpret:[0,1,6,9,10,12,13,17,19,25,26,27,29,39,40,41],interv:[0,3,5,6,7,13,18,26,29,32,33,34,36,37],intial:[13,36,37],intract:[0,4,33],intrins:[3,11,25,29,32],intro:[24,31,32,41],introduc:[0,1,5,6,8,10,12,17,25,26,29,32,35,36,39,40,41],introduct:[1,2,4,13,17,20,31,33,36,37,41],introductori:[0,4,25,31,32,33],intuit:[0,5,6,8,12,13,21,26,32,34,35,37,38,39,40,41],inv:[0,5,13,21,32,33,34,36,37,38],invalid:[1,8,39,40],invalu:[0,13,15,24,32,36,37],invari:[1,39,40,41],invd:[5,34],inver:[8,38,39],invers:[0,3,6,13,15,16,17,21,22,26,27,32,33,36,37,38],inverse_transform:8,invert:[0,5,7,10,13,21,32,34,36,37,38],invh:[13,21,37,38],invok:[0,8,33],involv:[0,2,6,7,11,12,33,35,36,37,38,39,41],io:[0,17,19,24,26,28,30,31,32,33,41],ion:38,ip:[0,8,29,32],ipca:11,ipykernel_18986:[],ipykernel_19041:[],ipykernel_19107:[],ipykernel_19139:[],ipykernel_19152:[],ipykernel_19176:[],ipykernel_19181:[],ipykernel_19201:[],ipykernel_19294:[],ipykernel_19329:[],ipykernel_19344:[],ipykernel_19367:[],ipykernel_19394:[],ipykernel_31563:1,ipykernel_31624:6,ipykernel_31672:13,ipykernel_31707:26,ipykernel_31718:32,ipykernel_31736:35,ipykernel_31749:37,ipykernel_31761:39,ipykernel_31766:[],ipykernel_31871:40,ipykernel_74401:[],ipykernel_87501:[],ipykernel_96069:[],ipynb:[24,32],ipython:[0,5,7,9,11,14,15,24,26,27,32,33,36],iq:[6,35],iri:[8,9],irreduc:[6,35],irrelev:[5,33],irrespect:[0,32],irvin:27,isbox:[13,38],iseffici:[37,38],isn:[5,34,35],isnan:[23,41],isnul:[0,33],isomap:11,isotop:[32,35,36,37,39,40,41],issu:[1,9,25,33,34,40,41],it_arrai:[13,37],item:[0,13,32,37,38],items:[25,32],iter:[1,2,3,4,6,7,8,11,13,14,21,23,29,35,36,38,39,40,41],its:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,23,24,25,26,27,29,32,34,35,36,37,38,39,40,41],itself:[5,6,12,19,26,27,29,33,34,35,39],iv:23,ix:[23,41],j1:25,j:[0,1,2,3,4,5,6,8,9,11,12,13,14,16,17,18,19,23,25,26,29,31,32,33,34,35,36,37,38,39,40,41],j_:6,j_lasso_sk:6,j_ridge_sk:6,j_sk:6,jackknif:[6,24,32,35],jacobian:[2,13,36,37,38],jacobian_shap:[],jakobsen:[30,32],jason:4,jax:[22,24,27,32],jax_descend_i:21,jax_descend_x:21,jax_enable_x64:21,jax_grad:21,jensen:[30,32,33,34,35,36,37,38,39,40,41],jerom:[18,26,31],ji:[12,25,39],jit:[13,37,38],jj:[0,5,6,32,34,35],jk:[0,1,6,12,25,32,38,39,40],jl:[0,32],jm:25,jmlr:41,jnp:[13,21,37,38],job:[2,8,10,41],join:[0,4,6,7,9,32,33,35,36],joint:[4,5,34,35],judg:[13,36,37],judgement:[6,26],julia:[24,25,26],jump:[26,29],junk:4,jupit:32,jupyt:[0,15,19,24,26,31,32,35],just:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],justif:[0,32],justifi:[3,10],k0:[7,36],k1:[7,36],k:[0,1,3,5,6,7,8,9,10,11,12,13,14,23,24,25,26,29,30,32,33,34,37,38,39,40,41],kaggl:[6,26,27],kajda:[23,41],kappa_d:29,karl:[30,32],karush:8,kate:32,katrin:[30,32],keep:[0,1,4,5,6,11,13,14,25,26,27,32,33,34,35,36,37,38,40,41],keepdim:[1,6,10,23,25,35,39,40,41],kei:[0,1,3,6,12,23,33,38,39,40,41],kept:[4,6,14,35],kera:[0,4,24,26,27,32],kernel:[0,1,3,24,32,33,40,41],kernel_regular:[1,3,40,41],kernel_s:4,kernelpca:11,kev:[0,32],kevin:[31,32],keyboardinterrupt:[2,3,4,23,41],keyword:[6,13,23,25,26,32,37,41],kfold:[6,35,36],kg:[1,39,40,41],ki:25,kick:[1,13,37,38,40,41],kiener:[2,41],kilomet:[6,33,34],kind:[0,2,3,4,8,12,13,14,32,33,37,38,39,41],kj:[6,12,25,33,34,35,39,40],kjm:[24,32],kkt:8,kl:29,km:[12,32,38,39],kmean:14,kmeanspoint:14,kn_k:14,know:[0,1,2,5,6,8,13,24,32,33,34,36,37,38,40,41],knowledg:[0,24,32],known:[1,3,4,5,6,7,8,9,12,25,26,27,29,31,33,34,35,36,38,39,40,41],kondev:[0,32],kp:29,kpca:11,kristin:41,kroneck:14,kuhn:8,kumar:41,kvalsund:[30,32],kwarg:[0,2,3,4,13,23,32,38,41],kwd:[0,3,4,32],kwown:[0,32],l0:[7,36],l1:[0,1,3,7,32,36,40,41],l1_l2:[1,3,40,41],l1regl:5,l2:[1,3,39,40,41],l:[0,1,2,3,5,6,7,8,10,11,12,13,19,23,25,26,29,32,33,35,36,37,38,40,41],l_1:[7,36],l_2:[7,13,27,36,37],l_:25,l_j:[12,39],l_ja:[23,41],la:[13,37],la_i:[12,39],la_k:[12,39,40],lab:[20,24,26,32,37,38],label:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,21,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],label_prob:[37,38],labelencod:[7,10,36],labels:[6,8,9],labels_shuffl:[0,1,33,39,40,41],laboratori:[28,33,34],lack:[0,32],lagari:[2,41],lagrang:[8,11],lam:[23,41],lambda:[0,1,2,3,5,6,7,8,10,12,13,17,18,21,23,26,27,29,32,33,34,35,37,38,39,40,41],lambda_0:11,lambda_1:[5,8,11,33],lambda_2:[8,11],lambda_:11,lambda_i:[8,11],lambda_iy_i:8,lambda_jy_iy_j:8,lambda_k:8,lambda_n:[5,8,33],lamda:[1,40,41],land:[0,8,33],landmark:8,landscap:[13,21,36,37,38],langl:[0,6,11,29,32,33],languag:[0,1,4,8,15,24,25,26,27,31,32,40,41],lapack:[25,32],laplac:[5,34,35],laptop:24,larg:[0,1,2,4,5,6,8,9,10,11,13,15,24,25,26,29,31,32,33,35,36,37,38,39,40,41],larger:[0,3,5,6,8,10,11,13,17,29,32,33,34,35,36,37,38],largest:[4,8,11],lasso:[0,7,24,32],lasso_sk:6,last:[0,1,2,3,4,5,6,7,8,9,10,12,13,15,17,18,22,23,25,26,29,30,32,34,37,39,40,41],latent:4,latent_dim:4,latent_point:4,latent_space_value_rang:4,later:[0,1,4,6,7,8,12,13,14,15,23,24,26,27,32,36,37,38,39,40,41],latest:[4,24],latest_checkpoint:4,latex:32,latter:[0,3,6,7,8,11,13,16,17,25,26,29,32,33,34,35,36,37,38],lattic:[12,38,39],law:[0,32],lax_numpi:21,layer:[0,4,13,21,23,27,32,37,38],lbfg:[7,9,10,11,36],lcc:[5,6,34,35],lda:11,ldot:[0,6,11,19,26,32,35,36],le:[5,7,10,13,17,21,29,33,34,36,37,38],lead:[0,1,3,5,6,7,8,9,10,11,12,13,16,17,25,29,32,33,34,35,36,37,38,39,40,41],leaf:9,leaki:[1,27,40,41],leakyrelu:4,lear:[13,36,37],learn:[3,4,5,6,7,8,9,10,12,18,22,25,28,30,31],learnabl:3,learner:10,learnig:32,learning_r:[3,8,10,21],learning_rate_init:[0,1,23,32,39,40,41],learning_schedul:[13,21,37,38],learnt:[26,27],least:[0,7,8,10,11,15,16,17,19,21,22,24,25,27,29,35,36],leat:[13,21,37,38],leav:[0,1,3,5,6,9,11,32,34,35,36,40,41],lectur:[0,1,5,10,11,12,13,15,17,21,22,24,25,26,27,28,30,31,37,38],lecture_11_backpropag:41,lecturenot:[0,17,19,24,26,31,32],left:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,16,17,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],leftarrow:[8,12,39,40],legend:[0,2,3,4,5,6,7,8,9,10,13,32,33,34,35,36,37,38,41],len:[0,1,2,3,4,5,6,8,9,10,11,12,23,25,32,33,34,35,37,38,39,40,41],len_index:[0,32],length:[0,1,2,3,4,8,9,13,16,24,32,33,36,37,38,39,40,41],length_of_sequ:4,leq:[0,5,7,8,13,14,17,29,32,33,34,36,37],less:[0,1,3,4,5,6,8,9,13,24,29,32,33,34,35,36,37,38,40,41],lessen:[1,40,41],let:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,23,25,29,32,33,34,35,36,37,38,39,40,41],letter:[0,16,25,29,32,33],level:[0,1,5,6,9,24,25,26,27,28,30,32,33,35,40,41],li:[8,11,32],lib:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],liblinear:[8,10],librari:[0,1,2,3,4,5,6,9,10,11,15,21,22,25,26,27,29,31,33,34,35,36,39,40,41],licens:[0,1,15,24,26,27,32,35,40,41],lie:[0,6,11,29,33,35],life:[0,1,8,12,32,38,39,40,41],lifetim:[13,37,38],like:[0,1,2,3,4,5,6,7,9,10,11,12,13,15,16,21,22,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],likelihood:[0,1,5,9,32,33,37,38,39,40,41],lim_:29,lima:[30,32],limit:[0,5,6,7,8,11,12,21,25,26,27,32,33,39],lin_clf:8,lin_model:[0,33],lin_reg:9,linalg:[0,2,5,6,8,11,13,21,25,29,32,33,34,35,36,37,38,39,41],line1:8,line2:8,line2d:[13,21,37],line3:8,line:[0,2,3,4,6,8,9,10,11,13,15,21,23,26,32,33,34,35,36,37,38,41],linear:[1,3,5,6,7,9,10,11,12,17,18,21,23,24,26,29,35,37,38,39,40,41],linear_model:[0,5,6,7,8,9,10,11,13,32,33,34,35,36,37,38,39],linear_regress:[6,23,35,41],linearli:[5,33],linearloc:[6,13,26,36,37],linearregress:[0,6,7,9,32,33,34,35,36],linearsvc:8,lineat:34,liner:[1,3,39,40,41],linerar:10,linewidth:[0,2,4,6,8,9,10,26,35,41],link:[0,4,9,12,24,26,27,30,32,39,40],linlag:[5,34],linpack:[25,32],linreg:[0,32],linspac:[0,2,3,4,6,8,9,10,13,15,16,21,25,29,32,33,34,35,37,38,41],linu:4,linux:[0,1,15,24,26,32,40,41],liquid:[0,32],list:[0,1,2,3,4,9,23,24,26,27,32,33,37,40,41],listcomp:[],listedcolormap:[9,10],literatur:[1,7,14,31,35,36,40,41],littl:[1,3,9,12,39,40,41],live:8,ll:[0,29,32,33],lle:[0,33],lloyd:[4,14],lmb:[0,2,5,6,34,35,36,41],lmbd:[0,1,3,23,32,39,40,41],lmbd_val:[0,1,3,23,32,39,40,41],lmbda:[13,36,37],ln:[1,13,36,37,39,40],load:[0,1,4,6,7,9,10,26,33,36,40,41],load_boston:[0,33],load_breast_canc:[1,7,9,10,11,23,36,40,41],load_data:[3,4],load_digit:[1,3,23,39,40,41],load_iri:[8,9],loc:[0,3,6,7,8,9,10,32,35,36],local:[0,1,2,3,4,7,12,13,32,33,36,37,38,39,40,41],locat:[2,3,8,41],lock:[3,4],log10:[0,5,6,23,34,35,36,41],log:[0,1,2,4,5,6,7,9,10,11,13,23,25,26,27,32,33,34,35,36,37,38,39,40,41],log_:[0,32],log_clf:10,logarithm:[0,5,7,25,32,34,35,36],logbook:[26,27],logic:[0,1,9,32,40,41],logist:[0,1,2,8,9,10,11,12,13,21,23,24,33],logistic_predict:[37,38],logistic_regress:[23,41],logisticregress:[7,9,10,11,36,38,39],logit:[7,36],logreg:[7,9,10,11,36,38,39],logspac:[0,1,3,5,6,23,32,34,35,36,39,40,41],longer:[2,3,8,10,14,25,27,29,32,41],loocv:[6,35,36],look:[0,1,2,3,4,5,6,7,8,9,10,11,13,18,21,23,25,26,27,29,32,33,34,35,36,37,38,40,41],loop:[1,4,6,10,12,14,23,24,25,32,35,39,40,41],lose:[1,39,40,41],loss:[0,1,3,4,5,6,7,8,10,11,13,25,26,27,32,34,35,38,39,40,41],loss_fil:4,lossfil:4,lost:4,lot:[0,1,4,6,23,33,35,37,38,40,41],low:[0,6,9,10,11,26,27,32,33,35],lower:[0,1,3,6,9,10,16,23,25,33,40,41],lowercas:[25,32],lowest:[9,13,29,37,38],lr:[1,3,4,10,40,41],lrelu:[23,41],lstat:[0,33],lstm:4,lstm_2layer:4,lstsq:[0,32,33],lt:[6,35],lu:[0,5,32,33],lubksb:25,luckili:[2,41],ludcmp:25,lux:25,lvert:[1,39,40,41],lw:[0,32],m1:[3,4],m:[0,1,2,3,5,6,8,9,10,11,12,13,21,25,28,29,30,31,32,33,34,35,36,37,38,39,40,41],m_1:14,m_:[9,12,39],m_h:[0,32],m_k:14,m_l:[12,39],m_n:[0,32],m_p:[0,32],m_t:[13,37,38],ma:11,machin:[1,3,4,5,6,7,9,10,11,12,15,21,22,25,28,31,33,34,35,38,39,40,41],machinelearn:[0,6,17,19,20,24,26,28,30,31,32,33,36,37,38],mackai:31,made:[0,1,3,4,5,6,7,9,11,12,18,26,27,32,33,36,38,39,40,41],mae:[0,32],magic:4,magnitud:[1,6,7,13,33,34,36,37,38,39,40,41],mai:[0,1,2,3,5,6,7,8,9,11,12,13,18,21,22,23,24,25,26,27,29,33,34,35,36,37,38,39,40,41],mail:[28,30],main:[0,1,3,4,5,6,7,9,25,26,27,31,32,33,36,40,41],mainli:[0,5,6,7,9,32,33,34,35,36],maintain:[6,33,35],major:[1,6,9,10,13,25,32,35,36,37,38,39,40,41],make:[1,2,3,4,5,6,7,8,11,12,13,21,23,24,25,26,27,29,31,34,35,36,37,38,39,40,41],make_axes_locat:6,make_classif:[38,39],make_moon:[8,9,10],make_pipelin:[0,6,10,33,35],make_vjp:[2,13,38],makedir:[0,6,7,9,32,33,35,36],makeplot:[0,32],malcondit:25,malign:[1,7,9,36,40,41],mammographi:[5,34,35],manag:[0,2,3,15,24,26,32,41],mandatori:[30,32],mani:[0,1,3,4,5,6,7,8,9,11,13,14,21,22,23,24,25,26,27,29,31,32,33,34,35,36,37,38,40,41],manifold:11,manner:3,manual:[6,33,34,36],map:[0,1,2,6,7,8,11,12,14,26,29,32,36,38,39,40,41],margin:[0,5,8,32],marit:[0,32],mariu:41,mark:32,marker:[0,7,21,25,32,33,36],markov:[24,32],marsaglia:29,mass:[0,1,5,13,33,37,38,39,40,41],massag:[0,32],masses2016:[0,32],masses2016ol:[0,32],masses2016tre:0,masseval2016:[0,32],master:[6,19,20,26,28,30,32,36,37,38,41],mat1100:[24,32],mat1110:[24,32],mat1120:[24,32],mat:[24,32],match:[0,1,4,5,13,14,32,33,36,37,38,40,41],materi:[4,5,7,13,17,25,30,37,38,39,40],math:[3,7,12,13,21,23,25,29,31,32,35,36,37,38,39,41],mathbb:[0,4,5,6,7,8,11,12,13,14,17,18,19,25,26,29,32,33,34,35,36,37,38,39],mathbf:[0,5,6,7,8,13,18,19,21,25,26,32,33,34,35,36,37,38],mathcal:[1,5,6,7,13,19,26,34,35,36,37,39,40,41],matheemat:3,mathemat:[0,6,11,12,13,17,24,25,29,31,32,34,35,36,40],mathemati:32,mathrm:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,17,18,19,23,26,29,32,33,34,35,36,37,38,39,40,41],matmul:[1,2,5,23,34,39,40,41],matnat:31,matplotlib:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],matplotlibdeprecationwarn:[6,13,26,37],matric:[0,1,3,4,6,7,8,11,13,16,17,23,24,33,36,37,40,41],matrix:[0,2,3,4,6,7,8,10,13,15,16,17,18,19,21,22,23,26,27,29,35],matshow:[1,40,41],matter:[2,3,13,33,36,37,38,41],max:[0,1,2,3,4,9,10,12,13,21,23,30,32,36,37,38,39,40,41],max_depth:[0,9,10],max_diff1:[2,41],max_diff2:[2,41],max_diff:[2,41],max_it:[0,1,7,8,11,13,23,32,36,37,38,39,40,41],max_iter:14,max_leaf_nod:10,max_queue_s:[3,4],max_sampl:10,maxdegre:[0,6,10,33,35],maxdepth:10,maxim:[1,4,5,7,8,11,34,35,36,39,40],maximum:[0,1,2,3,5,7,8,9,10,13,14,23,32,33,37,38,39,40,41],maxpolydegre:[5,6,34,35,36],maxpooling2d:3,mbox:[5,6,18,26,33,34,35],mccorduck:32,mcculloch:[12,38,39],md:[11,20,26,37,38],mdoel:4,mean:[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,27,29,35,37,38,39,40,41],mean_absolute_error:[0,32],mean_divisor:14,mean_i:29,mean_matrix:14,mean_squared_error:[0,4,6,7,10,32,33,35,36],mean_squared_log_error:[0,32],mean_vector:14,mean_x:29,meaning:[0,4,7,32,36],meansquarederror:[0,32],meant:[2,3,7,10,13,36,37,38],measur:[0,1,2,5,6,9,11,12,14,19,26,27,29,32,33,34,35,39,40,41],mechan:[0,4,29,32,41],median:[0,32,33],medicin:[12,38,39],medium:[4,8,13,27,37,38],medv:[0,33],meet:[0,30],mehta:[0,27,32,33,34],memori:[3,4,11,12,13,21,25,32,37,38,39],mention:[0,12,13,26,27,29,32,36,37,38,39],mere:[0,15,27,32],meshgrid:[2,5,6,8,9,10,11,23,26,33,41],messag:[5,13,37,38],messi:[2,41],met:[0,3,8,32,33],metal:[3,4],meteorolog:9,meter:[6,33,34],method:[0,1,2,3,4,5,7,8,11,12,14,16,17,18,19,22,24,25,27,29,31,32,33,34,39,40],metion:[6,26],metric:[0,1,3,6,7,9,10,14,15,16,23,32,33,35,36,39,40,41],metropoli:[24,32],mev:[0,29,32],mgd:[13,37,38],mglearn:[24,32],mgrid:[13,37],mhjensen:[1,2,3,6,7,8,11,21,23,33,36,39,40,41],mi:10,mia:[30,32],michael:[27,39,40,41],michigan:[32,33,34,35,36,37,38,39,40,41],microsoft:31,mid:[1,39,40,41],midel:4,midnight:[16,17,18,19,20,21,22,23],midpoint:9,might:[0,1,2,4,6,9,13,33,34,36,37,38,40,41],mild:9,millimet:[6,33,34],million:[0,32,33,37,38],mimic:[12,38,39],min:[0,2,5,8,9,32,41],min_:[0,2,5,14,17,32,33,34,41],min_samples_leaf:9,mind:[0,6,13,26,32,33,34,35,36,37],mindboard:4,mine:[24,32],mini:[1,11,12,13,21,22,27,36,39,40,41],minibatch:[1,11,13,23,39,40,41],minibathc:[13,37,38],miniforge3:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],minim:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,17,18,21,23,26,33,34,35,37,38,39,40],minima:[0,1,7,13,32,36,37,38,39,40,41],minimum:[0,1,2,6,8,9,11,13,33,35,36,37,38,39,40,41],minmaxscal:[0,23,33,41],minor:[6,13,26,29,37],minst:[1,40,41],minu:[7,36],mirror:9,misc:[6,26],misclassif:[8,9,10],misclassifi:[8,10],miser:0,mismatch:[1,40,41],miss:[0,7,10,33],mistak:4,mit:31,mix:[1,2,32,40,41],mixtur:[13,21,37,38],mk:[9,25],mkdir:[0,6,7,9,32,33,35,36],ml:[0,1,10,13,25,26,27,33,36,37,38,40,41],mlab:29,mle:[5,7,36],mlp:[1,38,40,41],mlpclassifi:[1,23,38,39,40,41],mlpregressor:[0,32],mm:25,mn:[12,29,38,39],mnist:[1,11,23,27,39,40,41],mod:29,mode:[23,28,30,32,41],model:[2,3,5,7,8,9,10,11,13,14,15,16,18,19,21,23,24,26,29,31,33,34,35,36,37],model_select:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],moder:10,modern:[0,6,7,24,32,35,36],modif:[2,12,13,37,38,39,41],modifi:[0,1,3,5,7,8,10,12,13,32,33,34,36,37,38,39,40,41],modul:[0,7,11,25,32,34,36],modular:29,modulo:29,moe:[11,33],moment:[5,6,13,21,23,29,34,35,41],moment_correct:[23,41],momentum:[22,23,27,41],momentum_schedul:[23,41],monitor:[13,21,37,38],monoton:[5,12,29,34,35,38,39],mont:[0,6,24,29,31,32,35],moor:[5,6,34],more:[0,1,2,4,5,7,8,9,10,11,12,13,14,18,22,23,24,27,29,39],moreov:[0,3,32],morten:[30,32,33,34,35,36,37,38,39,40,41],most:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,21,24,26,29,32,33,34,35,36,37,38,39,40,41],mostli:[1,11,40,41],motion:[0,13,32,37,38],motiv:[1,4,40,41],move:[0,4,5,6,7,9,12,13,14,21,23,26,29,32,33,34,35,36,37,38,39,41],mpl:[0,7,32,36],mpl_toolkit:[2,6,13,26,36,37,41],mplot3d:[2,6,13,26,36,37,41],mplregressor:[1,39,40,41],mse:[0,4,5,6,9,10,15,16,17,19,23,26,27,32,33,34,35,36,41],mse_simpletre:10,mselassopredict:[5,34],mselassotrain:[5,34],mseownridgepredict:[6,34],msepredict:[5,34],mseridgepredict:[0,5,6,34,36],msetrain:[5,34],msg:[0,32,33],msle:[0,32],mt:[7,12,36,38,39],mu0:29,mu1:29,mu2:29,mu:[0,6,11,13,29,32,35,37,38],mu_1:33,mu_:[6,29,33,34,35],mu_i:[6,33,34,35],mu_n:11,mu_x:29,much:[0,1,2,3,4,5,6,8,9,10,11,12,13,25,26,29,32,33,34,35,37,38,39,40,41],multi:[0,1,3,7,23,24,32,33,36,41],multiclass:[1,7,36,39,40],multidimension:[11,12,32,38,39],multilay:[1,40,41],multinomi:[7,36],multipl:[2,4,5,6,7,12,13,29,33,35,36,37,38],multipli:[3,5,6,11,13,23,25,29,33,34,35,37,41],multiplum:8,multivari:[0,2,10,11,24,29,32,41],multivariate_norm:[11,14],murphi:[11,31,32,34],must:[0,1,2,5,6,8,10,12,13,14,29,32,33,35,36,37,38,39,40,41],mut_add:2,mutabl:2,mutat:[7,36],mutual:[1,3,6,13,35,36,37,40,41],mx_:29,myenv:[0,1,2,3,4,6,7,8,11,13,21,23,32,33,34,36,38,39,40,41],myriad:[0,15,24,32],mz1:29,mz2:29,n1:25,n2:25,n:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],n_0:[12,29,38,39],n_:[1,2,3,8,12,29,38,39,40,41],n_boostrap:[6,10,35],n_bootstrap:[6,35],n_categori:[1,3,23,39,40,41],n_cluster:14,n_compon:11,n_epoch:[13,21,23,37,38,41],n_estim:10,n_examples_to_gener:4,n_featur:[1,23,39,40,41],n_filter:3,n_hidden:[2,41],n_hidden_neuron:[0,1,23,32,39,40,41],n_i:29,n_input:[0,1,3,23,33,39,40,41],n_instanc:9,n_iter:[36,37],n_iter_i:[7,11,36],n_job:10,n_k:14,n_l:[12,29,38,39],n_layer:[1,40,41],n_m:9,n_neuron:[1,40,41],n_neurons_connect:3,n_neurons_layer1:[1,40,41],n_neurons_layer2:[1,40,41],n_point:14,n_sampl:[6,8,9,10,14,35,38,39],n_split:[6,35,36],n_step:4,n_t:[2,41],n_x:[2,41],nabla:[1,13,36,37,39,40,41],nabla_:[2,13,21,36,37,38,41],nabla_w:[13,37,38],nafter:[23,41],nag:[13,37,38],naimi:[0,32],naiv:[7,36],naive_kmean:14,najafi:[30,32],nall:[0,32],name:[0,1,3,4,5,6,7,8,9,10,12,13,14,15,23,24,25,26,29,30,32,33,34,35,36,37,38,39,40,41],nameerror:[6,10,15,26,35,36,37],nan:[23,41],narrow:[13,37,38],nary_f:[2,13,38],nary_op_arg:[2,13,38],nary_op_kwarg:[2,13,38],nary_oper:[2,13,38],nation:[1,5,33,34,35,39,40,41],nativ:[24,32],natur:[0,1,4,8,9,12,13,26,27,29,31,32,36,37,38,39,40,41],navier:[12,38,39],nb:29,nb_:25,nbconvert:32,nd:14,ndarrai:[2,6,23,41],ndef:13,nderiv:[23,41],ne:[9,10,25,29,33],nearest:[1,3,6,11,39,40,41],nearli:[13,36,37],neat:32,neatli:37,neccesari:[6,35],necess:[2,41],necessari:[0,1,3,4,8,14,23,32,39,40,41],necessarili:[0,4,11,29,32],necesserali:[5,34,35],neck:[7,36],need:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,21,22,23,25,27,29,33,34,35,36,37,38,39,40,41],neg:[0,1,3,5,6,7,10,13,25,29,32,34,35,36,37,38,39,40,41],neg_mean_squared_error:[6,35,36],neglect:29,neglig:29,neighbor:[3,6,11],neither:[4,13,37,38],neq:[13,14,29,36,37],nerual:[23,41],nervou:[12,38,39],nest:[2,9,12,38,39],nesterov:[13,37,38],net:[2,4,12,38,39,41],netlib:[25,32],network:[0,9,13,21,24,31,33,37],neural:[0,13,21,24,31,33,36,37],neural_network:[0,1,2,23,32,38,39,40,41],neuralnetwork:[1,39,40,41],neuralnetworksanddeeplearn:[39,40,41],neuron:[1,2,3,4,12,40,41],neutral:[0,32],neutron:[0,32],never:[1,3,4,6,9,29,35,39,40,41],new_box:[2,13,38],new_chang:[13,21,37,38],new_hobbit:32,new_root:[13,38],new_trac:[13,38],new_tracing_count:[3,4],newaxi:[0,3,6,9,35,36],newli:[0,32],newton:[1,7,8,13,29,39,40],next:[0,1,2,3,4,5,6,8,9,13,14,21,22,23,32,33,34,36,37,39,40,41],next_guess:[13,37],next_input:4,nf8_grad:13,nfrom:13,ng:[1,39,40,41],ngini:9,nhow:[23,41],ni:14,nice:[0,1,5,11,32,33,34,35,39],nielsen:[27,39,40,41],nimport:13,niter:[13,21,36,37,38],nitric:[0,33],nlambda:[0,5,6,34,35,36],nlp:31,nm:29,nm_n:[0,32],nmse:[6,35],nn:[2,5,6,12,25,34,35,38,39,41],nn_model:[1,40,41],nnmin:[2,41],node:[1,2,3,9,10,12,23,27,38,39,40,41],node_constructor:[],nois:[0,4,5,6,8,9,10,13,15,16,19,26,32,33,34,35,36,37],noise_dimens:4,noisi:[1,6,19,26,35,39,40,41],non:[0,1,3,4,5,6,7,9,10,11,12,13,14,21,25,26,29,32,33,34,35,36,37,38,39,40,41],noncommerci:[27,35,41],none:[0,1,2,3,4,5,9,10,13,23,29,32,33,34,35,36,37,38,40,41],nonlinear:[3,6,8,9,11,12,35,38,39],nonneg:[6,9,13,35,36,37],nonparametr:6,nonsens:29,nonsingular:25,nonumb:[3,7,8,13,21,25,36,37,38],nonxla:[3,4],nor:[1,4,13,37,38,40,41],norm:[0,1,5,6,8,11,13,17,32,33,34,35,36,37,38,39,40,41],normal:[3,4,5,6,7,8,9,10,11,12,13,15,16,18,19,21,23,24,25,26,27,29,32,33,34,36,37,38,39],normali:[25,32],norvig:32,norwai:[6,26,27,32,38],notat:[0,2,5,6,13,14,21,29,32,33,34,35,37,41],note:[0,1,2,3,4,5,6,7,8,11,12,13,14,15,16,19,22,23,24,25,26,27,29,31,32,36,37,38,39,40,41],notebook:[0,1,3,9,15,24,26,27,32,35,39,40,41],notesexercise5week452022:32,notessep14:[19,36],notessep28:37,noth:[1,2,5,8,12,14,23,29,33,34,38,39,40,41],notic:[4,5,12,13,25,29,32,34,37,38,39],notimplementederror:[23,41],notion:3,noutput:[23,41],novel:[3,6,10,36],novemb:[1,23,28,30,32,40,41],now:[0,2,4,5,6,7,8,10,11,12,14,15,16,17,22,23,24,25,26,27,29,32,33,36,39],nowadai:[0,1,3,9,24,32,40,41],nox:[0,33],np:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],npr:[2,41],nprint:13,nsampl:[6,9,35,36],nt:[2,41],nthi:[0,32],ntrained_model:6,nu:29,nuclear:[5,33],nuclei:[0,29,32],nucleon:[0,32],nucleu:[0,32],num:4,num_allow_arg:[0,32],num_coordin:[2,41],num_equ:[23,41],num_hidden_neuron:[2,41],num_it:[2,41],num_iter:21,num_neuron:[2,41],num_neurons_hidden:[2,41],num_not:[23,41],num_output:[3,4],num_point:[2,41],num_tre:10,num_valu:[2,41],number:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,22,23,25,26,27,28,30,32,34,35,36,39,40],numberid:[7,36],numberparamet:3,numer:[0,5,6,9,10,11,12,13,17,21,24,25,31,32,33,34,35,36,37,38,39],numpi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,23,24,26,29,33,34,35,36,39,40,41],numpy_vjp:[],numpy_wrapp:[],nunmpi:[5,33],nvalu:9,nx:[2,13,41],nx_test:6,nx_train:6,nx_train_mean:6,ny:[23,29,41],ny_pr:6,ny_train:6,ny_train_mean:6,o:[0,6,7,8,9,11,15,21,25,30,31,32,33,36],obei:[6,11,13,33,34,35,37],object:[0,1,2,4,6,8,10,13,23,25,32,33,36,37,38],obliqu:[5,33],observ:[0,1,3,5,6,7,8,9,10,11,12,13,14,29,34,35,36,37,38,39,40,41],obtain:[0,1,5,6,7,8,9,10,12,13,14,17,21,22,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],obviou:[5,6,11,29,33],obviouli:32,obvious:[0,4,5,6,21,22,25,27,32,34,35],oc:33,occupi:[0,33],occur:[0,6,8,9,25,29,32],oct:[27,41],octob:[20,21,22,23,28,30,32,38],od:0,odd:[0,3,7,32,33,36],odenum:[2,41],odesi:[2,41],oen:0,off:[1,3,4,5,9,13,19,29,34,35,37,38,39,40,41],offer:[6,11,24,25,28,30,32,35],offic:[30,32],offici:[28,32],often:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,16,24,25,29,32,33,35,36,37,38,39,40,41],ofter:[25,32],og:[23,41],ol:[0,13,15,16,17,18,22,27,32,33],old:[1,5,10,13,34,35,36,37,39,40,41],ols_fit:35,ols_fit_beta:35,ols_sk:6,ols_svd:6,olsbeta:[0,5,34],omega:[2,3,6,41],omega_0:3,omit:[0,5,32,33,34,35],on_train_batch_begin:[3,4],onc:[1,6,9,11,13,35,36,37,38,40,41],one:[0,1,3,4,5,6,7,8,9,10,11,13,14,19,21,22,23,24,25,26,27,29,30,32,33,34,35,38,40],onehot:[1,23,39,40,41],onehot_vector:[1,39,40,41],onehotencod:9,ones:[0,2,5,6,8,9,10,11,13,21,23,25,26,32,33,34,35,36,37,41],ones_lik:4,onl:3,onli:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,40,41],onlin:[11,28],onto:[5,11,33],op_nam:[3,4],open:[0,1,4,6,7,9,15,24,26,28,30,32,35,36,40,41],oper:[0,1,3,5,6,10,11,12,13,15,24,29,32,33,34,35,37,38,39,40,41],operation:29,oplu:29,opmiz:[13,37,38],opportun:[0,32],oppos:[6,13,37,38],opposit:[1,5,8,33,40,41],opt:[1,5,27,32,34,40,41],optim:[0,2,3,4,5,6,7,9,10,11,14,15,16,17,18,19,21,22,23,26,27,34,35],optimis:[1,3,40,41],optimizer_v2:3,option:[0,1,3,5,6,7,8,11,21,23,25,26,27,33,34,35,36,39,40,41],optionalxlacontext:[3,4],optmiz:[1,8,13,21,33,37,38,39,40,41],oral:32,orang:0,order:[0,1,2,3,5,6,7,8,9,10,11,12,15,16,22,23,25,26,27,29,32,33,34,35,36,39,40,41],ordinari:[0,2,3,7,11,13,15,16,17,19,21,22,24,27,35,36,37,38],ordinrari:35,oreilli:31,org:[0,3,4,7,11,21,24,25,31,32,36,37,38,41],organ:[6,7,10,25,35,36],orient:[1,5,23,29,33,34],origin:[0,3,5,6,8,11,12,13,25,32,33,35,37,38,39],orthogn:[5,33],orthogon:[0,5,6,8,11,13,17,25,32,33,34,37],orthonorm:[5,33,34],os:[0,1,4,5,6,7,8,9,30,32,33,34,35,36,40,41],oscar:[1,40,41],oscil:[3,13,37,38],oslo:[0,15,24,26,27,28,30,32,33,34,35,36,37,38,39,40,41],osx:[0,15,24,26,32],other:[0,1,2,3,5,6,7,8,10,13,14,15,19,24,26,27,28,29,30,31,34,35,37,40],otherwis:[0,1,4,7,13,21,25,27,32,33,36,37,38,39,40,41],ouput:[5,7,12,34,35,36,39,40],our:[1,2,3,6,7,8,9,10,12,14,15,16,17,18,19,21,22,23,24,25,26,27,29,34,35,38],ourmodel:0,ourselv:[0,5,6,8,11,13,32,33,34,35,36,37],out1:[],out2:[],out:[0,1,2,4,5,6,7,8,9,10,11,12,13,16,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],out_deriv:[23,41],out_fil:9,outcom:[0,7,9,10,12,29,33,36,39],outdoor:9,outer:[6,12,13,39,40],outfil:4,outgrad:2,outlier:[0,8,32,33],outlin:[6,10,11,35],outlook:9,outperform:10,output:[0,1,3,4,5,6,7,8,9,10,12,13,16,23,25,26,27,29,32,33,34,35,36,37,38,39],output_bia:[1,23,39,40,41],output_bias_gradi:[1,39,40,41],output_func:[23,41],output_nod:[23,41],output_shap:4,output_weight:[1,23,39,40,41],output_weights_gradi:[1,39,40,41],outputlayer1:[12,38,39],outputlayer2:[12,38,39],outsid:4,over1:[13,37,38],over:[0,1,3,4,5,6,9,10,12,13,21,25,26,32,33,34,35,36,37,38,39,40,41],overal:[1,10,39,40,41],overcast:9,overcom:[12,13,37,38,39],overdetermin:[0,32],overfit:[0,1,3,6,9,10,13,21,23,35,37,38,39,40,41],overflow:[1,5,34,35,39,40,41],overflowerror:[23,41],overhead:[12,39],overlap:[3,7,8,9,36],overlin:[0,5,6,9,10,11,14,25,32,33,34,35],overst:[0,32],overtrain:4,overview:[3,36],overwritten:[23,41],own:[4,5,6,8,12,13,21,22,23,24,25,26,34,35,37,38,39,40,41],owner:[0,33],ownmsepredict:0,ownmsetrain:0,ownridgebeta:[0,6,34],ownypredictridg:0,ownytilderidg:0,oxid:[0,33],p0:[2,41],p1:[2,41],p:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,23,25,29,32,33,34,35,36,37,39,40,41],p_:[2,4,8,9,41],p_hidden:[2,41],p_i:[5,29,34,35],p_j:29,p_n:29,p_output:[2,41],p_x:29,pack:[0,32],packag:[0,1,2,3,4,5,6,7,8,11,13,15,21,22,23,24,26,27,29,33,34,36,37,38,39,40,41],pad:[3,4],page:[0,24,32],pai:[0,1,9,13,23,37,38,40,41],pair:[0,2,3,9,24,29,32,33,41],pamilla:32,panda:[0,4,5,6,7,9,11,15,24,26,34,35,36],panel:32,paper:[1,40,41],paradigm:[0,32],parallel:[3,4,10,13,21,24,25,32,37,38],param:[2,4,41],param_distribut:36,param_grid:36,paramat:[2,41],paramet:[0,1,2,3,4,5,6,7,8,9,10,12,13,16,17,18,19,21,22,23,26,27,29,34,35,39,40,41],parameter:[0,6,10,26,32,33],parametr:[0,6,15,16,32,33,35],paramt:[3,5,34,35],parent:2,parent_argnum:[],parser:[0,32],part:[0,1,3,5,6,10,17,18,21,22,23,25,28,29,30,32,34,35,38,40,41],partial:[0,1,5,6,7,8,10,11,12,13,16,29,32,33,34,35,36,37,39,40],particip:[24,28,30,32],particl:[0,4,13,29,32,37,38],particular:[0,1,2,3,5,6,9,10,11,12,13,16,26,29,31,32,33,34,35,36,37,38,39,40,41],particularli:[5,6,8,11,13,21,29,33,35,36,37,38],partit:[1,4,9,39,40,41],partli:[6,32],pass:[2,3,12,14,23,36],password:[26,27],past:[10,29],patch:[6,29,35],path:[0,4,6,7,9,15,24,32,33,35,36],pathcollect:21,patient:[7,36],patter:4,pattern:[0,3,4,12,28,31,32,38,39],pauli:[0,32],pc:[11,24],pca:[0,7,24,32,33,36],pcolor:6,pcolormesh:6,pd:[0,4,5,6,7,9,11,32,33,34,35,36],pde:[2,41],pdf:[0,3,4,5,6,9,19,20,26,27,31,32,34,35,36,37,41],pedagog:[0,32,33],penal:[6,33,34,35],penalti:[6,13,26,33,34,35,36,37],penros:[5,6,34],pentagon:[13,36,37],peopl:[0,1,9,13,24,33,37,38,39,40,41],per:[0,1,6,28,30,32,33,35,40,41],perc_print:[23,41],percentag:[0,10,11,23,30,33,41],perceptron:[0,1,7,32,36,41],peregrin:32,perfect:[0,1,13,21,32,37,38,39,40,41],perfectli:[4,6,35],perform:[0,2,3,4,5,6,8,10,11,12,13,14,15,16,17,19,21,23,24,25,26,27,29,32,33,34,35,36,37,38],performac:4,perhap:[0,5,13,32,33,34,36,37],perimet:[1,9,40,41],period:[1,4,29,39,40,41],permut:11,persist:[13,37,38],person:[5,6,7,28,30,32,33,34,35,36],perspect:31,pertin:[12,27,39,40],petal:[8,9],peter:31,phantom:29,phase:[6,12,38,39],phd:41,phenomena:29,phi:8,phi_k:8,philosophi:[13,37],phone:[30,32],photo:4,php:27,phrase:[0,32],physic:[0,1,4,7,12,13,27,29,30,31,32,33,34,35,36,37,38,39,40,41],physicist:27,pi:[2,3,5,6,7,9,12,13,29,34,35,36,37,38,39,41],pick:[1,9,10,11,13,14,37,38,39,40,41],pickl:[1,40,41],pictur:[0,32],pie:[24,32],piec:[11,14],pillow:[0,15,24,26,32],pinv:[5,6,13,21,33,34,35,37,38,39],pip3:[0,1,15,26,32,40,41],pip:[0,1,15,24,26,32,40,41],pipelin:[0,6,8,10,33,35],pippin:32,pit:4,pitfal:[6,33,34],pitt:[12,38,39],pixel:[1,3,4,39,40,41],pixel_height:[1,3,39,40,41],pixel_width:[1,3,39,40,41],place:[0,4,6,8,13,25,26,32,35,36,37],plai:[0,3,4,5,6,8,11,24,32,33,34,35,36],plain:[8,10,12,13,14,21,22,27,36,37,39],plan:[6,9,30,31,32],plane:[8,9],plateau:[5,34],platform:[3,4,24,32],plausibl:[12,38,39],pleas:[6,7,11,13,26,27,30,32,33,36,37,38],plenti:[1,40,41],plethora:[3,12,38,39],plot:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,24,25,26,27,29,32,33,34,37,38,39,40,41],plot_confusion_matrix:[7,10,36],plot_count:6,plot_cumulative_gain:[7,10,36],plot_data:[1,40,41],plot_dataset:8,plot_decision_boundari:[9,10],plot_import:10,plot_max:4,plot_min:4,plot_model:4,plot_numb:4,plot_predict:8,plot_regression_predict:9,plot_result:4,plot_roc:[7,10,36],plot_surfac:[2,6,13,26,37,41],plot_train:9,plot_tre:[9,10],plqvvvaa0qudcjd5baw2dxe6of2tius3v3:[],plt:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],plu:[0,3,5,7,32,33,34,36],pm:[8,35],pmatrix:[2,41],pml:31,pn:3,png:[0,4,6,7,9,32,33,35,36],point:[0,1,2,3,5,6,7,8,9,10,11,13,14,15,16,17,19,21,22,23,25,26,29,30,32,33,35,36,37,38,39,40,41],point_1:4,point_2:4,poisson:[24,29,32],poli:[6,8,35,36],poly100_kernel_svm_clf:8,poly3:0,poly3_plot:0,poly3dcollect:[13,37],poly_degre:[23,41],poly_featur:[8,9],poly_features10:9,poly_fit10:9,poly_fit:9,poly_kernel_svm_clf:8,polydegre:[0,5,6,10,33,34,35],polygon:[13,36,37],polym:[12,38,39],polymi:26,polynomi:[0,5,6,7,8,9,10,11,15,16,17,19,21,22,26,27,32,33,35,36],polynomial_featur:[6,35],polynomial_svm_clf:8,polynomialfeatur:[0,6,8,9,33,35,36],polytrop:[0,6,32,35],pool:3,pool_siz:3,poor:[1,13,21,36,37,38,40,41],poorli:[0,33],pop:[],popul:[0,5,32,33,34,35],popular:[0,1,3,6,7,8,9,11,12,15,24,25,26,29,32,33,36,38,39,40,41],popularli:[0,32],portabl:10,portion:[11,13,21,37,38],pose:[0,4,5,6,11,29,32,35],posit:[0,1,2,3,5,7,8,10,11,13,14,17,23,25,29,32,33,34,35,36,37,38,39,40,41],possibl:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40],possible_gradient_typ:[3,4],possible_gradient_types_non:[3,4],possibletapegradienttyp:[3,4],posterior:[5,34,35],postpon:[0,32,33],postscript:[26,27],postul:[5,34,35],potenti:[0,3,5,6,12,13,32,33,34,35,37,38,39],pott:[12,38,39],power:[0,1,5,6,8,9,12,13,32,33,35,37,38,39,40,41],pp:[5,6,18,34,35,36],practic:[0,5,6,7,8,26,27,29,33,34,35,36],practition:[0,1,3,32,40,41],pre:32,preced:[1,11,12,29,38,39,40,41],preceed:[4,23,41],preceq:8,precis:[0,2,5,11,13,25,26,27,29,32,33,34,35,37,38,41],pred:[6,35,37,38],pred_train:[23,41],pred_val:[23,41],predicit:0,prediciton:[23,41],predict:[0,1,5,6,7,8,9,10,15,16,23,24,26,31,32,33,34,35,36,38,39,40,41],predict_prob:[1,39,40,41],predict_proba:[7,10,36,38,39],predictor:[0,5,6,7,9,10,11,32,33,34],prefer:[0,1,6,8,9,11,13,15,24,26,27,32,40,41],prepar:[0,6,25,26,27,32,33],preprocess:[0,4,6,7,8,9,10,11,23,34,35,36,41],prerequisit:0,prescript:[26,27],presenc:[13,37,38],present:[0,5,6,7,9,12,13,21,23,25,26,27,29,32,33,34,37,38,39,41],preserv:[3,11,25],press:[13,31,36,37],pretrain:[1,4,40,41],pretti:[0,4,8,9,15,24,26,32],prev_centroid:14,prev_g:2,prev_g_flag:2,prevent:[13,29,37,38],previou:[0,1,2,3,4,5,6,8,10,11,12,13,21,22,23,25,26,27,29,33,36,37,38,39,40,41],previous:[2,3,9,10,29,41],price:[0,4,9,13,33,37,38],primal:8,primari:[0,7,32,36],prime:29,primit:2,princip:[0,5,7,24,32,33,36],principl:[0,6,7,8,14,32,35,36],print:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,21,23,25,29,32,33,34,35,36,37,38,39,40,41],print_funct:[8,9],print_length:[23,41],printout:[0,32],prior:[0,5,6,32,33,34,35],privat:[0,32],pro:27,prob:[1,29,40,41],probabilist:[0,31,32,33],probabl:[0,1,3,4,6,7,10,13,23,24,32,33,36,37,38,39,40,41],problem:[0,3,4,5,6,7,8,9,10,11,12,16,17,23,24,25,26,27,29,35],probml:31,proce:[0,5,6,7,8,9,10,11,13,25,32,33,34,35,37],procedur:[2,4,5,6,8,10,11,13,21,26,33,34,35,36,37,38,41],proceed:25,process:[0,2,4,6,9,10,12,13,15,21,24,25,26,29,31,32,35,36,37,38],prod:31,prod_:[1,5,7,34,35,36,39,40],produc:[0,3,4,5,6,9,10,11,12,13,24,25,26,29,32,33,34,35,37,38,39],product:[0,1,3,5,6,7,8,12,13,16,21,24,25,32,33,34,35,36,39,40,41],profess:[0,32],profil:[3,4],profile_util:[3,4],progag:27,program:[0,1,4,5,6,8,12,14,15,16,21,24,25,28,29,30,32,33,35,38,39,40],programm:25,progress:[1,4,14,23,37,40,41],prohibit:[6,35],project1:[6,26],project:[0,1,2,3,5,11,13,17,18,19,20,21,22,23,24,28,30,33,34,35,37,38,39,40,41],project_root_dir:[0,6,7,9,32,33,35,36],promin:[12,38,39],promis:8,promot:[30,32],prone:9,pronounc:[13,24,32,37,38],proof:[0,11,12,13,32,35,36,37,39],prop:[23,41],propag:[2,3,13,23,27,37,38],proper:[0,2,6,7,26,32,35,41],properli:[1,6,8,10,13,21,26,27,37,38,40,41],properti:[0,1,3,12,13,16,17,25,32,35,37,38,39,40],proport:[0,1,5,9,11,13,16,29,32,33,37,38,39,40,41],propos:[1,4,6,10,23,26,27,32,40,41],propto:[5,13,34,35,36,37,38],proton:[0,32],prove:[3,13,36,37,38],provid:[0,1,3,4,5,6,8,9,10,12,13,15,21,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],proxi:[1,13,21,37,38,40,41],prune:9,pseudo:[25,29,37],pseudocod:[26,27],pseudoinv:[5,34],pseudoinvers:[5,6,34],pseudorandom:[6,29,35],psycholog:[0,32],pt:[13,37],ptratio:33,punish:[0,1,23,32,39,40,41],pure:[3,9,29],purest:9,puriti:9,purpos:[0,3,10,12,14,32,33,38,39],put:[1,32,40,41],py:[0,1,2,3,4,5,6,7,8,11,13,21,23,26,32,33,34,35,36,37,38,39,40,41],pycod:32,pydata:24,pydot:9,pyhton2:32,pylab:[0,7,32,36],pylint:[3,4],pypi:24,pyplot:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],pythagora:[5,34,35],python2:[0,15,26,32],python3:[0,1,2,3,4,6,7,8,11,13,15,21,23,24,26,32,33,34,36,38,39,40,41],python:[1,2,3,4,5,6,8,11,12,13,14,16,21,22,26,27,29,33,34,37,38,39,40,41],pytorch:[0,24,26,27,32],pywrap_tf:[3,4],q:[5,6,8,11,23,29,33,35,41],qp:8,qquad:[2,11,13,25,37,38,41],qr:[5,6,25,33],quad:[1,13,25,37,39,40,41],quadrat:[0,8,9,13,15,16,32,37],qualit:[4,9,26,27,29],qualiti:[0,9,15,16,24,32,33],quantifi:[1,40,41],quantil:10,quantit:[0,6,9,26,27,32,35],quantiti:[0,2,5,6,7,9,10,11,12,14,16,25,29,32,33,34,35,36,39,41],quantum:[4,12,31,32,38,39],quartil:[0,33],quench:5,queri:9,question:[0,5,6,9,11,12,13,26,30,32,33,34,35,37,38,39],qugan:4,quick:[4,29],quick_execut:[3,4],quickli:[1,3,9,11,13,23,36,37,40,41],quit:[1,5,6,9,10,12,33,35,38,39,40,41],quot:[4,32],r2:[0,5,6,27,32,33,34,36],r2_score:[0,32,33],r2score:[0,32],r:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,21,23,24,25,26,29,33,34,35,36,37,38,39,41],r_1:9,r_2:9,r_j:9,r_m:9,rad:[0,33],radial:[0,8,12,33,38,39],radioact:29,radiu:[0,1,9,33,40,41],rag:2,rain:9,rais:[0,2,13,23,32,34,38,41],ramp:[1,40,41],ran0:29,ran1:29,ran2:29,ran3:29,rand:[0,4,5,6,9,10,13,15,16,21,23,25,32,33,34,35,36,37,38,41],randint:[6,9,13,21,35,37,38],randn:[0,1,2,5,6,9,11,13,15,16,21,23,32,33,34,35,36,37,38,39,40,41],random:[0,1,2,3,4,5,6,8,9,13,14,15,16,21,23,24,25,26,32,33,34,35,37,38,39,40,41],random_forest_model:10,random_index:[13,21,37,38],random_indic:[1,3,39,40,41],random_st:[0,7,8,9,10,11,33,36,38,39],randomforestclassifi:10,randomizedsearchcv:36,randomli:[1,6,9,13,14,21,23,35,36,37,38,39,40,41],randuniform:36,rang:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,21,23,25,29,32,33,34,35,36,37,38,39,40,41],rangl:[0,6,11,29,32,33],rangle_x:29,rank:[5,33],rankdir:4,raphson:[1,8,13,39,40],rapidli:[0,32],rare:[1,13,32,35,36,37,38,39,40,41],rate:[0,1,2,3,4,8,9,10,12,13,22,27,33,36,39,40],rather:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,25,29,32,33,34,35,36,37,38,39,40,41],ratio:[4,7,9,10,11,36],rational:[0,32],ravel:[5,6,7,8,9,10,11,13,23,25,33,35,36,37,41],raw:3,raw_df:33,rbf:[8,11,12,38,39],rbf_kernel_svm_clf:8,rbf_pca:11,rc:[0,29,33],rcond:[0,32,33],rcparam:[0,1,3,7,8,9,10,29,32,36,39,40,41],re:[2,4,13,36,37,41],reach:[1,4,5,6,7,9,10,11,12,13,14,23,34,35,36,37,38,39,40,41],read:[0,2,3,4,5,6,7,8,11,12,16,21,22,23,25,26,27,28,29,31,34,36,37,38,39,40,41],read_csv:[0,6,7,9,32,33,35,36],read_fwf:[0,32],reader:[0,6,25,29,32,33,34],readi:[0,1,5,6,8,10,11,12,23,25,26,32,34,35,39,40,41],readili:[1,39,40,41],readthedoc:24,real:[0,1,2,4,7,10,11,12,13,23,25,33,35,36,38,39,40,41],real_loss:4,real_output:4,realist:8,realiti:29,realiz:[1,12,38,39,40,41],realli:[0,1,32,40,41],rearrang:[13,37,38],reason:[0,1,3,4,10,13,31,32,36,37,38,40,41],reassign:[1,40,41],reat:[23,41],reber:[23,41],recal:[5,6,9,10,11,12,25,29,32,33,34,35,36,37,39],recast:3,receiv:[1,3,10,12,29,38,39,40,41],recent:[0,2,3,4,6,9,10,13,15,21,26,31,32,34,35,36,37,38,41],recept:[3,12,38,39],receptive_field:3,recip:[0,6,7,25,26,27,32,33,36],reciproc:[5,34],recogn:[0,4,5,10,32,34,35],recognit:[0,1,3,12,28,31,32,38,39,40,41],recommend:[0,2,3,4,5,6,8,13,15,18,21,22,24,25,26,27,31,34,35,39,40,41],reconsid:9,reconstruct:11,record:[10,20,26,27,28,30,32,37,38],rectangl:[9,13,36,37],rectangular:[5,33],rectifi:[1,3,12,38,39,40,41],recur:[0,24,32],recurr:[0,1,24,32,40,41],recurs:[9,24,25,32],red:[0,3,4,6,8,9,21,35,37],redefin:[0,10,32,33],redefinit:34,reduc:[1,3,5,6,9,10,11,13,21,32,34,35,36,37,38,39,40,41],reduct:[0,10,11,24,29,32,33],refer:[0,1,2,3,5,6,7,11,12,13,14,20,25,26,27,31,32,33,35,36,37,38,39,40,41],referenc:[2,41],refin:[12,38,39],refit:[6,35],reflect:[0,1,4,5,26,27,29,32,40,41],refresh:[24,32],refreshprogrammingskil:32,reg:[10,11],regard:[1,9,13,37,40,41],regardless:[12,38,39],region:[3,4,6,9,12,26,38,39],regist:[6,26,29],reglasso:[5,34],regr_1:[0,9],regr_2:[0,9],regr_3:[0,9],regress:[1,8,11,12,15,16,21,22,23,24,25,40,41],regressor:[0,7,10,23,32,36,41],regridg:[0,5,6,34,35,36],regular:[0,3,4,5,6,7,9,13,17,23,27,30,32,33,34,35,37,38],regularis:6,reilli:[0,15,31,32],reinforc:[0,8,24,32,41],reiniti:[23,41],reiter:[1,40,41],reject:7,rel:[0,4,6,7,9,12,13,29,32,33,35,36,37,38,39],relat:[0,1,3,4,5,11,13,14,25,29,32,34,35,37,38,40,41],relationship:[0,4,9,32],relativeerror:[0,32,33],releas:[1,3,4,6,13,24,26,27,32,35,37,40,41],relev:[0,1,5,7,11,15,21,22,23,24,26,27,29,32,40,41],reli:[0,6,8,32],reliabilti:[26,27],reliabl:[7,29,36],relu:[3,4,23,27,39],remain:[1,2,4,6,12,25,29,33,34,35,36,38,39,40,41],remaind:29,reman:[2,41],remark:[1,40,41],rememb:[0,8,13,25,26,27,32,37,38],remind:[0,5,11,13,25,29,33,34,35],remov:[0,4,5,6,32,33,34,35],render:[0,32,33],reorder:[5,7,33,34,36],reorgan:[0,32],repeat:[0,1,3,4,5,6,9,10,11,13,14,21,22,25,26,27,29,32,34,35,36,37,38,39,40,41],repeated:32,repeatedli:[0,6,10,13,35,37,38],repet:3,repetit:[6,32,33,35,36,37],rephras:[13,36,37],replac:[0,1,3,4,5,6,10,12,14,15,16,21,22,24,26,27,32,33,34,35,36,39,40,41],replica:[6,35],repo:[26,27],report:[20,32,37,38],reportexampl:[20,26],reportsampl:20,repositori:[0,4,26,27,32,33],repres:[0,1,2,3,4,5,6,7,8,9,10,12,13,27,29,32,33,34,35,36,37,38],represent:[0,1,3,6,29,32,35,36,39,40,41],representd:3,reproduc:[0,5,6,9,12,15,16,23,24,26,29,32,33,39,41],repuls:[0,32],request:[0,13,21,32,37,38],requir:[0,1,3,4,5,6,8,9,11,12,13,17,25,32,33,34,35,36,37,38,39,40],rerun:[23,41],res1:[2,41],res2:[2,41],res3:[2,41],res_analyt:[2,41],res_analytical1:[2,41],res_analytical2:[2,41],res_analytical3:[2,41],resaml:[6,26],resampl:[0,7,10,19,23,24,32,33,36,37,41],rescal:[0,11,12,33,38,39],rescu:[5,34,35],reseach:[6,26],research:[0,4,13,21,24,31,32,37,38],resembl:[6,29,35],reserv:[1,5,6,29,34,35,39,40,41],reset:[23,41],reset_weight:[23,41],reshap:[0,1,2,3,4,6,8,9,10,15,16,23,25,32,33,35,39,40,41],residenti:[0,33],residu:[0,5,13,32,37],resiz:[5,33],resourc:32,respect:[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,21,23,26,29,32,33,34,35,36,37,38,39,40,41],respond:[12,38,39],respons:[0,7,9,12,32,33,36,38,39],rest:[0,5,33],restat:[0,12,32,39],restor:4,restored_discrimin:4,restored_gener:4,restrict:[0,3,9,12,32,38,39],result:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,21,22,23,24,25,26,27,29,32,35,36,37,38,39,40,41],retail:[0,33],retain:[5,6,33,35,36],rethink:35,return_data:14,return_sequ:4,return_x_i:9,reus:[1,3,6,18,19,20,26,27,40,41],reveal:[0,12,32,38,39],revers:[1,23,25,40,41],review:[24,25],revisit:[14,39],revolut:32,reward:[0,4,32],rewrit:[0,3,5,6,7,8,10,11,12,13,19,25,26,29,34,36,37,38,39],rewritten:[2,6,8,10,29,35,41],rewrot:[13,36,37],rf:10,rgb:3,rgoj5yh7evk:24,rh:[6,35],rho2:[23,41],rho:[0,10,13,21,23,32,37,38,41],rho_1:10,rho_2:10,rho_m:10,rich:[0,32],ride:9,rideclass:9,ridedata:9,ridg:[7,11,13,21,22,24,27,32],ridge_fit:35,ridge_fit_beta:35,ridge_sk:6,ridgebeta:[5,34],ridgecv:36,right:[0,1,2,3,5,6,7,8,9,10,12,13,14,16,17,19,23,25,26,29,32,33,34,35,36,37,38,39,40,41],right_sid:[2,41],rightarrow:[0,1,5,6,8,11,12,13,29,32,33,35,36,37,38,39,40,41],rigor:[0,32],ring:6,rise:[0,32],risk:[0,13,15,16,32,36,37,38],rival:4,river:[0,33],rm:[0,23,29,33,41],rms_prop:[23,41],rmse:[0,33],rmsporp:[13,21,37,38],rmsprop:[1,3,4,13,22,27,40,41],rnd_clf:10,rng:29,rnn1:4,rnn2:4,rnn:[4,12,38,39],rnn_2layer:4,rnn_input:4,rnn_output:4,rnn_train:4,rntrick1:29,rntrick2:29,rntrick3:29,rntrick4:29,ro:[0,13,21,32,36,37,38],robert:[18,26,31],robust:[0,32],robustscal:[0,33],roc:[7,10],role:[0,2,5,6,8,24,32,33,34,35,36,41],roll:6,room:[0,30,32,33],root:[0,5,9,13,29,32,33,34,36,37,38],rot:32,rotat:[1,8,9,10,40,41],rotation_matrix:9,roughli:[1,3,40,41],round:[0,7,9,13,23,33,36,37,38,41],routin:[13,25,32,36,37],row:[0,1,2,5,6,7,9,11,23,25,32,33,34,35,36,39,40,41],rr:[5,33],rrr:[5,33],rug:[13,36,37,38],rule:[0,1,5,6,13,26,32,33,34,35,37,38,40,41],run:[0,1,2,3,4,5,6,8,9,11,13,15,21,23,24,26,27,32,33,34,35,36,37,38,40,41],runtim:[1,6,14,40,41],runtimewarn:[1,6,35,39,40,41],russel:32,rust:[0,15,24,25,32],rv_frozen:36,rvert:[1,39,40,41],rvert_2:[1,39,40,41],s:[0,1,2,3,4,5,6,7,9,11,12,13,16,17,18,23,24,25,26,27,29,32,33,34,39,40,41],s_1:6,s_:[3,6],s_i:[6,7,36],s_j:6,s_k:6,saddl:[13,36,37,38],sai:[0,1,2,3,4,5,6,7,8,9,10,11,12,25,26,29,32,33,34,35,36,39,40,41],said:[6,9,13,36,37],sake:[0,5,7,11,32,33,34,36],sale:[0,32],sam:32,same:[0,1,2,3,4,5,6,8,9,11,12,14,17,23,25,26,29,32,33,34,36,39,40,41],samm:10,sampl:[0,1,2,3,4,5,6,7,8,9,10,13,14,15,16,19,21,24,25,26,29,32,33,34,35,36,37,38,39,40,41],sample_vari:14,sample_weight:[3,4],sampleexptvari:29,samwis:32,sastri:11,satisfactori:[0,32],satisfi:[1,2,3,6,8,13,17,25,29,35,36,37,39,40,41],satur:[1,6,35,40,41],save:[0,4,6,7,9,13,21,32,33,35,36,37,38],save_fig:[0,6,7,9,10,32,33,35,36],savefig:[0,4,6,7,9,29,32,33,35,36],savetxt:4,saw:[5,33],scalabl:10,scalar:[2,5,6,10,13,33,34,35,38,41],scale:[0,1,3,5,6,7,8,9,10,11,12,13,15,16,17,21,23,24,25,26,27,30,32,34,36,37,38,39,40,41],scale_mean:4,scale_std:4,scaler:[0,7,8,9,10,11,23,33,35,41],scan:[5,7,34,35,36],scari:[5,34,35],scatter:[0,1,6,7,8,9,14,21,32,33,34,35,36,40,41],scenario:[6,13,36,37,38],schedul:[13,30,37,38],scheduler_arg:[23,41],schedulers_bia:[23,41],schedulers_weight:[23,41],scheme:[1,13,36,37,38,40],schrage:29,scienc:[0,1,10,12,13,24,28,29,30,31,33,36,37,38,39,40,41],scientif:[0,15,24,26,27,32,37,38],scientist:[0,32],scikit:[3,5,6,7,8,9,10,13,21,24,25,26,27,28,31,38],scikit_learn:[0,16],scikitlearn:32,scikitplot:[7,10,36],scipi:[0,3,5,6,13,15,24,25,26,32,33,34,35,36,37],scl:6,score:[0,1,3,6,7,9,10,11,15,16,22,23,26,27,30,32,33,35,36,37,38,39,40,41],scores_kfold:[6,35,36],scratch:[1,13,38,39,40,41],sdg:[13,21,37,38],seaborn:[0,1,3,6,7,21,23,27,32,33,36,39,40,41],seamless:[0,15,24,26,32],seamlessli:[23,41],search:[0,1,3,5,9,13,32,34,37,38,39,40,41],sec:6,second:[0,2,3,4,5,6,7,8,9,11,12,14,15,16,23,24,25,26,27,29,30,32,33,35,36,39,41],second_correct:[23,41],second_mo:[21,37,38],second_term:[21,37,38],secondeigvector:11,secondli:[12,39,40],section:[4,11,17,25,29,33,34,36,37,38],sector:[0,32],see:[0,1,2,3,4,5,6,7,8,10,11,12,13,15,16,17,18,19,21,23,24,25,26,27,29,32,33,34,35,36,37,38,39,40,41],seed:[0,1,2,3,4,5,6,8,9,11,13,14,15,16,21,23,26,29,32,33,34,35,36,37,38,39,40,41],seed_imag:4,seek:[1,2,8,40,41],seem:[1,3,4,37,38,39,40,41],seemingli:[0,32],seen:[0,1,3,5,10,12,17,29,32,39,40,41],segment:[13,23,36,37,41],seismic:6,seldomli:[0,32],select:[1,5,6,8,9,10,11,17,26,27,28,29,30,31,32,33,34,35,39,40,41],self:[1,3,4,5,21,23,33,34,39,40,41],sell:4,semest:[7,28,36],semi:[8,13,36,37],semilogx:6,send:[5,12,13,30,32,37,38,39],senior:[28,30],sens:[0,4,6,8,26,32,35],sensibl:3,sensit:[0,5,6,9,13,32,33,34,35,38],sent:[2,35,41],sentdex:[],sentenc:[4,12,38,39],sep:[33,35],separ:[0,1,2,4,6,8,9,12,14,15,24,26,29,32,35,38,39,40,41],septemb:[16,17,18,19,20,26,32,33,37],sequenc:[2,3,4,7,9,10,12,13,24,25,29,32,36,37,38,39],sequenti:[1,3,4,10,12,29,38,39,40,41],seri:[0,1,2,3,4,5,6,10,11,12,13,25,32,33,34,35,36,37,38,39,40,41],serif:[0,7,29,32,36],serv:[0,1,2,3,5,7,13,21,26,31,32,33,34,35,36,37,38,40,41],servic:[26,27],session:[1,20,26,28,30,32,35,36,37,38,39,40,41],set:[1,4,5,6,7,8,10,11,13,14,16,17,21,24,25,26,27,29,30,34,35,37,38],set_major_formatt:[6,26],set_major_loc:[6,26],set_tick:[1,8,40,41],set_ticklabel:[1,40,41],set_titl:[0,1,2,3,7,12,14,23,32,36,38,39,40,41],set_xlabel:[0,1,2,3,7,12,23,32,36,38,39,40,41],set_xlim:[7,12,36,38,39],set_xticklabel:[1,40,41],set_ylabel:[0,1,2,3,7,23,32,36,39,40,41],set_ylim:[7,12,36,38,39],set_ytick:[7,36],set_yticklabel:[1,6,40,41],set_zlim:[6,26],seth:4,setminu:[6,36],setosa:[8,9],setosa_or_versicolor:8,setp:[6,35],setup:[1,4,6,8,21,23,24,27,32,33,39,40],sever:[0,3,5,6,7,8,9,11,12,13,21,24,25,27,29,32,33,34,35,36,37,38,39],sgd:[1,3,21,22,27,36,40,41],sgd_clf:8,sgdclassifi:8,sgdreg:[13,36,37],sgdregressor:[13,36,37],sgn:[5,33,34],shallow:[13,37,38],shape:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,23,25,32,33,34,35,36,37,39,40,41],shape_bas:[],share:[1,3,23,32,40,41],she:[7,36],shell:21,shift:[1,6,12,29,34,38,39,40,41],ship:3,shire:32,shortcom:[13,36,37,38],shorten:4,shorter:29,shorthand:[32,35],shortli:[25,32],should:[0,2,3,5,6,8,9,11,12,13,15,16,21,22,23,25,26,27,29,32,33,34,35,37,38,39],should_sync:[3,4],show:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],show_shap:4,shown:[0,4,5,7,8,11,12,13,21,23,25,33,36,37,38,39,41],shrink:[3,5,6,8,11,26,33,34],shrinkag:[5,6,33,34],shrunk:11,shuffl:[0,1,3,4,6,13,21,33,35,36,37,38,39,40,41],side:[0,2,5,8,12,13,25,27,32,34,35,36,37,38,39,41],sigh:[24,32],sigma0:29,sigma1:29,sigma2:29,sigma:[0,1,5,6,7,10,11,12,13,17,18,19,25,26,29,32,33,34,35,36,37,38,39,40,41],sigma_0:[5,33,34],sigma_1:[5,33,34],sigma_2:[5,33,34],sigma_:[5,25,32,33,34,35],sigma_fn:[7,12,36,38,39],sigma_i:[0,5,32,33,34],sigma_j:[5,17,33,34],sigma_m:[6,29,35],sigma_n:[11,29],sigma_t:[13,37,38],sigma_x:29,sigmoid:[1,2,4,7,8,10,12,23,27,36,37,38,39],sigmundson:[6,33,34],sign:[1,2,7,8,10,29,30,36,39,40,41],signal:[1,3,10,12,38,39,40,41],signatur:[3,4],signifi:4,signific:[1,40,41],significantli:[1,13,21,29,36,37,38,39,40,41],sim:[4,5,6,13,18,26,29,34,35,37,38],similar:[0,1,2,3,4,5,6,7,8,9,10,11,14,17,23,24,25,26,27,32,33,34,35,36,40,41],similarli:[0,1,3,5,8,10,13,20,29,32,33,34,40,41],similiar:[23,41],simpl:[1,2,3,5,6,7,8,10,11,12,14,15,16,17,19,21,22,23,24,25,26,27,29,35,39,40,41],simple_rnn:4,simplefilt:[23,41],simplepredict:10,simpler:[0,1,5,6,7,13,16,19,21,22,23,24,26,27,32,34,37,38,40,41],simplernn:4,simplest:[0,1,3,4,9,10,12,14,32,38,39,40,41],simpletre:10,simpli:[0,1,2,4,5,6,8,9,10,11,12,15,23,24,25,26,27,29,32,33,34,35,38,39,40,41],simplic:[2,5,6,7,8,9,10,11,12,14,33,34,35,36,38,39,41],simplicti:[5,33],simplifi:[0,6,9,15,24,26,32,33,34,35],simplist:[3,6,29,35],simul:[6,35],simultan:[6,35],sin:[0,1,2,3,4,9,12,13,21,25,32,37,38,39,40,41],sinc:[0,1,2,3,5,6,7,8,9,10,11,13,21,23,25,29,31,32,33,34,35,36,37,38,39,40,41],sine:[3,12,38,39],singl:[0,1,2,3,5,6,7,8,9,12,13,23,25,27,29,32,33,34,35,36,37,40,41],singular:[0,6,13,25,26,32,34,35,36,37],sinusoid:3,site:[0,1,2,3,4,6,7,8,11,13,21,23,26,27,28,32,33,34,36,38,39,40,41],situat:[0,4,5,7,13,21,29,32,33,36,37,38],six:[3,29],size:[0,1,2,3,4,5,6,8,9,10,11,13,21,22,23,25,26,27,29,32,34,35,36,37,38,39,40,41],sketch:10,ski:9,skill:[0,32],skip:[3,4,11],skiprow:33,skl:[0,6,32,33,34],sklearn:[0,1,3,5,6,7,8,9,10,11,13,14,23,32,33,34,35,36,37,38,39,40,41],skplt:[7,10,36],skrankefunct:[23,41],sl:[6,34,36],slack:8,slice:[2,25,32,41],slide:[0,3,15,16,26,27,29,32,33,35,37,39,40,41],slight:[6,13,35,37,38],slightli:[1,2,3,5,6,7,10,29,33,34,35,36,40,41],slope:[8,11,12,38,39],slow:[0,2,8,13,33,36,37,38,41],slower:[5,25,32,33,34],slowest:25,slowli:[12,39],slp:[1,39,40,41],small:[0,1,2,3,5,6,8,9,10,11,12,13,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],smaller:[0,1,2,5,6,8,9,11,13,29,32,33,34,35,36,37,38,40,41],smallest:[0,4,14,15,16,32,36],smallest_row_index:14,smooth:[0,3,6,9,13,26,32,36,37],sn:[0,1,3,6,7,23,32,33,36,39,40,41],sne:11,sneak:32,so:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],soar:6,social:[0,32],societ:32,soft:[1,7,10,12,36,38,39,40,41],soften:8,softmax:[3,7,23,36,41],softwar:[0,8,15,24,25],sol:8,sole:[0,6,32],solid:[0,7,32,36],solut:[0,1,2,3,5,6,8,10,11,13,17,18,25,26,27,29,32,33,34,35,36,37,38,40],solution_ev:37,soluton:[2,41],solv:[0,1,3,5,6,8,10,11,12,13,25,26,27,32,33,38,39,40],solve_expdec:[2,41],solve_ode_deep_neural_network:[2,41],solve_ode_neural_network:[2,41],solve_pde_deep_neural_network:[2,41],solveod:[2,41],solveode_popul:[2,41],solver:[2,7,8,9,10,11,21,25,36,41],some:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,23,29,34,35,38,39,40,41],some_model:[6,33,34],somehow:4,someth:[0,1,3,4,7,9,11,26,27,29,32,33,36,39,40,41],sometim:[0,1,11,12,13,14,32,33,37,38,39,40,41],somewhat:[38,39],soon:[25,30],sophist:[0,32],sopt:[13,37],sort:[5,6,9,11,29,33,35],sound:[3,5,34,35],sourc:[0,1,3,6,15,24,25,26,27,29,32,33,35,40,41],space:[0,1,4,5,8,9,11,12,13,14,21,29,33,34,35,36,37,38,39,40,41],span:[0,3,5,9,11,25,32,33],spare:[1,40,41],spars:[2,3,6,25,32],sparse_add:2,sparse_mtx:[25,32],sparsecategoricalcrossentropi:3,sparseobject:[],sparsiti:10,spatial:[1,2,3,12,38,39,40,41],speak:29,special:[6,7,10,12,13,25,29,32,33,34,35,36,37,39],specif:[0,1,2,3,4,5,6,7,8,9,11,12,16,23,24,25,26,27,29,31,32,33,34,35,36,38,39,40],specifi:[0,3,5,6,7,9,11,13,14,21,23,26,29,32,34,35,36,37,38],specifici:[0,10,32],spectacular:3,spectral:[1,40,41],speech:[0,1,3,4,12,32,38,39,40,41],speed:[1,2,4,13,37,38,39,40,41],spend:29,spent:[26,27],sphere:[0,33],spin:6,spite:[0,32],spline:8,split:[1,3,4,5,6,8,9,10,11,14,17,23,26,29,34,35,36,40,41],splite:0,splitter:[1,10,40,41],spontan:29,spot:3,spread:[0,11,29,32,33],spring:[23,41],springer:[18,26,31,32,34],spuriou:[13,21,37,38],sqquar:34,sqrsignal:3,sqrt:[0,3,4,5,6,8,10,11,13,17,21,23,29,33,34,35,37,38,41],squar:[1,2,3,4,7,8,9,11,13,14,15,16,17,19,21,22,24,25,27,29,35,36,37,38,39,40,41],squarederror:10,squaredeuclidean:14,squash:[12,38,39],srtm:[6,26],srtm_data_norway_1:[6,26],stabil:[5,26,27],stabl:[0,4,5,6,7,9,11,24,32,33,34,36],stack:[3,4],stacklevel:[0,32],stage:[5,13,21,23,26,27,37,38,41],stai:[0,2,4,5,11,17,23,32,33,41],stand:[0,5,9,12,32,33,34,38,39],standadscal:33,standard:[0,1,4,5,6,7,8,10,12,15,16,17,19,21,22,25,26,27,29,32,34,36,38,39,40,41],standard_basi:[],standardscal:[0,6,7,8,9,10,11,33,34,35],stanford:[13,36,41],start:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,20,22,23,25,26,27,29,30,32,33,35,36,37,39,40,41],start_box:[13,38],start_nod:[13,38],start_tim:14,starting_point:21,stat:[6,33,35,36],state:[1,2,4,5,6,7,8,10,11,12,13,24,27,29,33,34,35,36,37,38,39,40,41],statement:[0,7,25,36],stationari:[36,37],statist:[0,1,3,4,7,9,10,11,12,13,14,18,25,26,28,31,33,36,37,38,39,40,41],statu:[0,7,11,32,33,36],stavang:[6,26],std:[0,4,6,32,33,35],stdout:[23,41],steep:[13,21,36,37,38],steepest:38,step:[0,1,2,3,4,6,7,9,10,11,12,13,14,21,22,23,25,26,32,39,40,41],step_fn:[7,12,36,38,39],step_length:[13,37,38],step_num:[3,4],step_siz:37,steps_list:9,steps_per_epoch:[3,4],stereo:3,still:[0,2,3,5,6,11,13,17,29,35,36,37,38,41],stimuli:[12,38,39],stk2100:[31,32],stk3155:[15,26,27,28,30],stk4021:[31,32],stk4051:[31,32],stk4155:[28,30],stk5000:31,stk:[31,32],stochast:[0,1,5,6,8,11,12,15,16,22,23,26,32,34,35,36,39,40,41],stock:4,stoke:[12,38,39],stone:[0,7,26,32,36],stop:[1,4,7,9,11,13,14,21,23,36,39,40,41],storag:[5,33],store:[0,1,2,3,6,11,13,23,26,29,32,37,38,39,40,41],storehaug:[30,32],str:[1,3,4,23,39,40,41],straight:[0,6,8,13,32,33,35,36,37],straightforward:[0,2,3,5,6,8,9,10,13,25,32,33,34,35,36,37,41],strategi:[0,1,9,32,39,40,41],stratifi:[6,35],strength:[0,5,14,33],stretch:11,strict:[8,13,36,37],strictli:[8,13,36,37],stride:[4,25],strike:6,string:[1,39,40,41],stroke:[7,36],strong:[3,6,9,10,12,25,29,35,38,39],strongli:[0,8,23,24,25,27,33,41],stronli:[0,33],structur:[0,1,2,3,6,9,10,12,24,32,35,36,37,38,39,40,41],stuck:[1,13,36,37,38,39,40,41],student:[0,26,27,28,30,31,32,41],studi:[0,3,4,5,6,7,8,11,12,13,17,19,21,23,24,26,27,31,32,33,34,37,38,39,41],studier:31,style:[0,7,9,25,32,36],sub:[9,12,38,39],subarg:[13,38],subdivid:[0,25,32],subfield:[0,32],subject:[6,8,29],submit:32,subplot:[0,1,3,4,6,7,8,9,10,13,14,23,26,32,33,35,36,37,39,40,41],subplots_adjust:[8,29],subprogram:[25,32],subract:[0,33],subroutin:[0,32],subscript:[1,39,40,41],subsequ:[1,4,5,6,12,25,29,33,35,38,39,40,41],subset:[1,6,9,12,13,24,32,35,36,37,38,39,40,41],subspac:[0,8,11,33],substanti:[9,10],substep:11,substitut:[3,6,12,25,35,38,39],subsubset:9,subtask:6,subtl:[1,40,41],subtract:[0,4,5,6,11,13,17,21,23,25,26,29,34,35,37,38,41],subtre:9,subval:[13,38],succeed:[0,4,32],success:[3,7,9,13,29,36,37],successfulli:[4,9],sudo:[0,15,24,26,32],suffer:[0,1,2,5,10,32,33,34,40,41],suffici:[1,6,8,11,13,35,36,37,39,40,41],suggest:[1,13,27,31,37,38,40,41],suit:[8,12,38,39],suitabl:[0,29,33],sum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,21,23,25,26,29,32,33,34,36,37,38,39,40,41],sum_:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,25,26,27,29,32,33,34,35,36,37,38,39,40,41],sum_i:[0,2,5,6,8,13,17,19,26,33,34,35,37,38,41],sum_j:6,sum_ja_:0,sum_k:[6,8,12,25,39,40],sum_logist:[13,37,38],sum_m:3,sum_n:3,sum_nx_:3,summar:[5,6,9,23,27,34,35,36,37,39,40,41],summari:[1,3,4,10,21,27,28,34,39,40,41],summat:[0,3,16,33],sundai:[17,18,19,20,21,22,23],sunni:9,superconduct:[33,34],superfici:3,superscript:[1,12,38,39,40],supervis:[0,5,6,7,9,12,24,32,33,35,36,38,39],supplement:[7,36],support:[0,1,9,10,11,13,24,32,33,37,38,40,41],suppos:[0,5,6,7,8,10,11,12,13,25,32,33,34,35,36,37,38,39],suppress:[5,13,34,37,38],sure:[0,1,4,6,23,26,40,41],surf:[6,26],surfac:[0,6,26,32],surpass:6,surpris:[0,32],surround:[3,24],survei:[0,5,6,32,33,34,35],svc:[8,9,10],svd:[0,6,11,17,32,35],svdinv:[5,34],svm:[8,9,10,11],svm_clf:[8,10],swath:[5,33],sy:[13,23,36,37,41],symbol:[1,5,11,13,24,29,32,33,34,37,38,39,40,41],symmeteri:[1,40,41],symmetr:[0,5,8,11,12,13,25,32,33,37,38,39],symmetri:[6,9],sympi:[0,15,24,26,32],synonim:29,syntax:[1,13,40],syntaxerror:[1,8,40],system:[0,1,3,4,6,7,9,10,12,13,15,23,24,25,26,32,36,37,38,39,40,41],systemat:[4,6,35],t0:[3,6,13,21,37,38],t1:[2,13,21,37,38,41],t2:[2,41],t3:[2,41],t:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,32,35,36,37,38,39,40,41],t_0:[2,9,13,37,38,41],t_1:[13,37,38],t_:[2,41],t_b:10,t_batch:[23,41],t_i:[1,2,5,12,27,33,39,40,41],t_j:[12,39],t_k:9,t_test:[23,41],t_train:[23,41],t_val:[23,41],tabl:[9,23,26,27,29,30,32,38,39,40,41],tabul:[0,32],tabular:32,tackl:4,tag:[2,3,4,5,6,7,12,13,14,21,25,29,33,36,37,38,39,41],taht:[0,32],tail:29,tailor:[2,8,11,32,41],taiwan:[0,32],take:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,21,23,24,25,26,29,32,33,34,35,36,37,38,39,40,41],taken:[0,1,3,6,10,13,25,32,35,37,38,39,40,41],tan:3,tangent:[1,4,12,13,36,37,38,39,40,41],tanh:[1,4,7,8,12,36,37,38,39,40,41],tape:[3,4],target:[0,1,3,4,5,6,7,8,9,10,11,12,23,27,32,33,34,35,36,37,38,39,40,41],target_nam:9,task:[0,1,3,6,9,11,12,14,20,23,26,32,35,38,39,40,41],tau:[3,5,29,34,35],taught:32,tax:[0,33],taylor:[2,13,36,37,41],taylornr:[13,36,37],tba:37,tc:8,td:[1,6,13,26,32,35,37,39,40],teach:32,team:[1,40,41],teaser:0,technic:[0,5,6,13,15,32,33,37,38],techniqu:[0,1,8,10,13,24,29,31,32,33,35,36,37,38,40,41],technolog:[0,1,32,39,40,41],tell:[0,4,6,10,11,13,29,35,37,38],temp1:[1,40,41],temp2:[1,40,41],temp:[1,40,41],temperatur:[0,9,32],temporarili:[1,40,41],ten:[3,17,32],tend:[3,5,6,8,9,10,12,13,14,21,33,34,35,37,38,39],tendenc:[0,32],tension:[6,35],tensor:[3,4],tensorflow:[0,2,4,8,14,15,23,24,25,26,27,28,31,32,33],term1:[5,6,11,26,33],term2:[5,6,11,26,33],term3:[5,6,11,26,33],term4:[5,6,11,26,33],term:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,21,23,26,29,32,33,34,36,37,38,40,41],termin:[0,4,5,9,10,13,15,21,32,33,37,38],terrain1:[6,26],terrain:[6,21,22,26,27],test:[3,4,5,6,7,8,9,10,13,17,19,21,22,25,26,29,35,36,37,38],test_acc:3,test_accuraci:[1,3,23,39,40,41],test_error:6,test_imag:[3,4],test_ind:[6,35,36],test_input:4,test_label:[3,4],test_loss:3,test_pr:[1,23,39,40,41],test_predict:[1,39,40,41],test_rnn:4,test_scor:[7,10,36],test_siz:[0,1,3,5,6,10,32,33,34,35,36,39,40,41],test_split:9,tester:34,testerror:[0,6,33,35],testi:4,testpredict:4,testx:4,text:[0,1,2,4,5,8,9,11,13,15,21,25,27,29,31,32,33,35,36,37,38,39,40,41],textbook:[17,21,22,26,27,33,35],textual:9,textur:[1,9,40,41],tf:[1,3,4,13,14,36,37,40,41],tfe_py_execut:[3,4],th:[0,1,2,5,6,7,9,12,13,14,15,16,25,26,29,32,33,34,35,36,37,38,39,40,41],than:[0,1,2,3,4,5,6,7,9,10,11,12,13,17,24,27,29,32,33,34,35,38,39,40,41],thank:[4,6,33,34,41],thats:[23,41],theano:[1,24,32,40,41],thei:[0,1,2,3,4,5,6,7,8,9,11,12,13,25,26,29,33,34,35,36,37,38,39,40,41],them:[0,1,3,4,6,8,9,10,11,12,13,23,25,26,27,32,33,34,35,37,38,39,40,41],theme:[0,32],themselv:[0,29,32],thenc:[6,35],theorem:[2,6,7,33,36,38,40,41],theoret:[0,4,10,32],theori:[0,1,3,8,9,12,13,18,24,26,31,32,34,37,38,39,40,41],thereaft:[0,5,6,11,12,15,16,17,25,26,27,32,35,39,40],therebi:[0,5,7,11,32,33,34,36],therefor:[0,1,2,3,4,6,7,8,11,13,29,32,33,35,36,37,38,39,40,41],therein:11,thereof:[0,6,13,32,35,37,38],thesi:41,theta:[1,4,13,21,29,37,38,39,40,41],theta_:[1,13,37,38,39,40,41],theta_i:[1,39,40,41],theta_linreg:[13,21,37,38],theta_t:[13,37,38],thetaand:[38,39],thetaor:[38,39],thetaxor:[38,39],thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,23,24,25,26,27,28,29,31,33,34,35,36,37,38,39,40,41],thing:[0,1,2,4,5,7,9,29,32,34,35,36,40,41],think:[0,1,3,4,6,9,12,13,14,23,29,32,35,36,37,38,39,40,41],third:[0,3,6,13,21,30,32,35,36,37,38],thirti:[7,36],thorughout:32,those:[0,3,5,6,8,9,10,11,21,25,26,27,28,32,33,35],though:[1,2,3,4,13,25,29,37,38,39,40,41],thought:[6,14,26,27,29,35],thousand:[0,1,26,32,33,37,38,40,41],thread:[3,4],three:[0,1,3,5,6,8,9,12,15,23,25,26,28,29,30,32,33,34,35,36,38,39,40,41],threshold:[1,3,9,10,11,12,13,23,37,38,39,40,41],through:[0,1,2,3,4,5,6,8,11,12,13,14,24,25,29,32,33,34,35,36,37,38,39,40,41],throughout:[0,4,5,14,23,24,25,29,32,41],thu:[0,1,2,5,6,7,8,10,11,12,13,21,26,30,32,33,34,35,36,37,38,39,40,41],thumb:[0,6,26,32,33],thursdai:[30,32,37,38],tibshirani:[6,18,26,28,31,32,33,35],tick_param:6,ticker:[6,13,26,29,36,37],tif:[6,26],tight_layout:[1,7,36,40,41],tightli:11,tild:[0,5,6,7,11,15,16,17,18,19,26,29,32,33,34,35,39,40,41],till:[0,4,7,8,9,10,12,25,32,33,36,37,39,40],time:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,21,23,24,25,26,27,29,32,33,34,35,36,39,40,41],timeit:4,timer:4,tini:[1,40,41],tip:3,titl:[0,1,2,3,4,6,7,8,9,10,13,21,26,29,32,33,35,36,37,38,39,40,41],tmp:[13,37,38],tmp_log:[3,4],tn:[2,3,7,41],to_categor:[1,3,4,39,40,41],to_categorical_numpi:[1,39,40,41],to_numer:[0,6,32,35],todai:3,togeth:[0,3,6,8,11,13,21,23,24,32,33,37,38,41],toi:[14,37,38],told:[13,37,38],toler:[2,6,14,41],tolist:4,tomographi:[12,38,39],too:[0,2,4,5,6,9,11,13,15,29,31,32,33,35,36,37,38,41],took:[8,32],tool:[0,1,3,6,13,24,33,35,37,38,40,41],toolbox:8,top:[0,3,5,6,9,10,18,24,32,34,35],topic:[0,5,6,7,8,24,26,27,33,34,36,41],topograph:26,topolog:[1,3,12,38,39,40,41],toposort:[],torkjellsdatt:[30,32],toss:[10,29],total:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,22,23,25,27,29,30,32,33,35,36,37,39,40,41],total_loss:4,totalclustervari:14,totalscatt:14,toward:[1,2,7,12,13,26,36,37,39,40,41],towardsdatasci:[37,38],town:[0,33],tp:[4,7],tpng:9,tpu:[13,21,24,32,37,38],tqdm:6,tr:33,trace:[2,3,4,13,38],trace_stack:[13,38],traceback:[0,2,3,4,6,9,10,13,15,26,32,34,35,36,37,38,41],traceback_util:[3,4],tracer:[2,13,38],tracing_count:[3,4],track:[3,13,14,25,36,37,38],tract:[0,33],tractabl:[0,32,33],trade:[5,9,19,34,35],tradeoff:[0,5,19,26,32,33,34,36],tradit:[0,1,4,6,32,35,39,40,41],train:[2,3,5,6,8,9,10,11,12,13,17,19,21,23,26,27,34,35,36,37,38],train_acc:[23,41],train_accuraci:[0,1,3,32,39,40,41],train_dataset:4,train_end:[0,1,33,39,40,41],train_error:[6,23,41],train_funct:[3,4],train_imag:[3,4],train_ind:[6,35,36],train_label:[3,4],train_pr:[1,39,40,41],train_siz:[0,1,3,33,39,40,41],train_step:4,train_test_split:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],train_test_split_numpi:[0,1,33,39,40,41],trainabl:4,trainable_vari:4,trained_model:[6,33,34],trainerror:[0,33],traini:4,training_checkpoint:4,training_dataset:4,training_gradi:[13,21,37,38],training_gradient_fun:[37,38],training_loss:[37,38],trainingerror:[6,35],trainpredict:4,trainscor:4,trainx:4,trait:[0,32],trajectori:4,trajectory_i:21,trajectory_x:21,transfer:9,transform:[0,5,6,7,8,9,10,11,12,13,21,23,24,25,32,33,34,35,36,37,38,39,41],transit:[6,12,38,39],translat:[1,4,6,10,33,34,39,40,41],translate_vjp:[],transpos:[1,5,11,25,33,34,39,40,41],travers:[0,5],treat:[0,1,3,6,12,13,29,32,33,34,35,36,37,38,39,40,41],tree:[0,1,6,24,26,32,39,40,41],tree_clf:[9,10],tree_clf_:9,tree_clf_sr:9,tree_reg1:9,tree_reg2:9,tree_reg:9,trend:29,treue:7,trevor:[18,26,31],tri:[2,3,4,9,13,36,37,38,41],triain:0,trial:[0,2,4,6,13,29,32,35,36,37],triangl:[13,36,37],triangular:25,trick:[3,4,8,11,13,21,29,37,38],trickier:29,tridiagon:25,trillion:24,trivial:[0,1,5,11,29,32,34,40,41],troubl:[0,8,12,33,39],truck:3,true_beta:[6,33,34],true_divid:[1,39,40],true_fun:[6,35],truli:32,truncat:21,tucker:8,tuesdai:[30,32,35,36,37,38,39,40,41],tumor:[7,9,27,36],tumour:[7,36],tunabl:[1,21,22,27,40,41],tune:[4,9,13,21,22,25,27,32,36,37,38],tupl:[2,13,23,38,41],turn:[0,1,5,6,7,8,9,10,11,12,13,19,25,26,29,32,33,35,36,37,38,39,40,41],tutori:[1,4,40,41],tv:[2,41],tveito:[2,41],tweak:[1,4,10,29,40,41],twice:[13,36,37],twist:11,two:[0,1,2,4,5,6,7,9,10,11,12,13,15,16,22,23,25,28,29,31,32,34,35,37,38,39,40,41],tx:[13,36,37,38,39],tx_1:[13,36,37],txt:4,ty:[13,36,37],type:[0,1,3,6,8,10,13,16,23,25,26,29,33,34,35,36,37,40],typeerror:[2,13,38],typic:[0,1,2,3,4,5,7,9,10,12,13,21,27,29,32,33,34,35,36,37,38,39,40,41],typo:[26,27],u:[0,2,5,6,8,10,11,12,17,25,32,33,34,38,39,41],u_:25,u_i:[12,38,39],u_m:10,ua:[0,32],ubuntu:[0,15,24,26,32],uci:[0,27,33],uio:[26,27,30,31],un:14,unari:[25,32],unary_f:[2,13,38],unary_oper:[2,13,38],unary_to_nari:[2,13,38],unbalanc:[6,9,35,36],unbias:[0,5,6,32,34,35],uncent:[6,34],uncertainti:[0,5,32,34,35],uncertitud:29,unchang:[1,3,40,41],uncorrel:[10,29],undefin:[5,33],under:[0,1,5,6,10,13,15,16,24,26,27,32,33,34,35,36,37,40,41],underdetermin:[0,32],underfit:[1,6,35,40,41],underflowproblem:[5,34,35],undergo:[5,34,35],undergradu:[28,30],underli:[0,1,9,13,29,32,37,38,40,41],underset:[4,14],understand:[0,1,3,5,6,10,13,14,21,23,24,32,33,34,36,37,38,40,41],understood:[8,13,37,38],undesir:8,undetermin:[5,8,34,35],undo:4,unexpect:[6,35],unexpected:29,unfair:[6,33,34],unfortun:[1,8,9,10,40,41],unicode_liter:[8,9],uniform:[0,1,5,6,11,13,15,16,26,29,32,33,36,37,39,40,41],uniformli:[13,29,36,37,38],unifrompdf:29,unimport:[13,36,37],union:[5,6,34,35,36],uniqu:[0,2,6,13,14,25,32,35,36,37,41],unique_cluster_label:14,unit:[0,1,3,4,5,10,12,29,32,33,34,38,39,40,41],unitari:[5,6,25,33],unitarili:[25,32],uniti:29,univari:29,univers:[0,1,2,13,15,24,26,27,28,30,32,33,34,35,36,37,38,40,41],unix:[1,40,41],unknow:[0,25,32],unknown:[0,1,3,4,5,6,8,10,13,16,21,25,32,33,34,35,37,38,39,40],unknowwn:[12,39],unlabel:[1,40,41],unless:[0,3,6,11,13,26,27,32,33,35,36,37],unlik:[1,3,8,13,36,37,38,40,41],unnecessarili:9,unord:3,unravel:[1,39,40,41],unrol:[3,11],unseen:[0,7,9,36],unstabl:[1,40,41],unsupervis:[0,1,4,12,24,32,38,39,40,41],unsymmetr:[25,32],untak:[],until:[1,2,4,9,12,13,14,23,36,37,38,39,40,41],untouch:0,unusu:[12,38,39],up:[1,3,4,5,6,8,10,11,13,14,16,18,24,25,26,27,29,30,34,37,38],updat:[1,2,10,12,13,14,21,23,37,38,39,40,41],update_chang:[23,41],update_matrix:[23,41],uploa:32,upload:[24,26,27,31],upon:[0,1,6,7,11,23,25,26,40,41],upper:[0,8,9,16,25,33],uppercas:[25,32],upsampl:4,upscal:4,url:41,us:[4,5,6,8,9,10,11,12,14,15,16,17,18,19,22,25,26,28,29,31,34,35],usa:[32,38],usag:[0,8,24,32,33],usd10000:[0,33],usd:[0,33],use_bia:4,use_multiprocess:[3,4],usecol:[0,32],useless:[1,39,40,41],user:[0,1,2,3,4,6,7,8,11,15,21,23,24,25,26,32,33,34,36,39,40,41],usernam:[26,27],userwarn:[3,6,21],usetex:29,usg:[6,26],usr:29,usual:[0,3,4,7,12,13,14,32,36,37,38,39],ut:[5,34],util:[0,1,3,4,6,7,10,14,23,27,32,33,35,36,40,41],ux:25,v0:29,v1:29,v2:29,v:[2,4,5,6,11,13,17,21,23,24,33,34,37,38,41],v_0:11,va:[1,40,41],val:[13,37,38],val_acc:[23,41],val_accuraci:3,val_error:[23,41],val_loss:4,val_set:[23,41],vale:[2,41],valid:[0,1,4,7,9,10,13,21,23,24,27,29,32,33,37,38,40,41],validation_batch_s:[3,4],validation_data:[3,4],validation_freq:[3,4],validation_split:[3,4],validation_step:[3,4],valu:[0,1,2,3,4,6,7,8,9,10,12,13,14,15,16,19,21,23,24,25,26,32,37,38,39,40,41],valuat:9,valued_at_a:[23,41],valued_at_z:[23,41],valueerror:[0,32],valy:4,van:[0,18,26,32,33,34,35],vandenbergh:[8,13,36,37],vandermond:[0,32],vanilla:[0,6,11,14,33,34],vanish:[1,4,13,29,36,37,40,41],var_x:29,varabl:8,varepsilon:[5,6,18,26,34,35],varepsilon_:[5,6,34,35],varepsilon_i:[5,6,34,35],vari:[0,1,3,5,6,10,15,16,32,35,39,40,41],variabl:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,21,23,25,32,33,34,35,38,39,40,41],varianc:[0,1,5,7,9,10,11,13,14,18,19,21,24,25,27,29,32,33,36,37,38,40,41],variance_i:[5,11,33],variance_x:[5,11,33],variant:[0,1,6,8,12,13,32,33,36,37,38,39,40,41],variat:[3,4,11,32],varieti:[0,3,12,15,24,26,32,38,39],variou:[1,3,5,6,7,8,9,11,12,13,16,18,21,22,23,24,25,26,29,33,34,37,38,39,40,41],varydimens:4,vastli:3,vaue:[1,40,41],vault:0,vdot:[2,13,36,37,41],ve:[26,27],vec:[6,35],vector:[0,1,2,3,4,5,6,7,9,10,11,13,14,16,17,21,23,24,34,35,36,37,40,41],vector_mean:14,ventur:[0,8,15,24,32],verbos:[1,3,4,40,41],veri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,26,27,29,31,32,33,34,35,36,37,38,39],verifi:[3,11,25,32],versatil:[8,32],versicolor:[8,9],version:[0,3,4,10,13,14,15,24,25,26,27,29,32,33,37,38],versu:[1,40,41],vert:[0,1,5,6,7,8,9,11,13,17,32,33,34,35,36,37,39,40],vert_1:[5,6,33,34,35],vert_2:[5,6,11,17,33,34,35],vi:[23,41],via:[0,5,6,7,8,9,10,11,12,15,19,23,24,25,26,28,29,30,32,33,34,35,36,38,39,41],vidal:11,video:[0,1,12,24,28,30,32,33,34,35,36,39,40,41],view:[1,3,5,6,12,13,21,29,31,32,34,35,37,38,39,40,41],vii:[23,41],viii:[23,41],violat:8,virginica:9,viridi:[0,1,2,3,23,32,39,40,41],virtual:[1,40,41],viscos:[13,37,38],viscou:[13,37,38],visibledeprecationwarn:2,vision:[0,3,32],visual:[0,3,11,12,15,23,24,32,33,38],visualis:[1,40,41],viz:[6,8,29],vjp:[2,13,38],vjp_argnum:[],vjpfun:[],vjpmaker:[],vjpnode:[13,38],vjps_dict:[],vmap:[13,37,38],vmax:[1,6,40,41],vmin:[1,6,40,41],voic:3,volum:[0,3,32],volume18:41,vote:10,voting_clf:10,votingclassifi:10,votingsimpl:10,vs:[0,2,4,6,33,35,37],vspace:[2,13,38],vstack:[5,11,23,25,29,32,33,41],vt:[5,33,34],w1:8,w2:[8,11],w3:8,w:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,23,25,29,32,33,35,36,37,38,39,40,41],w_1:[8,25],w_1x_1:8,w_1x_:8,w_2:[8,25],w_2x_2:8,w_2x_:8,w_3:25,w_4:25,w_:[1,12,38,39,40,41],w_h:[23,41],w_hidden:[2,41],w_i:[1,2,10,39,40,41],w_ix_i:[12,38,39],w_j:25,w_m:25,w_output:[2,41],w_px_:8,w_px_p:8,wa:[0,1,3,4,5,6,7,10,11,12,13,14,17,23,25,26,32,33,34,35,36,37,38,39,40,41],wai:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,17,25,27,29,32,33,34,36,37,38,39,40,41],walk:9,walker:29,wang:[0,32],want:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,23,24,26,27,29,32,33,34,35,36,37,38,39,40,41],warn:[0,1,4,8,23,32,33,39,40,41],warrant:[6,35,36],wast:[3,37,38],watch:[3,4,24],wave:3,wavelet:8,we:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,25,26,27,28,29,30,31,33,34,35,36,39],weak:[9,10,14],weather:[1,12,38,39,40,41],web:[24,28,30,32,33],weblink:27,webpag:32,websit:[6,25,26,28,32],wedg:[8,29],wednesdai:[30,32,35,36,37,38,39,40,41],wee:11,week:[0,5,6,7,26,27,28,30],weekli:[24,26,30,31,32,38],weight:[0,1,2,3,6,7,9,10,12,13,23,26,27,29,33,36,37,38],weight_arrai:[23,41],weigth:[2,41],welcom:[8,24],well:[0,1,2,3,4,5,6,7,8,9,10,12,13,15,16,19,20,21,23,24,25,26,27,29,31,32,33,34,35,36,37,38,39,40,41],went:8,were:[0,1,3,4,5,6,7,8,10,11,12,14,23,29,32,33,35,36,38,39,40,41],wessel:[0,18,26,32,33,34,35],what:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,23,24,25,26,27,29,36,37,38,39,40,41],whatev:3,when:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,21,23,25,26,27,29,32,33,34,35,36,39,40,41],whenev:[13,21,29,37,38],where:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41],wherea:[6,29,35],wherein:[1,12,38,39,40,41],whether:[0,3,5,7,9,26,27,29,32,34,36],which:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,23,24,25,26,27,28,29,30,32,33,34,35,36,39],whichev:[1,3,40,41],white:9,whiteboard:[19,33,34,35,36,37],who:[0,28,32],whole:[1,3,4,5,9,11,13,34,35,37,38,39,40,41],whose:[0,6,10,29,33,35],whow:[11,33],whrn:35,why:[0,1,3,6,13,21,26,34,36,37,40],wide:[0,1,3,6,7,12,15,24,25,26,32,35,36,38,39,40,41],widehat:[6,35],width:[0,3,8,9,32],wieringen:[0,18,26,32,33,34,35],win:10,wind:9,wing:[30,32],winther:[2,41],wiothout:[6,33,34],wiscons:[7,36],wisconsin:[10,23,27,41],wisdom:[6,34],wise:[0,1,5,12,13,33,37,38,39,40,41],wish:[0,2,5,7,8,11,13,14,23,25,26,27,32,33,36,37,41],with_std:[0,33,35],wither:6,within:[0,2,3,4,7,9,12,13,14,29,31,32,36,37,39,41],withinclust:14,without:[0,1,5,6,8,9,11,12,13,21,22,27,32,33,34,35,37,38,39,40,41],without_trac:[3,4],wo5dmep_bbi:[],won:[0,32],wonder:8,woodi:32,word:[0,1,3,4,5,6,7,14,23,29,32,33,34,35,40,41],work:[0,1,4,6,7,8,9,13,15,21,24,26,27,28,29,30,32,33,35,36,37,38,39,40,41],worker:[3,4],workshop:32,world:[0,8,32,33],worldwid:[0,32],wors:[0,1,3,4,6,32,35,40,41],worst:9,worth:9,worthi:[26,27],would:[0,1,3,5,6,7,8,9,10,11,12,13,25,26,27,29,32,33,34,35,36,37,38,39,40,41],wrap:[6,25,32],wrap_util:[2,13,38],wrapper:[0,32],write:[0,1,2,3,5,6,7,8,12,13,15,16,17,20,21,23,25,26,32,33,35,36,37,38,39,40],written:[0,2,3,5,11,12,13,16,24,25,26,27,29,32,33,34,35,36,37,38,39,41],wrong:[1,8,39,40,41],wrongli:10,wrote:[5,11,33],wrt:[10,13,21,37,38],wth:[10,13,21,37,38],www:[24,25,26,27,31,32,41],wx_1:8,x0:8,x1:[4,8,9,10,13,37,38],x1_exampl:8,x1d:8,x2:[8,9,10,13,37,38],x2d:[8,11],x2d_train:11,x2dsl:11,x3:8,x:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,25,26,27,29,32,35,36,37,38,39,40,41],x_0:[0,5,11,25,32,33,34,35],x_1:[0,2,5,6,7,8,9,10,11,13,23,25,29,32,33,34,35,36,37,38,39,40,41],x_2:[0,2,5,6,7,8,9,10,11,13,23,25,29,32,33,35,36,37,38,39,40,41],x_3:[8,25,29],x_4:25,x_:[0,2,3,5,6,8,10,11,13,14,18,25,26,29,32,33,34,35,36,37,41],x_batch:[23,41],x_center:11,x_data:[1,39,40,41],x_data_ful:[1,39,40,41],x_hidden:[2,41],x_i:[0,1,2,5,6,7,8,9,10,11,12,13,14,17,25,29,32,33,34,35,36,37,38,39,40,41],x_input:[2,41],x_ix_:[0,32],x_iy_i:8,x_j:[0,2,8,9,12,16,29,33,38,39,41],x_jy_j:8,x_k:[12,14,25,29,33,38,39],x_l:29,x_m:[6,12,25,29,35,38,39],x_n:[0,2,3,6,8,11,12,13,25,29,32,35,36,37,38,39,41],x_new:[2,9,10],x_offset:[6,33,34],x_output:[2,41],x_p:[3,7,9,36],x_poli:9,x_poly10:9,x_pred:4,x_prev:[2,41],x_reduc:11,x_scale:8,x_small:[13,37,38],x_test:[0,1,3,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],x_test_own:6,x_test_scal:[0,6,7,9,10,11,33,34,35],x_tot:4,x_train:[0,1,3,4,5,6,7,9,10,11,23,32,33,34,35,36,39,40,41],x_train_mean:[6,33,34,35],x_train_own:6,x_train_scal:[0,6,7,9,10,11,33,34,35],x_val:[1,23,40,41],xarrai:[24,32],xavier:[1,40,41],xbnew:[13,36,37],xcode:[0,15,24,26,32],xdclassiffierconfus:10,xdclassiffierroc:10,xg_clf:10,xgb:10,xgbclassifi:10,xgboost:9,xgboot:10,xgbregressor:10,xgparam:10,xgtree:10,xi:[8,13,21,37,38],xi_1:8,xi_:8,xi_i:8,xinv:[34,38,39],xk:8,xla:[3,4,13,21,24,32,37,38],xlabel:[0,1,2,3,4,5,6,7,8,9,10,13,21,26,29,32,33,34,35,36,37,38,40,41],xlim:[6,10,35],xm:9,xmesh:[13,37],xnew:[0,13,21,32,36,37,38],xp:29,xpanda:[0,33],xpd:[5,11,33],xplot:0,xs:9,xscale:[0,33],xsr:9,xt_x:[13,21,36,37,38],xtest:[6,35,36],xtick:[3,6,8,9,35],xtrain:[6,35,36],xu:[0,32],xx:[0,25,32],xy:[0,6,8,25,26,32],xytext:8,xz:[25,32],y1:4,y2:4,y3:4,y:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],y_0:[0,5,11,25,32,33,34,35],y_1:[0,5,8,9,11,13,25,32,33,34,35,36,37],y_1y_1:8,y_1y_1k:8,y_1y_2:8,y_1y_2k:8,y_1y_n:8,y_1y_nk:8,y_2:[0,5,8,9,11,25,32,33],y_2y_1:8,y_2y_1k:8,y_2y_2:8,y_2y_2k:8,y_3:[0,9,25],y_4:25,y_:[0,1,5,6,10,11,25,32,33,34,35,39,40,41],y_data:[0,1,5,6,32,33,34,35,36,39,40,41],y_data_ful:[1,39,40,41],y_decis:8,y_fit:[0,33],y_i:[0,1,5,6,7,8,9,10,11,12,13,15,16,17,18,19,25,26,27,32,33,34,35,36,37,38,39,40,41],y_if_:10,y_ix_:[0,32],y_ix_i:[7,8,13,33,36,37],y_iy_jk:8,y_j:[6,8,12,19,26,35,38,39],y_k:[12,38,39],y_m:25,y_model:[0,4,5,6,32,33,34,35,36],y_n:[8,13,36,37],y_ny_1:8,y_ny_1k:8,y_ny_2:8,y_ny_2k:8,y_ny_n:8,y_ny_nk:8,y_offset:[6,33,34],y_plot:9,y_pred1:9,y_pred2:9,y_pred:[0,1,4,6,7,8,9,10,33,34,35,36,39,40,41],y_pred_rf:10,y_pred_tre:10,y_proba:[7,10,36],y_scaler:[6,34,35],y_test:[0,1,3,4,5,6,7,9,10,11,32,33,34,35,36,39,40,41],y_test_onehot:[1,39,40,41],y_test_predict:[0,33],y_test_scal:35,y_tot:4,y_train:[0,1,3,4,5,6,7,9,10,11,32,33,34,35,36,39,40,41],y_train_mean:[6,33,34],y_train_onehot:[1,39,40,41],y_train_predict:[0,33],y_train_scal:[6,34,35],y_val:[1,40,41],yadav:41,yand:[23,38,39,40,41],ye:[3,6,7,35,36],year:[0,24,32,40],yet:[0,1,6,8,11,13,23,32,36,37,38,39,40,41],yi:[13,21,37,38],yield:[0,2,5,6,8,10,12,13,14,25,29,32,34,35,36,37,38,39,41],yk:8,ylabel:[0,1,2,3,4,5,6,7,8,9,10,13,21,26,29,32,33,34,35,36,37,38,40,41],ylim:[3,6,35],ym:9,ymesh:[13,37],yn:0,yo:[8,9,10],yor:[23,38,39,40,41],yoshua:[1,31,40,41],you:[0,1,2,3,4,5,6,8,9,10,11,13,15,16,17,19,20,21,22,23,24,25,26,27,29,30,31,33,34,35,36,37,38,39,40,41],young:[0,32],your:[1,2,4,5,6,8,11,13,17,19,20,21,22,23,24,25,26,34,35,36,37,38,39,40,41],yourself:[11,13,32,37],youtub:24,ypred:[6,35,36],ypredict2:[13,21,36,37,38],ypredict:[0,13,21,32,33,36,37,38],ypredictlasso:[5,34],ypredictol:[0,5,34,35],ypredictown:[6,33,34],ypredictownridg:[6,34],ypredictridg:[0,5,6,34,35,36],ypredictskl:[6,33,34],yridg:32,ys:9,ytest:[6,35,36],ytick:[3,6,8,9,35],ytild:[0,6,32,33,35],ytilde_test_ol:35,ytilde_test_ridg:35,ytildelasso:[5,34],ytildenp:[0,32,33],ytildeol:[0,5,34],ytildeownridg:[6,34],ytilderidg:[5,6,34],ytrain:[6,35,36],yx:[25,32],yxor:[23,38,39,40,41],yy:[25,32],yz:[25,32],z:[0,1,2,3,4,5,6,7,8,9,11,12,13,23,25,26,29,32,33,35,36,37,38,39,40,41],z_0:[25,32],z_1:[25,32],z_2:[25,32],z_:[1,2,12,25,32,39,40,41],z_c:[1,39,40,41],z_h:[1,23,39,40,41],z_hidden:[2,41],z_i:[1,12,38,39,40],z_j:[1,12,40,41],z_k:[12,33,39],z_m:[1,39,40],z_matric:[23,41],z_mod:9,z_o:[1,23,39,40,41],z_output:[2,41],zaman:29,zaxi:[6,26],zero:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,18,19,21,23,25,26,29,32,33,34,35,36,37,38,39,40,41],zeros_lik:4,zeroth:33,zfill:4,zip:[2,4,6,13,38],zm_h:[0,32],zn:[0,33],zone:[0,33],zoom:32,zx:[25,32],zy:[25,32],zz:[25,32]},titles:["3. Linear Regression","14. Building a Feed Forward Neural Network","15. Solving Differential Equations with Deep Learning","16. Convolutional Neural Networks","17. Recurrent neural networks: Overarching view","4. Ridge and Lasso Regression","5. Resampling Methods","6. Logistic Regression","8. Support Vector Machines, overarching aims","9. Decision trees, overarching aims","10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods","11. Basic ideas of the Principal Component Analysis (PCA)","13. Neural networks","7. Optimization, the central part of any Machine Learning algortithm","12. Clustering and Unsupervised Learning","Exercises week 34","Exercises week 35","Exercises week 36","Exercises week 37","Exercises week 38","Exercises week 39","Exercises week 41","Exercises week 42","Exercises weeks 43 and 44","Applied Data Analysis and Machine Learning","2. Linear Algebra, Handling of Arrays and more Python Features","Project 1 on Machine Learning, deadline October 9 (midnight), 2023","Project 2 on Machine Learning, deadline November 13 (Midnight)","Teaching schedule with links to material","1. Elements of Probability Theory and Statistical Data Analysis","Teachers and Grading","Textbooks","Week 34: Introduction to the course, Logistics and Practicalities","Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression","Week 36: Statistical interpretation of Linear Regression and Resampling techniques","Week 37: Statistical interpretations and Resampling Methods","Week 38: Logistic Regression and Optimization","Week 39: Optimization and Gradient Methods","Week 40: Gradient descent methods (continued) and start Neural networks","Week 41 Neural networks and constructing a neural network code","Week 42 Constructing a Neural Network code with introduction to Tensor flow","Week 43: Deep Learning: Constructing a Neural Network code and solving differential equations"],titleterms:{"1":[0,15,16,17,18,26,32,33],"12":39,"13":27,"14":35,"19":40,"2":[0,15,16,17,18,27,32,33],"2023":[26,30],"21":36,"23":36,"26":41,"3":[0,15,16,32,33],"31":33,"34":[15,32],"35":[16,33],"36":[17,34],"37":[18,35],"38":[19,36],"39":[20,21,37],"4":[0,33],"40":[21,38],"41":[21,39],"42":[22,40],"43":[23,41],"44":[23,41],"5":0,"7":34,"9":26,"case":[8,10,29,33,34,36,37],"class":36,"do":[1,32,34,35,37,38,39,40,41],"final":[12,21,27,33,34,37,38,39,41],"function":[0,1,6,7,8,10,11,12,13,21,23,26,27,29,32,33,34,35,36,37,38,39,40,41],"import":[5,21,25,32,33,34],"new":[4,34,35],A:[0,1,4,8,9,21,32,34,35,36,40,41],AND:[23,38,39,40,41],And:[21,32,33,34,36,37,38],But:[21,37,38],In:30,Is:[40,41],Ising:6,OR:[38,39,40,41],The:[0,1,2,3,5,6,7,8,9,11,12,17,23,24,32,33,34,35,36,37,38,39,40,41],To:[32,33],With:[4,34],about:[32,33],abov:[23,34,41],activ:[1,12,23,27,34,38,39,40,41],ad:[0,6,17,26,32,33,38,39],adaboost:10,adagrad:[13,21,37,38],adam:[13,21,37,38],adapt:[10,21,37,38],adjust:[1,39,40,41],advanc:21,adversari:4,again:[3,9,36],ai:32,aim:[8,9,17,18,19,20,21,22,23,32],aka:[32,33],al:21,algebra:[25,32],algorithm:[9,10,11,12,21,27,33,37,38,39,40],algortithm:[13,36,37],all:8,an:[0,4,10,32],analys:[5,33],analysi:[0,5,6,11,24,26,27,29,32,33,34,35],analyt:[0,16,17,21,41],ani:[13,36,37],anoth:[9,34,35],appli:24,approach:[0,8,14,32,35,37,38],approxim:[12,39],architectur:[1,39,40,41],argument:[37,38],arrai:[25,32],artifici:[38,39],assist:30,assumpt:[34,35],august:33,autocorrel:29,autograd:[2,13,21,37,38,41],automat:[13,21,37,38,41],avoid:[37,38],b:[17,26,27,37,38],back:[1,11,12,39,40,41],background:[24,26,27,35],bag:10,base:[13,21,35,37,38],basic:[0,5,7,9,10,11,25,33,34,35,36],batch:[1,37,38,40,41],bay:[5,34,35],befor:11,beta:[34,35],better:[8,38,39],bia:[6,26,35],bias:[39,40,41],binari:[1,39,40],bind:32,bird:10,boldsymbol:[33,34,35],boost:10,bootstrap:[6,10,35],boston:[0,33],breast:[1,40,41],brief:[32,35,36,37],bring:[12,39],build:[1,3,9,23,40,41],c:[26,27,32],calcul:33,can:[21,32,35,37,38],cancer:[1,7,9,11,36,40,41],cart:9,center:33,central:[13,24,29,35,36,37],chain:[12,39],challeng:36,chang:10,channel:32,chi:[0,32],choic:[40,41],choos:[1,39,40,41],cifar01:3,classic:11,classif:[1,9,10,23,27,36,39,40,41],classifi:[8,36],clip:[1,40,41],cluster:14,cnn:3,code:[0,1,2,5,9,11,12,13,14,21,23,27,32,33,34,35,36,37,38,39,40,41],collect:[1,3,39,40,41],come:36,commun:32,compact:36,compar:[2,10,41],comparison:34,compet:[21,37,38],complet:33,complex:[0,6,26,33],complic:[6,37,38],compon:11,comput:[9,37,38],computation:35,computerlab:32,con:9,concept:29,condit:[34,35,36,37],confid:35,conjug:[13,37],construct:[39,40,41],continu:38,contn:32,convex:[8,13,36,37],convolut:[3,12,38,39],correctli:[34,35],correl:[11,33,36],correspond:[36,37],cost:[1,10,23,33,34,35,36,37,39,40,41],cours:[24,31,32],covari:[5,11,29,33],cover:32,critic:27,cross:[6,26,35,36],cython:32,d:[26,27],data:[0,1,3,6,7,9,11,15,16,23,24,26,29,32,33,34,36,39,40,41],dataset:[1,3,39,40,41],deadlin:[26,27,32],decai:[2,37,38,41],decis:[9,10],decomposit:[5,11,17,25,33],deep:[1,2,36,40,41],defin:[1,32,39,40,41],definit:39,degre:[0,33],deliveri:[26,27],delta:35,dens:[0,32],deriv:[5,12,33,34,35,36,37,39,40,41],descent:[2,10,13,21,27,36,37,38,41],descript:26,design:33,detail:[3,32,41],develop:[1,39,40,41],diagon:11,differ:[8,27,37,38],different:21,differenti:[2,13,37,38,41],diffus:[2,41],dimension:[2,3,8,23,26,33,41],directli:[37,38],disadvantag:9,discret:29,discuss:36,distribut:[5,29,34,35],distrubut:[34,35],doe:[33,34,38,39],domain:29,dot:[37,38],down:[1,40,41],dropout:[1,40,41],e:[26,27],each:36,economi:33,electron:[26,27],element:[0,29,32,37,38],elimin:25,energi:32,ensembl:10,entropi:[9,36],environ:[0,15,32],equat:[0,2,12,32,33,34,36,37,39,41],error:[0,10,32,33,35],essenti:32,estim:[34,35],et:21,etc:32,euler:[2,41],evalu:[1,27,39,40,41],exampl:[0,1,2,3,4,6,7,8,9,10,21,32,33,34,35,36,37,38,39,40,41],exercis:[0,6,15,16,17,18,19,20,21,22,23,32,33,35,41],expect:[18,29,34,35],expens:35,experi:29,explor:[0,15,16,32],exponenti:[2,41],express:[17,18,32,33,36,37],extend:[36,37],extrapol:4,extrem:[10,32],ey:10,f:[26,27],fall:30,famili:[1,32,33,40,41],famou:25,fantast:33,featur:[9,25,33],feed:[1,12,38,39,40,41],find:[35,37,38],fine:[1,40,41],first:[4,12,27,32,33,34,36,37,39,41],fit:[0,10,32,34],fix:33,flow:40,fold:[35,36],forc:3,forest:10,format:[26,27,32],forward:[1,2,12,38,39,40,41],fourier:3,frank:[6,26,33],freedom:[0,33],frequent:33,frequentist:[0,32],fridai:36,from:[5,10,12,21,27,33,34,35,36,37,38,39],full:[2,39,40,41],funtion:[40,41],further:[3,5,33],g:26,gan:4,gate:[23,38,39,40,41],gaussian:25,gd:[13,21,37,38],gener:[4,9,32],geometr:[11,36,37],get:21,gini:9,good:[0,32],goodfellow:21,grade:[30,32],gradient:[1,2,10,13,21,27,36,37,38,40,41],grid:36,group:36,growth:[2,41],ha:24,hand:[23,41],handl:[25,32,33],happen:[34,35],have:32,heard:32,hessian:[33,36,37],hidden:[2,40,41],histogram:35,homework:[36,37],hous:[0,33],how:36,hyperbol:[38,39],hyperparamet:[1,39,40,41],hyperplan:8,i:[1,40,41],id3:9,idea:11,ideal:[36,37],ident:[34,35],identifi:35,ii:[32,41],iid:[34,35],iii:41,illustr:[34,38,39],implement:[1,39,40,41],implic:[5,33],improv:[1,37,39,40,41],includ:[13,21,36,37,38],increment:11,independ:[34,35],index:9,inform:30,input:[2,41],instal:[24,26,32],instructor:30,intercept:33,interpret:[5,11,32,33,34,35,36,37],interv:35,introduc:[11,13,21,33,37,38],introduct:[0,6,24,25,26,27,32,38,39,40],invers:[5,25,34],invert:33,iter:[10,37],its:33,iv:41,jacobian:[33,41],jax:[13,21,37,38],job:[38,39],julia:32,jungl:10,k:[35,36],kera:[1,3,40,41],kernel:[8,11],l:39,lagrangian:8,lambda:36,lasso:[5,6,26,33,34,35,36],last:[33,35,36,38],later:[5,33],layer:[1,2,3,12,39,40,41],learn:[0,1,2,11,13,14,15,16,21,23,24,26,27,32,33,34,35,36,37,38,39,40,41],least:[5,6,18,26,32,33,34],lectur:[32,33,34,35,36,39,40,41],level:10,librari:[24,32],likelihood:[7,34,35,36],limit:[1,13,29,35,36,37,38,40,41],linear:[0,8,13,25,27,32,33,34,36],link:[5,11,28,31,33,34,35],literatur:[26,27],logist:[7,27,32,36,37,38,39,40,41],loop:[37,38],loss:[33,36,37],lu:25,machin:[0,8,13,24,26,27,32,36,37],made:[34,35],mai:32,main:29,make:[0,9,10,15,16,32,33],mani:[10,12,39],manipul:33,margin:[34,35],mass:32,materi:[28,32,33,34,35,36,41],math:[5,33],mathemat:[3,5,8,33,37,38,39],matric:[5,25,32,34],matrix:[1,5,11,12,25,32,33,34,36,37,38,39,40,41],matter:[0,32],max:33,maximum:[34,35,36],mean:[0,32,33,34,36],measur:36,meet:[5,10,29,32,33],mercer:8,method:[6,9,10,13,21,23,26,35,36,37,38,41],midnight:[26,27],min:33,mini:[37,38],minibatch:[21,37,38],minim:[32,36,41],ml:32,mle:[34,35],mlp:[12,39],mnist:[3,4],model:[0,1,4,6,12,32,38,39,40,41],moment:[37,38],momentum:[13,21,37,38],moon:[8,9],more:[3,6,21,25,26,32,33,34,35,36,37,38,40,41],multi:[38,39,40],multiclass:[23,41],multilay:[12,38,39],multipl:[1,3,39,40,41],multipli:8,need:[26,32],network:[1,2,3,4,7,12,23,27,32,36,38,39,40,41],neural:[1,2,3,4,7,12,23,27,32,38,39,40,41],neuron:[38,39],newton:[21,36,37,38],nice:[40,41],noen:[21,37,38],non:8,normal:[0,1,35,40,41],notat:[12,38,39],note:[21,33,34,35],novemb:27,now:[1,9,13,21,34,35,37,38,40,41],nuclear:[0,32],nueral:36,numba:32,number:[0,2,21,29,33,37,38,41],numer:[2,26,27,29,41],numpi:[21,25,32,37,38],object:[3,39,40,41],obtain:11,octob:[26,39,40,41],od:[2,41],off:[6,26],ol:[5,6,21,26,34,35,37,38],one:[2,12,36,37,39,41],ones:[38,39],oper:25,optim:[1,8,13,24,32,33,36,37,38,39,40,41],order:[13,21,37,38],ordinari:[5,6,18,26,32,33,34,41],organ:[0,32],orient:[39,40,41],oslo:31,other:[4,9,11,12,23,25,32,33,36,38,39,41],our:[0,4,5,11,13,32,33,36,37,39,40,41],outcom:[24,32],output:[2,40,41],overarch:[0,4,8,9,17,18,19,20,21,22,23,32,33],overview:[10,32,37,38],own:[0,10,11,15,16,27,32,33],packag:[25,32],panda:[32,33],paper:26,paramet:[32,33,36,37,38],part:[13,24,26,27,33,36,37],partial:[2,41],pass:[1,39,40,41],pca:11,pdf:29,pencil:26,perceptron:[12,38,39,40],perform:[1,9,39,40,41],period:3,perspect:[1,40,41],plan:[33,34,35,36,37,38,39,40,41],plot:[35,36],point:4,poisson:[2,41],polynomi:[3,34],popul:[2,41],possibl:41,practic:[13,21,30,32,37,38],pre:[1,3,39,40,41],predict:4,predictor:36,preprocess:33,prerequisit:[3,24,32],princip:11,principl:3,pro:9,probabl:[5,29,34,35],problem:[1,2,13,21,32,33,34,36,37,38,39,40,41],procedur:[9,32],process:[1,3,39,40,41],product:[37,38],program:[2,13,26,27,36,37,41],project:[6,26,27,32,36],prop:[13,37,38],propag:[1,12,39,40,41],properti:[5,29,33,36],python:[0,9,15,24,25,32],quick:8,r:32,random:[10,11,29,36],raphson:[36,37],rate:[21,23,37,38,41],read:[9,32,33,35],real:[6,26,32],recommend:[32,33,37,38],rectangular:34,recurr:[4,12,38,39],recurs:[37,38],reduc:[0,33],reduct:3,reformul:[2,41],regress:[0,5,6,7,9,10,13,17,18,26,27,32,33,34,35,36,37,38,39],regular:[1,36,39,40,41],relat:33,relev:[31,33,35,36,38,39],relu:[1,40,41],remark:3,remind:[6,8,32,36,37],repeat:33,replac:[13,37,38],report:[26,27],repositori:35,repres:[23,39,40,41],requir:[2,24,41],resampl:[6,26,34,35],rescal:[6,34],residu:33,resourc:[2,41],result:[33,34],review:40,revisit:[13,36,37],rewrit:[32,33,35],rewritten:36,ridg:[0,5,6,17,18,26,33,34,35,36,37],rm:[13,37,38],rmsprop:[21,37,38],rule:[12,39],s:[8,10,21,35,36,37,38],same:[13,21,35,37,38],sampl:11,scale:[33,35],schedul:[23,28,32,41],schemat:9,scheme:[2,41],scienc:32,scikit:[0,1,11,15,16,23,32,33,34,35,36,37,39,40,41],search:36,second:[13,21,37,38],select:36,semest:30,sensit:[36,37],septemb:[34,35,36],session:34,set:[0,2,3,9,12,15,23,32,33,36,39,40,41],setup:41,sgd:[13,37,38],should:[1,40,41],sigmoid:[40,41],similar:[13,21,37,38],simpl:[0,4,9,13,32,33,34,36,37,38],singl:[10,38,39],singular:[5,11,17,33],size:33,slightli:[37,38],soft:8,softmax:[1,39,40],softwar:[26,32],solut:41,solv:[2,34,36,37,41],solver:13,some:[13,25,32,33,36,37],specif:41,specifi:[2,41],split:[0,15,16,32,33],squar:[0,5,6,10,18,26,32,33,34],standard:[13,33,35,37],start:[21,38],state:[0,32],statement:32,statist:[5,6,24,29,32,34,35],steepest:[10,13,36,37],step:[27,35,36,37,38],still:33,stochast:[13,21,27,29,37,38],stop:[37,38],strongli:32,studi:36,subtract:33,suggest:32,sum:35,summari:[30,32,38],superposit:3,supervis:[1,40,41],support:8,svd:[5,33,34],syntax:[37,38],systemat:3,t:[33,34],taken:21,teach:[28,30],teacher:[30,32],technic:[34,41],techniqu:[6,11,26,34],technolog:24,tensor:40,tensorflow:[1,3,40,41],tent:32,term:[35,39],test:[0,1,15,16,23,27,32,33,34,39,40,41],textbook:[31,32],than:[36,37],thei:32,theorem:[5,8,11,12,29,34,35,39],theori:29,thi:[17,18,19,20,21,22,32],think:33,thursdai:[33,34,35,36,39,40,41],time:[37,38],tip:[13,21,37,38],togeth:[12,39],tool:32,top:[1,40,41],topic:32,toward:11,trade:[6,26],tradeoff:[6,35],train:[0,1,4,15,16,32,33,39,40,41],transform:3,tree:[9,10],trial:41,tuesdai:34,tune:[1,40,41],two:[3,8,24,26,33,36],type:[2,4,12,32,38,39,41],uio:32,understand:35,univers:[12,31,39],unsupervis:14,unsupport:[37,38],up:[0,2,9,12,15,21,23,32,33,35,36,39,40,41],us:[0,1,2,3,7,13,21,23,24,27,32,33,36,37,38,39,40,41],usag:[23,34,35,41],valid:[6,26,35,36],valu:[5,11,17,18,29,33,34,35,36],vari:[21,37,38],variabl:[29,36,37],varianc:[6,26,34,35],variou:[0,15,27,32,35,36],vector:[8,12,25,32,33,38,39],veri:[40,41],video:[37,38],view:[0,4,10,33],visual:[1,9,39,40,41],vs:3,wai:[9,21,35],warm:21,wave:[2,41],we:[21,32,37,38,40,41],websit:[40,41],wednesdai:34,week:[15,16,17,18,19,20,21,22,23,32,33,34,35,36,37,38,39,40,41],weekend:36,weekli:[28,35],weight:[39,40,41],what:[0,32,33,34,35],when:[37,38],which:[1,21,37,38,40,41],why:[32,33,35,38,39,41],wisconsin:[7,36],wrap:[33,35],write:[4,11,27,34,41],x:[33,34],xgboost:10,xor:[23,38,39,40,41],yet:34,you:32,your:[0,10,15,16,27,32,33],yourself:36,z_j:39}})
\ No newline at end of file
diff --git a/doc/LectureNotes/_build/html/week43.html b/doc/LectureNotes/_build/html/week43.html
index 8771fb53b..a51bd6a44 100644
--- a/doc/LectureNotes/_build/html/week43.html
+++ b/doc/LectureNotes/_build/html/week43.html
@@ -1689,12 +1689,13 @@ inputs \(x_1\) and and multiplying with \(\boldsymbol{a}_h\) gives the output
\[\begin{split}
-\boldsymbol{a}_o=\boldsymbol{w}_h^T\begin{bmatrix} 0 & 0 \\
+\boldsymbol{a}_o=\begin{bmatrix} 0 & 0 \\
1 & 0 \\
1 & 0 \\
- 2 & 1 \end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
+ 2 & 1 \end{bmatrix}\begin{bmatrix} 1 \\
+ -2\end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
\end{split}\]
-the wanted result.
+the wanted result. Pay attention to the dimensionalities as well.
Adam: Eta=0.001, Lambda=0
+ [----------------------------------------] 0.000% | train_error: 12.9 | train_acc: 0.376 | val_error: 12.6 | val_acc: 0.392
probabilities = (n_inputs, n_categories) = (1437, 10)
-probability that image 0 is in category 0,1,2,...,9 =
+probability that image 0 is in category 0,1,2,...,9 =
[5.41511965e-04 2.17174962e-03 8.84355903e-03 1.44970586e-03
1.10378326e-04 5.08318298e-09 2.03256632e-04 1.92507116e-03
9.84443254e-01 3.11507992e-04]
diff --git a/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.ipynb b/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.ipynb
index 4b0831142..f0fcf3cea 100644
--- a/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.ipynb
+++ b/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.ipynb
@@ -2,8 +2,10 @@
"cells": [
{
"cell_type": "markdown",
- "id": "ae832182",
- "metadata": {},
+ "id": "d5ebb4c0",
+ "metadata": {
+ "editable": true
+ },
"source": [
"\n",
@@ -12,8 +14,10 @@
},
{
"cell_type": "markdown",
- "id": "77f844d9",
- "metadata": {},
+ "id": "812b4e46",
+ "metadata": {
+ "editable": true
+ },
"source": [
"# Exercises weeks 43 and 44 \n",
"**October 23-27, 2023**\n",
@@ -25,8 +29,10 @@
},
{
"cell_type": "markdown",
- "id": "d5b983e3",
- "metadata": {},
+ "id": "3230cd2f",
+ "metadata": {
+ "editable": true
+ },
"source": [
"# Overarching aims of the exercises weeks 43 and 44\n",
"\n",
@@ -63,8 +69,10 @@
},
{
"cell_type": "markdown",
- "id": "7f6cc12f",
- "metadata": {},
+ "id": "e3617d4e",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## The AND and XOR Gates\n",
"\n",
@@ -99,8 +107,10 @@
},
{
"cell_type": "markdown",
- "id": "c0b07e46",
- "metadata": {},
+ "id": "54e1e7fc",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## Representing the Data Sets\n",
"\n",
@@ -109,8 +119,10 @@
},
{
"cell_type": "markdown",
- "id": "e0a9840a",
- "metadata": {},
+ "id": "6b3c15cb",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{X}=\\begin{bmatrix} 0 & 0 \\\\\n",
@@ -122,8 +134,10 @@
},
{
"cell_type": "markdown",
- "id": "ff95d379",
- "metadata": {},
+ "id": "acc25271",
+ "metadata": {
+ "editable": true
+ },
"source": [
"while the vector of outputs is $\\boldsymbol{y}^T=[0,1,1,0]$ for the XOR gate, $\\boldsymbol{y}^T=[0,0,0,1]$ for the AND gate and $\\boldsymbol{y}^T=[0,1,1,1]$ for the OR gate.\n",
"\n",
@@ -150,8 +164,10 @@
},
{
"cell_type": "markdown",
- "id": "36fa3466",
- "metadata": {},
+ "id": "ffe0a840",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## Setting up dimensionalities by hand\n",
"\n",
@@ -160,8 +176,10 @@
},
{
"cell_type": "markdown",
- "id": "e2e5e808",
- "metadata": {},
+ "id": "46abf545",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{W_h}=\\begin{bmatrix} 1 & 1 \\\\\n",
@@ -171,16 +189,20 @@
},
{
"cell_type": "markdown",
- "id": "419e3904",
- "metadata": {},
+ "id": "86e105cc",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Multiplying $\\boldsymbol{X}$ and $\\boldsymbol{W}$ gives"
]
},
{
"cell_type": "markdown",
- "id": "88a9712a",
- "metadata": {},
+ "id": "5e1d21f1",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{X}{W}_h=\\begin{bmatrix} 0 & 0 \\\\\n",
@@ -192,16 +214,20 @@
},
{
"cell_type": "markdown",
- "id": "036eee14",
- "metadata": {},
+ "id": "692c6cbf",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Assume also that the bias vector for the hidden layer is"
]
},
{
"cell_type": "markdown",
- "id": "3c771918",
- "metadata": {},
+ "id": "5d81e641",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{b}_h=\\begin{bmatrix} 0 \\\\\n",
@@ -211,16 +237,20 @@
},
{
"cell_type": "markdown",
- "id": "f5a4150d",
- "metadata": {},
+ "id": "a42bdee4",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Adding it gives us the input to the activation function of the hidden layer"
]
},
{
"cell_type": "markdown",
- "id": "e4eb7753",
- "metadata": {},
+ "id": "5116b854",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{z}_h=\\boldsymbol{X}\\boldsymbol{W}_h+\\boldsymbol{b}_h=\\begin{bmatrix} 0 & -1 \\\\\n",
@@ -232,16 +262,20 @@
},
{
"cell_type": "markdown",
- "id": "b5442b32",
- "metadata": {},
+ "id": "8dd26d09",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Let us then assume that our activation function is the RELU function, which simply means that we take the max of $0$ and the elements of the input argument $\\boldsymbol{z}_h$, that is we have"
]
},
{
"cell_type": "markdown",
- "id": "64d99f85",
- "metadata": {},
+ "id": "ebf97c03",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{a}_h=\\mathrm{RELU}(\\boldsymbol{z}_h=\\boldsymbol{X}\\boldsymbol{W}_h+\\boldsymbol{b}_h)=\\begin{bmatrix} 0 & 0 \\\\\n",
@@ -253,16 +287,20 @@
},
{
"cell_type": "markdown",
- "id": "2aee4b6b",
- "metadata": {},
+ "id": "262a4a3a",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Assume also that the bias of the output layer is zero and that the weights of the output layer are"
]
},
{
"cell_type": "markdown",
- "id": "884541eb",
- "metadata": {},
+ "id": "f03ad8e7",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
"\\boldsymbol{w}_o=\\begin{bmatrix} 1 \\\\\n",
@@ -272,37 +310,46 @@
},
{
"cell_type": "markdown",
- "id": "3999a4d5",
- "metadata": {},
+ "id": "36fe00c0",
+ "metadata": {
+ "editable": true
+ },
"source": [
"and multiplying with $\\boldsymbol{a}_h$ gives the output"
]
},
{
"cell_type": "markdown",
- "id": "a4896b4d",
- "metadata": {},
+ "id": "80ab43ac",
+ "metadata": {
+ "editable": true
+ },
"source": [
"$$\n",
- "\\boldsymbol{a}_o=\\boldsymbol{w}_h^T\\begin{bmatrix} 0 & 0 \\\\\n",
+ "\\boldsymbol{a}_o=\\begin{bmatrix} 0 & 0 \\\\\n",
" 1 & 0 \\\\\n",
"\t\t 1 & 0 \\\\\n",
- "\t\t 2 & 1 \\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
+ "\t\t 2 & 1 \\end{bmatrix}\\begin{bmatrix} 1 \\\\\n",
+ " -2\\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
"$$"
]
},
{
"cell_type": "markdown",
- "id": "2c74e7c0",
- "metadata": {},
+ "id": "86bcfe49",
+ "metadata": {
+ "editable": true
+ },
"source": [
- "the wanted result."
+ "the wanted result. Pay attention to the dimensionalities as well."
]
},
{
"cell_type": "markdown",
- "id": "249b9804",
- "metadata": {},
+ "id": "f19a899e",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## Setting up the Neural Network\n",
"\n",
@@ -312,8 +359,11 @@
{
"cell_type": "code",
"execution_count": 1,
- "id": "afdd3100",
- "metadata": {},
+ "id": "901ddca7",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -390,16 +440,20 @@
},
{
"cell_type": "markdown",
- "id": "fb383164",
- "metadata": {},
+ "id": "53f22266",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Not an impressive result, but this was our first forward pass with randomly assigned weights. Let us now add the full network with the back-propagation algorithm discussed above."
]
},
{
"cell_type": "markdown",
- "id": "0d26394c",
- "metadata": {},
+ "id": "5f665ac6",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## The Code using Scikit-Learn"
]
@@ -407,8 +461,11 @@
{
"cell_type": "code",
"execution_count": 2,
- "id": "befc368c",
- "metadata": {},
+ "id": "cb396cda",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -712,8 +769,10 @@
},
{
"cell_type": "markdown",
- "id": "03895a9f",
- "metadata": {},
+ "id": "c5978471",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## Building a neural network code\n",
"\n",
@@ -729,8 +788,10 @@
},
{
"cell_type": "markdown",
- "id": "6226915b",
- "metadata": {},
+ "id": "7b82dc46",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### Learning rate methods\n",
"\n",
@@ -749,8 +810,11 @@
{
"cell_type": "code",
"execution_count": 3,
- "id": "b6d5ea73",
- "metadata": {},
+ "id": "de4dedfb",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"import autograd.numpy as np\n",
@@ -887,8 +951,10 @@
},
{
"cell_type": "markdown",
- "id": "edb42bef",
- "metadata": {},
+ "id": "bb621fce",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### Usage of the above learning rate schedulers\n",
"\n",
@@ -901,8 +967,11 @@
{
"cell_type": "code",
"execution_count": 4,
- "id": "108c1209",
- "metadata": {},
+ "id": "34ddb829",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"momentum_scheduler = Momentum(eta=1e-3, momentum=0.9)\n",
@@ -911,8 +980,10 @@
},
{
"cell_type": "markdown",
- "id": "d1c423f0",
- "metadata": {},
+ "id": "e43498d4",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Here is a small example for how a segment of code using schedulers\n",
"could look. Switching out the schedulers is simple."
@@ -921,8 +992,11 @@
{
"cell_type": "code",
"execution_count": 5,
- "id": "63c8c749",
- "metadata": {},
+ "id": "f05b9625",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -956,8 +1030,10 @@
},
{
"cell_type": "markdown",
- "id": "7cb80992",
- "metadata": {},
+ "id": "19cf9841",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### Cost functions\n",
"\n",
@@ -970,8 +1046,11 @@
{
"cell_type": "code",
"execution_count": 6,
- "id": "a181dacb",
- "metadata": {},
+ "id": "993efa8d",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"import autograd.numpy as np\n",
@@ -1005,8 +1084,10 @@
},
{
"cell_type": "markdown",
- "id": "26a7fe37",
- "metadata": {},
+ "id": "011c734c",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Below we give a short example of how these cost function may be used\n",
"to obtain results if you wish to test them out on your own using\n",
@@ -1016,8 +1097,11 @@
{
"cell_type": "code",
"execution_count": 7,
- "id": "5894bd31",
- "metadata": {},
+ "id": "9e1b97f5",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -1045,8 +1129,10 @@
},
{
"cell_type": "markdown",
- "id": "71141fab",
- "metadata": {},
+ "id": "4acd87b2",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### Activation functions\n",
"\n",
@@ -1059,8 +1145,11 @@
{
"cell_type": "code",
"execution_count": 8,
- "id": "433e0886",
- "metadata": {},
+ "id": "befa86ae",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"import autograd.numpy as np\n",
@@ -1114,8 +1203,10 @@
},
{
"cell_type": "markdown",
- "id": "14c9d538",
- "metadata": {},
+ "id": "c20aa75e",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Below follows a short demonstration of how to use an activation\n",
"function. The derivative of the activation function will be important\n",
@@ -1127,8 +1218,11 @@
{
"cell_type": "code",
"execution_count": 9,
- "id": "4c3a44ef",
- "metadata": {},
+ "id": "e209f9e5",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -1166,8 +1260,10 @@
},
{
"cell_type": "markdown",
- "id": "aa7f604e",
- "metadata": {},
+ "id": "524b409b",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### The Neural Network\n",
"\n",
@@ -1188,8 +1284,11 @@
{
"cell_type": "code",
"execution_count": 10,
- "id": "585a227b",
- "metadata": {},
+ "id": "083116d3",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"import math\n",
@@ -1657,8 +1756,10 @@
},
{
"cell_type": "markdown",
- "id": "7de704af",
- "metadata": {},
+ "id": "e4ba55d0",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Before we make a model, we will quickly generate a dataset we can use\n",
"for our linear regression problem as shown below"
@@ -1667,8 +1768,11 @@
{
"cell_type": "code",
"execution_count": 11,
- "id": "212b0a35",
- "metadata": {},
+ "id": "c72a22c6",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"import autograd.numpy as np\n",
@@ -1708,8 +1812,10 @@
},
{
"cell_type": "markdown",
- "id": "1ff4ec7b",
- "metadata": {},
+ "id": "25b63b47",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Now that we have our dataset ready for the regression, we can create\n",
"our regressor. Note that with the seed parameter, we can make sure our\n",
@@ -1722,8 +1828,11 @@
{
"cell_type": "code",
"execution_count": 12,
- "id": "57d8eca3",
- "metadata": {},
+ "id": "b6b4e461",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"input_nodes = X_train.shape[1]\n",
@@ -1734,8 +1843,10 @@
},
{
"cell_type": "markdown",
- "id": "f1977bae",
- "metadata": {},
+ "id": "d7860b74",
+ "metadata": {
+ "editable": true
+ },
"source": [
"We then fit our model with our training data using the scheduler of our choice."
]
@@ -1743,8 +1854,11 @@
{
"cell_type": "code",
"execution_count": 13,
- "id": "31ae2a1e",
- "metadata": {},
+ "id": "00522c73",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -2573,8 +2687,10 @@
},
{
"cell_type": "markdown",
- "id": "96a64da4",
- "metadata": {},
+ "id": "a57bfb12",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Due to the progress bar we can see the MSE (train_error) throughout\n",
"the FFNN's training. Note that the fit() function has some optional\n",
@@ -2587,8 +2703,11 @@
{
"cell_type": "code",
"execution_count": 14,
- "id": "246499fc",
- "metadata": {},
+ "id": "35259e41",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -10616,8 +10735,10 @@
},
{
"cell_type": "markdown",
- "id": "61d11e17",
- "metadata": {},
+ "id": "4a403370",
+ "metadata": {
+ "editable": true
+ },
"source": [
"We see that given more epochs to train on, the regressor reaches a lower MSE.\n",
"\n",
@@ -10629,8 +10750,11 @@
{
"cell_type": "code",
"execution_count": 15,
- "id": "b5b91899",
- "metadata": {},
+ "id": "6c791130",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"from sklearn.datasets import load_breast_cancer\n",
@@ -10652,8 +10776,11 @@
{
"cell_type": "code",
"execution_count": 16,
- "id": "4bd01b3d",
- "metadata": {},
+ "id": "0ac0258d",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"input_nodes = X_train.shape[1]\n",
@@ -10664,8 +10791,10 @@
},
{
"cell_type": "markdown",
- "id": "3a138d66",
- "metadata": {},
+ "id": "a9c74baa",
+ "metadata": {
+ "editable": true
+ },
"source": [
"We will now make use of our validation data by passing it into our fit function as a keyword argument"
]
@@ -10673,8 +10802,11 @@
{
"cell_type": "code",
"execution_count": 17,
- "id": "faf1534e",
- "metadata": {},
+ "id": "e5021bbf",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -18703,8 +18835,10 @@
},
{
"cell_type": "markdown",
- "id": "33d2d346",
- "metadata": {},
+ "id": "ae0148bb",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Finally, we will create a neural network with 2 hidden layers with activation functions."
]
@@ -18712,8 +18846,11 @@
{
"cell_type": "code",
"execution_count": 18,
- "id": "a8f0a61c",
- "metadata": {},
+ "id": "bb7e4340",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [],
"source": [
"input_nodes = X_train.shape[1]\n",
@@ -18729,14 +18866,23 @@
{
"cell_type": "code",
"execution_count": 19,
- "id": "d651702d",
- "metadata": {},
+ "id": "d0655afb",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "Adam: Eta=0.0001, Lambda=0\n",
+ "Adam: Eta=0.0001, Lambda=0\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
"\r",
" [----------------------------------------] 0.000% | train_error: 11.3 | train_acc: 0.453 | val_error: 10.4 | val_acc: 0.497 "
]
@@ -26759,8 +26905,10 @@
},
{
"cell_type": "markdown",
- "id": "200b64c0",
- "metadata": {},
+ "id": "dc8a90af",
+ "metadata": {
+ "editable": true
+ },
"source": [
"### Multiclass classification\n",
"\n",
@@ -26772,8 +26920,11 @@
{
"cell_type": "code",
"execution_count": 20,
- "id": "98b8d59b",
- "metadata": {},
+ "id": "9305c08a",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -34830,8 +34981,10 @@
},
{
"cell_type": "markdown",
- "id": "cadd7e47",
- "metadata": {},
+ "id": "8e208051",
+ "metadata": {
+ "editable": true
+ },
"source": [
"## Testing the XOR gate and other gates\n",
"\n",
@@ -34841,8 +34994,11 @@
{
"cell_type": "code",
"execution_count": 21,
- "id": "a40e5cfe",
- "metadata": {},
+ "id": "db016d41",
+ "metadata": {
+ "collapsed": false,
+ "editable": true
+ },
"outputs": [
{
"name": "stdout",
@@ -42879,19 +43035,16 @@
},
{
"cell_type": "markdown",
- "id": "b635db73",
- "metadata": {},
+ "id": "d1384449",
+ "metadata": {
+ "editable": true
+ },
"source": [
"Not bad, but the results depend strongly on the learning reate. Try different learning rates."
]
}
],
"metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
"language_info": {
"codemirror_mode": {
"name": "ipython",
diff --git a/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.py b/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.py
index 3b297c7b7..5ff7f5114 100644
--- a/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.py
+++ b/doc/LectureNotes/_build/jupyter_execute/exercisesweek43.py
@@ -160,13 +160,14 @@
# and multiplying with $\boldsymbol{a}_h$ gives the output
# $$
-# \boldsymbol{a}_o=\boldsymbol{w}_h^T\begin{bmatrix} 0 & 0 \\
+# \boldsymbol{a}_o=\begin{bmatrix} 0 & 0 \\
# 1 & 0 \\
# 1 & 0 \\
-# 2 & 1 \end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
+# 2 & 1 \end{bmatrix}\begin{bmatrix} 1 \\
+# -2\end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
# $$
-# the wanted result.
+# the wanted result. Pay attention to the dimensionalities as well.
# ## Setting up the Neural Network
#
diff --git a/doc/LectureNotes/_build/jupyter_execute/week43.ipynb b/doc/LectureNotes/_build/jupyter_execute/week43.ipynb
index 1643c5670..bedb76abd 100644
--- a/doc/LectureNotes/_build/jupyter_execute/week43.ipynb
+++ b/doc/LectureNotes/_build/jupyter_execute/week43.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "8d7cc066",
+ "id": "88f6e253",
"metadata": {
"editable": true
},
@@ -14,7 +14,7 @@
},
{
"cell_type": "markdown",
- "id": "028dc8c6",
+ "id": "ebd16d73",
"metadata": {
"editable": true
},
@@ -29,7 +29,7 @@
},
{
"cell_type": "markdown",
- "id": "15ef2310",
+ "id": "e9bc94b9",
"metadata": {
"editable": true
},
@@ -73,7 +73,7 @@
},
{
"cell_type": "markdown",
- "id": "192aa783",
+ "id": "457d4421",
"metadata": {
"editable": true
},
@@ -87,7 +87,7 @@
},
{
"cell_type": "markdown",
- "id": "22874f1a",
+ "id": "e86537af",
"metadata": {
"editable": true
},
@@ -104,7 +104,7 @@
},
{
"cell_type": "markdown",
- "id": "29c53621",
+ "id": "14ffcfd0",
"metadata": {
"editable": true
},
@@ -114,7 +114,7 @@
},
{
"cell_type": "markdown",
- "id": "c3ab8226",
+ "id": "5773ab41",
"metadata": {
"editable": true
},
@@ -151,7 +151,7 @@
},
{
"cell_type": "markdown",
- "id": "d686af76",
+ "id": "fdcb6f1e",
"metadata": {
"editable": true
},
@@ -189,7 +189,7 @@
},
{
"cell_type": "markdown",
- "id": "9e6ae224",
+ "id": "7bc3e18a",
"metadata": {
"editable": true
},
@@ -201,7 +201,7 @@
},
{
"cell_type": "markdown",
- "id": "ee5e7e34",
+ "id": "b82f5167",
"metadata": {
"editable": true
},
@@ -216,7 +216,7 @@
},
{
"cell_type": "markdown",
- "id": "da275174",
+ "id": "1ff6327f",
"metadata": {
"editable": true
},
@@ -246,7 +246,7 @@
},
{
"cell_type": "markdown",
- "id": "78669a54",
+ "id": "fd88cb2a",
"metadata": {
"editable": true
},
@@ -258,7 +258,7 @@
},
{
"cell_type": "markdown",
- "id": "453ff3ab",
+ "id": "277ccf21",
"metadata": {
"editable": true
},
@@ -271,7 +271,7 @@
},
{
"cell_type": "markdown",
- "id": "9d82c2f1",
+ "id": "69024cd6",
"metadata": {
"editable": true
},
@@ -281,7 +281,7 @@
},
{
"cell_type": "markdown",
- "id": "a22ab766",
+ "id": "3739f7f4",
"metadata": {
"editable": true
},
@@ -296,7 +296,7 @@
},
{
"cell_type": "markdown",
- "id": "abfc4274",
+ "id": "891fbfbd",
"metadata": {
"editable": true
},
@@ -306,7 +306,7 @@
},
{
"cell_type": "markdown",
- "id": "2b7b0970",
+ "id": "0befa9f2",
"metadata": {
"editable": true
},
@@ -319,7 +319,7 @@
},
{
"cell_type": "markdown",
- "id": "d1e78b4a",
+ "id": "8b87520f",
"metadata": {
"editable": true
},
@@ -329,7 +329,7 @@
},
{
"cell_type": "markdown",
- "id": "0ee46428",
+ "id": "0c36a6e9",
"metadata": {
"editable": true
},
@@ -344,7 +344,7 @@
},
{
"cell_type": "markdown",
- "id": "bac66371",
+ "id": "6a5ebf2f",
"metadata": {
"editable": true
},
@@ -354,7 +354,7 @@
},
{
"cell_type": "markdown",
- "id": "77606059",
+ "id": "5c2cce0f",
"metadata": {
"editable": true
},
@@ -369,7 +369,7 @@
},
{
"cell_type": "markdown",
- "id": "b1a1f219",
+ "id": "6700bff0",
"metadata": {
"editable": true
},
@@ -379,7 +379,7 @@
},
{
"cell_type": "markdown",
- "id": "a46fd0d7",
+ "id": "c9deb439",
"metadata": {
"editable": true
},
@@ -392,7 +392,7 @@
},
{
"cell_type": "markdown",
- "id": "01e41f6f",
+ "id": "bca3d76a",
"metadata": {
"editable": true
},
@@ -402,32 +402,33 @@
},
{
"cell_type": "markdown",
- "id": "371a2c47",
+ "id": "0fd2b2d0",
"metadata": {
"editable": true
},
"source": [
"$$\n",
- "\\boldsymbol{a}_o=\\boldsymbol{w}_h^T\\begin{bmatrix} 0 & 0 \\\\\n",
+ "\\boldsymbol{a}_o=\\begin{bmatrix} 0 & 0 \\\\\n",
" 1 & 0 \\\\\n",
"\t\t 1 & 0 \\\\\n",
- "\t\t 2 & 1 \\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
+ "\t\t 2 & 1 \\end{bmatrix}\\begin{bmatrix} 1 \\\\\n",
+ " -2\\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
"$$"
]
},
{
"cell_type": "markdown",
- "id": "8ab62ed9",
+ "id": "aef5937c",
"metadata": {
"editable": true
},
"source": [
- "the wanted result."
+ "the wanted result. Pay attention to the dimensionalities as well."
]
},
{
"cell_type": "markdown",
- "id": "ee45366d",
+ "id": "784de267",
"metadata": {
"editable": true
},
@@ -440,7 +441,7 @@
{
"cell_type": "code",
"execution_count": 1,
- "id": "43b32c8a",
+ "id": "1529f64e",
"metadata": {
"collapsed": false,
"editable": true
@@ -521,7 +522,7 @@
},
{
"cell_type": "markdown",
- "id": "ce3f8d7b",
+ "id": "6c344985",
"metadata": {
"editable": true
},
@@ -531,7 +532,7 @@
},
{
"cell_type": "markdown",
- "id": "0a60227f",
+ "id": "dda91d6e",
"metadata": {
"editable": true
},
@@ -542,7 +543,7 @@
{
"cell_type": "code",
"execution_count": 2,
- "id": "0574c4c7",
+ "id": "dc12224d",
"metadata": {
"collapsed": false,
"editable": true
@@ -850,7 +851,7 @@
},
{
"cell_type": "markdown",
- "id": "c3db2190",
+ "id": "7c9b27ed",
"metadata": {
"editable": true
},
@@ -869,7 +870,7 @@
},
{
"cell_type": "markdown",
- "id": "3b6e8500",
+ "id": "e8e28114",
"metadata": {
"editable": true
},
@@ -891,7 +892,7 @@
{
"cell_type": "code",
"execution_count": 3,
- "id": "ee32fb88",
+ "id": "37a2ec80",
"metadata": {
"collapsed": false,
"editable": true
@@ -1032,7 +1033,7 @@
},
{
"cell_type": "markdown",
- "id": "6477d18f",
+ "id": "38ea41a5",
"metadata": {
"editable": true
},
@@ -1048,7 +1049,7 @@
{
"cell_type": "code",
"execution_count": 4,
- "id": "5a396095",
+ "id": "869cf239",
"metadata": {
"collapsed": false,
"editable": true
@@ -1061,7 +1062,7 @@
},
{
"cell_type": "markdown",
- "id": "28bd1ab9",
+ "id": "b9b25144",
"metadata": {
"editable": true
},
@@ -1073,7 +1074,7 @@
{
"cell_type": "code",
"execution_count": 5,
- "id": "fb5d04e9",
+ "id": "7d2dc23b",
"metadata": {
"collapsed": false,
"editable": true
@@ -1111,7 +1112,7 @@
},
{
"cell_type": "markdown",
- "id": "f1229684",
+ "id": "83b5e35f",
"metadata": {
"editable": true
},
@@ -1127,7 +1128,7 @@
{
"cell_type": "code",
"execution_count": 6,
- "id": "f4a50c76",
+ "id": "4c217329",
"metadata": {
"collapsed": false,
"editable": true
@@ -1165,7 +1166,7 @@
},
{
"cell_type": "markdown",
- "id": "3d646164",
+ "id": "a0515ac9",
"metadata": {
"editable": true
},
@@ -1178,7 +1179,7 @@
{
"cell_type": "code",
"execution_count": 7,
- "id": "b0057b55",
+ "id": "5eb41a10",
"metadata": {
"collapsed": false,
"editable": true
@@ -1210,7 +1211,7 @@
},
{
"cell_type": "markdown",
- "id": "37f67196",
+ "id": "0535d6fd",
"metadata": {
"editable": true
},
@@ -1226,7 +1227,7 @@
{
"cell_type": "code",
"execution_count": 8,
- "id": "ae3c2dad",
+ "id": "c55d6d5f",
"metadata": {
"collapsed": false,
"editable": true
@@ -1284,7 +1285,7 @@
},
{
"cell_type": "markdown",
- "id": "5be7f268",
+ "id": "b820a2a1",
"metadata": {
"editable": true
},
@@ -1299,7 +1300,7 @@
{
"cell_type": "code",
"execution_count": 9,
- "id": "5296db7b",
+ "id": "43974d31",
"metadata": {
"collapsed": false,
"editable": true
@@ -1341,7 +1342,7 @@
},
{
"cell_type": "markdown",
- "id": "fa62814a",
+ "id": "ec754834",
"metadata": {
"editable": true
},
@@ -1365,7 +1366,7 @@
{
"cell_type": "code",
"execution_count": 10,
- "id": "08db6527",
+ "id": "505e52ab",
"metadata": {
"collapsed": false,
"editable": true
@@ -1837,7 +1838,7 @@
},
{
"cell_type": "markdown",
- "id": "464f4548",
+ "id": "00aa7046",
"metadata": {
"editable": true
},
@@ -1849,7 +1850,7 @@
{
"cell_type": "code",
"execution_count": 11,
- "id": "ea3d3c51",
+ "id": "b0b45dd4",
"metadata": {
"collapsed": false,
"editable": true
@@ -1893,7 +1894,7 @@
},
{
"cell_type": "markdown",
- "id": "a6b49446",
+ "id": "cf9645c3",
"metadata": {
"editable": true
},
@@ -1909,7 +1910,7 @@
{
"cell_type": "code",
"execution_count": 12,
- "id": "4f0f50b6",
+ "id": "a792c324",
"metadata": {
"collapsed": false,
"editable": true
@@ -1924,7 +1925,7 @@
},
{
"cell_type": "markdown",
- "id": "8ae3f1e4",
+ "id": "e11ed70e",
"metadata": {
"editable": true
},
@@ -1935,7 +1936,7 @@
{
"cell_type": "code",
"execution_count": 13,
- "id": "4d206fa2",
+ "id": "dfd03f3c",
"metadata": {
"collapsed": false,
"editable": true
@@ -2768,7 +2769,7 @@
},
{
"cell_type": "markdown",
- "id": "27ffcb75",
+ "id": "99b1bd91",
"metadata": {
"editable": true
},
@@ -2784,7 +2785,7 @@
{
"cell_type": "code",
"execution_count": 14,
- "id": "8cf19432",
+ "id": "864038bb",
"metadata": {
"collapsed": false,
"editable": true
@@ -10816,7 +10817,7 @@
},
{
"cell_type": "markdown",
- "id": "97abfa15",
+ "id": "24d5f3cc",
"metadata": {
"editable": true
},
@@ -10831,7 +10832,7 @@
{
"cell_type": "code",
"execution_count": 15,
- "id": "5aa3cb16",
+ "id": "14df9a52",
"metadata": {
"collapsed": false,
"editable": true
@@ -10857,7 +10858,7 @@
{
"cell_type": "code",
"execution_count": 16,
- "id": "793cb2e9",
+ "id": "adb3edf2",
"metadata": {
"collapsed": false,
"editable": true
@@ -10872,7 +10873,7 @@
},
{
"cell_type": "markdown",
- "id": "7b47a35a",
+ "id": "fa885022",
"metadata": {
"editable": true
},
@@ -10883,7 +10884,7 @@
{
"cell_type": "code",
"execution_count": 17,
- "id": "e34123b4",
+ "id": "1b862f90",
"metadata": {
"collapsed": false,
"editable": true
@@ -10893,7 +10894,14 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "Adam: Eta=0.001, Lambda=0\n"
+ "Adam: Eta=0.001, Lambda=0"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
]
},
{
@@ -18922,7 +18930,7 @@
},
{
"cell_type": "markdown",
- "id": "413243c9",
+ "id": "e86e60dc",
"metadata": {
"editable": true
},
@@ -18933,7 +18941,7 @@
{
"cell_type": "code",
"execution_count": 18,
- "id": "aa7b9e8f",
+ "id": "9e578191",
"metadata": {
"collapsed": false,
"editable": true
@@ -18953,7 +18961,7 @@
{
"cell_type": "code",
"execution_count": 19,
- "id": "c66ee57f",
+ "id": "bbfc34f4",
"metadata": {
"collapsed": false,
"editable": true
@@ -26992,7 +27000,7 @@
},
{
"cell_type": "markdown",
- "id": "aca7922f",
+ "id": "2ac7ad43",
"metadata": {
"editable": true
},
@@ -27007,7 +27015,7 @@
{
"cell_type": "code",
"execution_count": 20,
- "id": "1503f15a",
+ "id": "f4a821cd",
"metadata": {
"collapsed": false,
"editable": true
@@ -35068,7 +35076,7 @@
},
{
"cell_type": "markdown",
- "id": "838cf72d",
+ "id": "0fcf8bf2",
"metadata": {
"editable": true
},
@@ -35081,7 +35089,7 @@
{
"cell_type": "code",
"execution_count": 21,
- "id": "a4444105",
+ "id": "d91608cf",
"metadata": {
"collapsed": false,
"editable": true
@@ -43122,7 +43130,7 @@
},
{
"cell_type": "markdown",
- "id": "8bbdf09c",
+ "id": "494009be",
"metadata": {
"editable": true
},
@@ -43132,7 +43140,7 @@
},
{
"cell_type": "markdown",
- "id": "c5cffe73",
+ "id": "db70a4fe",
"metadata": {
"editable": true
},
@@ -43142,7 +43150,7 @@
},
{
"cell_type": "markdown",
- "id": "e88dc6ab",
+ "id": "e5fc9732",
"metadata": {
"editable": true
},
@@ -43171,7 +43179,7 @@
},
{
"cell_type": "markdown",
- "id": "8ec227a0",
+ "id": "1f986c86",
"metadata": {
"editable": true
},
@@ -43221,7 +43229,7 @@
{
"cell_type": "code",
"execution_count": 22,
- "id": "5336138a",
+ "id": "0f845fb5",
"metadata": {
"collapsed": false,
"editable": true
@@ -43298,7 +43306,7 @@
},
{
"cell_type": "markdown",
- "id": "da4f9c76",
+ "id": "fbab1656",
"metadata": {
"editable": true
},
@@ -43319,7 +43327,7 @@
{
"cell_type": "code",
"execution_count": 23,
- "id": "3d4a38d4",
+ "id": "3ecd3028",
"metadata": {
"collapsed": false,
"editable": true
@@ -43366,7 +43374,7 @@
},
{
"cell_type": "markdown",
- "id": "bc7c43bb",
+ "id": "b45412df",
"metadata": {
"editable": true
},
@@ -43410,7 +43418,7 @@
},
{
"cell_type": "markdown",
- "id": "60a15786",
+ "id": "e90b1e65",
"metadata": {
"editable": true
},
@@ -43450,7 +43458,7 @@
},
{
"cell_type": "markdown",
- "id": "d9b2c952",
+ "id": "92bff738",
"metadata": {
"editable": true
},
@@ -43471,7 +43479,7 @@
{
"cell_type": "code",
"execution_count": 24,
- "id": "a6dfcaaf",
+ "id": "8eb225e4",
"metadata": {
"collapsed": false,
"editable": true
@@ -43497,7 +43505,7 @@
},
{
"cell_type": "markdown",
- "id": "623ec89c",
+ "id": "da1e7ad6",
"metadata": {
"editable": true
},
@@ -43525,7 +43533,7 @@
},
{
"cell_type": "markdown",
- "id": "391b8f09",
+ "id": "52ea3780",
"metadata": {
"editable": true
},
@@ -43562,7 +43570,7 @@
{
"cell_type": "code",
"execution_count": 25,
- "id": "a3a7a56e",
+ "id": "8ec12507",
"metadata": {
"collapsed": false,
"editable": true
@@ -43572,14 +43580,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "probabilities = (n_inputs, n_categories) = (1437, 10)"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
+ "probabilities = (n_inputs, n_categories) = (1437, 10)\n",
"probability that image 0 is in category 0,1,2,...,9 = \n",
"[5.41511965e-04 2.17174962e-03 8.84355903e-03 1.44970586e-03\n",
" 1.10378326e-04 5.08318298e-09 2.03256632e-04 1.92507116e-03\n",
@@ -43638,7 +43639,7 @@
},
{
"cell_type": "markdown",
- "id": "6a467f9c",
+ "id": "518a6c33",
"metadata": {
"editable": true
},
@@ -43669,7 +43670,7 @@
},
{
"cell_type": "markdown",
- "id": "824f2150",
+ "id": "9e4fe561",
"metadata": {
"editable": true
},
@@ -43707,7 +43708,7 @@
},
{
"cell_type": "markdown",
- "id": "ad801a4f",
+ "id": "331db754",
"metadata": {
"editable": true
},
@@ -43741,7 +43742,7 @@
},
{
"cell_type": "markdown",
- "id": "adbd5bf5",
+ "id": "94f8797f",
"metadata": {
"editable": true
},
@@ -43782,7 +43783,7 @@
{
"cell_type": "code",
"execution_count": 26,
- "id": "03850373",
+ "id": "6cc0ad5a",
"metadata": {
"collapsed": false,
"editable": true
@@ -43883,7 +43884,7 @@
},
{
"cell_type": "markdown",
- "id": "5c4ce702",
+ "id": "66341fe5",
"metadata": {
"editable": true
},
@@ -43904,7 +43905,7 @@
},
{
"cell_type": "markdown",
- "id": "f54c055f",
+ "id": "4654bdd2",
"metadata": {
"editable": true
},
@@ -43918,7 +43919,7 @@
{
"cell_type": "code",
"execution_count": 27,
- "id": "05fadefb",
+ "id": "84200c9e",
"metadata": {
"collapsed": false,
"editable": true
@@ -44028,7 +44029,7 @@
},
{
"cell_type": "markdown",
- "id": "6d6bba32",
+ "id": "2fade818",
"metadata": {
"editable": true
},
@@ -44047,7 +44048,7 @@
{
"cell_type": "code",
"execution_count": 28,
- "id": "5605c90f",
+ "id": "da2d74fa",
"metadata": {
"collapsed": false,
"editable": true
@@ -44074,7 +44075,7 @@
},
{
"cell_type": "markdown",
- "id": "f22bb889",
+ "id": "45f911b8",
"metadata": {
"editable": true
},
@@ -44088,7 +44089,7 @@
{
"cell_type": "code",
"execution_count": 29,
- "id": "a097c9e1",
+ "id": "b21a2c19",
"metadata": {
"collapsed": false,
"editable": true
@@ -44119,7 +44120,7 @@
},
{
"cell_type": "markdown",
- "id": "bc02f298",
+ "id": "80801250",
"metadata": {
"editable": true
},
@@ -44130,7 +44131,7 @@
{
"cell_type": "code",
"execution_count": 30,
- "id": "970ba03e",
+ "id": "303e085a",
"metadata": {
"collapsed": false,
"editable": true
@@ -44174,7 +44175,7 @@
},
{
"cell_type": "markdown",
- "id": "e4ff0700",
+ "id": "9358790a",
"metadata": {
"editable": true
},
@@ -44197,7 +44198,7 @@
{
"cell_type": "code",
"execution_count": 31,
- "id": "8bc77d1c",
+ "id": "a238def8",
"metadata": {
"collapsed": false,
"editable": true
@@ -44224,7 +44225,7 @@
},
{
"cell_type": "markdown",
- "id": "76d38bcf",
+ "id": "2ef943ac",
"metadata": {
"editable": true
},
@@ -44235,7 +44236,7 @@
{
"cell_type": "code",
"execution_count": 32,
- "id": "d22894cb",
+ "id": "afeabf8f",
"metadata": {
"collapsed": false,
"editable": true
@@ -44280,7 +44281,7 @@
},
{
"cell_type": "markdown",
- "id": "d4efa31d",
+ "id": "3dd5dfb4",
"metadata": {
"editable": true
},
@@ -44298,7 +44299,7 @@
},
{
"cell_type": "markdown",
- "id": "d6caddb7",
+ "id": "72754d13",
"metadata": {
"editable": true
},
@@ -44333,7 +44334,7 @@
{
"cell_type": "code",
"execution_count": 33,
- "id": "96f112a6",
+ "id": "9fc42ba6",
"metadata": {
"collapsed": false,
"editable": true
@@ -44345,7 +44346,7 @@
},
{
"cell_type": "markdown",
- "id": "2dee5b42",
+ "id": "35795551",
"metadata": {
"editable": true
},
@@ -44357,7 +44358,7 @@
{
"cell_type": "code",
"execution_count": 34,
- "id": "29e13f69",
+ "id": "1dabca19",
"metadata": {
"collapsed": false,
"editable": true
@@ -44370,7 +44371,7 @@
},
{
"cell_type": "markdown",
- "id": "4695192d",
+ "id": "be829505",
"metadata": {
"editable": true
},
@@ -44381,7 +44382,7 @@
{
"cell_type": "code",
"execution_count": 35,
- "id": "573fade6",
+ "id": "7d92ce1c",
"metadata": {
"collapsed": false,
"editable": true
@@ -44394,7 +44395,7 @@
},
{
"cell_type": "markdown",
- "id": "0d8ced47",
+ "id": "057049d7",
"metadata": {
"editable": true
},
@@ -44409,7 +44410,7 @@
{
"cell_type": "code",
"execution_count": 36,
- "id": "28886e64",
+ "id": "0837641b",
"metadata": {
"collapsed": false,
"editable": true
@@ -44421,7 +44422,7 @@
},
{
"cell_type": "markdown",
- "id": "298e5186",
+ "id": "19d5a72d",
"metadata": {
"editable": true
},
@@ -44433,7 +44434,7 @@
},
{
"cell_type": "markdown",
- "id": "ea131902",
+ "id": "4ae0b49b",
"metadata": {
"editable": true
},
@@ -44446,7 +44447,7 @@
{
"cell_type": "code",
"execution_count": 37,
- "id": "686215bb",
+ "id": "429afe53",
"metadata": {
"collapsed": false,
"editable": true
@@ -44501,7 +44502,7 @@
{
"cell_type": "code",
"execution_count": 38,
- "id": "fa9efbca",
+ "id": "887c06b9",
"metadata": {
"collapsed": false,
"editable": true
@@ -44530,7 +44531,7 @@
{
"cell_type": "code",
"execution_count": 39,
- "id": "5a6a0547",
+ "id": "a4d8f64e",
"metadata": {
"collapsed": false,
"editable": true
@@ -44560,7 +44561,7 @@
{
"cell_type": "code",
"execution_count": 40,
- "id": "9df608ec",
+ "id": "b8fb8fa0",
"metadata": {
"collapsed": false,
"editable": true
@@ -44587,7 +44588,7 @@
{
"cell_type": "code",
"execution_count": 41,
- "id": "8d20fdf7",
+ "id": "7777faa8",
"metadata": {
"collapsed": false,
"editable": true
@@ -44629,7 +44630,7 @@
},
{
"cell_type": "markdown",
- "id": "bd641a2a",
+ "id": "bb6d1d3e",
"metadata": {
"editable": true
},
@@ -44640,7 +44641,7 @@
{
"cell_type": "code",
"execution_count": 42,
- "id": "a6d8bf75",
+ "id": "d8c0caf4",
"metadata": {
"collapsed": false,
"editable": true
@@ -44817,7 +44818,7 @@
},
{
"cell_type": "markdown",
- "id": "505033e6",
+ "id": "2631b51d",
"metadata": {
"editable": true
},
@@ -44845,7 +44846,7 @@
},
{
"cell_type": "markdown",
- "id": "d138fcf8",
+ "id": "357644b3",
"metadata": {
"editable": true
},
@@ -44868,7 +44869,7 @@
},
{
"cell_type": "markdown",
- "id": "df986885",
+ "id": "06854c7f",
"metadata": {
"editable": true
},
@@ -44899,7 +44900,7 @@
},
{
"cell_type": "markdown",
- "id": "67ccb46b",
+ "id": "bb26a6da",
"metadata": {
"editable": true
},
@@ -44931,7 +44932,7 @@
},
{
"cell_type": "markdown",
- "id": "a043bdea",
+ "id": "0277931e",
"metadata": {
"editable": true
},
@@ -44969,7 +44970,7 @@
},
{
"cell_type": "markdown",
- "id": "ac370685",
+ "id": "93a45265",
"metadata": {
"editable": true
},
@@ -44994,7 +44995,7 @@
},
{
"cell_type": "markdown",
- "id": "68411972",
+ "id": "7feb8c33",
"metadata": {
"editable": true
},
@@ -45006,7 +45007,7 @@
},
{
"cell_type": "markdown",
- "id": "68d05dd2",
+ "id": "1f55cf23",
"metadata": {
"editable": true
},
@@ -45029,7 +45030,7 @@
},
{
"cell_type": "markdown",
- "id": "55c89a89",
+ "id": "7cea0ca3",
"metadata": {
"editable": true
},
@@ -45049,7 +45050,7 @@
},
{
"cell_type": "markdown",
- "id": "20f0b6de",
+ "id": "086014d5",
"metadata": {
"editable": true
},
@@ -45071,7 +45072,7 @@
},
{
"cell_type": "markdown",
- "id": "8f0a4e60",
+ "id": "9bc419af",
"metadata": {
"editable": true
},
@@ -45089,7 +45090,7 @@
},
{
"cell_type": "markdown",
- "id": "ee9f6778",
+ "id": "a9198ed4",
"metadata": {
"editable": true
},
@@ -45108,7 +45109,7 @@
},
{
"cell_type": "markdown",
- "id": "8ec34edc",
+ "id": "75c023d8",
"metadata": {
"editable": true
},
@@ -45120,7 +45121,7 @@
},
{
"cell_type": "markdown",
- "id": "4cb4f14f",
+ "id": "2d2e4666",
"metadata": {
"editable": true
},
@@ -45165,7 +45166,7 @@
},
{
"cell_type": "markdown",
- "id": "3ceba030",
+ "id": "23dc45c2",
"metadata": {
"editable": true
},
@@ -45195,7 +45196,7 @@
},
{
"cell_type": "markdown",
- "id": "fad4c7c0",
+ "id": "8d80aba5",
"metadata": {
"editable": true
},
@@ -45222,7 +45223,7 @@
},
{
"cell_type": "markdown",
- "id": "92edec9a",
+ "id": "b8d6cf49",
"metadata": {
"editable": true
},
@@ -45236,7 +45237,7 @@
},
{
"cell_type": "markdown",
- "id": "07153151",
+ "id": "ba566ae5",
"metadata": {
"editable": true
},
@@ -45253,7 +45254,7 @@
},
{
"cell_type": "markdown",
- "id": "31a707ec",
+ "id": "fddca9d2",
"metadata": {
"editable": true
},
@@ -45269,7 +45270,7 @@
},
{
"cell_type": "markdown",
- "id": "d0cbacbc",
+ "id": "11ed9eb7",
"metadata": {
"editable": true
},
@@ -45281,7 +45282,7 @@
},
{
"cell_type": "markdown",
- "id": "88e6378a",
+ "id": "ab228680",
"metadata": {
"editable": true
},
@@ -45299,7 +45300,7 @@
},
{
"cell_type": "markdown",
- "id": "a85abfe5",
+ "id": "a620d020",
"metadata": {
"editable": true
},
@@ -45320,7 +45321,7 @@
},
{
"cell_type": "markdown",
- "id": "28e312e0",
+ "id": "4de72e77",
"metadata": {
"editable": true
},
@@ -45337,7 +45338,7 @@
},
{
"cell_type": "markdown",
- "id": "7e562a52",
+ "id": "60ef63bb",
"metadata": {
"editable": true
},
@@ -45349,7 +45350,7 @@
},
{
"cell_type": "markdown",
- "id": "ca872cb5",
+ "id": "6c719d5b",
"metadata": {
"editable": true
},
@@ -45360,7 +45361,7 @@
},
{
"cell_type": "markdown",
- "id": "3f5aaf97",
+ "id": "3a6248cc",
"metadata": {
"editable": true
},
@@ -45377,7 +45378,7 @@
},
{
"cell_type": "markdown",
- "id": "ea91ec87",
+ "id": "937fbb4d",
"metadata": {
"editable": true
},
@@ -45388,7 +45389,7 @@
},
{
"cell_type": "markdown",
- "id": "23d4791e",
+ "id": "985098ad",
"metadata": {
"editable": true
},
@@ -45404,7 +45405,7 @@
},
{
"cell_type": "markdown",
- "id": "645d3042",
+ "id": "7a2ade22",
"metadata": {
"editable": true
},
@@ -45416,7 +45417,7 @@
},
{
"cell_type": "markdown",
- "id": "1957cac1",
+ "id": "4b50fe09",
"metadata": {
"editable": true
},
@@ -45433,7 +45434,7 @@
},
{
"cell_type": "markdown",
- "id": "7ba994c2",
+ "id": "310ac762",
"metadata": {
"editable": true
},
@@ -45445,7 +45446,7 @@
},
{
"cell_type": "markdown",
- "id": "0b4d1e86",
+ "id": "8ce2620f",
"metadata": {
"editable": true
},
@@ -45463,7 +45464,7 @@
},
{
"cell_type": "markdown",
- "id": "7c000d4f",
+ "id": "78459d15",
"metadata": {
"editable": true
},
@@ -45473,7 +45474,7 @@
},
{
"cell_type": "markdown",
- "id": "5c6e9896",
+ "id": "d40f94e2",
"metadata": {
"editable": true
},
@@ -45485,7 +45486,7 @@
},
{
"cell_type": "markdown",
- "id": "c610b5a3",
+ "id": "c5f2c97d",
"metadata": {
"editable": true
},
@@ -45502,7 +45503,7 @@
},
{
"cell_type": "markdown",
- "id": "7b156ba0",
+ "id": "bb30f7cc",
"metadata": {
"editable": true
},
@@ -45514,7 +45515,7 @@
},
{
"cell_type": "markdown",
- "id": "6332b4fb",
+ "id": "a5d8512c",
"metadata": {
"editable": true
},
@@ -45525,7 +45526,7 @@
},
{
"cell_type": "markdown",
- "id": "dadb48a5",
+ "id": "1c888249",
"metadata": {
"editable": true
},
@@ -45537,7 +45538,7 @@
},
{
"cell_type": "markdown",
- "id": "14979de9",
+ "id": "477dada7",
"metadata": {
"editable": true
},
@@ -45547,7 +45548,7 @@
},
{
"cell_type": "markdown",
- "id": "b15978ac",
+ "id": "8e5e2b68",
"metadata": {
"editable": true
},
@@ -45567,7 +45568,7 @@
},
{
"cell_type": "markdown",
- "id": "ab70d7dc",
+ "id": "84150e8d",
"metadata": {
"editable": true
},
@@ -45584,7 +45585,7 @@
},
{
"cell_type": "markdown",
- "id": "3158ad88",
+ "id": "3f25aabb",
"metadata": {
"editable": true
},
@@ -45603,7 +45604,7 @@
},
{
"cell_type": "markdown",
- "id": "424ea4cd",
+ "id": "ce6c0a98",
"metadata": {
"editable": true
},
@@ -45615,7 +45616,7 @@
},
{
"cell_type": "markdown",
- "id": "9875f210",
+ "id": "17805209",
"metadata": {
"editable": true
},
@@ -45625,7 +45626,7 @@
},
{
"cell_type": "markdown",
- "id": "c317c081",
+ "id": "f9984101",
"metadata": {
"editable": true
},
@@ -45642,7 +45643,7 @@
},
{
"cell_type": "markdown",
- "id": "850d7062",
+ "id": "4abcf7b3",
"metadata": {
"editable": true
},
@@ -45652,7 +45653,7 @@
},
{
"cell_type": "markdown",
- "id": "05b6c21e",
+ "id": "3a4b99d7",
"metadata": {
"editable": true
},
@@ -45668,7 +45669,7 @@
},
{
"cell_type": "markdown",
- "id": "52090d6f",
+ "id": "261d5f57",
"metadata": {
"editable": true
},
@@ -45680,7 +45681,7 @@
},
{
"cell_type": "markdown",
- "id": "f4f56b6e",
+ "id": "0c7e0ed7",
"metadata": {
"editable": true
},
@@ -45692,7 +45693,7 @@
},
{
"cell_type": "markdown",
- "id": "e76317e2",
+ "id": "410091f0",
"metadata": {
"editable": true
},
@@ -45704,7 +45705,7 @@
},
{
"cell_type": "markdown",
- "id": "cf1ff27d",
+ "id": "17f0e1e7",
"metadata": {
"editable": true
},
@@ -45714,7 +45715,7 @@
},
{
"cell_type": "markdown",
- "id": "c6558ca7",
+ "id": "acac4ddf",
"metadata": {
"editable": true
},
@@ -45726,7 +45727,7 @@
},
{
"cell_type": "markdown",
- "id": "eb10b3cf",
+ "id": "0b3bdcec",
"metadata": {
"editable": true
},
@@ -45743,7 +45744,7 @@
},
{
"cell_type": "markdown",
- "id": "95040138",
+ "id": "8b71f89e",
"metadata": {
"editable": true
},
@@ -45753,7 +45754,7 @@
},
{
"cell_type": "markdown",
- "id": "efbb37df",
+ "id": "b1a4b8b2",
"metadata": {
"editable": true
},
@@ -45765,7 +45766,7 @@
},
{
"cell_type": "markdown",
- "id": "ce339463",
+ "id": "bb3f35b1",
"metadata": {
"editable": true
},
@@ -45779,7 +45780,7 @@
},
{
"cell_type": "markdown",
- "id": "51d1021d",
+ "id": "bb8eac7a",
"metadata": {
"editable": true
},
@@ -45795,7 +45796,7 @@
},
{
"cell_type": "markdown",
- "id": "5471c13f",
+ "id": "23361eba",
"metadata": {
"editable": true
},
@@ -45807,7 +45808,7 @@
},
{
"cell_type": "markdown",
- "id": "ca1015ba",
+ "id": "94bf3ada",
"metadata": {
"editable": true
},
@@ -45829,7 +45830,7 @@
},
{
"cell_type": "markdown",
- "id": "325048d9",
+ "id": "ff0afe4b",
"metadata": {
"editable": true
},
@@ -45841,7 +45842,7 @@
},
{
"cell_type": "markdown",
- "id": "5c6b185f",
+ "id": "393ee959",
"metadata": {
"editable": true
},
@@ -45864,7 +45865,7 @@
},
{
"cell_type": "markdown",
- "id": "eddea0e3",
+ "id": "f2df5cfc",
"metadata": {
"editable": true
},
@@ -45880,7 +45881,7 @@
},
{
"cell_type": "markdown",
- "id": "39eeb7a1",
+ "id": "f6358bb7",
"metadata": {
"editable": true
},
@@ -45892,7 +45893,7 @@
},
{
"cell_type": "markdown",
- "id": "25477c00",
+ "id": "ef56bb84",
"metadata": {
"editable": true
},
@@ -45916,7 +45917,7 @@
},
{
"cell_type": "markdown",
- "id": "dbdce765",
+ "id": "acd41944",
"metadata": {
"editable": true
},
@@ -45928,7 +45929,7 @@
},
{
"cell_type": "markdown",
- "id": "3b833783",
+ "id": "1a2a7e92",
"metadata": {
"editable": true
},
@@ -45949,7 +45950,7 @@
},
{
"cell_type": "markdown",
- "id": "98103cac",
+ "id": "a082637c",
"metadata": {
"editable": true
},
@@ -45961,7 +45962,7 @@
},
{
"cell_type": "markdown",
- "id": "01de1e28",
+ "id": "dfc24dff",
"metadata": {
"editable": true
},
@@ -45980,7 +45981,7 @@
},
{
"cell_type": "markdown",
- "id": "3d50cf6a",
+ "id": "90f81e55",
"metadata": {
"editable": true
},
@@ -45990,7 +45991,7 @@
},
{
"cell_type": "markdown",
- "id": "221269b0",
+ "id": "3693fc3b",
"metadata": {
"editable": true
},
@@ -46004,7 +46005,7 @@
},
{
"cell_type": "markdown",
- "id": "b736af88",
+ "id": "2bb540dd",
"metadata": {
"editable": true
},
@@ -46016,7 +46017,7 @@
},
{
"cell_type": "markdown",
- "id": "ea505169",
+ "id": "5fad7cc5",
"metadata": {
"editable": true
},
@@ -46028,7 +46029,7 @@
},
{
"cell_type": "markdown",
- "id": "515470a3",
+ "id": "c9a47e0a",
"metadata": {
"editable": true
},
@@ -46045,7 +46046,7 @@
},
{
"cell_type": "markdown",
- "id": "f9eaeace",
+ "id": "f579f1d0",
"metadata": {
"editable": true
},
@@ -46057,7 +46058,7 @@
},
{
"cell_type": "markdown",
- "id": "e6488f9b",
+ "id": "f980cb6a",
"metadata": {
"editable": true
},
@@ -46079,7 +46080,7 @@
},
{
"cell_type": "markdown",
- "id": "f2bc476e",
+ "id": "de47a73d",
"metadata": {
"editable": true
},
@@ -46094,7 +46095,7 @@
},
{
"cell_type": "markdown",
- "id": "2d7b7d19",
+ "id": "5eacb34e",
"metadata": {
"editable": true
},
@@ -46105,7 +46106,7 @@
{
"cell_type": "code",
"execution_count": 43,
- "id": "4aad6e10",
+ "id": "77235f88",
"metadata": {
"collapsed": false,
"editable": true
@@ -46260,7 +46261,7 @@
},
{
"cell_type": "markdown",
- "id": "f8c418c1",
+ "id": "0147790d",
"metadata": {
"editable": true
},
@@ -46275,7 +46276,7 @@
{
"cell_type": "code",
"execution_count": 44,
- "id": "96758ada",
+ "id": "59eb96af",
"metadata": {
"collapsed": false,
"editable": true
@@ -46444,7 +46445,7 @@
},
{
"cell_type": "markdown",
- "id": "c62fedb8",
+ "id": "dc02c291",
"metadata": {
"editable": true
},
@@ -46457,7 +46458,7 @@
},
{
"cell_type": "markdown",
- "id": "1f962431",
+ "id": "c8fff51e",
"metadata": {
"editable": true
},
@@ -46474,7 +46475,7 @@
},
{
"cell_type": "markdown",
- "id": "71b1d885",
+ "id": "3751edf7",
"metadata": {
"editable": true
},
@@ -46490,7 +46491,7 @@
},
{
"cell_type": "markdown",
- "id": "0b96a028",
+ "id": "a502c731",
"metadata": {
"editable": true
},
@@ -46503,7 +46504,7 @@
},
{
"cell_type": "markdown",
- "id": "311ae3d3",
+ "id": "eb73f07e",
"metadata": {
"editable": true
},
@@ -46520,7 +46521,7 @@
},
{
"cell_type": "markdown",
- "id": "98cb3d44",
+ "id": "9ab9d930",
"metadata": {
"editable": true
},
@@ -46532,7 +46533,7 @@
},
{
"cell_type": "markdown",
- "id": "3e8e134d",
+ "id": "9cb8689a",
"metadata": {
"editable": true
},
@@ -46559,7 +46560,7 @@
},
{
"cell_type": "markdown",
- "id": "a1844ff9",
+ "id": "d21e3a14",
"metadata": {
"editable": true
},
@@ -46572,7 +46573,7 @@
{
"cell_type": "code",
"execution_count": 45,
- "id": "4410b99e",
+ "id": "833da16b",
"metadata": {
"collapsed": false,
"editable": true
@@ -46746,7 +46747,7 @@
},
{
"cell_type": "markdown",
- "id": "f0ab0e0f",
+ "id": "0fdcf8c5",
"metadata": {
"editable": true
},
@@ -46766,7 +46767,7 @@
},
{
"cell_type": "markdown",
- "id": "333b0a8d",
+ "id": "0a057338",
"metadata": {
"editable": true
},
@@ -46781,7 +46782,7 @@
},
{
"cell_type": "markdown",
- "id": "5b358fbf",
+ "id": "6721bcf2",
"metadata": {
"editable": true
},
@@ -46795,7 +46796,7 @@
},
{
"cell_type": "markdown",
- "id": "c5d60864",
+ "id": "dc3db9fd",
"metadata": {
"editable": true
},
@@ -46811,7 +46812,7 @@
},
{
"cell_type": "markdown",
- "id": "bcce6eb8",
+ "id": "9af3fd6a",
"metadata": {
"editable": true
},
@@ -46821,7 +46822,7 @@
},
{
"cell_type": "markdown",
- "id": "e6497fd7",
+ "id": "4c2da445",
"metadata": {
"editable": true
},
@@ -46843,7 +46844,7 @@
},
{
"cell_type": "markdown",
- "id": "31b650fc",
+ "id": "93b58380",
"metadata": {
"editable": true
},
@@ -46857,7 +46858,7 @@
{
"cell_type": "code",
"execution_count": 46,
- "id": "6e267e72",
+ "id": "cb73915d",
"metadata": {
"collapsed": false,
"editable": true
@@ -46933,7 +46934,7 @@
},
{
"cell_type": "markdown",
- "id": "8b054a85",
+ "id": "c9d250c7",
"metadata": {
"editable": true
},
@@ -46945,7 +46946,7 @@
},
{
"cell_type": "markdown",
- "id": "f637dd9d",
+ "id": "0d67bc8c",
"metadata": {
"editable": true
},
@@ -46962,7 +46963,7 @@
},
{
"cell_type": "markdown",
- "id": "ac088e86",
+ "id": "fe4ee5a8",
"metadata": {
"editable": true
},
@@ -46974,7 +46975,7 @@
},
{
"cell_type": "markdown",
- "id": "14afd7fa",
+ "id": "62b400ca",
"metadata": {
"editable": true
},
@@ -46989,7 +46990,7 @@
},
{
"cell_type": "markdown",
- "id": "0a2680eb",
+ "id": "7d4723f2",
"metadata": {
"editable": true
},
@@ -47001,7 +47002,7 @@
},
{
"cell_type": "markdown",
- "id": "7e30575f",
+ "id": "97889b0e",
"metadata": {
"editable": true
},
@@ -47013,7 +47014,7 @@
},
{
"cell_type": "markdown",
- "id": "3b30e08a",
+ "id": "236028bc",
"metadata": {
"editable": true
},
@@ -47025,7 +47026,7 @@
},
{
"cell_type": "markdown",
- "id": "be7d958b",
+ "id": "a4334818",
"metadata": {
"editable": true
},
@@ -47035,7 +47036,7 @@
},
{
"cell_type": "markdown",
- "id": "d6a52e39",
+ "id": "8330dd77",
"metadata": {
"editable": true
},
@@ -47052,7 +47053,7 @@
},
{
"cell_type": "markdown",
- "id": "488d0a14",
+ "id": "78522018",
"metadata": {
"editable": true
},
@@ -47064,7 +47065,7 @@
},
{
"cell_type": "markdown",
- "id": "59834674",
+ "id": "943956e4",
"metadata": {
"editable": true
},
@@ -47076,7 +47077,7 @@
},
{
"cell_type": "markdown",
- "id": "af640638",
+ "id": "3c7b57e2",
"metadata": {
"editable": true
},
@@ -47086,7 +47087,7 @@
},
{
"cell_type": "markdown",
- "id": "8d83ea23",
+ "id": "55173c99",
"metadata": {
"editable": true
},
@@ -47098,7 +47099,7 @@
},
{
"cell_type": "markdown",
- "id": "4d4e4ea8",
+ "id": "a6d078e4",
"metadata": {
"editable": true
},
@@ -47109,7 +47110,7 @@
{
"cell_type": "code",
"execution_count": 47,
- "id": "ad4cc32f",
+ "id": "452c599c",
"metadata": {
"collapsed": false,
"editable": true
@@ -47270,7 +47271,7 @@
},
{
"cell_type": "markdown",
- "id": "ceb283ce",
+ "id": "8ca2348f",
"metadata": {
"editable": true
},
@@ -47292,7 +47293,7 @@
},
{
"cell_type": "markdown",
- "id": "a68e0e56",
+ "id": "0ccc174e",
"metadata": {
"editable": true
},
@@ -47309,7 +47310,7 @@
},
{
"cell_type": "markdown",
- "id": "8441e4e6",
+ "id": "d4601257",
"metadata": {
"editable": true
},
@@ -47319,7 +47320,7 @@
},
{
"cell_type": "markdown",
- "id": "1d343e68",
+ "id": "9ec01889",
"metadata": {
"editable": true
},
@@ -47334,7 +47335,7 @@
},
{
"cell_type": "markdown",
- "id": "1c566531",
+ "id": "71993d6c",
"metadata": {
"editable": true
},
@@ -47344,7 +47345,7 @@
},
{
"cell_type": "markdown",
- "id": "7a06b755",
+ "id": "f6acfae4",
"metadata": {
"editable": true
},
@@ -47359,7 +47360,7 @@
},
{
"cell_type": "markdown",
- "id": "2e88c504",
+ "id": "6540422f",
"metadata": {
"editable": true
},
@@ -47370,7 +47371,7 @@
},
{
"cell_type": "markdown",
- "id": "7299b0d3",
+ "id": "fd8c2326",
"metadata": {
"editable": true
},
@@ -47390,7 +47391,7 @@
},
{
"cell_type": "markdown",
- "id": "c849f0cc",
+ "id": "74eabad7",
"metadata": {
"editable": true
},
@@ -47402,7 +47403,7 @@
},
{
"cell_type": "markdown",
- "id": "f19b2ed7",
+ "id": "f9d16e2f",
"metadata": {
"editable": true
},
@@ -47439,7 +47440,7 @@
},
{
"cell_type": "markdown",
- "id": "96581350",
+ "id": "68c24098",
"metadata": {
"editable": true
},
@@ -47449,7 +47450,7 @@
},
{
"cell_type": "markdown",
- "id": "2c5aa09d",
+ "id": "02c1e06d",
"metadata": {
"editable": true
},
@@ -47462,7 +47463,7 @@
{
"cell_type": "code",
"execution_count": 48,
- "id": "9b979206",
+ "id": "972b8e94",
"metadata": {
"collapsed": false,
"editable": true
@@ -47663,7 +47664,7 @@
},
{
"cell_type": "markdown",
- "id": "ec7cab35",
+ "id": "734d97bc",
"metadata": {
"editable": true
},
@@ -47680,7 +47681,7 @@
},
{
"cell_type": "markdown",
- "id": "7366658f",
+ "id": "2c2d0e2c",
"metadata": {
"editable": true
},
@@ -47697,7 +47698,7 @@
},
{
"cell_type": "markdown",
- "id": "b6557284",
+ "id": "9de00307",
"metadata": {
"editable": true
},
@@ -47707,7 +47708,7 @@
},
{
"cell_type": "markdown",
- "id": "df2d7d07",
+ "id": "cb659253",
"metadata": {
"editable": true
},
@@ -47722,7 +47723,7 @@
},
{
"cell_type": "markdown",
- "id": "aad0506a",
+ "id": "909d23ae",
"metadata": {
"editable": true
},
@@ -47736,7 +47737,7 @@
},
{
"cell_type": "markdown",
- "id": "9e5776d1",
+ "id": "e3607f9e",
"metadata": {
"editable": true
},
@@ -47749,7 +47750,7 @@
},
{
"cell_type": "markdown",
- "id": "7fad71c5",
+ "id": "e0254d92",
"metadata": {
"editable": true
},
@@ -47769,7 +47770,7 @@
},
{
"cell_type": "markdown",
- "id": "d98bd52b",
+ "id": "7a787737",
"metadata": {
"editable": true
},
@@ -47781,7 +47782,7 @@
},
{
"cell_type": "markdown",
- "id": "3f6cb731",
+ "id": "42cfda53",
"metadata": {
"editable": true
},
@@ -47793,7 +47794,7 @@
},
{
"cell_type": "markdown",
- "id": "0efeb6a7",
+ "id": "41fdd74a",
"metadata": {
"editable": true
},
@@ -47805,7 +47806,7 @@
},
{
"cell_type": "markdown",
- "id": "b3367fd8",
+ "id": "9a43a5c3",
"metadata": {
"editable": true
},
@@ -47815,7 +47816,7 @@
},
{
"cell_type": "markdown",
- "id": "f5cdf037",
+ "id": "2deb98de",
"metadata": {
"editable": true
},
@@ -47827,7 +47828,7 @@
},
{
"cell_type": "markdown",
- "id": "39090b0c",
+ "id": "367f7d4b",
"metadata": {
"editable": true
},
@@ -47839,7 +47840,7 @@
},
{
"cell_type": "markdown",
- "id": "306f52ce",
+ "id": "4ace8d41",
"metadata": {
"editable": true
},
@@ -47851,7 +47852,7 @@
},
{
"cell_type": "markdown",
- "id": "4dddd0e4",
+ "id": "014d9b72",
"metadata": {
"editable": true
},
@@ -47861,7 +47862,7 @@
},
{
"cell_type": "markdown",
- "id": "19ba57a3",
+ "id": "91cb0d4f",
"metadata": {
"editable": true
},
@@ -47877,7 +47878,7 @@
},
{
"cell_type": "markdown",
- "id": "3f4b369e",
+ "id": "7015c1df",
"metadata": {
"editable": true
},
@@ -47887,7 +47888,7 @@
},
{
"cell_type": "markdown",
- "id": "01054c66",
+ "id": "a170f9bf",
"metadata": {
"editable": true
},
@@ -47899,7 +47900,7 @@
},
{
"cell_type": "markdown",
- "id": "48250dfa",
+ "id": "f79c87b0",
"metadata": {
"editable": true
},
@@ -47916,7 +47917,7 @@
},
{
"cell_type": "markdown",
- "id": "830538cd",
+ "id": "7b00c2c7",
"metadata": {
"editable": true
},
@@ -47926,7 +47927,7 @@
},
{
"cell_type": "markdown",
- "id": "1e05f3d1",
+ "id": "1da2ec1f",
"metadata": {
"editable": true
},
@@ -47942,7 +47943,7 @@
},
{
"cell_type": "markdown",
- "id": "278b7644",
+ "id": "d048b2b0",
"metadata": {
"editable": true
},
@@ -47956,7 +47957,7 @@
},
{
"cell_type": "markdown",
- "id": "08bf068d",
+ "id": "2a5423c6",
"metadata": {
"editable": true
},
@@ -47975,7 +47976,7 @@
{
"cell_type": "code",
"execution_count": 49,
- "id": "fb15b704",
+ "id": "39978a3f",
"metadata": {
"collapsed": false,
"editable": true
@@ -48030,7 +48031,7 @@
},
{
"cell_type": "markdown",
- "id": "ca43eaaa",
+ "id": "d86acd9a",
"metadata": {
"editable": true
},
@@ -48060,7 +48061,7 @@
},
{
"cell_type": "markdown",
- "id": "8cb99e50",
+ "id": "219af542",
"metadata": {
"editable": true
},
@@ -48089,7 +48090,7 @@
{
"cell_type": "code",
"execution_count": 50,
- "id": "2c311458",
+ "id": "0300f83e",
"metadata": {
"collapsed": false,
"editable": true
@@ -48136,7 +48137,7 @@
},
{
"cell_type": "markdown",
- "id": "6ce6fcdb",
+ "id": "63ff2d7d",
"metadata": {
"editable": true
},
@@ -48162,7 +48163,7 @@
{
"cell_type": "code",
"execution_count": 51,
- "id": "975ad28f",
+ "id": "504a8a89",
"metadata": {
"collapsed": false,
"editable": true
@@ -48396,7 +48397,7 @@
},
{
"cell_type": "markdown",
- "id": "a85b7bc6",
+ "id": "2154560c",
"metadata": {
"editable": true
},
@@ -48408,7 +48409,7 @@
},
{
"cell_type": "markdown",
- "id": "913742fb",
+ "id": "36990efc",
"metadata": {
"editable": true
},
@@ -48420,7 +48421,7 @@
},
{
"cell_type": "markdown",
- "id": "9b936d66",
+ "id": "d4e6e7d4",
"metadata": {
"editable": true
},
@@ -48432,7 +48433,7 @@
},
{
"cell_type": "markdown",
- "id": "a0cd719f",
+ "id": "cca6cfed",
"metadata": {
"editable": true
},
@@ -48449,7 +48450,7 @@
},
{
"cell_type": "markdown",
- "id": "8a8ddb73",
+ "id": "19f73071",
"metadata": {
"editable": true
},
@@ -48459,7 +48460,7 @@
},
{
"cell_type": "markdown",
- "id": "460bb8e2",
+ "id": "3e637804",
"metadata": {
"editable": true
},
@@ -48471,7 +48472,7 @@
},
{
"cell_type": "markdown",
- "id": "619814ea",
+ "id": "1a3ef69a",
"metadata": {
"editable": true
},
@@ -48488,7 +48489,7 @@
},
{
"cell_type": "markdown",
- "id": "833fef22",
+ "id": "b9206a11",
"metadata": {
"editable": true
},
@@ -48499,7 +48500,7 @@
},
{
"cell_type": "markdown",
- "id": "72df2582",
+ "id": "3050dcc1",
"metadata": {
"editable": true
},
@@ -48519,7 +48520,7 @@
},
{
"cell_type": "markdown",
- "id": "efc2be56",
+ "id": "2adca788",
"metadata": {
"editable": true
},
@@ -48529,7 +48530,7 @@
},
{
"cell_type": "markdown",
- "id": "8bee39ce",
+ "id": "9d36478f",
"metadata": {
"editable": true
},
@@ -48555,7 +48556,7 @@
},
{
"cell_type": "markdown",
- "id": "e133bda5",
+ "id": "f5a39291",
"metadata": {
"editable": true
},
@@ -48571,7 +48572,7 @@
},
{
"cell_type": "markdown",
- "id": "8cc804aa",
+ "id": "2090b5b8",
"metadata": {
"editable": true
},
@@ -48582,7 +48583,7 @@
{
"cell_type": "code",
"execution_count": 52,
- "id": "8e3fb51d",
+ "id": "0598530e",
"metadata": {
"collapsed": false,
"editable": true
@@ -48813,7 +48814,7 @@
},
{
"cell_type": "markdown",
- "id": "a77decf5",
+ "id": "518138c8",
"metadata": {
"editable": true
},
diff --git a/doc/LectureNotes/_build/jupyter_execute/week43.py b/doc/LectureNotes/_build/jupyter_execute/week43.py
index 341d8504e..6aec0a7bd 100644
--- a/doc/LectureNotes/_build/jupyter_execute/week43.py
+++ b/doc/LectureNotes/_build/jupyter_execute/week43.py
@@ -210,13 +210,14 @@
# and multiplying with $\boldsymbol{a}_h$ gives the output
# $$
-# \boldsymbol{a}_o=\boldsymbol{w}_h^T\begin{bmatrix} 0 & 0 \\
+# \boldsymbol{a}_o=\begin{bmatrix} 0 & 0 \\
# 1 & 0 \\
# 1 & 0 \\
-# 2 & 1 \end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
+# 2 & 1 \end{bmatrix}\begin{bmatrix} 1 \\
+# -2\end{bmatrix}=\begin{bmatrix} 0 \\ 1 \\ 1 \\0\end{bmatrix},
# $$
-# the wanted result.
+# the wanted result. Pay attention to the dimensionalities as well.
# ## Setting up the Neural Network
#
diff --git a/doc/LectureNotes/week43.ipynb b/doc/LectureNotes/week43.ipynb
index 8de3714cd..4c84cfe33 100644
--- a/doc/LectureNotes/week43.ipynb
+++ b/doc/LectureNotes/week43.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
- "id": "8d7cc066",
+ "id": "88f6e253",
"metadata": {
"editable": true
},
@@ -14,7 +14,7 @@
},
{
"cell_type": "markdown",
- "id": "028dc8c6",
+ "id": "ebd16d73",
"metadata": {
"editable": true
},
@@ -29,7 +29,7 @@
},
{
"cell_type": "markdown",
- "id": "15ef2310",
+ "id": "e9bc94b9",
"metadata": {
"editable": true
},
@@ -73,7 +73,7 @@
},
{
"cell_type": "markdown",
- "id": "192aa783",
+ "id": "457d4421",
"metadata": {
"editable": true
},
@@ -87,7 +87,7 @@
},
{
"cell_type": "markdown",
- "id": "22874f1a",
+ "id": "e86537af",
"metadata": {
"editable": true
},
@@ -104,7 +104,7 @@
},
{
"cell_type": "markdown",
- "id": "29c53621",
+ "id": "14ffcfd0",
"metadata": {
"editable": true
},
@@ -114,7 +114,7 @@
},
{
"cell_type": "markdown",
- "id": "c3ab8226",
+ "id": "5773ab41",
"metadata": {
"editable": true
},
@@ -151,7 +151,7 @@
},
{
"cell_type": "markdown",
- "id": "d686af76",
+ "id": "fdcb6f1e",
"metadata": {
"editable": true
},
@@ -189,7 +189,7 @@
},
{
"cell_type": "markdown",
- "id": "9e6ae224",
+ "id": "7bc3e18a",
"metadata": {
"editable": true
},
@@ -201,7 +201,7 @@
},
{
"cell_type": "markdown",
- "id": "ee5e7e34",
+ "id": "b82f5167",
"metadata": {
"editable": true
},
@@ -216,7 +216,7 @@
},
{
"cell_type": "markdown",
- "id": "da275174",
+ "id": "1ff6327f",
"metadata": {
"editable": true
},
@@ -246,7 +246,7 @@
},
{
"cell_type": "markdown",
- "id": "78669a54",
+ "id": "fd88cb2a",
"metadata": {
"editable": true
},
@@ -258,7 +258,7 @@
},
{
"cell_type": "markdown",
- "id": "453ff3ab",
+ "id": "277ccf21",
"metadata": {
"editable": true
},
@@ -271,7 +271,7 @@
},
{
"cell_type": "markdown",
- "id": "9d82c2f1",
+ "id": "69024cd6",
"metadata": {
"editable": true
},
@@ -281,7 +281,7 @@
},
{
"cell_type": "markdown",
- "id": "a22ab766",
+ "id": "3739f7f4",
"metadata": {
"editable": true
},
@@ -296,7 +296,7 @@
},
{
"cell_type": "markdown",
- "id": "abfc4274",
+ "id": "891fbfbd",
"metadata": {
"editable": true
},
@@ -306,7 +306,7 @@
},
{
"cell_type": "markdown",
- "id": "2b7b0970",
+ "id": "0befa9f2",
"metadata": {
"editable": true
},
@@ -319,7 +319,7 @@
},
{
"cell_type": "markdown",
- "id": "d1e78b4a",
+ "id": "8b87520f",
"metadata": {
"editable": true
},
@@ -329,7 +329,7 @@
},
{
"cell_type": "markdown",
- "id": "0ee46428",
+ "id": "0c36a6e9",
"metadata": {
"editable": true
},
@@ -344,7 +344,7 @@
},
{
"cell_type": "markdown",
- "id": "bac66371",
+ "id": "6a5ebf2f",
"metadata": {
"editable": true
},
@@ -354,7 +354,7 @@
},
{
"cell_type": "markdown",
- "id": "77606059",
+ "id": "5c2cce0f",
"metadata": {
"editable": true
},
@@ -369,7 +369,7 @@
},
{
"cell_type": "markdown",
- "id": "b1a1f219",
+ "id": "6700bff0",
"metadata": {
"editable": true
},
@@ -379,7 +379,7 @@
},
{
"cell_type": "markdown",
- "id": "a46fd0d7",
+ "id": "c9deb439",
"metadata": {
"editable": true
},
@@ -392,7 +392,7 @@
},
{
"cell_type": "markdown",
- "id": "01e41f6f",
+ "id": "bca3d76a",
"metadata": {
"editable": true
},
@@ -402,32 +402,33 @@
},
{
"cell_type": "markdown",
- "id": "371a2c47",
+ "id": "0fd2b2d0",
"metadata": {
"editable": true
},
"source": [
"$$\n",
- "\\boldsymbol{a}_o=\\boldsymbol{w}_h^T\\begin{bmatrix} 0 & 0 \\\\\n",
+ "\\boldsymbol{a}_o=\\begin{bmatrix} 0 & 0 \\\\\n",
" 1 & 0 \\\\\n",
"\t\t 1 & 0 \\\\\n",
- "\t\t 2 & 1 \\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
+ "\t\t 2 & 1 \\end{bmatrix}\\begin{bmatrix} 1 \\\\\n",
+ " -2\\end{bmatrix}=\\begin{bmatrix} 0 \\\\ 1 \\\\ 1 \\\\0\\end{bmatrix},\n",
"$$"
]
},
{
"cell_type": "markdown",
- "id": "8ab62ed9",
+ "id": "aef5937c",
"metadata": {
"editable": true
},
"source": [
- "the wanted result."
+ "the wanted result. Pay attention to the dimensionalities as well."
]
},
{
"cell_type": "markdown",
- "id": "ee45366d",
+ "id": "784de267",
"metadata": {
"editable": true
},
@@ -440,7 +441,7 @@
{
"cell_type": "code",
"execution_count": 1,
- "id": "43b32c8a",
+ "id": "1529f64e",
"metadata": {
"collapsed": false,
"editable": true
@@ -510,7 +511,7 @@
},
{
"cell_type": "markdown",
- "id": "ce3f8d7b",
+ "id": "6c344985",
"metadata": {
"editable": true
},
@@ -520,7 +521,7 @@
},
{
"cell_type": "markdown",
- "id": "0a60227f",
+ "id": "dda91d6e",
"metadata": {
"editable": true
},
@@ -531,7 +532,7 @@
{
"cell_type": "code",
"execution_count": 2,
- "id": "0574c4c7",
+ "id": "dc12224d",
"metadata": {
"collapsed": false,
"editable": true
@@ -596,7 +597,7 @@
},
{
"cell_type": "markdown",
- "id": "c3db2190",
+ "id": "7c9b27ed",
"metadata": {
"editable": true
},
@@ -615,7 +616,7 @@
},
{
"cell_type": "markdown",
- "id": "3b6e8500",
+ "id": "e8e28114",
"metadata": {
"editable": true
},
@@ -637,7 +638,7 @@
{
"cell_type": "code",
"execution_count": 3,
- "id": "ee32fb88",
+ "id": "37a2ec80",
"metadata": {
"collapsed": false,
"editable": true
@@ -778,7 +779,7 @@
},
{
"cell_type": "markdown",
- "id": "6477d18f",
+ "id": "38ea41a5",
"metadata": {
"editable": true
},
@@ -794,7 +795,7 @@
{
"cell_type": "code",
"execution_count": 4,
- "id": "5a396095",
+ "id": "869cf239",
"metadata": {
"collapsed": false,
"editable": true
@@ -807,7 +808,7 @@
},
{
"cell_type": "markdown",
- "id": "28bd1ab9",
+ "id": "b9b25144",
"metadata": {
"editable": true
},
@@ -819,7 +820,7 @@
{
"cell_type": "code",
"execution_count": 5,
- "id": "fb5d04e9",
+ "id": "7d2dc23b",
"metadata": {
"collapsed": false,
"editable": true
@@ -841,7 +842,7 @@
},
{
"cell_type": "markdown",
- "id": "f1229684",
+ "id": "83b5e35f",
"metadata": {
"editable": true
},
@@ -857,7 +858,7 @@
{
"cell_type": "code",
"execution_count": 6,
- "id": "f4a50c76",
+ "id": "4c217329",
"metadata": {
"collapsed": false,
"editable": true
@@ -895,7 +896,7 @@
},
{
"cell_type": "markdown",
- "id": "3d646164",
+ "id": "a0515ac9",
"metadata": {
"editable": true
},
@@ -908,7 +909,7 @@
{
"cell_type": "code",
"execution_count": 7,
- "id": "b0057b55",
+ "id": "5eb41a10",
"metadata": {
"collapsed": false,
"editable": true
@@ -929,7 +930,7 @@
},
{
"cell_type": "markdown",
- "id": "37f67196",
+ "id": "0535d6fd",
"metadata": {
"editable": true
},
@@ -945,7 +946,7 @@
{
"cell_type": "code",
"execution_count": 8,
- "id": "ae3c2dad",
+ "id": "c55d6d5f",
"metadata": {
"collapsed": false,
"editable": true
@@ -1003,7 +1004,7 @@
},
{
"cell_type": "markdown",
- "id": "5be7f268",
+ "id": "b820a2a1",
"metadata": {
"editable": true
},
@@ -1018,7 +1019,7 @@
{
"cell_type": "code",
"execution_count": 9,
- "id": "5296db7b",
+ "id": "43974d31",
"metadata": {
"collapsed": false,
"editable": true
@@ -1039,7 +1040,7 @@
},
{
"cell_type": "markdown",
- "id": "fa62814a",
+ "id": "ec754834",
"metadata": {
"editable": true
},
@@ -1063,7 +1064,7 @@
{
"cell_type": "code",
"execution_count": 10,
- "id": "08db6527",
+ "id": "505e52ab",
"metadata": {
"collapsed": false,
"editable": true
@@ -1535,7 +1536,7 @@
},
{
"cell_type": "markdown",
- "id": "464f4548",
+ "id": "00aa7046",
"metadata": {
"editable": true
},
@@ -1547,7 +1548,7 @@
{
"cell_type": "code",
"execution_count": 11,
- "id": "ea3d3c51",
+ "id": "b0b45dd4",
"metadata": {
"collapsed": false,
"editable": true
@@ -1591,7 +1592,7 @@
},
{
"cell_type": "markdown",
- "id": "a6b49446",
+ "id": "cf9645c3",
"metadata": {
"editable": true
},
@@ -1607,7 +1608,7 @@
{
"cell_type": "code",
"execution_count": 12,
- "id": "4f0f50b6",
+ "id": "a792c324",
"metadata": {
"collapsed": false,
"editable": true
@@ -1622,7 +1623,7 @@
},
{
"cell_type": "markdown",
- "id": "8ae3f1e4",
+ "id": "e11ed70e",
"metadata": {
"editable": true
},
@@ -1633,7 +1634,7 @@
{
"cell_type": "code",
"execution_count": 13,
- "id": "4d206fa2",
+ "id": "dfd03f3c",
"metadata": {
"collapsed": false,
"editable": true
@@ -1648,7 +1649,7 @@
},
{
"cell_type": "markdown",
- "id": "27ffcb75",
+ "id": "99b1bd91",
"metadata": {
"editable": true
},
@@ -1664,7 +1665,7 @@
{
"cell_type": "code",
"execution_count": 14,
- "id": "8cf19432",
+ "id": "864038bb",
"metadata": {
"collapsed": false,
"editable": true
@@ -1678,7 +1679,7 @@
},
{
"cell_type": "markdown",
- "id": "97abfa15",
+ "id": "24d5f3cc",
"metadata": {
"editable": true
},
@@ -1693,7 +1694,7 @@
{
"cell_type": "code",
"execution_count": 15,
- "id": "5aa3cb16",
+ "id": "14df9a52",
"metadata": {
"collapsed": false,
"editable": true
@@ -1719,7 +1720,7 @@
{
"cell_type": "code",
"execution_count": 16,
- "id": "793cb2e9",
+ "id": "adb3edf2",
"metadata": {
"collapsed": false,
"editable": true
@@ -1734,7 +1735,7 @@
},
{
"cell_type": "markdown",
- "id": "7b47a35a",
+ "id": "fa885022",
"metadata": {
"editable": true
},
@@ -1745,7 +1746,7 @@
{
"cell_type": "code",
"execution_count": 17,
- "id": "e34123b4",
+ "id": "1b862f90",
"metadata": {
"collapsed": false,
"editable": true
@@ -1760,7 +1761,7 @@
},
{
"cell_type": "markdown",
- "id": "413243c9",
+ "id": "e86e60dc",
"metadata": {
"editable": true
},
@@ -1771,7 +1772,7 @@
{
"cell_type": "code",
"execution_count": 18,
- "id": "aa7b9e8f",
+ "id": "9e578191",
"metadata": {
"collapsed": false,
"editable": true
@@ -1791,7 +1792,7 @@
{
"cell_type": "code",
"execution_count": 19,
- "id": "c66ee57f",
+ "id": "bbfc34f4",
"metadata": {
"collapsed": false,
"editable": true
@@ -1806,7 +1807,7 @@
},
{
"cell_type": "markdown",
- "id": "aca7922f",
+ "id": "2ac7ad43",
"metadata": {
"editable": true
},
@@ -1821,7 +1822,7 @@
{
"cell_type": "code",
"execution_count": 20,
- "id": "1503f15a",
+ "id": "f4a821cd",
"metadata": {
"collapsed": false,
"editable": true
@@ -1858,7 +1859,7 @@
},
{
"cell_type": "markdown",
- "id": "838cf72d",
+ "id": "0fcf8bf2",
"metadata": {
"editable": true
},
@@ -1871,7 +1872,7 @@
{
"cell_type": "code",
"execution_count": 21,
- "id": "a4444105",
+ "id": "d91608cf",
"metadata": {
"collapsed": false,
"editable": true
@@ -1894,7 +1895,7 @@
},
{
"cell_type": "markdown",
- "id": "8bbdf09c",
+ "id": "494009be",
"metadata": {
"editable": true
},
@@ -1904,7 +1905,7 @@
},
{
"cell_type": "markdown",
- "id": "c5cffe73",
+ "id": "db70a4fe",
"metadata": {
"editable": true
},
@@ -1914,7 +1915,7 @@
},
{
"cell_type": "markdown",
- "id": "e88dc6ab",
+ "id": "e5fc9732",
"metadata": {
"editable": true
},
@@ -1943,7 +1944,7 @@
},
{
"cell_type": "markdown",
- "id": "8ec227a0",
+ "id": "1f986c86",
"metadata": {
"editable": true
},
@@ -1993,7 +1994,7 @@
{
"cell_type": "code",
"execution_count": 22,
- "id": "5336138a",
+ "id": "0f845fb5",
"metadata": {
"collapsed": false,
"editable": true
@@ -2046,7 +2047,7 @@
},
{
"cell_type": "markdown",
- "id": "da4f9c76",
+ "id": "fbab1656",
"metadata": {
"editable": true
},
@@ -2067,7 +2068,7 @@
{
"cell_type": "code",
"execution_count": 23,
- "id": "3d4a38d4",
+ "id": "3ecd3028",
"metadata": {
"collapsed": false,
"editable": true
@@ -2105,7 +2106,7 @@
},
{
"cell_type": "markdown",
- "id": "bc7c43bb",
+ "id": "b45412df",
"metadata": {
"editable": true
},
@@ -2149,7 +2150,7 @@
},
{
"cell_type": "markdown",
- "id": "60a15786",
+ "id": "e90b1e65",
"metadata": {
"editable": true
},
@@ -2189,7 +2190,7 @@
},
{
"cell_type": "markdown",
- "id": "d9b2c952",
+ "id": "92bff738",
"metadata": {
"editable": true
},
@@ -2210,7 +2211,7 @@
{
"cell_type": "code",
"execution_count": 24,
- "id": "a6dfcaaf",
+ "id": "8eb225e4",
"metadata": {
"collapsed": false,
"editable": true
@@ -2236,7 +2237,7 @@
},
{
"cell_type": "markdown",
- "id": "623ec89c",
+ "id": "da1e7ad6",
"metadata": {
"editable": true
},
@@ -2264,7 +2265,7 @@
},
{
"cell_type": "markdown",
- "id": "391b8f09",
+ "id": "52ea3780",
"metadata": {
"editable": true
},
@@ -2301,7 +2302,7 @@
{
"cell_type": "code",
"execution_count": 25,
- "id": "a3a7a56e",
+ "id": "8ec12507",
"metadata": {
"collapsed": false,
"editable": true
@@ -2347,7 +2348,7 @@
},
{
"cell_type": "markdown",
- "id": "6a467f9c",
+ "id": "518a6c33",
"metadata": {
"editable": true
},
@@ -2378,7 +2379,7 @@
},
{
"cell_type": "markdown",
- "id": "824f2150",
+ "id": "9e4fe561",
"metadata": {
"editable": true
},
@@ -2416,7 +2417,7 @@
},
{
"cell_type": "markdown",
- "id": "ad801a4f",
+ "id": "331db754",
"metadata": {
"editable": true
},
@@ -2450,7 +2451,7 @@
},
{
"cell_type": "markdown",
- "id": "adbd5bf5",
+ "id": "94f8797f",
"metadata": {
"editable": true
},
@@ -2491,7 +2492,7 @@
{
"cell_type": "code",
"execution_count": 26,
- "id": "03850373",
+ "id": "6cc0ad5a",
"metadata": {
"collapsed": false,
"editable": true
@@ -2570,7 +2571,7 @@
},
{
"cell_type": "markdown",
- "id": "5c4ce702",
+ "id": "66341fe5",
"metadata": {
"editable": true
},
@@ -2591,7 +2592,7 @@
},
{
"cell_type": "markdown",
- "id": "f54c055f",
+ "id": "4654bdd2",
"metadata": {
"editable": true
},
@@ -2605,7 +2606,7 @@
{
"cell_type": "code",
"execution_count": 27,
- "id": "05fadefb",
+ "id": "84200c9e",
"metadata": {
"collapsed": false,
"editable": true
@@ -2715,7 +2716,7 @@
},
{
"cell_type": "markdown",
- "id": "6d6bba32",
+ "id": "2fade818",
"metadata": {
"editable": true
},
@@ -2734,7 +2735,7 @@
{
"cell_type": "code",
"execution_count": 28,
- "id": "5605c90f",
+ "id": "da2d74fa",
"metadata": {
"collapsed": false,
"editable": true
@@ -2761,7 +2762,7 @@
},
{
"cell_type": "markdown",
- "id": "f22bb889",
+ "id": "45f911b8",
"metadata": {
"editable": true
},
@@ -2775,7 +2776,7 @@
{
"cell_type": "code",
"execution_count": 29,
- "id": "a097c9e1",
+ "id": "b21a2c19",
"metadata": {
"collapsed": false,
"editable": true
@@ -2806,7 +2807,7 @@
},
{
"cell_type": "markdown",
- "id": "bc02f298",
+ "id": "80801250",
"metadata": {
"editable": true
},
@@ -2817,7 +2818,7 @@
{
"cell_type": "code",
"execution_count": 30,
- "id": "970ba03e",
+ "id": "303e085a",
"metadata": {
"collapsed": false,
"editable": true
@@ -2861,7 +2862,7 @@
},
{
"cell_type": "markdown",
- "id": "e4ff0700",
+ "id": "9358790a",
"metadata": {
"editable": true
},
@@ -2884,7 +2885,7 @@
{
"cell_type": "code",
"execution_count": 31,
- "id": "8bc77d1c",
+ "id": "a238def8",
"metadata": {
"collapsed": false,
"editable": true
@@ -2911,7 +2912,7 @@
},
{
"cell_type": "markdown",
- "id": "76d38bcf",
+ "id": "2ef943ac",
"metadata": {
"editable": true
},
@@ -2922,7 +2923,7 @@
{
"cell_type": "code",
"execution_count": 32,
- "id": "d22894cb",
+ "id": "afeabf8f",
"metadata": {
"collapsed": false,
"editable": true
@@ -2967,7 +2968,7 @@
},
{
"cell_type": "markdown",
- "id": "d4efa31d",
+ "id": "3dd5dfb4",
"metadata": {
"editable": true
},
@@ -2985,7 +2986,7 @@
},
{
"cell_type": "markdown",
- "id": "d6caddb7",
+ "id": "72754d13",
"metadata": {
"editable": true
},
@@ -3020,7 +3021,7 @@
{
"cell_type": "code",
"execution_count": 33,
- "id": "96f112a6",
+ "id": "9fc42ba6",
"metadata": {
"collapsed": false,
"editable": true
@@ -3032,7 +3033,7 @@
},
{
"cell_type": "markdown",
- "id": "2dee5b42",
+ "id": "35795551",
"metadata": {
"editable": true
},
@@ -3044,7 +3045,7 @@
{
"cell_type": "code",
"execution_count": 34,
- "id": "29e13f69",
+ "id": "1dabca19",
"metadata": {
"collapsed": false,
"editable": true
@@ -3057,7 +3058,7 @@
},
{
"cell_type": "markdown",
- "id": "4695192d",
+ "id": "be829505",
"metadata": {
"editable": true
},
@@ -3068,7 +3069,7 @@
{
"cell_type": "code",
"execution_count": 35,
- "id": "573fade6",
+ "id": "7d92ce1c",
"metadata": {
"collapsed": false,
"editable": true
@@ -3081,7 +3082,7 @@
},
{
"cell_type": "markdown",
- "id": "0d8ced47",
+ "id": "057049d7",
"metadata": {
"editable": true
},
@@ -3096,7 +3097,7 @@
{
"cell_type": "code",
"execution_count": 36,
- "id": "28886e64",
+ "id": "0837641b",
"metadata": {
"collapsed": false,
"editable": true
@@ -3108,7 +3109,7 @@
},
{
"cell_type": "markdown",
- "id": "298e5186",
+ "id": "19d5a72d",
"metadata": {
"editable": true
},
@@ -3120,7 +3121,7 @@
},
{
"cell_type": "markdown",
- "id": "ea131902",
+ "id": "4ae0b49b",
"metadata": {
"editable": true
},
@@ -3133,7 +3134,7 @@
{
"cell_type": "code",
"execution_count": 37,
- "id": "686215bb",
+ "id": "429afe53",
"metadata": {
"collapsed": false,
"editable": true
@@ -3188,7 +3189,7 @@
{
"cell_type": "code",
"execution_count": 38,
- "id": "fa9efbca",
+ "id": "887c06b9",
"metadata": {
"collapsed": false,
"editable": true
@@ -3217,7 +3218,7 @@
{
"cell_type": "code",
"execution_count": 39,
- "id": "5a6a0547",
+ "id": "a4d8f64e",
"metadata": {
"collapsed": false,
"editable": true
@@ -3247,7 +3248,7 @@
{
"cell_type": "code",
"execution_count": 40,
- "id": "9df608ec",
+ "id": "b8fb8fa0",
"metadata": {
"collapsed": false,
"editable": true
@@ -3274,7 +3275,7 @@
{
"cell_type": "code",
"execution_count": 41,
- "id": "8d20fdf7",
+ "id": "7777faa8",
"metadata": {
"collapsed": false,
"editable": true
@@ -3316,7 +3317,7 @@
},
{
"cell_type": "markdown",
- "id": "bd641a2a",
+ "id": "bb6d1d3e",
"metadata": {
"editable": true
},
@@ -3327,7 +3328,7 @@
{
"cell_type": "code",
"execution_count": 42,
- "id": "a6d8bf75",
+ "id": "d8c0caf4",
"metadata": {
"collapsed": false,
"editable": true
@@ -3504,7 +3505,7 @@
},
{
"cell_type": "markdown",
- "id": "505033e6",
+ "id": "2631b51d",
"metadata": {
"editable": true
},
@@ -3532,7 +3533,7 @@
},
{
"cell_type": "markdown",
- "id": "d138fcf8",
+ "id": "357644b3",
"metadata": {
"editable": true
},
@@ -3555,7 +3556,7 @@
},
{
"cell_type": "markdown",
- "id": "df986885",
+ "id": "06854c7f",
"metadata": {
"editable": true
},
@@ -3586,7 +3587,7 @@
},
{
"cell_type": "markdown",
- "id": "67ccb46b",
+ "id": "bb26a6da",
"metadata": {
"editable": true
},
@@ -3618,7 +3619,7 @@
},
{
"cell_type": "markdown",
- "id": "a043bdea",
+ "id": "0277931e",
"metadata": {
"editable": true
},
@@ -3656,7 +3657,7 @@
},
{
"cell_type": "markdown",
- "id": "ac370685",
+ "id": "93a45265",
"metadata": {
"editable": true
},
@@ -3681,7 +3682,7 @@
},
{
"cell_type": "markdown",
- "id": "68411972",
+ "id": "7feb8c33",
"metadata": {
"editable": true
},
@@ -3693,7 +3694,7 @@
},
{
"cell_type": "markdown",
- "id": "68d05dd2",
+ "id": "1f55cf23",
"metadata": {
"editable": true
},
@@ -3716,7 +3717,7 @@
},
{
"cell_type": "markdown",
- "id": "55c89a89",
+ "id": "7cea0ca3",
"metadata": {
"editable": true
},
@@ -3736,7 +3737,7 @@
},
{
"cell_type": "markdown",
- "id": "20f0b6de",
+ "id": "086014d5",
"metadata": {
"editable": true
},
@@ -3758,7 +3759,7 @@
},
{
"cell_type": "markdown",
- "id": "8f0a4e60",
+ "id": "9bc419af",
"metadata": {
"editable": true
},
@@ -3776,7 +3777,7 @@
},
{
"cell_type": "markdown",
- "id": "ee9f6778",
+ "id": "a9198ed4",
"metadata": {
"editable": true
},
@@ -3795,7 +3796,7 @@
},
{
"cell_type": "markdown",
- "id": "8ec34edc",
+ "id": "75c023d8",
"metadata": {
"editable": true
},
@@ -3807,7 +3808,7 @@
},
{
"cell_type": "markdown",
- "id": "4cb4f14f",
+ "id": "2d2e4666",
"metadata": {
"editable": true
},
@@ -3852,7 +3853,7 @@
},
{
"cell_type": "markdown",
- "id": "3ceba030",
+ "id": "23dc45c2",
"metadata": {
"editable": true
},
@@ -3882,7 +3883,7 @@
},
{
"cell_type": "markdown",
- "id": "fad4c7c0",
+ "id": "8d80aba5",
"metadata": {
"editable": true
},
@@ -3909,7 +3910,7 @@
},
{
"cell_type": "markdown",
- "id": "92edec9a",
+ "id": "b8d6cf49",
"metadata": {
"editable": true
},
@@ -3923,7 +3924,7 @@
},
{
"cell_type": "markdown",
- "id": "07153151",
+ "id": "ba566ae5",
"metadata": {
"editable": true
},
@@ -3940,7 +3941,7 @@
},
{
"cell_type": "markdown",
- "id": "31a707ec",
+ "id": "fddca9d2",
"metadata": {
"editable": true
},
@@ -3956,7 +3957,7 @@
},
{
"cell_type": "markdown",
- "id": "d0cbacbc",
+ "id": "11ed9eb7",
"metadata": {
"editable": true
},
@@ -3968,7 +3969,7 @@
},
{
"cell_type": "markdown",
- "id": "88e6378a",
+ "id": "ab228680",
"metadata": {
"editable": true
},
@@ -3986,7 +3987,7 @@
},
{
"cell_type": "markdown",
- "id": "a85abfe5",
+ "id": "a620d020",
"metadata": {
"editable": true
},
@@ -4007,7 +4008,7 @@
},
{
"cell_type": "markdown",
- "id": "28e312e0",
+ "id": "4de72e77",
"metadata": {
"editable": true
},
@@ -4024,7 +4025,7 @@
},
{
"cell_type": "markdown",
- "id": "7e562a52",
+ "id": "60ef63bb",
"metadata": {
"editable": true
},
@@ -4036,7 +4037,7 @@
},
{
"cell_type": "markdown",
- "id": "ca872cb5",
+ "id": "6c719d5b",
"metadata": {
"editable": true
},
@@ -4047,7 +4048,7 @@
},
{
"cell_type": "markdown",
- "id": "3f5aaf97",
+ "id": "3a6248cc",
"metadata": {
"editable": true
},
@@ -4064,7 +4065,7 @@
},
{
"cell_type": "markdown",
- "id": "ea91ec87",
+ "id": "937fbb4d",
"metadata": {
"editable": true
},
@@ -4075,7 +4076,7 @@
},
{
"cell_type": "markdown",
- "id": "23d4791e",
+ "id": "985098ad",
"metadata": {
"editable": true
},
@@ -4091,7 +4092,7 @@
},
{
"cell_type": "markdown",
- "id": "645d3042",
+ "id": "7a2ade22",
"metadata": {
"editable": true
},
@@ -4103,7 +4104,7 @@
},
{
"cell_type": "markdown",
- "id": "1957cac1",
+ "id": "4b50fe09",
"metadata": {
"editable": true
},
@@ -4120,7 +4121,7 @@
},
{
"cell_type": "markdown",
- "id": "7ba994c2",
+ "id": "310ac762",
"metadata": {
"editable": true
},
@@ -4132,7 +4133,7 @@
},
{
"cell_type": "markdown",
- "id": "0b4d1e86",
+ "id": "8ce2620f",
"metadata": {
"editable": true
},
@@ -4150,7 +4151,7 @@
},
{
"cell_type": "markdown",
- "id": "7c000d4f",
+ "id": "78459d15",
"metadata": {
"editable": true
},
@@ -4160,7 +4161,7 @@
},
{
"cell_type": "markdown",
- "id": "5c6e9896",
+ "id": "d40f94e2",
"metadata": {
"editable": true
},
@@ -4172,7 +4173,7 @@
},
{
"cell_type": "markdown",
- "id": "c610b5a3",
+ "id": "c5f2c97d",
"metadata": {
"editable": true
},
@@ -4189,7 +4190,7 @@
},
{
"cell_type": "markdown",
- "id": "7b156ba0",
+ "id": "bb30f7cc",
"metadata": {
"editable": true
},
@@ -4201,7 +4202,7 @@
},
{
"cell_type": "markdown",
- "id": "6332b4fb",
+ "id": "a5d8512c",
"metadata": {
"editable": true
},
@@ -4212,7 +4213,7 @@
},
{
"cell_type": "markdown",
- "id": "dadb48a5",
+ "id": "1c888249",
"metadata": {
"editable": true
},
@@ -4224,7 +4225,7 @@
},
{
"cell_type": "markdown",
- "id": "14979de9",
+ "id": "477dada7",
"metadata": {
"editable": true
},
@@ -4234,7 +4235,7 @@
},
{
"cell_type": "markdown",
- "id": "b15978ac",
+ "id": "8e5e2b68",
"metadata": {
"editable": true
},
@@ -4254,7 +4255,7 @@
},
{
"cell_type": "markdown",
- "id": "ab70d7dc",
+ "id": "84150e8d",
"metadata": {
"editable": true
},
@@ -4271,7 +4272,7 @@
},
{
"cell_type": "markdown",
- "id": "3158ad88",
+ "id": "3f25aabb",
"metadata": {
"editable": true
},
@@ -4290,7 +4291,7 @@
},
{
"cell_type": "markdown",
- "id": "424ea4cd",
+ "id": "ce6c0a98",
"metadata": {
"editable": true
},
@@ -4302,7 +4303,7 @@
},
{
"cell_type": "markdown",
- "id": "9875f210",
+ "id": "17805209",
"metadata": {
"editable": true
},
@@ -4312,7 +4313,7 @@
},
{
"cell_type": "markdown",
- "id": "c317c081",
+ "id": "f9984101",
"metadata": {
"editable": true
},
@@ -4329,7 +4330,7 @@
},
{
"cell_type": "markdown",
- "id": "850d7062",
+ "id": "4abcf7b3",
"metadata": {
"editable": true
},
@@ -4339,7 +4340,7 @@
},
{
"cell_type": "markdown",
- "id": "05b6c21e",
+ "id": "3a4b99d7",
"metadata": {
"editable": true
},
@@ -4355,7 +4356,7 @@
},
{
"cell_type": "markdown",
- "id": "52090d6f",
+ "id": "261d5f57",
"metadata": {
"editable": true
},
@@ -4367,7 +4368,7 @@
},
{
"cell_type": "markdown",
- "id": "f4f56b6e",
+ "id": "0c7e0ed7",
"metadata": {
"editable": true
},
@@ -4379,7 +4380,7 @@
},
{
"cell_type": "markdown",
- "id": "e76317e2",
+ "id": "410091f0",
"metadata": {
"editable": true
},
@@ -4391,7 +4392,7 @@
},
{
"cell_type": "markdown",
- "id": "cf1ff27d",
+ "id": "17f0e1e7",
"metadata": {
"editable": true
},
@@ -4401,7 +4402,7 @@
},
{
"cell_type": "markdown",
- "id": "c6558ca7",
+ "id": "acac4ddf",
"metadata": {
"editable": true
},
@@ -4413,7 +4414,7 @@
},
{
"cell_type": "markdown",
- "id": "eb10b3cf",
+ "id": "0b3bdcec",
"metadata": {
"editable": true
},
@@ -4430,7 +4431,7 @@
},
{
"cell_type": "markdown",
- "id": "95040138",
+ "id": "8b71f89e",
"metadata": {
"editable": true
},
@@ -4440,7 +4441,7 @@
},
{
"cell_type": "markdown",
- "id": "efbb37df",
+ "id": "b1a4b8b2",
"metadata": {
"editable": true
},
@@ -4452,7 +4453,7 @@
},
{
"cell_type": "markdown",
- "id": "ce339463",
+ "id": "bb3f35b1",
"metadata": {
"editable": true
},
@@ -4466,7 +4467,7 @@
},
{
"cell_type": "markdown",
- "id": "51d1021d",
+ "id": "bb8eac7a",
"metadata": {
"editable": true
},
@@ -4482,7 +4483,7 @@
},
{
"cell_type": "markdown",
- "id": "5471c13f",
+ "id": "23361eba",
"metadata": {
"editable": true
},
@@ -4494,7 +4495,7 @@
},
{
"cell_type": "markdown",
- "id": "ca1015ba",
+ "id": "94bf3ada",
"metadata": {
"editable": true
},
@@ -4516,7 +4517,7 @@
},
{
"cell_type": "markdown",
- "id": "325048d9",
+ "id": "ff0afe4b",
"metadata": {
"editable": true
},
@@ -4528,7 +4529,7 @@
},
{
"cell_type": "markdown",
- "id": "5c6b185f",
+ "id": "393ee959",
"metadata": {
"editable": true
},
@@ -4551,7 +4552,7 @@
},
{
"cell_type": "markdown",
- "id": "eddea0e3",
+ "id": "f2df5cfc",
"metadata": {
"editable": true
},
@@ -4567,7 +4568,7 @@
},
{
"cell_type": "markdown",
- "id": "39eeb7a1",
+ "id": "f6358bb7",
"metadata": {
"editable": true
},
@@ -4579,7 +4580,7 @@
},
{
"cell_type": "markdown",
- "id": "25477c00",
+ "id": "ef56bb84",
"metadata": {
"editable": true
},
@@ -4603,7 +4604,7 @@
},
{
"cell_type": "markdown",
- "id": "dbdce765",
+ "id": "acd41944",
"metadata": {
"editable": true
},
@@ -4615,7 +4616,7 @@
},
{
"cell_type": "markdown",
- "id": "3b833783",
+ "id": "1a2a7e92",
"metadata": {
"editable": true
},
@@ -4636,7 +4637,7 @@
},
{
"cell_type": "markdown",
- "id": "98103cac",
+ "id": "a082637c",
"metadata": {
"editable": true
},
@@ -4648,7 +4649,7 @@
},
{
"cell_type": "markdown",
- "id": "01de1e28",
+ "id": "dfc24dff",
"metadata": {
"editable": true
},
@@ -4667,7 +4668,7 @@
},
{
"cell_type": "markdown",
- "id": "3d50cf6a",
+ "id": "90f81e55",
"metadata": {
"editable": true
},
@@ -4677,7 +4678,7 @@
},
{
"cell_type": "markdown",
- "id": "221269b0",
+ "id": "3693fc3b",
"metadata": {
"editable": true
},
@@ -4691,7 +4692,7 @@
},
{
"cell_type": "markdown",
- "id": "b736af88",
+ "id": "2bb540dd",
"metadata": {
"editable": true
},
@@ -4703,7 +4704,7 @@
},
{
"cell_type": "markdown",
- "id": "ea505169",
+ "id": "5fad7cc5",
"metadata": {
"editable": true
},
@@ -4715,7 +4716,7 @@
},
{
"cell_type": "markdown",
- "id": "515470a3",
+ "id": "c9a47e0a",
"metadata": {
"editable": true
},
@@ -4732,7 +4733,7 @@
},
{
"cell_type": "markdown",
- "id": "f9eaeace",
+ "id": "f579f1d0",
"metadata": {
"editable": true
},
@@ -4744,7 +4745,7 @@
},
{
"cell_type": "markdown",
- "id": "e6488f9b",
+ "id": "f980cb6a",
"metadata": {
"editable": true
},
@@ -4766,7 +4767,7 @@
},
{
"cell_type": "markdown",
- "id": "f2bc476e",
+ "id": "de47a73d",
"metadata": {
"editable": true
},
@@ -4781,7 +4782,7 @@
},
{
"cell_type": "markdown",
- "id": "2d7b7d19",
+ "id": "5eacb34e",
"metadata": {
"editable": true
},
@@ -4792,7 +4793,7 @@
{
"cell_type": "code",
"execution_count": 43,
- "id": "4aad6e10",
+ "id": "77235f88",
"metadata": {
"collapsed": false,
"editable": true
@@ -4947,7 +4948,7 @@
},
{
"cell_type": "markdown",
- "id": "f8c418c1",
+ "id": "0147790d",
"metadata": {
"editable": true
},
@@ -4962,7 +4963,7 @@
{
"cell_type": "code",
"execution_count": 44,
- "id": "96758ada",
+ "id": "59eb96af",
"metadata": {
"collapsed": false,
"editable": true
@@ -5131,7 +5132,7 @@
},
{
"cell_type": "markdown",
- "id": "c62fedb8",
+ "id": "dc02c291",
"metadata": {
"editable": true
},
@@ -5144,7 +5145,7 @@
},
{
"cell_type": "markdown",
- "id": "1f962431",
+ "id": "c8fff51e",
"metadata": {
"editable": true
},
@@ -5161,7 +5162,7 @@
},
{
"cell_type": "markdown",
- "id": "71b1d885",
+ "id": "3751edf7",
"metadata": {
"editable": true
},
@@ -5177,7 +5178,7 @@
},
{
"cell_type": "markdown",
- "id": "0b96a028",
+ "id": "a502c731",
"metadata": {
"editable": true
},
@@ -5190,7 +5191,7 @@
},
{
"cell_type": "markdown",
- "id": "311ae3d3",
+ "id": "eb73f07e",
"metadata": {
"editable": true
},
@@ -5207,7 +5208,7 @@
},
{
"cell_type": "markdown",
- "id": "98cb3d44",
+ "id": "9ab9d930",
"metadata": {
"editable": true
},
@@ -5219,7 +5220,7 @@
},
{
"cell_type": "markdown",
- "id": "3e8e134d",
+ "id": "9cb8689a",
"metadata": {
"editable": true
},
@@ -5246,7 +5247,7 @@
},
{
"cell_type": "markdown",
- "id": "a1844ff9",
+ "id": "d21e3a14",
"metadata": {
"editable": true
},
@@ -5259,7 +5260,7 @@
{
"cell_type": "code",
"execution_count": 45,
- "id": "4410b99e",
+ "id": "833da16b",
"metadata": {
"collapsed": false,
"editable": true
@@ -5433,7 +5434,7 @@
},
{
"cell_type": "markdown",
- "id": "f0ab0e0f",
+ "id": "0fdcf8c5",
"metadata": {
"editable": true
},
@@ -5453,7 +5454,7 @@
},
{
"cell_type": "markdown",
- "id": "333b0a8d",
+ "id": "0a057338",
"metadata": {
"editable": true
},
@@ -5468,7 +5469,7 @@
},
{
"cell_type": "markdown",
- "id": "5b358fbf",
+ "id": "6721bcf2",
"metadata": {
"editable": true
},
@@ -5482,7 +5483,7 @@
},
{
"cell_type": "markdown",
- "id": "c5d60864",
+ "id": "dc3db9fd",
"metadata": {
"editable": true
},
@@ -5498,7 +5499,7 @@
},
{
"cell_type": "markdown",
- "id": "bcce6eb8",
+ "id": "9af3fd6a",
"metadata": {
"editable": true
},
@@ -5508,7 +5509,7 @@
},
{
"cell_type": "markdown",
- "id": "e6497fd7",
+ "id": "4c2da445",
"metadata": {
"editable": true
},
@@ -5530,7 +5531,7 @@
},
{
"cell_type": "markdown",
- "id": "31b650fc",
+ "id": "93b58380",
"metadata": {
"editable": true
},
@@ -5544,7 +5545,7 @@
{
"cell_type": "code",
"execution_count": 46,
- "id": "6e267e72",
+ "id": "cb73915d",
"metadata": {
"collapsed": false,
"editable": true
@@ -5620,7 +5621,7 @@
},
{
"cell_type": "markdown",
- "id": "8b054a85",
+ "id": "c9d250c7",
"metadata": {
"editable": true
},
@@ -5632,7 +5633,7 @@
},
{
"cell_type": "markdown",
- "id": "f637dd9d",
+ "id": "0d67bc8c",
"metadata": {
"editable": true
},
@@ -5649,7 +5650,7 @@
},
{
"cell_type": "markdown",
- "id": "ac088e86",
+ "id": "fe4ee5a8",
"metadata": {
"editable": true
},
@@ -5661,7 +5662,7 @@
},
{
"cell_type": "markdown",
- "id": "14afd7fa",
+ "id": "62b400ca",
"metadata": {
"editable": true
},
@@ -5676,7 +5677,7 @@
},
{
"cell_type": "markdown",
- "id": "0a2680eb",
+ "id": "7d4723f2",
"metadata": {
"editable": true
},
@@ -5688,7 +5689,7 @@
},
{
"cell_type": "markdown",
- "id": "7e30575f",
+ "id": "97889b0e",
"metadata": {
"editable": true
},
@@ -5700,7 +5701,7 @@
},
{
"cell_type": "markdown",
- "id": "3b30e08a",
+ "id": "236028bc",
"metadata": {
"editable": true
},
@@ -5712,7 +5713,7 @@
},
{
"cell_type": "markdown",
- "id": "be7d958b",
+ "id": "a4334818",
"metadata": {
"editable": true
},
@@ -5722,7 +5723,7 @@
},
{
"cell_type": "markdown",
- "id": "d6a52e39",
+ "id": "8330dd77",
"metadata": {
"editable": true
},
@@ -5739,7 +5740,7 @@
},
{
"cell_type": "markdown",
- "id": "488d0a14",
+ "id": "78522018",
"metadata": {
"editable": true
},
@@ -5751,7 +5752,7 @@
},
{
"cell_type": "markdown",
- "id": "59834674",
+ "id": "943956e4",
"metadata": {
"editable": true
},
@@ -5763,7 +5764,7 @@
},
{
"cell_type": "markdown",
- "id": "af640638",
+ "id": "3c7b57e2",
"metadata": {
"editable": true
},
@@ -5773,7 +5774,7 @@
},
{
"cell_type": "markdown",
- "id": "8d83ea23",
+ "id": "55173c99",
"metadata": {
"editable": true
},
@@ -5785,7 +5786,7 @@
},
{
"cell_type": "markdown",
- "id": "4d4e4ea8",
+ "id": "a6d078e4",
"metadata": {
"editable": true
},
@@ -5796,7 +5797,7 @@
{
"cell_type": "code",
"execution_count": 47,
- "id": "ad4cc32f",
+ "id": "452c599c",
"metadata": {
"collapsed": false,
"editable": true
@@ -5957,7 +5958,7 @@
},
{
"cell_type": "markdown",
- "id": "ceb283ce",
+ "id": "8ca2348f",
"metadata": {
"editable": true
},
@@ -5979,7 +5980,7 @@
},
{
"cell_type": "markdown",
- "id": "a68e0e56",
+ "id": "0ccc174e",
"metadata": {
"editable": true
},
@@ -5996,7 +5997,7 @@
},
{
"cell_type": "markdown",
- "id": "8441e4e6",
+ "id": "d4601257",
"metadata": {
"editable": true
},
@@ -6006,7 +6007,7 @@
},
{
"cell_type": "markdown",
- "id": "1d343e68",
+ "id": "9ec01889",
"metadata": {
"editable": true
},
@@ -6021,7 +6022,7 @@
},
{
"cell_type": "markdown",
- "id": "1c566531",
+ "id": "71993d6c",
"metadata": {
"editable": true
},
@@ -6031,7 +6032,7 @@
},
{
"cell_type": "markdown",
- "id": "7a06b755",
+ "id": "f6acfae4",
"metadata": {
"editable": true
},
@@ -6046,7 +6047,7 @@
},
{
"cell_type": "markdown",
- "id": "2e88c504",
+ "id": "6540422f",
"metadata": {
"editable": true
},
@@ -6057,7 +6058,7 @@
},
{
"cell_type": "markdown",
- "id": "7299b0d3",
+ "id": "fd8c2326",
"metadata": {
"editable": true
},
@@ -6077,7 +6078,7 @@
},
{
"cell_type": "markdown",
- "id": "c849f0cc",
+ "id": "74eabad7",
"metadata": {
"editable": true
},
@@ -6089,7 +6090,7 @@
},
{
"cell_type": "markdown",
- "id": "f19b2ed7",
+ "id": "f9d16e2f",
"metadata": {
"editable": true
},
@@ -6126,7 +6127,7 @@
},
{
"cell_type": "markdown",
- "id": "96581350",
+ "id": "68c24098",
"metadata": {
"editable": true
},
@@ -6136,7 +6137,7 @@
},
{
"cell_type": "markdown",
- "id": "2c5aa09d",
+ "id": "02c1e06d",
"metadata": {
"editable": true
},
@@ -6149,7 +6150,7 @@
{
"cell_type": "code",
"execution_count": 48,
- "id": "9b979206",
+ "id": "972b8e94",
"metadata": {
"collapsed": false,
"editable": true
@@ -6350,7 +6351,7 @@
},
{
"cell_type": "markdown",
- "id": "ec7cab35",
+ "id": "734d97bc",
"metadata": {
"editable": true
},
@@ -6367,7 +6368,7 @@
},
{
"cell_type": "markdown",
- "id": "7366658f",
+ "id": "2c2d0e2c",
"metadata": {
"editable": true
},
@@ -6384,7 +6385,7 @@
},
{
"cell_type": "markdown",
- "id": "b6557284",
+ "id": "9de00307",
"metadata": {
"editable": true
},
@@ -6394,7 +6395,7 @@
},
{
"cell_type": "markdown",
- "id": "df2d7d07",
+ "id": "cb659253",
"metadata": {
"editable": true
},
@@ -6409,7 +6410,7 @@
},
{
"cell_type": "markdown",
- "id": "aad0506a",
+ "id": "909d23ae",
"metadata": {
"editable": true
},
@@ -6423,7 +6424,7 @@
},
{
"cell_type": "markdown",
- "id": "9e5776d1",
+ "id": "e3607f9e",
"metadata": {
"editable": true
},
@@ -6436,7 +6437,7 @@
},
{
"cell_type": "markdown",
- "id": "7fad71c5",
+ "id": "e0254d92",
"metadata": {
"editable": true
},
@@ -6456,7 +6457,7 @@
},
{
"cell_type": "markdown",
- "id": "d98bd52b",
+ "id": "7a787737",
"metadata": {
"editable": true
},
@@ -6468,7 +6469,7 @@
},
{
"cell_type": "markdown",
- "id": "3f6cb731",
+ "id": "42cfda53",
"metadata": {
"editable": true
},
@@ -6480,7 +6481,7 @@
},
{
"cell_type": "markdown",
- "id": "0efeb6a7",
+ "id": "41fdd74a",
"metadata": {
"editable": true
},
@@ -6492,7 +6493,7 @@
},
{
"cell_type": "markdown",
- "id": "b3367fd8",
+ "id": "9a43a5c3",
"metadata": {
"editable": true
},
@@ -6502,7 +6503,7 @@
},
{
"cell_type": "markdown",
- "id": "f5cdf037",
+ "id": "2deb98de",
"metadata": {
"editable": true
},
@@ -6514,7 +6515,7 @@
},
{
"cell_type": "markdown",
- "id": "39090b0c",
+ "id": "367f7d4b",
"metadata": {
"editable": true
},
@@ -6526,7 +6527,7 @@
},
{
"cell_type": "markdown",
- "id": "306f52ce",
+ "id": "4ace8d41",
"metadata": {
"editable": true
},
@@ -6538,7 +6539,7 @@
},
{
"cell_type": "markdown",
- "id": "4dddd0e4",
+ "id": "014d9b72",
"metadata": {
"editable": true
},
@@ -6548,7 +6549,7 @@
},
{
"cell_type": "markdown",
- "id": "19ba57a3",
+ "id": "91cb0d4f",
"metadata": {
"editable": true
},
@@ -6564,7 +6565,7 @@
},
{
"cell_type": "markdown",
- "id": "3f4b369e",
+ "id": "7015c1df",
"metadata": {
"editable": true
},
@@ -6574,7 +6575,7 @@
},
{
"cell_type": "markdown",
- "id": "01054c66",
+ "id": "a170f9bf",
"metadata": {
"editable": true
},
@@ -6586,7 +6587,7 @@
},
{
"cell_type": "markdown",
- "id": "48250dfa",
+ "id": "f79c87b0",
"metadata": {
"editable": true
},
@@ -6603,7 +6604,7 @@
},
{
"cell_type": "markdown",
- "id": "830538cd",
+ "id": "7b00c2c7",
"metadata": {
"editable": true
},
@@ -6613,7 +6614,7 @@
},
{
"cell_type": "markdown",
- "id": "1e05f3d1",
+ "id": "1da2ec1f",
"metadata": {
"editable": true
},
@@ -6629,7 +6630,7 @@
},
{
"cell_type": "markdown",
- "id": "278b7644",
+ "id": "d048b2b0",
"metadata": {
"editable": true
},
@@ -6643,7 +6644,7 @@
},
{
"cell_type": "markdown",
- "id": "08bf068d",
+ "id": "2a5423c6",
"metadata": {
"editable": true
},
@@ -6662,7 +6663,7 @@
{
"cell_type": "code",
"execution_count": 49,
- "id": "fb15b704",
+ "id": "39978a3f",
"metadata": {
"collapsed": false,
"editable": true
@@ -6717,7 +6718,7 @@
},
{
"cell_type": "markdown",
- "id": "ca43eaaa",
+ "id": "d86acd9a",
"metadata": {
"editable": true
},
@@ -6747,7 +6748,7 @@
},
{
"cell_type": "markdown",
- "id": "8cb99e50",
+ "id": "219af542",
"metadata": {
"editable": true
},
@@ -6776,7 +6777,7 @@
{
"cell_type": "code",
"execution_count": 50,
- "id": "2c311458",
+ "id": "0300f83e",
"metadata": {
"collapsed": false,
"editable": true
@@ -6823,7 +6824,7 @@
},
{
"cell_type": "markdown",
- "id": "6ce6fcdb",
+ "id": "63ff2d7d",
"metadata": {
"editable": true
},
@@ -6849,7 +6850,7 @@
{
"cell_type": "code",
"execution_count": 51,
- "id": "975ad28f",
+ "id": "504a8a89",
"metadata": {
"collapsed": false,
"editable": true
@@ -7083,7 +7084,7 @@
},
{
"cell_type": "markdown",
- "id": "a85b7bc6",
+ "id": "2154560c",
"metadata": {
"editable": true
},
@@ -7095,7 +7096,7 @@
},
{
"cell_type": "markdown",
- "id": "913742fb",
+ "id": "36990efc",
"metadata": {
"editable": true
},
@@ -7107,7 +7108,7 @@
},
{
"cell_type": "markdown",
- "id": "9b936d66",
+ "id": "d4e6e7d4",
"metadata": {
"editable": true
},
@@ -7119,7 +7120,7 @@
},
{
"cell_type": "markdown",
- "id": "a0cd719f",
+ "id": "cca6cfed",
"metadata": {
"editable": true
},
@@ -7136,7 +7137,7 @@
},
{
"cell_type": "markdown",
- "id": "8a8ddb73",
+ "id": "19f73071",
"metadata": {
"editable": true
},
@@ -7146,7 +7147,7 @@
},
{
"cell_type": "markdown",
- "id": "460bb8e2",
+ "id": "3e637804",
"metadata": {
"editable": true
},
@@ -7158,7 +7159,7 @@
},
{
"cell_type": "markdown",
- "id": "619814ea",
+ "id": "1a3ef69a",
"metadata": {
"editable": true
},
@@ -7175,7 +7176,7 @@
},
{
"cell_type": "markdown",
- "id": "833fef22",
+ "id": "b9206a11",
"metadata": {
"editable": true
},
@@ -7186,7 +7187,7 @@
},
{
"cell_type": "markdown",
- "id": "72df2582",
+ "id": "3050dcc1",
"metadata": {
"editable": true
},
@@ -7206,7 +7207,7 @@
},
{
"cell_type": "markdown",
- "id": "efc2be56",
+ "id": "2adca788",
"metadata": {
"editable": true
},
@@ -7216,7 +7217,7 @@
},
{
"cell_type": "markdown",
- "id": "8bee39ce",
+ "id": "9d36478f",
"metadata": {
"editable": true
},
@@ -7242,7 +7243,7 @@
},
{
"cell_type": "markdown",
- "id": "e133bda5",
+ "id": "f5a39291",
"metadata": {
"editable": true
},
@@ -7258,7 +7259,7 @@
},
{
"cell_type": "markdown",
- "id": "8cc804aa",
+ "id": "2090b5b8",
"metadata": {
"editable": true
},
@@ -7269,7 +7270,7 @@
{
"cell_type": "code",
"execution_count": 52,
- "id": "8e3fb51d",
+ "id": "0598530e",
"metadata": {
"collapsed": false,
"editable": true
@@ -7500,7 +7501,7 @@
},
{
"cell_type": "markdown",
- "id": "a77decf5",
+ "id": "518138c8",
"metadata": {
"editable": true
},