diff --git a/doc/LectureNotes/Project2.ipynb b/doc/LectureNotes/Project2.ipynb index 88c450dfd..882658ddc 100644 --- a/doc/LectureNotes/Project2.ipynb +++ b/doc/LectureNotes/Project2.ipynb @@ -2,34 +2,34 @@ "cells": [ { "cell_type": "markdown", - "id": "6afd3fdb", + "id": "515c9474", "metadata": { "editable": true }, "source": [ "\n", - "" + "" ] }, { "cell_type": "markdown", - "id": "21a10baa", + "id": "890dcb04", "metadata": { "editable": true }, "source": [ - "# Project 2 on Machine Learning, deadline November 13 (Midnight)\n", + "# Project 2 on Machine Learning, deadline November 17 (Midnight)\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Oct 9, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "4f67ce6e", + "id": "8cbf512f", "metadata": { "editable": true }, @@ -75,7 +75,7 @@ }, { "cell_type": "markdown", - "id": "67c6916e", + "id": "696379a0", "metadata": { "editable": true }, @@ -127,7 +127,7 @@ }, { "cell_type": "markdown", - "id": "fff54502", + "id": "81d48303", "metadata": { "editable": true }, @@ -166,7 +166,7 @@ }, { "cell_type": "markdown", - "id": "6e0f9012", + "id": "db6aebb0", "metadata": { "editable": true }, @@ -178,7 +178,7 @@ }, { "cell_type": "markdown", - "id": "075046bf", + "id": "18314d90", "metadata": { "editable": true }, @@ -204,7 +204,7 @@ }, { "cell_type": "markdown", - "id": "080dadf2", + "id": "dc3021aa", "metadata": { "editable": true }, @@ -216,7 +216,7 @@ }, { "cell_type": "markdown", - "id": "e3418dd4", + "id": "3c3c5b42", "metadata": { "editable": true }, @@ -236,7 +236,7 @@ }, { "cell_type": "markdown", - "id": "828ad79f", + "id": "1a493d07", "metadata": { "editable": true }, @@ -258,7 +258,7 @@ }, { "cell_type": "markdown", - "id": "07059668", + "id": "649a5380", "metadata": { "editable": true }, @@ -274,7 +274,7 @@ }, { "cell_type": "markdown", - "id": "e88200db", + "id": "804df082", "metadata": { "editable": true }, @@ -290,7 +290,7 @@ }, { "cell_type": "markdown", - "id": "66733be9", + "id": "2661bc83", "metadata": { "editable": true }, @@ -321,7 +321,7 @@ }, { "cell_type": "markdown", - "id": "5c49a400", + "id": "e651a157", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/Project3.ipynb b/doc/LectureNotes/Project3.ipynb index d45c511e8..d4e676b9c 100644 --- a/doc/LectureNotes/Project3.ipynb +++ b/doc/LectureNotes/Project3.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "5831c36a", + "id": "32bbc99a", "metadata": { "editable": true }, @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "2d774c8b", + "id": "21397747", "metadata": { "editable": true }, @@ -22,14 +22,14 @@ "# Project 3 on Machine Learning, deadline December 18 (midnight), 2023\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Nov 12, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "5cbde03b", + "id": "a13debcc", "metadata": { "editable": true }, @@ -39,7 +39,7 @@ }, { "cell_type": "markdown", - "id": "5170403b", + "id": "9d1f1220", "metadata": { "editable": true }, @@ -54,11 +54,15 @@ "3. Or other sources.\n", "\n", "The approach to the analysis of these new data sets should follow to a large extent what you did in projects 1 and 2. That is:\n", - "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**. You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", + "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**.\n", + "\n", + "Feel also free to use support vector machines, $k$-means and principal components analysis, although the latter have not been covered during the lectures. This material can be found in the lecture notes.\n", + "\n", + "You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", "\n", "For Boosting, feel also free to write your own codes.\n", "\n", - "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, etc. \n", + "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, PyTorch etc. \n", "\n", "2. The estimates you used and tested in projects 1 and 2 should also be included, that is the $R2$-score, **MSE**, confusion matrix, accuracy score, information gain, ROC and Cumulative gains curves and other, cross-validation and/or bootstrap if these are relevant.\n", "\n", @@ -72,12 +76,12 @@ "\n", "We propose also an alternative to the above. This is a project on using machine learning methods (neural networks mainly) to the solution of ordinary differential equations and partial differential equations, with a final twist on how to diagonalize a symmetric matrix with neural networks.\n", "\n", - "This is a field with a large interest recently, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." + "This is a field with large scientific interest, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." ] }, { "cell_type": "markdown", - "id": "e9fc8e8e", + "id": "6416060c", "metadata": { "editable": true }, @@ -89,7 +93,7 @@ }, { "cell_type": "markdown", - "id": "ce8b52a3", + "id": "18827262", "metadata": { "editable": true }, @@ -101,7 +105,7 @@ }, { "cell_type": "markdown", - "id": "eb943f7a", + "id": "bcee53f4", "metadata": { "editable": true }, @@ -113,7 +117,7 @@ }, { "cell_type": "markdown", - "id": "17447dcc", + "id": "83ec8275", "metadata": { "editable": true }, @@ -125,7 +129,7 @@ }, { "cell_type": "markdown", - "id": "d9bea856", + "id": "2be62c8e", "metadata": { "editable": true }, @@ -137,7 +141,7 @@ }, { "cell_type": "markdown", - "id": "5b74282b", + "id": "385e0b16", "metadata": { "editable": true }, @@ -149,7 +153,7 @@ }, { "cell_type": "markdown", - "id": "28f082d7", + "id": "fbf49165", "metadata": { "editable": true }, @@ -162,14 +166,27 @@ "equation in one dimension using a standard explicit scheme and neural\n", "networks to solve the same equations.\n", "\n", - "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources. For the solution of ordinary and partial differential equations using neural networks, the lectures by [Kristine Baluka Hein and included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", + "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics, FYS3150/4150](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources from courses like [MAT-MEK4270](https://www.uio.no/studier/emner/matnat/math/MAT-MEK4270/index.html). For the solution of ordinary and partial differential equations using neural networks, the lectures by [included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", "\n", - "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**.." + "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**, **PyTorch** or other libraries such [Physics informed machine learning](https://maziarraissi.github.io/PINNs/)." ] }, { "cell_type": "markdown", - "id": "5e855e7f", + "id": "c97df4f9", + "metadata": { + "editable": true + }, + "source": [ + "### Alternative differential equations\n", + "\n", + "Note that you can replace the one-dimensional diffusion equation discussed below with other sets of either ordinary differential equations or partial differential equations.\n", + "Please discuss such a change with us at the lab." + ] + }, + { + "cell_type": "markdown", + "id": "ecde0a0e", "metadata": { "editable": true }, @@ -183,7 +200,7 @@ }, { "cell_type": "markdown", - "id": "bc4be75f", + "id": "56429d7e", "metadata": { "editable": true }, @@ -195,7 +212,7 @@ }, { "cell_type": "markdown", - "id": "caa1eca4", + "id": "c2e49662", "metadata": { "editable": true }, @@ -205,7 +222,7 @@ }, { "cell_type": "markdown", - "id": "98a2bd5b", + "id": "fd661d63", "metadata": { "editable": true }, @@ -217,7 +234,7 @@ }, { "cell_type": "markdown", - "id": "980b949d", + "id": "a1d77183", "metadata": { "editable": true }, @@ -227,7 +244,7 @@ }, { "cell_type": "markdown", - "id": "7401e9ec", + "id": "73d187ef", "metadata": { "editable": true }, @@ -239,7 +256,7 @@ }, { "cell_type": "markdown", - "id": "e953662e", + "id": "b9b49da0", "metadata": { "editable": true }, @@ -250,7 +267,7 @@ }, { "cell_type": "markdown", - "id": "52122eb7", + "id": "aee685e3", "metadata": { "editable": true }, @@ -262,7 +279,7 @@ }, { "cell_type": "markdown", - "id": "ab71a383", + "id": "96ec18ae", "metadata": { "editable": true }, @@ -272,7 +289,7 @@ }, { "cell_type": "markdown", - "id": "4f886681", + "id": "57c542b7", "metadata": { "editable": true }, @@ -284,7 +301,7 @@ }, { "cell_type": "markdown", - "id": "83f8d12e", + "id": "b6e8e863", "metadata": { "editable": true }, @@ -297,7 +314,7 @@ }, { "cell_type": "markdown", - "id": "4bcf494f", + "id": "76ae9476", "metadata": { "editable": true }, @@ -309,7 +326,7 @@ }, { "cell_type": "markdown", - "id": "7f95982b", + "id": "95e239a3", "metadata": { "editable": true }, @@ -319,7 +336,7 @@ }, { "cell_type": "markdown", - "id": "1ee81ac0", + "id": "63fb1417", "metadata": { "editable": true }, @@ -331,7 +348,7 @@ }, { "cell_type": "markdown", - "id": "bae7898a", + "id": "e1c77709", "metadata": { "editable": true }, @@ -341,7 +358,7 @@ }, { "cell_type": "markdown", - "id": "5de23ea9", + "id": "2631e4bd", "metadata": { "editable": true }, @@ -353,7 +370,7 @@ }, { "cell_type": "markdown", - "id": "4d5d56e3", + "id": "0fa54ca3", "metadata": { "editable": true }, @@ -364,7 +381,7 @@ }, { "cell_type": "markdown", - "id": "e52523ef", + "id": "7579152d", "metadata": { "editable": true }, @@ -380,7 +397,7 @@ }, { "cell_type": "markdown", - "id": "678607d0", + "id": "e8ceb962", "metadata": { "editable": true }, @@ -397,21 +414,34 @@ }, { "cell_type": "markdown", - "id": "61d51d93", + "id": "fe5c3f2f", "metadata": { "editable": true }, "source": [ - "### Part d)\n", + "### Part d) Neural network complexity\n", "\n", - "Finally, present a critical assessment of the methods you have studied\n", - "and discuss the potential for the solving differential equations and\n", - "eigenvalue problems with machine learning methods." + "Here we study the stability of the results of the results as functions of the number of hidden nodes, layers and activation functions for the hidden layers.\n", + "Increase the number of hidden nodes and layers in order to see if this improves your results. Try also different activation functions for the hidden layers, such as the **tanh**, **ReLU**, and other activation functions. \n", + "Discuss your results." ] }, { "cell_type": "markdown", - "id": "d2163034", + "id": "3b2adf3a", + "metadata": { + "editable": true + }, + "source": [ + "### Part e)\n", + "\n", + "Finally, present a critical assessment of the methods you have studied\n", + "and discuss the potential for the solving differential equations with machine learning methods." + ] + }, + { + "cell_type": "markdown", + "id": "c2ed7243", "metadata": { "editable": true }, @@ -442,7 +472,7 @@ }, { "cell_type": "markdown", - "id": "e31290fd", + "id": "e9f450e7", "metadata": { "editable": true }, @@ -464,7 +494,7 @@ }, { "cell_type": "markdown", - "id": "99e78b73", + "id": "4ec24e55", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/_build/.doctrees/Project3.doctree b/doc/LectureNotes/_build/.doctrees/Project3.doctree index 00310fec6..0e6b4c593 100644 Binary files a/doc/LectureNotes/_build/.doctrees/Project3.doctree and b/doc/LectureNotes/_build/.doctrees/Project3.doctree differ diff --git a/doc/LectureNotes/_build/.doctrees/environment.pickle b/doc/LectureNotes/_build/.doctrees/environment.pickle index b314108ef..7f5a4c9b9 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/project2.doctree b/doc/LectureNotes/_build/.doctrees/project2.doctree index e538215a4..a5d2beddc 100644 Binary files a/doc/LectureNotes/_build/.doctrees/project2.doctree and b/doc/LectureNotes/_build/.doctrees/project2.doctree differ diff --git a/doc/LectureNotes/_build/html/Project3.html b/doc/LectureNotes/_build/html/Project3.html index 3bbfc1dac..f643b580f 100644 --- a/doc/LectureNotes/_build/html/Project3.html +++ b/doc/LectureNotes/_build/html/Project3.html @@ -370,7 +370,7 @@ const thebe_selector_output = ".output, .cell_output"
  • - Project 2 on Machine Learning, deadline November 13 (Midnight) + Project 2 on Machine Learning, deadline November 17 (Midnight)
  • @@ -496,6 +496,11 @@ const thebe_selector_output = ".output, .cell_output" Solving partial differential equations with neural networks @@ -607,6 +617,11 @@ const thebe_selector_output = ".output, .cell_output" Solving partial differential equations with neural networks @@ -660,7 +680,7 @@ doconce format html Project3.do.txt -->

    Project 3 on Machine Learning, deadline December 18 (midnight), 2023

    Data Analysis and Machine Learning FYS-STK3155/FYS4155, Department of Physics, University of Oslo, Norway

    -

    Date: Nov 12, 2023

    +

    Date: Nov 13, 2023

    Copyright 1999-2023, Data Analysis and Machine Learning FYS-STK3155/FYS4155. Released under CC Attribution-NonCommercial 4.0 license

    @@ -675,11 +695,13 @@ doconce format html Project3.do.txt -->

    The approach to the analysis of these new data sets should follow to a large extent what you did in projects 1 and 2. That is:

      -
    1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among linear regression (including Ridge and Lasso), Logistic Regression, Neural Networks, Convolution Neural Networks, Recurrent Neural Networks, and Decision Trees, Random Forests, Bagging and Boosting. You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into convolutional neural networks or recurrent neural networks, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning.

    2. +
    3. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among linear regression (including Ridge and Lasso), Logistic Regression, Neural Networks, Convolution Neural Networks, Recurrent Neural Networks, and Decision Trees, Random Forests, Bagging and Boosting.

    +

    Feel also free to use support vector machines, \(k\)-means and principal components analysis, although the latter have not been covered during the lectures. This material can be found in the lecture notes.

    +

    You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into convolutional neural networks or recurrent neural networks, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning.

    For Boosting, feel also free to write your own codes.

      -
    1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting’ or use the available functionality of Scikit-Learn, Tensorflow, etc.

    2. +
    3. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting’ or use the available functionality of Scikit-Learn, Tensorflow, PyTorch etc.

    4. The estimates you used and tested in projects 1 and 2 should also be included, that is the \(R2\)-score, MSE, confusion matrix, accuracy score, information gain, ROC and Cumulative gains curves and other, cross-validation and/or bootstrap if these are relevant.

    5. Similarly, feel free to explore various activations functions in deep learning and various approachs to stochastic gradient descent approaches.

    6. If possible, you should link the data sets with exisiting research and analyses thereof. Scientific articles which have used Machine Learning algorithms to analyze the data are highly welcome. Perhaps you can improve previous analyses and even publish a new article?

    7. @@ -687,7 +709,7 @@ doconce format html Project3.do.txt -->

    All in all, the report should follow the same pattern as the two previous ones, with abstract, introduction, methods, code, results, conclusions etc..

    We propose also an alternative to the above. This is a project on using machine learning methods (neural networks mainly) to the solution of ordinary differential equations and partial differential equations, with a final twist on how to diagonalize a symmetric matrix with neural networks.

    -

    This is a field with a large interest recently, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides from week 43 and/or the textbook by Yadav et al.

    +

    This is a field with large scientific interest, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides from week 43 and/or the textbook by Yadav et al.

    The basic structure of your project

    @@ -720,8 +742,13 @@ background in the solution of partial differential equations using finite difference schemes. We will study the solution of the diffusion equation in one dimension using a standard explicit scheme and neural networks to solve the same equations.

    -

    For the explicit scheme, you can study for example chapter 10 of the lecture notes in Computational Physics or alternative sources. For the solution of ordinary and partial differential equations using neural networks, the lectures by Kristine Baluka Hein and included in the lectures of week 43 at this course are highly recommended.

    -

    For the machine learning part you can use your own code from project 2 or the functionality of for example Tensorflow/Keras..

    +

    For the explicit scheme, you can study for example chapter 10 of the lecture notes in Computational Physics, FYS3150/4150 or alternative sources from courses like MAT-MEK4270. For the solution of ordinary and partial differential equations using neural networks, the lectures by included in the lectures of week 43 at this course are highly recommended.

    +

    For the machine learning part you can use your own code from project 2 or the functionality of for example Tensorflow/Keras, PyTorch or other libraries such Physics informed machine learning.

    +
    +

    Alternative differential equations

    +

    Note that you can replace the one-dimensional diffusion equation discussed below with other sets of either ordinary differential equations or partial differential equations. +Please discuss such a change with us at the lab.

    +

    Part a), setting up the problem

    The physical problem can be that of the temperature gradient in a rod of length \(L=1\) at \(x=0\) and \(x=1\). @@ -788,11 +815,16 @@ part b). Discuss your results and compare them with the standard explicit scheme. Include also the analytical solution and compare with that.

    +
    +

    Part d) Neural network complexity

    +

    Here we study the stability of the results of the results as functions of the number of hidden nodes, layers and activation functions for the hidden layers. +Increase the number of hidden nodes and layers in order to see if this improves your results. Try also different activation functions for the hidden layers, such as the tanh, ReLU, and other activation functions. +Discuss your results.

    +
    -

    Part d)

    +

    Part e)

    Finally, present a critical assessment of the methods you have studied -and discuss the potential for the solving differential equations and -eigenvalue problems with machine learning methods.

    +and discuss the potential for the solving differential equations with machine learning methods.

    diff --git a/doc/LectureNotes/_build/html/_sources/Project3.ipynb b/doc/LectureNotes/_build/html/_sources/Project3.ipynb index d45c511e8..d4e676b9c 100644 --- a/doc/LectureNotes/_build/html/_sources/Project3.ipynb +++ b/doc/LectureNotes/_build/html/_sources/Project3.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "5831c36a", + "id": "32bbc99a", "metadata": { "editable": true }, @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "2d774c8b", + "id": "21397747", "metadata": { "editable": true }, @@ -22,14 +22,14 @@ "# Project 3 on Machine Learning, deadline December 18 (midnight), 2023\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Nov 12, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "5cbde03b", + "id": "a13debcc", "metadata": { "editable": true }, @@ -39,7 +39,7 @@ }, { "cell_type": "markdown", - "id": "5170403b", + "id": "9d1f1220", "metadata": { "editable": true }, @@ -54,11 +54,15 @@ "3. Or other sources.\n", "\n", "The approach to the analysis of these new data sets should follow to a large extent what you did in projects 1 and 2. That is:\n", - "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**. You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", + "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**.\n", + "\n", + "Feel also free to use support vector machines, $k$-means and principal components analysis, although the latter have not been covered during the lectures. This material can be found in the lecture notes.\n", + "\n", + "You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", "\n", "For Boosting, feel also free to write your own codes.\n", "\n", - "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, etc. \n", + "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, PyTorch etc. \n", "\n", "2. The estimates you used and tested in projects 1 and 2 should also be included, that is the $R2$-score, **MSE**, confusion matrix, accuracy score, information gain, ROC and Cumulative gains curves and other, cross-validation and/or bootstrap if these are relevant.\n", "\n", @@ -72,12 +76,12 @@ "\n", "We propose also an alternative to the above. This is a project on using machine learning methods (neural networks mainly) to the solution of ordinary differential equations and partial differential equations, with a final twist on how to diagonalize a symmetric matrix with neural networks.\n", "\n", - "This is a field with a large interest recently, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." + "This is a field with large scientific interest, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." ] }, { "cell_type": "markdown", - "id": "e9fc8e8e", + "id": "6416060c", "metadata": { "editable": true }, @@ -89,7 +93,7 @@ }, { "cell_type": "markdown", - "id": "ce8b52a3", + "id": "18827262", "metadata": { "editable": true }, @@ -101,7 +105,7 @@ }, { "cell_type": "markdown", - "id": "eb943f7a", + "id": "bcee53f4", "metadata": { "editable": true }, @@ -113,7 +117,7 @@ }, { "cell_type": "markdown", - "id": "17447dcc", + "id": "83ec8275", "metadata": { "editable": true }, @@ -125,7 +129,7 @@ }, { "cell_type": "markdown", - "id": "d9bea856", + "id": "2be62c8e", "metadata": { "editable": true }, @@ -137,7 +141,7 @@ }, { "cell_type": "markdown", - "id": "5b74282b", + "id": "385e0b16", "metadata": { "editable": true }, @@ -149,7 +153,7 @@ }, { "cell_type": "markdown", - "id": "28f082d7", + "id": "fbf49165", "metadata": { "editable": true }, @@ -162,14 +166,27 @@ "equation in one dimension using a standard explicit scheme and neural\n", "networks to solve the same equations.\n", "\n", - "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources. For the solution of ordinary and partial differential equations using neural networks, the lectures by [Kristine Baluka Hein and included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", + "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics, FYS3150/4150](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources from courses like [MAT-MEK4270](https://www.uio.no/studier/emner/matnat/math/MAT-MEK4270/index.html). For the solution of ordinary and partial differential equations using neural networks, the lectures by [included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", "\n", - "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**.." + "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**, **PyTorch** or other libraries such [Physics informed machine learning](https://maziarraissi.github.io/PINNs/)." ] }, { "cell_type": "markdown", - "id": "5e855e7f", + "id": "c97df4f9", + "metadata": { + "editable": true + }, + "source": [ + "### Alternative differential equations\n", + "\n", + "Note that you can replace the one-dimensional diffusion equation discussed below with other sets of either ordinary differential equations or partial differential equations.\n", + "Please discuss such a change with us at the lab." + ] + }, + { + "cell_type": "markdown", + "id": "ecde0a0e", "metadata": { "editable": true }, @@ -183,7 +200,7 @@ }, { "cell_type": "markdown", - "id": "bc4be75f", + "id": "56429d7e", "metadata": { "editable": true }, @@ -195,7 +212,7 @@ }, { "cell_type": "markdown", - "id": "caa1eca4", + "id": "c2e49662", "metadata": { "editable": true }, @@ -205,7 +222,7 @@ }, { "cell_type": "markdown", - "id": "98a2bd5b", + "id": "fd661d63", "metadata": { "editable": true }, @@ -217,7 +234,7 @@ }, { "cell_type": "markdown", - "id": "980b949d", + "id": "a1d77183", "metadata": { "editable": true }, @@ -227,7 +244,7 @@ }, { "cell_type": "markdown", - "id": "7401e9ec", + "id": "73d187ef", "metadata": { "editable": true }, @@ -239,7 +256,7 @@ }, { "cell_type": "markdown", - "id": "e953662e", + "id": "b9b49da0", "metadata": { "editable": true }, @@ -250,7 +267,7 @@ }, { "cell_type": "markdown", - "id": "52122eb7", + "id": "aee685e3", "metadata": { "editable": true }, @@ -262,7 +279,7 @@ }, { "cell_type": "markdown", - "id": "ab71a383", + "id": "96ec18ae", "metadata": { "editable": true }, @@ -272,7 +289,7 @@ }, { "cell_type": "markdown", - "id": "4f886681", + "id": "57c542b7", "metadata": { "editable": true }, @@ -284,7 +301,7 @@ }, { "cell_type": "markdown", - "id": "83f8d12e", + "id": "b6e8e863", "metadata": { "editable": true }, @@ -297,7 +314,7 @@ }, { "cell_type": "markdown", - "id": "4bcf494f", + "id": "76ae9476", "metadata": { "editable": true }, @@ -309,7 +326,7 @@ }, { "cell_type": "markdown", - "id": "7f95982b", + "id": "95e239a3", "metadata": { "editable": true }, @@ -319,7 +336,7 @@ }, { "cell_type": "markdown", - "id": "1ee81ac0", + "id": "63fb1417", "metadata": { "editable": true }, @@ -331,7 +348,7 @@ }, { "cell_type": "markdown", - "id": "bae7898a", + "id": "e1c77709", "metadata": { "editable": true }, @@ -341,7 +358,7 @@ }, { "cell_type": "markdown", - "id": "5de23ea9", + "id": "2631e4bd", "metadata": { "editable": true }, @@ -353,7 +370,7 @@ }, { "cell_type": "markdown", - "id": "4d5d56e3", + "id": "0fa54ca3", "metadata": { "editable": true }, @@ -364,7 +381,7 @@ }, { "cell_type": "markdown", - "id": "e52523ef", + "id": "7579152d", "metadata": { "editable": true }, @@ -380,7 +397,7 @@ }, { "cell_type": "markdown", - "id": "678607d0", + "id": "e8ceb962", "metadata": { "editable": true }, @@ -397,21 +414,34 @@ }, { "cell_type": "markdown", - "id": "61d51d93", + "id": "fe5c3f2f", "metadata": { "editable": true }, "source": [ - "### Part d)\n", + "### Part d) Neural network complexity\n", "\n", - "Finally, present a critical assessment of the methods you have studied\n", - "and discuss the potential for the solving differential equations and\n", - "eigenvalue problems with machine learning methods." + "Here we study the stability of the results of the results as functions of the number of hidden nodes, layers and activation functions for the hidden layers.\n", + "Increase the number of hidden nodes and layers in order to see if this improves your results. Try also different activation functions for the hidden layers, such as the **tanh**, **ReLU**, and other activation functions. \n", + "Discuss your results." ] }, { "cell_type": "markdown", - "id": "d2163034", + "id": "3b2adf3a", + "metadata": { + "editable": true + }, + "source": [ + "### Part e)\n", + "\n", + "Finally, present a critical assessment of the methods you have studied\n", + "and discuss the potential for the solving differential equations with machine learning methods." + ] + }, + { + "cell_type": "markdown", + "id": "c2ed7243", "metadata": { "editable": true }, @@ -442,7 +472,7 @@ }, { "cell_type": "markdown", - "id": "e31290fd", + "id": "e9f450e7", "metadata": { "editable": true }, @@ -464,7 +494,7 @@ }, { "cell_type": "markdown", - "id": "99e78b73", + "id": "4ec24e55", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/_build/html/_sources/project2.ipynb b/doc/LectureNotes/_build/html/_sources/project2.ipynb index 88c450dfd..882658ddc 100644 --- a/doc/LectureNotes/_build/html/_sources/project2.ipynb +++ b/doc/LectureNotes/_build/html/_sources/project2.ipynb @@ -2,34 +2,34 @@ "cells": [ { "cell_type": "markdown", - "id": "6afd3fdb", + "id": "515c9474", "metadata": { "editable": true }, "source": [ "\n", - "" + "" ] }, { "cell_type": "markdown", - "id": "21a10baa", + "id": "890dcb04", "metadata": { "editable": true }, "source": [ - "# Project 2 on Machine Learning, deadline November 13 (Midnight)\n", + "# Project 2 on Machine Learning, deadline November 17 (Midnight)\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Oct 9, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "4f67ce6e", + "id": "8cbf512f", "metadata": { "editable": true }, @@ -75,7 +75,7 @@ }, { "cell_type": "markdown", - "id": "67c6916e", + "id": "696379a0", "metadata": { "editable": true }, @@ -127,7 +127,7 @@ }, { "cell_type": "markdown", - "id": "fff54502", + "id": "81d48303", "metadata": { "editable": true }, @@ -166,7 +166,7 @@ }, { "cell_type": "markdown", - "id": "6e0f9012", + "id": "db6aebb0", "metadata": { "editable": true }, @@ -178,7 +178,7 @@ }, { "cell_type": "markdown", - "id": "075046bf", + "id": "18314d90", "metadata": { "editable": true }, @@ -204,7 +204,7 @@ }, { "cell_type": "markdown", - "id": "080dadf2", + "id": "dc3021aa", "metadata": { "editable": true }, @@ -216,7 +216,7 @@ }, { "cell_type": "markdown", - "id": "e3418dd4", + "id": "3c3c5b42", "metadata": { "editable": true }, @@ -236,7 +236,7 @@ }, { "cell_type": "markdown", - "id": "828ad79f", + "id": "1a493d07", "metadata": { "editable": true }, @@ -258,7 +258,7 @@ }, { "cell_type": "markdown", - "id": "07059668", + "id": "649a5380", "metadata": { "editable": true }, @@ -274,7 +274,7 @@ }, { "cell_type": "markdown", - "id": "e88200db", + "id": "804df082", "metadata": { "editable": true }, @@ -290,7 +290,7 @@ }, { "cell_type": "markdown", - "id": "66733be9", + "id": "2661bc83", "metadata": { "editable": true }, @@ -321,7 +321,7 @@ }, { "cell_type": "markdown", - "id": "5c49a400", + "id": "e651a157", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/_build/html/genindex.html b/doc/LectureNotes/_build/html/genindex.html index 7bf64532e..5032cbc05 100644 --- a/doc/LectureNotes/_build/html/genindex.html +++ b/doc/LectureNotes/_build/html/genindex.html @@ -368,7 +368,7 @@ const thebe_selector_output = ".output, .cell_output"
  • - Project 2 on Machine Learning, deadline November 13 (Midnight) + Project 2 on Machine Learning, deadline November 17 (Midnight)
  • diff --git a/doc/LectureNotes/_build/html/intro.html b/doc/LectureNotes/_build/html/intro.html index ec26b1763..b849ab691 100644 --- a/doc/LectureNotes/_build/html/intro.html +++ b/doc/LectureNotes/_build/html/intro.html @@ -369,7 +369,7 @@ const thebe_selector_output = ".output, .cell_output"
  • - Project 2 on Machine Learning, deadline November 13 (Midnight) + Project 2 on Machine Learning, deadline November 17 (Midnight)
  • diff --git a/doc/LectureNotes/_build/html/objects.inv b/doc/LectureNotes/_build/html/objects.inv index 300fd36d1..2edd0fda7 100644 Binary files a/doc/LectureNotes/_build/html/objects.inv and b/doc/LectureNotes/_build/html/objects.inv differ diff --git a/doc/LectureNotes/_build/html/project2.html b/doc/LectureNotes/_build/html/project2.html index e2dd10093..3607375e5 100644 --- a/doc/LectureNotes/_build/html/project2.html +++ b/doc/LectureNotes/_build/html/project2.html @@ -5,7 +5,7 @@ - Project 2 on Machine Learning, deadline November 13 (Midnight) — Applied Data Analysis and Machine Learning + Project 2 on Machine Learning, deadline November 17 (Midnight) — Applied Data Analysis and Machine Learning @@ -352,6 +352,11 @@ const thebe_selector_output = ".output, .cell_output" Week 45, Recurrent Neural Networks +
  • + + Week 46: Decision Trees, Ensemble methods and Random Forests + +
  • @@ -366,7 +371,7 @@ const thebe_selector_output = ".output, .cell_output"

  • - Project 2 on Machine Learning, deadline November 13 (Midnight) + Project 2 on Machine Learning, deadline November 17 (Midnight)
  • @@ -502,7 +507,7 @@ const thebe_selector_output = ".output, .cell_output"
    -

    Project 2 on Machine Learning, deadline November 13 (Midnight)

    +

    Project 2 on Machine Learning, deadline November 17 (Midnight)

    @@ -575,10 +580,10 @@ const thebe_selector_output = ".output, .cell_output" -
    -

    Project 2 on Machine Learning, deadline November 13 (Midnight)

    +
    +

    Project 2 on Machine Learning, deadline November 17 (Midnight)

    Data Analysis and Machine Learning FYS-STK3155/FYS4155, Department of Physics, University of Oslo, Norway

    -

    Date: Oct 9, 2023

    +

    Date: Nov 13, 2023

    Copyright 1999-2023, Data Analysis and Machine Learning FYS-STK3155/FYS4155. Released under CC Attribution-NonCommercial 4.0 license

    Classification and Regression, from linear and logistic regression to neural networks

    diff --git a/doc/LectureNotes/_build/html/search.html b/doc/LectureNotes/_build/html/search.html index 775659784..4e6e035a3 100644 --- a/doc/LectureNotes/_build/html/search.html +++ b/doc/LectureNotes/_build/html/search.html @@ -374,7 +374,7 @@ const thebe_selector_output = ".output, .cell_output"
  • - Project 2 on Machine Learning, deadline November 13 (Midnight) + Project 2 on Machine Learning, deadline November 17 (Midnight)
  • diff --git a/doc/LectureNotes/_build/html/searchindex.js b/doc/LectureNotes/_build/html/searchindex.js index 2ac07f344..c0d611f12 100644 --- a/doc/LectureNotes/_build/html/searchindex.js +++ b/doc/LectureNotes/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["Project3","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","week44","week45","week46"],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:["Project3.ipynb","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","week44.ipynb","week45.ipynb","week46.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,20,22,24,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"00":[1,2,6,7,10,12,24,33,34,37,40,41,42,43,44,45],"000":[2,4,24,40,41,42,43],"0000":[10,43,45],"00000":[10,45],"000000":[6,12,33,34],"0000000010":[24,42],"00000000e":[6,34,37,40,44],"00000215":22,"0000164":[],"00002678":[],"00003617":22,"000054":33,"0000747":[],"0001":[2,18,24,40,41,42,43],"00010133":22,"0001042":[],"00011154":22,"00012095":22,"0001225":[],"00012277":22,"00012569":22,"00012934":[],"00013313":22,"00013514":22,"00014654":22,"00014662":[],"00014875":22,"00015097":[],"00015239":[],"0001539814498783133":[],"0001613":22,"00016373":22,"00016536":[],"00016826":[],"00017031":[],"00017755":22,"00018022":22,"00018647":[],"00018653":[],"00019212":[],"00019432":[],"00019544":22,"00019838":22,"00019883":[],"00019998":6,"00020665":[],"00021042":[],"00021438167895478945":[],"00021512":22,"00021673":[],"00021836":22,"00022035":[],"00022902":[],"0002364":[],"00023679":22,"00023737":[],"0002382102844775691":[37,44],"00024035":22,"00024087":6,"0002442":[],"00024449":[],"00025381":[],"00026064":22,"00026456":22,"00026778":[],"00026861":[],"00027064":[],"0002758":[],"00028129":[],"00028689":22,"00029012":6,"00029121":22,"00029993":[],"00030207":[],"00031112":[],"00031174":[],"00031535148309577417":7,"00031535148309580783":7,"00031579":22,"00032054":22,"00033136014047192484":[],"0003324":[],"00034076":[],"00034548":[],"00034759":22,"00034944":6,"00035097":[],"00035283":22,"00036838":[],"0003826":22,"00038288":[],"0003844":[],"00038836":22,"00039592":[],"00039962":[],"00040199":22,"00040825":[],"000417932":3,"00042089":6,"00042114":22,"00042432":[],"00042748":22,"00043363":[],"00044152":[],"00044663":[],"00045244":[],"00046356":22,"000464088":3,"00047025":[],"00047054":22,"00048049":[],"00048325":[],"00048917":[],"00050142":[],"00050383":[],"0005051756404139333":[],"00050694":6,"00051025":22,"00051793":22,"00052115":[],"00053008":[],"00055182":[],"0005557":[],"0005603761549585715":45,"00056165":22,"00056836":[],"0005701":22,"00057757":[],"00058016":7,"0005840075008020406":10,"00060705":7,"00061058":6,"00061585":[],"00061822":22,"0006225":[],"00062595":7,"00062752":22,"00063364":36,"00063862":36,"00064009":[],"00064115":[],"0006527":[],"00066668":7,"00067395":[],"00068048":22,"00068088":36,"00068251":[],"00068734":7,"00068946":7,"00069073":22,"00070222":[],"00070937":[],"00072326":[],"00072412":[],"00073541":6,"00074902":22,"00075597":36,"00075639":[],"00076029":22,"00076495":7,"00076617":[],"00076905":7,"0007698473260556325":7,"0007698473260556343":7,"00078616":[],"00079129":7,"00079216":[],"00079910":36,"00079968":6,"00081564":[],"0008159":[],"00082447":22,"00083346":36,"00083685":22,"00083826":[],"00084705":7,"00085889":7,"00086063":[],"00087126":[],"00087697":7,"00088573":6,"00089187":36,"00089362":[],"0009075":22,"00090992":[],"00091628":[],"00092039":[],"00092107":22,"00092647":7,"000929":[],"00092904":36,"0009485400848532":[],"00096314":6,"00096557":[],"00099888":22,"001":[2,3,9,14,18,24,37,38,40,41,42],"00100519":7,"00100807":[],"00101364":22,"00102956":[],"00103827":[],"00104613":[],"0010479245926411787":[7,36],"00105081":7,"00105497":[],"00106677":6,"00107008":[],"00107405":7,"00109941":22,"00110716":[],"00111512":22,"00111756":7,"00113717":[],"00114101":[],"0011526":7,"00115506":[],"00115669":[],"00115999":6,"00117125":[],"00117627":[],"00118508":7,"00118591":[],"0011878":[],"00119699":36,"0012":43,"0012099":22,"00122558":22,"00123457":[],"00125459":[],"00126452":[],"00126617e":34,"00128282":[],"00128479":6,"00131428":[],"00132125":[],"001323":7,"00133103":22,"00134327e":[],"00134337":22,"00137818":7,"00139705":6,"00140139":[],"00140849":36,"00143234":[],"00144711":[],"00145652":[],"00146158":22,"00146287":22,"00148047":[],"00148709":[],"00149047":[],"00149311":7,"00149956":7,"00152117":7,"00154733":6,"00154860":36,"00155308":[],"00155701":22,"00156376":7,"00160348":22,"00161414":[],"00163245":[],"00163526":[],"00165867":22,"00168135":[],"00168251":6,"00169021":[],"00170724":[],"00172117":[],"00172452":[],"00174276":7,"00174457":22,"00175331":7,"00176697":22,"00178871":[],"00181115":30,"00182747":[],"00183398":[],"00183869":[],"00184151":[],"00185848":22,"00186347":6,"00186362":[],"00186694":[],"001880":6,"00188233":22,"00189101":[],"00189665":[],"00190742":[],"00192967":[],"00197982":22,"00198187":[],"00199495":[],"00200":9,"00200523":22,"00202624":6,"00202679":[],"00202756":7,"00203959":[],"0020496":12,"002050":12,"0020717457079393":30,"00207732":[],"00210909":22,"00211371":[],"00213144":[],"00213616":22,"00213947":[],"00214832":[],"00217499":7,"00219194":36,"00219502":[],"00219624":[],"0022":43,"00220306":[],"00224413":6,"00224679":22,"00225484":[],"00225909":[],"00227563":22,"00228742":7,"00229911":[],"00233436":[],"00234197":[],"00234327":[],"0023548":7,"002381316302584886":7,"0023813163025848865":7,"00239349":22,"00241318":[],"00242398":[],"00242421":22,"00242847":[],"00242954":36,"00242999":7,"00243186":7,"00243341":[],"0024401":6,"00245177":[],"0024598":[],"00249435":7,"00249831":[],"00251517":[],"00254359":[],"00254976":22,"00258249":22,"00259385":[],"00264305":[],"00266858":3,"00267887":[],"00270244":6,"00271624":22,"00272135":[],"00272586":[],"00274989":7,"0027511":22,"00277816":[],"00283853":[],"00286972":[],"00287151":[],"00287871":[],"00289358":22,"00289724":7,"0029114":[],"00292838":[],"00293072":22,"00293132":[],"00293838":6,"00298058":[],"0030207":[],"00303693":[],"00305172":[],"00306724":[],"00308251":22,"003100":33,"00310113":3,"00312207":22,"00312361":7,"00313125":[],"00313452":[],"00313577":[],"00315593":7,"00316561":[],"00317175":[],"0032153180657605116":[7,36],"00323332":7,"00324512":[],"00324969":[],"00324986":[],"0032542":6,"00325450":36,"00327833":[],"00328377":22,"00328494":[],"003301":7,"00332591":22,"00334743":[],"00335448":[],"0033575":[],"00335936":[],"00335942":[],"0033955154592040923":[7,36],"00341073e":[],"00345227":[],"00346394":[],"00348543":[],"00349817":22,"00353575":[],"00353823":6,"00354307":22,"00354492":[],"00358844":[],"00359612":[],"003620":33,"00362111":[],"0036237":7,"0036367":7,"0036718":[],"00368581":[],"00369758":7,"00370554":[],"0037095":[],"00372657":22,"00374279":[],"00375475":[],"003755":[],"0037744":22,"00378113":[],"00379522":[],"0038332550504751595":[37,44],"0038335":7,"00383872":[],"00387135":[],"003909404072811221":[7,36],"00391839":6,"00392139":[],"00396398":[],"00396988":22,"00398509":[],"0039987":7,"004":[6,35,36],"00402083":22,"004091940707753925":[7,36],"00410387":7,"00410478":7,"00410646":[],"00411073":[],"004113634617443131":[7,34],"00411363461744314":[7,34],"004113634617443147":[7,34],"00413413":[],"00415289":[],"0041559863458613296":[7,36],"00420072":36,"00422908":22,"00424012":[],"00424046":[],"00424909":3,"00424967":7,"00426027":6,"00426531":[],"00427304":[],"00428336":22,"00429899":[],"00431775":[],"00433417":12,"00434364":[],"00439232":30,"00439287":[],"00440346":7,"00440395":[],"00441613":[],"00443743":7,"00445655":12,"00446979":[],"00447992":[],"004480":[],"0045052":22,"00451679":[],"00453622":[],"00455536":[],"00456302":22,"004579219539673834":[7,36],"00458878":7,"00460304":[],"00460405":[],"004610275230656182":[7,36],"00462287":7,"00463639":[],"00464812":[],"00465099":36,"00469926":[],"0047085":[],"00471782":6,"00471983":[],"00472199":7,"00472251":[],"00472512":7,"00472549":[],"00474485":[],"00478655":[],"00479935":22,"00480366":[],"00480371":[],"0048526":[],"00486095":22,"00487843":[],"0048938":[],"0049544":7,"004999999999999994":[],"004999999999999996":[],"005":1,"005000000000000001":[],"0050256":[],"00502702":[],"00504808":[],"00509089":[],"0051127":22,"00512927":6,"00517114":7,"00517832":22,"00518122":[],"00519105":[],"00526348":7,"0053018":7,"00534938":[],"00537764":[],"00538851":[],"00542313":[],"00543374":[],"00544651":22,"00550379":[],"00550433":[],"00551642":22,"00552246":[],"00554552":7,"00555311":[],"00556826":7,"00556958":[],"0055941":[],"00562524":[],"00565625":[],"0056799":6,"00569405":[],"00575271":[],"00579953":7,"00580212":22,"00584432":[],"00585113":[],"00587502":[],"00587564":[],"00587659":22,"00588657":7,"00594042":[],"00595134":[],"00595615":[],"00598615":[],"0059888":[],"0060":43,"00600971":[],"00604105":[],"00604596":12,"006046":12,"00607783":7,"00610607":[],"00611979e":[],"00613258":[],"00615193":[],"00615394":[],"006162":7,"00617499":6,"00618095":22,"00619918":[],"00620039":33,"00620347":[],"00626028":22,"00626773":[],"00627535":[],"0062825":26,"00628874":[],"00630331":7,"00631057":[],"00635214":[],"00635475":[],"00635865":[],"00642221":7,"00642268":[],"00642935":[],"00643466":[],"00643899":[],"00644939":[],"00646613":[],"00651112":[],"00658316":[],"00658451":22,"0065912":[],"00660427":7,"00663699":[],"00665974":[],"00666902":22,"00669662":[],"006719367598355617":30,"00672607":7,"00673407":7,"00676387":7,"00679797":[],"00679887":22,"0068011":7,"00680794":[],"006829400694106674":[],"00683748":6,"00683964":7,"00686801":[],"00686806":[],"0068697":[],"00687175":[],"00693821":[],"00695723":[],"00701442":22,"0070235":[],"007024126888938144":[7,36],"00703355":[],"00704231":[],"00710445":22,"00712321":[],"0071642501586093735":[],"00717079":[],"00719176":7,"0072595":[],"00726135":[],"0072675":[],"00727211":[],"00727646693":[1,33],"007315":[33,34],"00736955":[],"00738008":[],"00739382":[],"00739489":[],"00741987":[],"00742577":[],"0074331":6,"0074724":22,"007472516848671787":34,"00752224":[],"00753349":[],"00754534":[],"00756831":22,"00759119":7,"007607459165915922":[],"00761275":[],"00769731":[],"00777931":[],"007785":[],"00778523":[],"00781918":36,"00784393":7,"00788598":[],"007891914573161948":[],"00790262":[],"00796028":22,"00798188":[],"00798988":[],"00799998":[],"00801855":[],"00802883":[],"00803064":7,"008043926731954223":[],"00804985":[],"00805074":36,"00805892":[],"00806245":22,"00813313":[],"00813803":7,"00817631":7,"00817834":[],"00822879725131466":[],"00823002":6,"00825399":[],"00827728":7,"00828799":[],"00830822":[],"00831018":7,"00832189":[],"00834567":7,"00843617":[],"00844667":[],"00846262916105675":34,"00848002":22,"00848904":7,"00851512":[],"00857028":[],"00858536":[],"00858886":22,"00862101":[],"00862798":26,"0086649156":[1,33],"008675369724975977":6,"00868086":[],"00868983":[],"00879363":[],"00880924":[],"00883798":[],"008897354602673473":[],"008900933315885705":[],"00890232":[],"00892604e":[],"00893027":[],"00894639":6,"00903369":22,"00905423":7,"00906293":[],"00914964":22,"00915433":[],"00915458":[],"009163470508352218":6,"009164545680330616":[7,36],"00917248":7,"00920609":[],"00922229":[],"00923278":[],"00929251598272297":[],"00934327e":34,"00934499":7,"00934865":[],"00938585":[],"0093869":[],"009442796383765939":[],"00946219":[],"00946636":[],"00950778":[],"00952322":[],"00952586":[],"0096208":7,"00962351":22,"00974702":22,"00976647":[],"009855809602167547":[],"00986552":[],"00989896":[],"00990475":6,"00992331":7,"00996754":7,"00996972":[],"01":[1,2,3,6,7,10,12,14,18,22,24,32,33,34,36,37,38,39,40,41,42,43,44,45],"010018312644139219":[7,36],"01004321":[],"010053880703541525":[],"01006401":[],"0100706":7,"0100949":[],"01011906":33,"01012951":[],"01014809":[],"01018743":[],"01023308":[],"01024227":[],"01025184":22,"01027992":[],"01028728":[],"01029574":[],"010296":[],"01031184":6,"010315":[],"01031541":[],"010331721306655165":[7,36],"01033856":[],"01035984":[],"01038358":[],"01045155":[],"01045774":[],"01050849":[],"010516485576646504":[7,36],"0105301":[],"01054509":[],"0105536":[],"01059601":[],"0106014":[],"01066519":7,"01066976":[],"01068907":[],"01076611":6,"01076733":[],"01080274":[],"01089797":[],"0109":[],"010902":33,"01092119":22,"01094579":[],"01094846":[],"01095703":[],"01097223":[],"01097423":[],"0110":30,"01103246":[],"01107621901137467":[7,36],"01111477":[],"0111154":[],"01112952":[],"011225":3,"01128968":[],"01130932":[],"0113104":7,"01135167":[],"01148039":[],"01151984":[],"01161357":[],"01163425":22,"01164198":[],"01165807":[],"01176096":[],"01179792":7,"0118633":[],"011917343246903285":[],"01191824":6,"01193226":[],"01201742":[],"012073649469946107":[7,36],"0120771":[],"01214101":[],"01219292":7,"01222822":34,"01223198":7,"01229732982000352":[],"01231917":7,"01233322":[],"01233332":[],"01247118":[],"01257265":[],"01265755":34,"012658":34,"01267006":[],"01268892":[],"01272215":[],"01281486":[],"01282674":[],"012874822204495243":34,"01288591":[],"01289962":[],"01290811e":[],"01290947":7,"01291943":[],"01295356":6,"01299337":[],"01300561":[],"013121574062587286":[7,36],"01318643":7,"01323615":[],"01329488e":[],"013341":[],"01335857":[],"01344196":[],"01344581":[],"01347636":[],"01347916":7,"01348565":7,"01362274":[],"013623165903312745":[],"01362461":[],"01365363":[],"01366733":[],"01367553":7,"01372375":[],"01382052":[],"01386842":[],"01389847":[],"01397146":7,"01404858":[],"01405935":7,"01408051":[],"01409821":[],"01416528":7,"01420034":[],"01423609":[],"01424197":[],"01427149":[],"01432847":[],"01433809":6,"01436601":[],"014436800088896381":[7,36],"01448147":[],"01449782":7,"01455922":[],"01456159":[],"01458337":7,"014586":34,"01458611":34,"0146081":7,"01463049":7,"01463052":[],"01476097":[],"01477821":[],"01478446":[],"01492":[],"0149713":[],"0149947":[],"01502518":[],"0150723888951771":7,"01507238889517717":7,"01508632":[],"01508966":[],"01512934":[],"01514564":[],"01518949":[],"01521658e":[],"01524072":[],"015244":[],"01526688":[],"01529503":[],"01529708":[],"01531845":7,"01533437":[],"01537557":[],"0154222":[],"01542292":36,"01544605":[],"01549377":7,"01549939":36,"01550546":36,"01552289":[],"01555268":[],"01558197":6,"01562311":[],"01566461":[],"01571866":[],"01580414":[],"01581562":[],"01591021":[],"01594452":36,"01596986":[],"01597952":[],"01600491":[],"01603602":[],"01607534":[],"01612033e":34,"01616709":[],"01617722":[],"01619456":[],"01619664":[],"01621244":[],"016285782696017142":[7,36],"01633169":[],"01633913":7,"01640891":7,"01642305":[],"01655318":7,"016587414993045335":[7,36],"01663866":[],"01667827":[],"01671556":[],"01678384":[],"01678538":[],"01691871":[],"01691985":7,"0169643":6,"016972818397989375":[],"01704432":[],"01708691":[],"01708781":7,"01708852":7,"01713366":7,"01722502":[],"01724499":6,"01731293":[],"01735584819559331":[7,36],"017355848195593312":[7,36],"01736502":[],"01747077":[],"01752908":[],"0176":43,"01762067":[],"01765474":[],"017665":6,"01775594":[],"0177568":[],"01782721":[],"01783414e":34,"01784714":[],"0180":43,"01809873":[],"018232":[33,34],"01828593":[],"01831050e":7,"01831207e":7,"01835274":[],"01859922":[],"01865187e":[],"01866537":7,"0186893":[],"01873344":12,"01873869":6,"01881546":[],"01882522":[],"01895265":[],"01896127":[],"01897575":[],"01898855":7,"01899119":[],"01905883":7,"01908936":7,"019140656913589":[],"01914066":[],"01915888":[],"01916913":[],"0191717":[],"01918548":[],"01919702":[],"01919885":[],"01931743":[],"01936105":[],"01963203":[],"01963611":7,"01969145":7,"01975416527168255":[7,36],"01975848":7,"01989299":[],"01989549":[],"01999282":[],"02":[1,5,7,8,13,24,33,34,37,39,40,42,43,44],"0200568":[],"02017377":[],"02024701e":[],"02024962":7,"020271":[],"02030107":[],"02036545":[],"020404272938413143":[],"02042476":[],"02044454":[],"02049182":[],"02054837e":7,"02058094":[],"02061026":[],"02061094":[],"02066371":[],"02068067":7,"02071142":[],"0207306":[],"02073509":6,"02075115":[],"02075802":[],"02079171":[],"02081274":[],"02083512":[],"02089297":[],"02095266":[],"02098261":7,"02100763":[],"02103178":[],"02109939":[],"02123176":7,"0212604":[],"02126208":[],"02131025":30,"02138725":[],"021592704588021174":[7,36],"021592704588021178":[7,36],"02178583":[],"02183021":[],"02186131":[],"02198702e":7,"02198703e":7,"02200532":[],"02206965e":34,"02208512":7,"02210753":[],"02215597":[],"022156":[],"022210866177877393":[],"02227466":[],"02228115":7,"02229529":7,"02231445":[],"02244382":[],"02244755":[],"02250553":[],"02252765":6,"02276062":[],"02279888":[],"02284019":[],"02287894":[],"02288816":[],"022934":6,"02293408":6,"022999498260366198":[7,36],"02308518":[],"02314144":[],"0231703":[],"02329285":[],"02348765":7,"02355925":[],"02365049":7,"023810076900619058":30,"02385515":[],"02387339":[],"023888460698069384":[],"02392053":[],"02395532":[],"02400359":[],"02416381":[],"02424794":36,"02426651":[],"024318244280276506":[],"02447466":[],"0245528":7,"024632":[],"02468681":[],"02485679":[],"02492265":6,"02498832":7,"025027":[],"02503753":7,"02507163":[],"02509184":[],"025092":[],"02511518":7,"02522069":7,"02531037":[],"02536494":[],"02542246":[],"02546675":36,"025709":[12,34],"02574735e":[],"02582613386840159":[],"02586427":7,"02588522":[],"02590077":[],"02593026":[],"0260906":7,"02610528":[],"02618169":[],"02622906":[],"02623724":[],"026250840755899812":[],"02625193":9,"02635835":[],"02641575":[],"026605727637184554":[7,36],"026605727637184558":[7,36],"0269":43,"02699539":[],"02702328":[],"02702978":[],"02706508":[],"02707227":6,"0271761":[],"02723445":7,"02730775":[],"02745507":[],"02757522":[],"02760079":[],"02760977349102238":[7,36],"027609773491022394":[7,36],"02761736":[],"02763182":[],"02764023":[],"02790465":[],"02791218":[],"0280":43,"02800421":[],"02804715":[],"02809859":[],"02816083":[],"02836801":[],"028389":[],"02838933":[],"02845284":[],"02857":[5,44],"0286851":[],"02876697":[],"02881357":[],"02892224":[],"029":[],"02911162":[],"02912421":[],"02942218":[],"02944425":[],"029483":6,"02950229":[],"0296969":[],"0297291":[],"029733":[33,34],"02976145":7,"02987833":[],"02992852":[],"02994311":6,"02997344":[],"02f":[7,27],"03":[2,7,24,34,37,40,41,42,44],"0301458":[],"03019138":33,"03025391":[],"03027848":[],"03032441e":7,"03037095":12,"030371":12,"03049638":[],"03056169":26,"03060273":[],"03061555":[],"03063575":[],"03065428":[],"03067182":[],"03074083":[],"03077640549":[5,44],"03099776":6,"031":[6,35,36],"03102525":[],"03106988":33,"03107818":[],"03113051":[],"03117156":[],"03119091":[],"03141454":[],"03145163":[],"03172365":[],"03195835":[],"03196357":7,"03203047":[],"03219974":[],"03251863":6,"03256632e":[2,40,41,42],"03267527":7,"03273744":[],"03279636":7,"03285652":[],"0330308045183219":7,"0330308045187757":7,"03308408":6,"0331134070762626":30,"03311341":30,"03316272":[],"03321947":[],"03331552e":[],"03338173":[],"03365768507152769":[7,36],"03370315":[],"03375068":[],"03376827":[],"033790755027115954":[],"03389964":[],"03394827":[],"0340060287164625":[],"03400603":[],"034047":33,"034169230664804":[],"03438051":[],"03443175":[],"03447512":7,"034557":34,"03472297":[],"034723":[],"034985":[],"0353961":[],"03543039":[],"03543455":[],"03543554":[],"03543958":[],"035513525941656535":[],"03556032":[],"03557316":[],"0356":[24,42],"03562355":7,"03568439":7,"0358":[24,42],"03585592":[],"0359":[24,42],"035909":33,"0359565":6,"0361":[24,42],"03611471":[],"03616508":[],"0362":[24,42],"03630548":7,"03633213":[],"0364":[24,42],"0365":[24,42],"03660869":[],"0366352614656884":[],"0367":[24,42],"0368":43,"0369":[24,42],"0370":[24,42],"03707133":12,"03717939":[],"0372":[24,42],"03727597":[],"03728183e":[],"0373":[24,42],"03735403":[],"0374748":[],"0375":[24,42],"0375827":22,"0376":[24,42],"03774822e":[],"0377961":[],"0378":[24,42],"03781367141738902":[7,36],"038":36,"0380":[24,42],"0381":[24,42],"03813208":[],"03814292":7,"03815288":7,"038211969489939":[],"03821197":[],"03827068":[],"0383":[24,42],"038300":[12,34],"0385":[24,42],"03856554":[],"0386":[24,42],"03868779":[],"03872663":[],"038727":[],"03876784":[],"0388":[24,42],"038844":[],"0389":[24,42],"03894328":[],"03894873":[],"039":36,"039039":6,"03903968":[],"03908546":[],"0391":[24,42],"03914571":[],"0393":[24,42],"03935519":[],"03940381":[],"03946221":[],"0395":[24,42],"03955811":33,"0396":[24,42],"03967758":[],"0398":[24,42],"03982972":[],"0399587275832265":[],"039967668952797":7,"0399676689527975":7,"04":[2,7,12,24,37,40,41,42,44],"0400":[24,42],"0401":[24,42],"040102":6,"04010697":7,"04014929":[],"0401585":[],"04028659":[],"0403":[24,42],"0405":[24,42],"04057027":[],"04058784":[],"04063602":7,"0407":[24,42],"0408":[24,42],"04083439":[],"04084872":[],"041":[10,45],"0410":[24,42],"04103307":[],"041050166905828786":[],"04107874":[],"041079":[],"04111096":[],"0411487294305088":7,"041148729430523":7,"0412":[24,42],"0413787":[],"0414":[24,42],"0415":[24,42],"04166112":[],"0417":[24,42],"0419":[24,42],"04191624":[],"04191629":[],"04193203":34,"04198166":[],"042044382097756156":[],"0421":[24,42],"04214702":[],"04218461":[],"04220758":7,"04223754":[],"04225015":[],"0423":[24,42],"0424":[24,42],"04246989":[],"04259402":[],"0426":[24,42],"04276619":[],"0428":[24,42],"04292593":[],"04295757":36,"04299253":30,"043":[10,45],"0430":[24,42],"04310095":[],"04314342":[],"04315108":6,"0431531":[],"0432":[24,42],"0434":[24,42],"04346721":6,"0435":[24,42],"04355837":7,"04362":[10,45],"04362755":[],"0437":[24,42],"04372783":[],"0437499":3,"04389027":7,"0439":[24,42],"04391163":[],"043912":[],"0441":[24,42],"04416475":30,"04423486":7,"04426647":[],"04426744e":34,"0443":[24,42],"044334":[33,34],"04438319":[],"04448923":[],"0445":[24,42],"04450975e":34,"044613":7,"0447":[24,42],"0447389":[],"04473913":[],"04478101":[],"04482932":[],"0449":[24,42],"0451":[24,42],"0453":[24,42],"04532032":[],"04537385":7,"04543942":7,"04547353":[],"0455":[24,42],"04555073":[],"04566964":7,"0457":[24,42],"04570437990371566":[],"04574692":[],"0458":[10,45],"04581197":[],"04584982e":[],"0459":[24,42],"04597076":[],"0461":[24,42],"04619338":[],"0463":[24,42],"04648335":6,"0465":[24,42],"046531":[],"04662395":[],"04669463":[],"0467":[24,42],"04683565":6,"0469":[24,42],"04690007":[],"04699527":[],"0470705":26,"0471":[24,42],"04720848":[],"0473":[24,42],"04746791":[],"0475":[24,42],"0477":[24,42],"04778116":[],"04784395":7,"0479":[24,42],"0481":[24,42],"04816611e":[],"04818727730430286":[7,36],"04822955":[],"04828291":[],"0483":[24,42],"0485":[24,42],"0486":[24,42],"04869126e":[],"0487":[24,42],"048920":33,"04892055":7,"0489354":[],"04899609":[],"0490":[24,42],"04900086":[],"04909093":7,"04912436":7,"0492":[24,42],"04926746":36,"04931542":[],"0494":[24,42],"049462":33,"049556996627824":7,"0495569966278269":7,"04956816":[],"0496":[24,42],"0496375":[],"04965227":[],"04977051":[],"04977093":[],"0498":[24,42],"04it":[],"05":[2,5,7,14,24,27,34,39,40,41,42,44],"0500":[24,42],"05009826":7,"05024857":[],"0503":[24,42],"0505":[24,42],"05056463":[],"05062537":26,"050663":[],"05066303":[],"05066388e":34,"0507":[24,42],"0509":[24,42],"05091289":[],"05100875":7,"0510594":[],"0511":[24,42],"05126901":[],"0514":[24,42],"051418":6,"0516":[24,42],"051649":[12,34],"0516821246279795":[],"0517473":6,"0518":[24,42],"05183886":[],"0520":[24,42],"05206787e":[],"05227921801205679":[7,36],"0523":[24,42],"052305":34,"05234611":[],"0523738":[],"05238712":[],"0525":[24,42],"05263":[10,45],"0526992":[],"0527":[24,42],"052992":[],"0530":[24,42],"05302":[10,45],"0532":[24,42],"0534":[24,42],"053417":34,"05357244":[],"05364854":9,"0537":[24,42],"05383795":7,"053849":6,"05388549e":34,"0539":[24,42],"053944":[],"0541":[24,42],"05412502":[],"05419212":[],"0542566":6,"05432856":[],"054375":[],"0544":[24,42],"05446143":[],"05447415":7,"05459089":[],"0546":[24,42],"054617":34,"054655":34,"0549":[24,42],"054954":[],"05505310046363":3,"0551":[24,42],"05515143e":[],"05526765":[],"0553":[24,42],"05533":[10,45],"05544019":[],"0556":[24,42],"055676":[33,34],"055697":[],"05570692":30,"055706923889776":30,"055734":34,"0558":[24,42],"05589275":12,"055893":12,"055910":34,"055987":34,"05599455":[],"056019":[],"056030":[],"0561":[24,42],"05614483":6,"05623":[10,45],"05629549":33,"0563":[24,42],"056418":[],"05648":[10,45],"05651951":7,"0565419":[],"0566":[24,42],"05667":[10,45],"056683":34,"0568":[24,42],"056870":[],"05687021620384533":[],"056898":[],"056996":[],"0571":[24,42],"057124":[],"05715377":[],"057154":[],"05716368155342902":[7,36],"057179":[],"057219":[],"057231":[],"0573":[24,42],"057300":34,"057361":[],"057393":34,"057406":[],"057418":34,"057446":[],"057457":34,"057462":[],"057502":[],"05750876":[],"0576":[24,42],"057613":[],"057657":[],"057722":34,"0578":[24,42],"05781491e":[],"057831":[],"057835":34,"05785343":7,"057864":[],"05789007":7,"05792524":[],"05796251":7,"05807125":7,"0581":[24,42],"058121":[],"058216":[],"0582573":[],"05825965":[],"05834444":[],"058388":[],"0584":[24,42],"058435":[],"05852973":[],"058550":[],"058552":34,"058556":[],"058567":[],"0586":[24,42],"058645":34,"05873105":[],"058738":[],"058793":[],"05880359":[],"05883":[10,45],"05884":[10,45],"058854":34,"058856":[],"0589":[24,42],"058921":[],"0589434":[],"058952":34,"058996":34,"059004":[],"05900655":[],"059031":34,"0591":[24,42],"05916189":[],"059182":[],"05924492":33,"0594":[24,42],"059427":[],"059439":[],"05966593":[],"059685":[],"0597":[24,42],"059736":[],"059749":[],"05977068":[],"059807":34,"05982961":[],"059830":[],"05989727":[],"0599":[24,42],"059949":[],"059951":34,"05999":[10,45],"059993":34,"06":[7,24,34,38,39,42],"060001":[],"060037":[],"060083":34,"0602":[24,42],"06020587":7,"06020683e":34,"060254":34,"06026294":[],"060278":[],"060300":[],"060334":[],"060349":33,"060387":[],"06043581":7,"0605":[24,42],"060567":[],"06059304":[],"060691":[],"0607":[24,42],"0607062":[],"060716":34,"06072551":[],"06075426":[],"060756":34,"060845":[],"060872":34,"060971":[],"060983":[],"0610":[24,42],"061013":[],"061034":[],"061084":[],"061092":[],"061138":[],"061163":34,"061239":[],"06125720e":[],"061264":[],"061281":[],"0613":[24,42],"061359":34,"061443":34,"061452":34,"061484":[],"0615":[24,42],"061614":34,"061642":[],"061679":33,"061747":[],"061775":[],"0618":[24,42],"061813":[],"061826":[],"061833":[],"061836":[],"061869":[],"061888":[],"061915":[],"061977":[],"06200174":6,"062016":34,"062023":[],"062071":[],"062082":[],"062082386342319454":[7,36],"0621":[24,42],"062100":[],"062221":[],"062250":[],"062273":[],"062292565":[5,44],"06231773":[],"062325":[],"062337":34,"062351":[],"062390":[],"0624":[24,42],"062470":[],"062523":[],"062599":34,"0626":[24,42],"062624":34,"062631":[],"062675":[],"062696":[],"062749":[],"062797":[],"062852":[],"062874":34,"062894":[],"0629":[24,42],"062963":[],"062967":[],"06299237e":[],"063000":[],"06301519":[],"063019":34,"063051":[],"063055":[],"063061":34,"06307625":[],"063080":34,"063081":[],"063159":[],"0632":[24,42],"063225":[],"063260":34,"06331463":[],"063325":[],"063359":[],"063378":[],"063407":[],"063434":[],"06343533":33,"063436":[],"063443":33,"0635":[24,42],"063500":6,"063542":[],"063597":[],"06362348":[],"063653":34,"063705":[],"063716":[],"063722":[],"063723":[],"063724":33,"063747":[],"063760":[],"0638":[24,42],"063822":[],"063832":[],"063864":6,"063894":34,"063905":[],"063912":[],"063927":[],"06394871":[],"063953":[],"06397412":[],"063980":[],"063982":[],"06406913":[],"06407201":[],"064074":34,"0641":[24,42],"064101":[],"064113":[],"06413187":[],"064134":[],"064145":[],"064245":6,"06424868":[],"064275":[],"064294":[],"0643":[24,42],"064320":[],"064412":[],"064420":[],"06444":[10,45],"064444":[],"064501":34,"064527":[],"064532":[],"06453579006728322":[7,36],"064568":[],"0646":[24,42],"064602":[],"064606":34,"064609":34,"064627":6,"064634":[],"064640":[],"064696":[],"064699":34,"064793":34,"06481015":[],"064814":[],"064827":[],"06484621":[],"064856":[],"064874":[],"06488406":[],"064896":[],"0649":[24,42],"06491736":7,"064938":[],"064948":[],"064985":6,"064987":[],"065006":[],"065012":[],"065026":33,"065069":[],"065077":34,"065089":[],"065119":[],"06511966":[],"065147":[],"065158":[],"0652":[24,42],"065207":[],"065214":[],"065215":[],"065249":[],"065289":[],"065378":34,"065390":34,"065410":34,"06547790180152352":[7,36],"06547790180152355":[7,36],"0655":[24,42],"065517":[],"065559":[],"065582":[],"065588":[],"065593":[],"065613":[],"065614":[],"065631":[],"065645":[],"065735":[],"065753":[],"06578047":[],"0658":[24,42],"065801":[],"065808":[],"065815":[],"065872":[],"065910":[],"065982":[],"065984":[],"066042":[],"066066":34,"066077":[],"0661":[24,42],"066143":[],"066200":[],"066323":[],"066344":[],"06637":[10,45],"06638817":[],"0664":[24,42],"06642248":[],"066438":[],"066453":[],"066467":[],"066474":34,"066500":34,"06656566":6,"066566":6,"066612":34,"066647":34,"06664867":[],"06666117":[],"0666807":3,"06668613e":[],"0667":[24,42],"066752":[],"066762":[],"066768":[],"066787":34,"066804":[],"06682268":[],"0668226833598415":[],"066837":[12,34],"066854":34,"066865":[],"066870":[],"066919":[],"066992":[],"066999":34,"0670":[24,42],"067009":[],"067139":[],"06724062":6,"067272":[],"0673":[24,42],"067315":[],"067328":[],"067409":[],"067419":[],"067420":[],"067437":[],"067440":[],"067457":[],"067462":[],"067591":[],"0676":[24,42],"067611":[],"067619":[],"067630":[],"067637":34,"067660":[],"067707":34,"067745":[],"067748":[],"067765":[],"067769":[],"067774":[],"067820":[],"067826":[],"067832":[],"067859":[],"0679":[24,42],"067915":[],"067929":[],"067955":[],"067979":[],"068":[],"068082":[],"068083":[],"068141":[],"0682":[24,42],"068241":[],"068257":[],"068264":34,"068307":34,"068340":[],"068403":[],"068406":[],"068407":[],"06842111e":[],"068437":[],"068439":12,"06843936":12,"068441":34,"06844519414009444":[7,36],"06844519414009445":[7,36],"0685":[24,42],"06853772":[],"068551":[],"06855126e":[],"068606":[],"068609":[],"068612":6,"068624":[],"068629":34,"068650":[],"068671":6,"068727":34,"068731":6,"068734":[],"068743":[],"0687531":[],"068757":[],"068771":6,"068774":6,"0688":[24,42],"068800":6,"068809":[],"068815":[],"068816":[],"06886644":33,"068906":34,"068931":6,"068945":[],"068974":[],"068987":[],"068997":[],"069028":34,"069033":[],"069048":6,"069055":[],"0691":[24,42],"069119":6,"069136":6,"06915522":[],"069213":[],"069239":[],"069257":[],"069296":[],"06931309":[],"069320":[],"069327":6,"069365":[],"069384":[],"069388":[],"069391":[],"0694":[24,42],"069452":34,"069456":[],"069475":6,"069522":[],"069570":[],"069584":[33,34],"069594":[],"069595":6,"069629":[],"06962991":[],"069630":[],"069634":[],"069672":6,"0697":[24,42],"069733":[],"069739":[],"069746":[],"069766":[],"069803":[],"069821":6,"069822":[],"069919":6,"069939":[],"06995653":[],"06it":[],"07":[7,24,34,42],"0700":[24,42],"070009":[],"070042":[],"07004211":[],"070043":[33,34],"070067":[],"070086":[],"070107":[],"070129":6,"070146":34,"070157":[],"07016":[10,45],"07017":[10,45],"070170":6,"07020234":[],"070213":34,"070220":[],"070228":[],"07023654656164897":30,"070275":[],"0703":[24,42],"070338":[],"07039":[10,45],"070400":6,"070406":[],"0704374681593734":[],"070441":[],"070457":34,"070461":[],"070569":[],"070571":6,"070582":34,"070597":[],"07062318":7,"070645":[],"070694":[],"0707":[24,42],"070705":[],"070737":34,"070769":[],"070795":[],"07080407e":34,"070811":[],"070845":[],"070865":[],"070889":[12,34],"070964":[],"070986":34,"0710":[24,42],"071008":[],"071062":[],"071080":[],"071138":[],"07115":[10,45],"071191":[],"0712":43,"071252":[],"071258":[],"0713":[1,24,33,42],"07130734":[],"071323":[],"07136324":[],"07139233":[],"071423":[],"07145103":12,"071452":[],"071456":[],"071498":[],"071554":[],"071564":[],"071579":[],"071587":[],"0716":[24,42],"07160048164232538":[7,36],"0716004816423254":[7,36],"071601":[],"071611":[],"071662":[],"071685":[],"071726":[],"071773":[],"07178264457746288":12,"071788":[],"071792":[],"071801":[],"071805":[],"071872":[],"071879":[],"07188255":[],"0719":[24,42],"071901":[],"071942":[],"071951":[],"071960":[],"072000":34,"072009":[],"072022":[],"07208896238192342":[],"072098":[],"072111":34,"072128":[],"072132":34,"072168":[],"072194":[],"07226292":[],"072285":[],"0723":[24,42],"072305":[],"072310":[],"072338":[],"072369":[],"072404":[],"072410":[],"072476":34,"072483":[],"072486":[],"072495":[],"07250301":[],"072527":6,"0726":[24,42],"072621":34,"072624":[],"072637":[],"072650":[],"072676":6,"072707":[],"072718":[],"072790":[],"072802":6,"072805":[],"072830":[],"07285":4,"07286416":[],"0729":[24,42],"072914":[],"07291818479810824":[],"072931":[],"072953":[],"072967":[],"072973":[],"072976":[],"072990":6,"073008":[],"073011":6,"073059":[],"073063":6,"073079":[],"073080":[],"073088":[],"073131":6,"073152":[],"073154":[],"073184":[],"073187":[],"0732":[24,42],"07321674":[],"073256":[],"07331468":[],"073354":[],"073362":[],"073376":[],"073378":6,"073387":[],"073406":[],"073421":[],"073422":[],"073431":6,"073444":[],"073445":[],"073458":6,"073465":[],"073471":[],"073476":[],"073494":[],"073498":[],"073504":6,"073541":[],"073582":6,"07358383":[],"073586":[],"073592":6,"073598":[12,34],"0736":[24,42],"073618":[],"073630":[],"073634":[],"073635":6,"073640":[],"073644":34,"073708":[],"073712":[],"073716":[],"073720":[],"073728":[],"073734":12,"073736":6,"073766":6,"073797":[],"073802":[],"073810":6,"073824":[],"073840":[],"073842":6,"073853":[],"073858":[],"073876":6,"0739":[24,42],"073929":6,"07393685":[],"073972":[],"073980":[],"073984":[],"073987":6,"074008":6,"074010":[],"074026":6,"07404236":[],"074067":[12,34],"074084":34,"074096":12,"07410236e":[],"074108":[],"074152":6,"074161":[],"07417526":[],"074181":6,"0742":[24,42],"07420079":[],"074201":[],"074210":34,"07421084":6,"074211":[],"074265":6,"074301":[],"074306":[],"074307":[],"074323":34,"074327":[],"074328":[],"074330":[],"074340":[],"074355":[],"07438088":[],"074403":6,"074419":[],"074439":[],"074455":[],"074457":[],"074477":[],"074509":[],"0745177":[],"074545":[],"074560":[],"07456491":6,"074577":[],"0746":[24,42],"074686":[],"074708":[],"07472152457534222":6,"074772":[],"074780":[],"074809":6,"074879":[],"0749":[24,42],"07490892":7,"074969":[],"074970":[],"075017":12,"075030":[],"075058":[],"075089":[],"075171":6,"0752":[24,42],"075249":[],"075294":[],"075331":[],"075342":[],"075352":[],"075421":[],"075454":6,"075471":12,"075513":[],"075521":[],"075523":[],"075582":[],"075587":[],"0756":[24,42],"075684":[],"075758":6,"075779":[],"075804":[],"07581582":[],"075816":34,"075867":[],"075889":34,"0759":[24,42],"075980":[],"075984":[],"075990":[],"076012":[],"076066":6,"076105":[],"076125":[],"076127":[],"076136":[],"076150":34,"07617146":[],"076249":[],"076266":[],"07627734":[],"0763":[24,42],"076331":[],"076337":[],"076349":12,"076354":[],"076355":6,"076413":[],"07641937":36,"0764924":7,"076504":[],"076527":[],"076560707521647":30,"07656071":30,"076586":6,"076587":[],"076592":[],"0766":[24,42],"076612":6,"07663067400487368":[],"076658":[],"076662":[],"076678":[],"076721":[],"07678":[10,45],"076814":6,"076820":[],"0768224464930487":30,"07682245":30,"076825":[],"076833":[],"076857":[],"076897":12,"07692307692307693":[10,45],"076938":[12,34],"076950":[],"076996":[],"0770":[24,42],"077017":6,"077042":[],"077068":[],"07706814":[],"077168":34,"077171":[],"077194":6,"077219":[],"077226":[],"0773":[24,42],"077304":6,"077313":[],"077330":[],"077403":[],"077429":[],"077455":[],"077460":34,"077517":[],"07752620206774397":6,"077542":[],"077549":[],"077571":[],"0776":[24,42],"077613":[],"077630":[],"077650":[],"077705":[],"077710":[],"077731":12,"077734":[],"077756":[],"07777777777777778":[2,40,41],"0778":43,"077833":[],"077847":[],"077931":[],"078":[],"0780":[24,42],"078029":[],"078041":[],"07804489":[],"078106":[],"078110":34,"078187":[],"07820":[10,45],"07824586e":[],"078258":[],"07828283":12,"078283":12,"078329":[],"078336":34,"078377":12,"0784":[24,42],"078412":[],"078423":[],"07842458":[],"078467":[],"078540":34,"078545":[],"078548":[],"078593":[],"078624":[],"07864":[10,45],"078656":[],"0787":[24,42],"078707":[],"07871":[10,45],"078732":[],"078845":[],"078868":[],"078974":34,"078986":34,"0791":[24,42],"079121":[],"079124":[],"079125":[],"079150":[],"079165":12,"079170":[],"079202":[],"079226":[],"079243":[],"079255":[],"07929472":[],"079330":6,"079353":6,"079381":[],"079391":6,"0794":[24,42],"07942491":[],"079432":[],"079434":[],"079437":[],"07944154":[26,33],"079455":[],"079581":[],"079597":6,"079606":[],"079611":6,"0796891867672603":[7,36],"079700":[],"079715":6,"079731":[],"079777":6,"0798":[24,42],"079820":[],"079836":6,"079849":[],"079854":6,"079878":[],"07988085572440823":[],"079882":[],"079892":6,"079914":12,"079946":34,"079948":[],"079958":6,"079964":6,"079969":[],"079971":[],"079975":[],"07it":[],"08":[4,5,7,10,24,30,34,38,39,42,43,45],"080045":12,"080069":6,"080086":6,"080089":[],"0801":[24,42],"080105":[],"08015655":30,"080157":6,"080163":[],"080181":[],"080193":[],"080233":[],"080248":[],"080256":[],"080284":[],"08030109":[],"080322":[],"080406":[],"080411":[],"08043851":6,"080473":[],"0805":[24,42],"080502":[],"080505":[],"080541":6,"080571":[],"080572":[],"080577":[],"080607":[],"080616":34,"08066381":[],"080690":[],"080702":[],"080750":[],"080755":[],"080764":34,"08076969085177746":[],"080773":[],"080832":[],"0809":[24,42],"080903":[],"080906":[],"080933":[],"080935":[],"080953":[],"080980":[],"081000":[],"081057":[],"081120":[],"081126":12,"081136":[],"081150":[],"081164":[],"0812":[24,42],"081246":[],"081276":34,"08131003":7,"081322":[],"081466":[],"0814985":[],"081538":[],"08156108":7,"081570":[],"081584":[],"08159374":[],"0816":[24,42],"081617":[],"081621":[],"081647":[],"08165104":34,"081655":34,"081677":[],"081679":[],"081680":[],"081718":[],"08174081":[],"081742":[],"081753":6,"081762":[],"081772":[],"081779":[],"081804":[],"081821":[],"081832":[],"08185019":[],"08185315":[],"081896":[],"081908":[],"08191117":33,"081916726599974":[],"081937":6,"081955":[],"081960":[],"081976":[],"0819836":[],"0820":[24,42],"082168":12,"082189":[],"082196":6,"082203":[],"082205":[],"08221578":[],"082225":[],"082231":6,"082234":12,"082246":[],"082248":[],"082255":[],"082260":12,"0823":[24,42],"082306":6,"08231145":[],"082329":6,"082347":[],"08238863600759742":[],"08245909":[],"082506":[],"08251519":7,"082517":[],"08255129":[],"08256285":[],"082577":[],"082590":[],"082621":[],"082632":[],"082653":34,"082657":[],"0827":[24,42],"08271388":[],"08272096":[],"082734":12,"082746":[],"082754":[],"082760":[],"082781":[],"082805":[],"08282867":[],"082829":[],"082875":33,"08293853":[],"08299273e":7,"083000":[],"083015":[],"083066":[],"083096":[],"0831":[24,42],"08318298e":[2,40,41,42],"083269":[],"083317":[],"08333333":[24,42],"08333333333333333":[2,10,40,41,45],"08336233266":[5,44],"083371":12,"083393":[],"08339896":[],"083414":12,"083416":[],"083423":12,"08346766":30,"0835":[24,42],"083511":[],"083527":[33,34],"08352721390288316":33,"083604":[],"083630":[],"083669":12,"08368077":33,"083726":[],"08376632":[7,34],"083766322923899":[7,34],"0837663229239043":[7,34],"0838":[24,42],"083848":6,"083853":[],"08389064":[],"08394792":[],"083988":[],"084042":[],"084051":12,"084075":[],"084076":34,"084110":6,"084141":[],"084164":6,"08417181":[],"084172":[],"0842":[24,42],"084207":[],"084212":6,"084247":[],"08426840630693412":[7,36],"08426840630693413":[7,36],"084278":[],"084340":[],"084365":12,"084471":6,"084489":[],"08449894":[],"084536":12,"08455":[10,45],"084550":12,"084594":[],"0846":[24,42],"084617":12,"084633":12,"084644":12,"0846527":26,"084672":6,"084678":[],"08474":[10,45],"084740":[],"084764":[],"084809":34,"08481871":[],"084843":[],"08484802e":34,"084878":[],"084946":[],"084968":[],"084995":[],"0850":[24,42],"085023":[],"08505008":[],"085121":12,"085172":6,"085223":12,"085235":[],"085251":[],"0853136633465326":[37,44],"085382":6,"085390":12,"085391":[],"0854":[24,42],"085425":6,"085427":[],"085454":[],"08551306":7,"08551338":[],"08551625":[],"085557":[],"085709":12,"08576932":7,"0858":[24,42],"085835":12,"085842":12,"085858":[],"085877":[],"085888":12,"085898":12,"085908":[],"08593216":7,"086054":12,"086090":[],"0861":[24,42],"086108":[],"08611111111111111":[2,40,41],"086172":12,"086337":[],"086394":[],"08641073":6,"086411":6,"086441":[],"0865":[24,42],"086518":[],"08652153831327969":[],"086540":12,"086636":[],"086773":12,"086774":[],"086830":12,"086843":[],"086864":[],"086868":[],"086891":12,"0869":[24,42],"08690":[10,45],"086900":[],"08692465":[],"086932":[],"08703034":[],"087062":12,"087063":[],"087159":12,"087175":[],"087180":12,"087184":12,"087211":6,"087212":12,"087247":[],"087250":[],"087254":[],"087271":[],"087280":6,"08728068":[],"0873":[24,42],"087311":[],"08737007811453563":[],"087393":[],"08758":[10,45],"087603":[],"087642":[],"087674":12,"0877":[24,42],"08770809":[],"087761":[],"08776426":33,"087802":12,"087845":[],"087887":33,"087899":[],"088007":12,"0881":[24,42],"088155":[],"08815506":[],"08817972":33,"0881981":6,"088202":12,"08823":28,"088240":[],"088314":12,"088339":12,"088416":[],"08844723450419088":[],"088456":12,"0885":[24,42],"088510":12,"088521":12,"088563":12,"088665":[],"088697":[],"08871404":6,"08874631":[],"08876865":14,"08881497884574564":34,"08888888888888889":[2,40,41],"0889":[24,42,43],"088900":6,"089008":[],"08902":[10,45],"0892144853354966":[37,44],"089227":12,"08928088":[],"0893":[24,42],"089365":[],"089414":[],"089513":6,"089523":12,"0895387":34,"089539":34,"089664":12,"089678":12,"0897":[24,42],"089710":[],"08973767":[],"089752":6,"089781":12,"089793":[],"08988514":[],"089893":12,"08990571":[],"08992459":33,"089925":12,"08996":[10,45],"089979":12,"09":[2,7,24,34,40,41,42,44],"0901":[24,42],"090123":[],"09030678":[],"090361":[],"090365":[],"0905":[24,42],"09076319":[],"090777":6,"090832":12,"090919":12,"090945":12,"0910":[24,42],"091021":12,"091023":6,"091072":12,"091090":12,"091293":12,"091372":12,"0914":[24,42],"09149148":[],"091571":12,"09166666666666666":[2,40,41],"091685":[],"0917":[10,43,45],"091714":12,"09172409":7,"09173024":[],"091796":[],"09179697e":[],"0918":[24,42],"091913":[],"092":[],"09215672":26,"0922":[24,42],"092206":6,"092254":12,"092412":12,"092450":12,"092452":[],"092487":6,"092493":12,"09251":[10,45],"092516":12,"092560":12,"092566":12,"0926":[24,42],"092852":12,"093":[],"0930":[24,42],"093080":[],"09308274":[],"09312344":26,"093218":[],"09327269724691106":[],"09336399":[],"093408":[],"0934955":33,"0935":[24,42],"093551":12,"093559":12,"093570":[],"093657":6,"093866":12,"0939":[24,42],"09391542":[],"093993":12,"093996":12,"094001":12,"094050":12,"09408163":[],"094082198961999e":7,"0940821989652176e":7,"094163":[],"094206":12,"0943":[24,42],"0944":43,"09444444444444444":[2,40,41],"0944958":33,"09455047":[],"0948":[24,42],"0952":[24,42],"09524714":[],"09527217":[],"095273":12,"0954":[],"095420":12,"095528":12,"095596":12,"0956":[24,42],"095624":12,"0958":43,"095821":[],"09599224":[],"09607524":26,"09609807":6,"0961":[24,42],"096434":12,"0965":[24,42],"09676156e":34,"0969":[24,42],"097049":12,"09712586e":[],"0972":43,"097238":12,"09726322":[],"097294":12,"0973":[24,42],"0974":[24,42],"09744":[10,45],"09760094":[],"0978":[24,42],"09780":[10,45],"09787053":[],"09791":[10,45],"09797549e":34,"097995":12,"0983":[24,42],"09832963":[],"09851217":[],"09858511":[],"09861229":[26,33],"0987":[24,42],"098879":12,"09903804":9,"09917246":[],"09919198949274803":[7,36],"0992":[24,42],"099209":[],"09920915":[],"099275":[],"0994119523801045":[],"09951287404314545":[2,40,41],"099552":12,"0996":[24,42],"099701":12,"09978307":30,"0998713":[],"0n":[1,33],"0s":[5,24,42,43,44],"0x1022cc0d0":[],"0x1045a7eb0":[],"0x105b84cd0":[],"0x107a08b50":[],"0x10febc640":[],"0x10febcf10":[],"0x1162c32b0":[],"0x1183f2640":[],"0x118c9b1c0":[],"0x118f6d610":[],"0x1194ee790":38,"0x11ada9670":[],"0x11cb23a60":22,"0x11cb23fd0":22,"0x11de12520":[],"0x11df37280":[],"0x11f5f6520":[],"0x11fdbfd60":[],"0x122d2e790":[],"0x12334c310":[],"0x1262b9a90":[],"0x126323b50":[],"0x1268ba940":[],"0x127a38670":[],"0x127e425e0":[],"0x128f6eee0":38,"0x12b1c2700":14,"0x12e9e6280":14,"0x13002a640":[],"0x1305bb1c0":[],"0x136af27c0":[],"0x13792dfa0":[],"0x13d4a1640":[],"0x13eaa7490":[],"0x13ef4e1c0":[],"0x156346610":[],"0x1635f5340":[],"0x168435640":44,"0x168f3fca0":[],"0x16c9a8880":[],"0x2800bca90":[],"0x280a35220":37,"1":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,21,22,23,24,26,28,29,30,31,32,35,36,37,38,39,40,41,42,43,44,45],"10":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,22,24,26,27,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"100":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,22,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"1000":[1,2,3,5,6,9,12,14,15,22,24,25,30,33,34,37,38,39,40,41,42,44],"10000":[3,6,7,11,12,14,30,35,36,42,43,45],"100000":9,"10001":[11,45],"1001":[10,30,45],"1002":30,"1003":30,"10030":[10,45],"10035098":[],"100351":[],"1005":30,"1007":35,"1007216":22,"10077114273548984":[7,36],"10080981":22,"1009":[30,43],"10095106250934528":26,"101":[24,42,43],"101058":[],"1011":30,"10120164":33,"1013":30,"1013904243":30,"101409":12,"10141413e":7,"1015":30,"10154612":[],"10156593":[],"1016":43,"10160394":[],"10188623":[],"102":[3,4,24,34,42,43],"1020":45,"1023":30,"10230":[10,45],"1024":[4,43],"10247463629935179":[],"10251317e":[],"1026":30,"10268273":[],"1027":30,"103":[2,3,24,40,41,42],"1030":30,"10320791":33,"103273":12,"10340":[10,45],"10354083919795562":[],"1036131":[],"103654":[],"1036544":[],"1037":[30,43],"10378326e":[2,40,41,42],"1038":30,"10391807":7,"10398646080125036":[7,36],"10398646080125037":[7,36],"10399743":26,"10399758":[],"104":[24,42],"1040":30,"10401756":[],"10405456":12,"10430":[10,45],"1044":43,"10440776":[],"104411":[33,34],"10455569":33,"1047":30,"10477501":33,"10479359":[],"10490195":[],"105":[24,42],"10518426027535331":10,"10520":[10,45],"10555555555555556":[2,40,41],"1056":43,"10572":36,"10582403e":34,"10589577":6,"106":[24,42],"1060":43,"106095":[12,34],"10615323e":[],"10638925":[],"1063892533225306":[],"106431":33,"10656534":[],"10683216":[],"107":[24,42],"10706523":[],"10741066e":[],"10776220958055382":[],"1078":36,"10790125813226321":34,"108":[7,10,24,42,45],"10812381":[],"108124":[],"10814421":26,"10815559091341771":45,"10851799e":[],"10888134":33,"1089452":[],"109":[24,42],"10913":7,"10927588":[],"109276":[],"10931453":7,"10954867e":[],"109556":6,"10955639":6,"1095957":[],"10959669":[],"10960":[10,45],"10983954":[],"10e":[24,42,43],"10m":5,"10th":[10,45],"10x":[1,33],"11":[1,3,4,5,6,7,8,9,10,11,12,13,14,16,17,19,22,24,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"110":[24,42],"1100":30,"11007935789924998":[],"1101":30,"11022302e":[6,40],"11022363":[],"11027723":[],"11039573e":[],"11078018494378859":[],"111":[2,8,13,24,37,39,40,41,42],"11100":[10,45],"11110246":26,"11112589053037751":[],"11137061e":[],"11166818":30,"11197884":[],"112":[24,42],"11202337":36,"1123":43,"11232098":26,"112383":[12,34],"1124":[10,45],"113":[24,42],"11339075":[],"1134":43,"11352187":[],"11388888888888889":[2,40,41],"11390":[10,45],"114":[24,42],"11400145":[],"1141":43,"11427818":[],"11450263":[],"114550":36,"11462415":6,"1148":43,"11482289e":7,"1148557":[],"114856":[],"115":[24,42],"11507992e":[2,40,41,42],"11547777218876518":[7,36],"115822":7,"11587186":[],"11590":[10,45],"116":[24,42],"1160326":[],"11628185e":[],"11657689":[],"11660":[10,45],"11666666666666667":[2,40,41],"117":[9,24,42],"11704038":26,"117430":33,"11743722141098414":12,"11744554e":7,"117456":[],"11749517":[],"11780":[10,45],"118":[3,24,42],"11816312":33,"1182":36,"118318":[33,34],"11836068":14,"11837308":[],"11837671":[],"1184":[5,44],"11840":[10,45],"11890":[10,45],"11896755":[],"119":[3,24,42],"11911824":[],"119936":3,"11m":[5,43],"12":[0,1,2,3,4,5,6,7,9,10,12,13,14,22,24,26,30,32,33,34,36,38,39,41,42,43,44,45],"120":[3,4,24,42,43],"12011393e":[],"12023635e":[],"1203":[10,45],"1203284":9,"12044974":34,"120450":34,"12049203":[],"120508":[],"12050822":[],"1206":9,"121":[9,10,11,24,42,45],"12129289":[],"1213":[],"12155548":[],"1215pm":[31,33],"12182967":7,"122":[3,9,10,11,24,42,43,45],"12222222222222222":[2,40,41],"12224317":[],"122282":33,"123":[3,24,42],"12318726e":7,"12330033":34,"12333649":7,"123711":7,"12380":[10,45],"124":[1,24,33,42],"12400":[10,45],"12417157":[],"12422141":22,"12427537":[],"12428533":[],"124413":[],"12441319":[],"125":[24,42],"12506251":30,"12552073e":7,"12568438":[],"12575322":14,"12591227":34,"12594172":[],"126":[10,24,42,45],"12602928e":34,"1261":[10,45],"12618549":6,"12622478":[],"12625715":[],"12634093":[],"1265":[10,45],"12693357":[],"12695501":[],"127":[5,24,42],"1271":7,"12747234e":34,"12765651865754318":[],"1277":7,"12777777777777777":[2,40,41],"127812":33,"12786653":26,"12790":[10,45],"128":[4,5,14,24,38,39,42,43,44],"12814914":[],"1285896350792584":[],"12858964":[],"128664":7,"12867125":33,"12871842":34,"128x128":43,"129":[3,24,42],"12921833":[],"1297":[10,45],"1298":[10,45],"129963":36,"12998822":[],"12m":43,"12pm":[31,33],"13":[1,3,5,6,7,10,12,13,14,22,23,24,26,30,33,34,36,37,39,40,42,43,44,45],"130":[10,24,42,45],"13003291":7,"13055555555555556":[2,40,41],"130694":34,"13069442":34,"13076331":[],"131":[10,24,42,45],"13155259":[],"132":[7,10,24,42,45],"13220608e":7,"1326":[10,45],"13261905":[],"1326197715":33,"13280":[10,45],"133":[8,24,37,42],"13310008":[],"13314468":[],"13333333":[24,42],"1336":[],"13371503":26,"134":[24,42],"13404683":[],"13410999":[],"134110":[],"13422946e":[],"1343":43,"13444436":[],"1345":36,"13451895":14,"134565":[],"1346":36,"135":[10,24,42,45],"13535942":7,"13542726":[],"13580759":[],"136":[24,42],"13621148":26,"136236":[],"13646574":6,"13661243e":7,"13679863":7,"137":[24,42],"1371":7,"13740":[10,45],"137400784702911":34,"13749148e":[],"13756504":[],"13759245e":[],"137652":[12,34],"1377":[4,5,43,44],"1378":[4,5,43,44],"1379":[4,5,43,44],"138":[24,42],"1380":[4,5,43,44],"1381":[4,5,43,44],"1382":[4,5,43,44],"13821034":[],"13827006":[],"13829298":[],"1383":[4,5,43,44],"1384":[4,5,43,44],"1385":[4,5,43,44],"1386":[4,5,43,44],"13865173":6,"138775":[12,34],"1387933":[],"13880371":[],"1388888888888889":[2,40,41],"1388976715362099":[],"13890":[10,45],"13894606338836166":[],"139":[24,42],"1392559585048734e":7,"139255958997547e":7,"13925918083728273":[],"139431112903922":36,"1394311129039245":36,"1395084586525954":36,"1395235273363669":36,"13987729":[],"13m":43,"14":[1,3,5,6,7,9,10,11,12,13,14,22,24,26,30,32,33,34,39,40,41,42,44,45],"140":[3,10,24,42,45],"14021063":7,"14023656":[],"14036907":[],"141":[3,24,42],"14100":[10,45],"1412":[22,38,39],"14133772":12,"141338":12,"1416398":7,"14174745":7,"14179769":26,"1418":[10,45],"142":[10,24,42,45],"14250":[10,45],"14277718e":34,"143":[3,8,24,37,42,44],"1437":[2,40,41,42],"1438149":[],"14389839":[],"144":[24,42],"14400":[10,45],"1440501043841336":[2,40,41,42],"14421971":[],"14440":[10,45],"1446729567":[5,44],"14482255345953607":33,"144993":33,"145":[3,24,42],"14526269":[],"14538257":[],"14549142":[],"146":[3,24,42],"14600426":26,"14629156":36,"146591":[],"146704":[],"14670413":[],"14697721":[],"147":[24,42],"14710":[10,45],"14722222222222223":[2,40,41],"147400":[12,34],"147420":[12,34],"147896":7,"1479":[10,45],"148":[4,5,24,42,43,44],"148009":[],"14812206":7,"14839786":26,"14845":[],"14857":[],"14859":7,"14871402":[],"14896753":30,"149":[4,5,24,42,43,44],"149294":[],"149299":[],"14962649":[],"14978631":[],"14g":[7,36],"14m":[],"15":[1,3,4,5,7,8,9,10,13,14,16,17,18,19,22,24,30,33,36,37,38,39,40,42,43,44,45],"150":[4,5,9,10,24,42,43,44,45],"15005476":6,"150218":36,"15024162":[],"15043":7,"15047127":[],"15048894":[],"15055258":[],"150726":[],"150749":[],"15098090e":7,"150989":[],"151":[4,5,24,42,43,44],"15119514":[],"1511986":12,"151199":12,"15130074e":7,"1513237":[],"15148810e":34,"151515":[],"151517":[],"15183857":[],"152":[4,5,10,24,42,43,44,45],"15200":[10,45],"1520039":[],"152701":[],"1527777777777778":[2,40,41],"153":[24,42],"15301931e":[],"153036":[33,34],"15313054":36,"1532465":[],"15352815e":[],"15383855":[],"15384615384615385":[10,45],"154":[24,42],"15443469e":[37,44],"15457792":[],"155":[10,24,42,45],"15553403":[],"155664":7,"15593134e":[],"156":[24,42],"1560":43,"15628391e":34,"1563":43,"15649598":[],"15673992":[],"15693449e":[],"156956":6,"15697121e":[],"157":[24,42],"15724663":[],"1575":[10,45],"15768662":14,"158":[10,24,42,45],"15827078":[],"15863713":[],"1587":[10,45],"159":[24,42],"1590":[10,45],"15913825":[],"15957051":[],"15962297":[],"15975618":[],"15990":[10,45],"15990395":[],"15g":[7,36],"15m":43,"15pm":33,"16":[2,3,4,5,6,7,9,10,11,22,24,30,33,34,35,36,39,40,41,42,43,44,45],"160":[24,42],"1600552":[],"1603":4,"16043757":[],"1608179281668718":[],"16081793":[],"16087734":[],"16089488":[],"160913":43,"161":[24,42],"16111111111111112":[2,40,41],"161573669199933":[],"16168603e":[],"16168848":[],"162":[24,42],"16211139":6,"16220":[10,45],"162246":6,"16231451":[5,44],"1625":[10,45],"1628":[10,45],"162999":33,"163":[24,42],"16304863":34,"163049":34,"1630775253":[2,40,41],"16309331":[],"16336815":[],"16342407":6,"16343471":7,"16356503":36,"16384":[4,43],"16385836":[],"16389131":[],"164":[24,42],"16456084":[],"164812":[],"16481217":[],"16487517":33,"16492688":[],"165":[24,42],"16500":[10,45],"16521791":[],"16539406e":[],"16570701":[],"166":[10,24,42,45],"16650509":[],"16666667":[24,42],"167":[24,42],"16761991":[],"16762223e":[],"167787":6,"168":[10,24,42,45],"16805821e":7,"169":[24,42],"16921883":[],"169219":[],"16933554":[],"16it":7,"17":[2,3,5,6,7,9,10,19,22,24,26,30,34,36,39,40,41,42,43,44,45],"170":[24,42],"17006020e":[],"17022089147584388":[],"17078905":[],"17086577":[],"1709":[10,45],"171":[24,42],"17121077":[],"17136288":[],"17138811":[],"17144765665252978":[],"171525":34,"1715252":34,"17174962e":[2,40,41,42],"172":[24,42],"17222222222222222":[2,40,41],"17257288":[],"1726":[10,45],"17275391":[],"173":[22,24,42],"17300":[10,45],"17305512":[],"1731":[10,45],"17362603":[],"174":[24,42],"17432695":[],"174327":[],"17440757e":[],"17446471":7,"17451":[],"17456211":33,"17469167":[],"174692":[],"175":[24,42],"1752":[10,45],"175300":[33,34],"17540272":[],"176":[24,42],"17603044":[],"17604689":26,"17615838052499":[],"17641709":7,"17644873":26,"17647619":7,"17648722":[],"177":[24,42],"17733642":[],"17736035":[],"17758251":[],"17777777777777778":[2,40,41],"178":[24,42],"17801022":6,"17829104":[],"17841553":[],"17861098":7,"179":[24,42],"1790289":[],"17917768":6,"17927079":30,"17934657e":[],"179404":[],"17949575":6,"17953942":12,"1797":[2,4,40,41,42,43],"17m":[],"18":[3,5,7,8,9,10,11,14,20,22,24,30,33,36,37,38,39,42,43,44,45],"180":[24,42,43],"18029127":6,"1803":28,"18044829":33,"1804736801658276":[],"18065292":[],"18065689e":34,"1807":[5,44],"1809":[10,45],"181":[10,24,42,45],"1812":[10,45],"18128852":[],"18188532":30,"182":[24,42],"1821":[10,45],"18243276e":[],"18276764":33,"183":[24,42],"18303628e":34,"18314387":[],"18321314e":34,"18333333333333332":[2,40,41],"1836":36,"18375572":30,"18383522":34,"184":[10,24,42,45],"18409473e":[],"18410452":33,"18433544":[],"184519":[33,34],"18474816e":[],"1848":43,"18488944":[],"18489312":[],"1849":[4,5,43,44],"18496":43,"185":[24,42],"1850":[4,5,43,44],"1851":[4,5,43,44],"18518557":[],"1852":[4,5,43,44],"18525109":[],"1853":[4,5,43,44],"1854":[4,5,43,44],"1855":[4,5,43,44],"1856":[4,5,43,44],"1857":[4,5,43,44],"185713":[],"18571316":[],"1858":[4,5,43,44],"1859":[4,5,43,44],"1859082":26,"186":[24,42],"1860":[10,45],"18604968":[],"18611111111111112":[2,40,41],"18613217e":7,"1862":43,"18624242":[],"18660":[10,45],"18670072e":34,"18673098":12,"187":[24,42],"1871257":[],"18726877":[],"1875353":[],"18753987":12,"187540":12,"18761375":[],"18780801":33,"188":[24,42],"18807824e":[],"18824315":[],"18829946":[],"18856622":26,"1887":7,"189":[24,42],"189367":33,"189496":[33,34],"189621963782685":[],"189622":[33,34],"18993003":[],"19":[3,5,7,10,14,22,24,30,36,39,42,43,44,45],"190":[24,42],"19003":7,"19010909":[],"19029687":14,"19073291":[],"191":[24,42],"19123037":[],"19154013e":[],"19166136":[],"19166666666666668":[2,40,41],"191963":33,"192":[24,42],"19207979":6,"1921649":[],"19220":[10,45],"193":[24,42],"19314584":[],"19335893":[],"19343949":[],"1937079":[],"19393543":[],"194":[24,42],"1940":[1,34],"194042826649355e":7,"1940428268204826e":7,"19407473":[],"19426595":[],"1943":[13,39,40],"19431161":[],"194312":[],"19436962e":[],"1946":43,"19461919e":34,"19463967":[],"194861702085775":[],"195":[24,42],"1956":[10,45],"19569961":[7,34],"19590868":[],"196":[24,42],"19623863e":[],"19652884e":[],"19683648":[24,42],"197":[24,42],"1970":[26,33],"19717411":[],"19721923":[24,42],"1973":[10,45],"197370":[12,34],"19740":[10,45],"19743643":[],"19769458e":[],"1977":43,"19772911":[],"19783086":14,"1979":[7,36],"19790229":33,"198":[24,42],"19800":[10,45],"19824029":[24,42],"19825288e":[],"19870992":[],"19888258":[],"199":[24,42],"19910208":[],"19942021":26,"1997":44,"19983530":7,"1999":[0,28,36,42],"19it":[],"1_1":[13,39,40],"1_2":[13,39,40],"1_3":[13,39,40],"1cm":[1,9,11,30,33,45],"1d":[2,3,4,40,41,42,43],"1e":[2,3,5,14,15,22,24,38,39,40,41,42,43],"1e10":15,"1e4":7,"1f":[2,41,42],"1k":26,"1n":[1,33],"1s":[5,24,42,43],"1x":[1,33],"2":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,22,23,24,25,26,27,29,30,32,35,36,37,38,39,40,41,42,44,45],"20":[1,2,3,5,7,8,9,10,14,22,24,30,31,33,34,35,36,37,39,40,41,42,43,44,45],"200":[1,3,4,5,9,10,11,24,42,43,44,45],"2000":[1,24,34,42,45],"20015436":7,"20017452":[],"20020918e":[],"2004":[14,37],"2006":32,"2008":33,"201":[24,42],"2010":[2,41,42],"20101684":[],"2011":[2,40,41,42],"2014":5,"20142361":[],"2015":[2,41,42],"2016":[1,33],"2017":42,"2018":[1,7,34,36],"2019":[9,10,45],"202":[24,42],"2021":[7,15,34,35,37,44],"2022":33,"2023":[4,5,16,17,18,19,20,21,22,23,24,28,33,35,36,37,38,39,40,41,42,43,44,45],"20240089":[],"20261698e":[],"2027":[10,43,45],"20272874":[],"20277777777777778":[2,40,41],"20289224":[],"203":[24,42],"20355156":36,"20371418":[],"204":[24,42],"20404676":[],"20484434":[],"204932":[],"20493234":[],"20494446":[],"205":[24,42],"20500":[10,45],"20513942":26,"205231":33,"20536556":26,"20554718e":[],"20594513":[],"206":[24,42],"2060":[10,45],"2069":[10,45],"20695722":[],"207":[24,42],"2070":43,"20726939":[],"207545":[12,34],"207888":33,"208":[24,42],"208190393562401":30,"20820528e":[],"20833333333333334":[2,40,41],"20867052175003364":[7,36],"209":[24,42],"20916295":34,"20956318":[],"20967833":[],"209789":33,"20980":[10,45],"21":[1,2,3,5,6,7,8,10,13,14,16,22,24,26,30,33,34,36,39,40,41,42,43,44,45],"210":[24,42],"210340":[12,34],"21049575":[],"210496":[],"21053692":[],"21055226":[],"21058097":6,"21059098":[],"211":[24,42],"21110005":36,"21130":[10,45],"21152452":[],"2116753732":[5,44],"21169159e":7,"212":[24,42],"21275991":[],"213":[24,42],"213103":[12,34],"213743":[12,34],"214":[24,42],"21401303e":[],"2141":43,"21460652":[],"214607":[],"21467941":[],"21489709":[],"21493779":[],"215":[24,42],"21522960e":34,"21530495e":34,"21546249":[],"21596432":7,"21597684":6,"215977":6,"216":[24,42],"2161908":26,"216290":[12,34],"216683":[12,34],"2167":43,"21682143":[],"217":[24,42],"21706540e":[],"21710121":[],"2171263":[],"218":[24,42],"2184":43,"21860973":[],"21879159":[],"219":[24,42],"21913628":[],"2193546":[],"21947455":[],"22":[1,2,3,5,6,7,10,13,14,20,22,23,24,26,30,33,34,36,37,38,39,40,41,42,43,44,45],"220":[24,42],"22001043":[],"22044605e":[6,34,40],"22092934e":[],"221":[9,24,42],"22103874e":[],"221180":[33,34],"22130126":[],"2216":[10,45],"22169909":[],"2218":[10,45],"221805":3,"221921":6,"22197349":26,"222":[24,42],"22209775e":[],"22227163e":34,"222400":[33,34],"22241171":[],"22291364":[],"22297358":[],"223":[24,42],"22328509":[],"22354860e":[],"22368396":[],"223884":[],"22388434":[],"224":[24,42],"22416937":[],"22467274":36,"225":[5,24,42],"22532324":[],"22574374":[],"2257879":33,"226":[24,42],"22616902":[],"22623101e":34,"226296567359957":[],"22663583":[],"22689573":[],"22690428":6,"227":[24,42],"22729927":[],"22752605":26,"228":[24,42],"228059":[],"22805937":[],"22830615":33,"2284246870217162":[7,36],"22847924":6,"22885848":[],"228942":[],"229":[24,42],"229241":[],"22935165":6,"229352":6,"22974406":[],"22979294e":[],"22996417":26,"23":[2,3,5,7,8,10,13,14,22,24,26,30,33,36,39,40,41,42,44,45],"230":[24,42],"23002365e":7,"23031634":[],"23044077":33,"23047985":[],"23076923076923078":[10,45],"23077531":33,"231":[24,42],"23110543":[],"2314999":22,"23167717":6,"23192074e":[],"232":[24,42],"232435":[33,34],"23257415":[],"23288045":30,"233":[24,42],"23305112":[],"23333333333333334":[2,40,41],"2338675":34,"233868":34,"23392132":[],"23396766e":34,"234":[7,24,42],"234370":12,"23437046":12,"235":[24,42],"23516186":[],"23528337":36,"2361161":[],"23636536":[],"2364":[10,45],"23643365":36,"237":[24,42],"23780865":[],"2379":7,"238":[24,36,42],"23849741":33,"239":[24,42],"2397":[10,45],"23971032":34,"23979359":[],"24":[1,2,3,4,5,7,10,14,20,22,24,26,30,33,36,39,40,41,42,44,45],"240":[24,42],"24005098e":[],"24053124e":34,"24085321":36,"241":[24,42],"24128917":[],"24140":[10,45],"24159785":34,"2416":[10,45],"24175744e":7,"2419":[10,45],"242":[24,42],"24251681":[],"24252405":[],"24280599":[],"242806":[],"243":[24,42],"2430":[10,45],"24339513":[],"24390":[10,45],"244":[24,42],"244119":[],"24411906":[],"24434901e":[],"24444444444444444":[2,40,41],"245":[24,42],"24569547":[],"246":[3,24,42],"24602503e":[],"2465439":[],"24679418":[],"247":[24,42],"24785221":[],"24797183e":34,"248":[24,42],"24828523":[],"24829908":6,"24849282":[],"248493":[],"249":[24,42],"24906604e":7,"24960675":[],"24968001e":[],"25":[3,4,5,6,7,8,9,10,12,14,16,21,22,24,27,33,34,36,37,39,40,41,42,43,44,45],"250":[3,5,8,10,24,37,42,44,45],"25000":[1,34],"25002882":12,"250029":12,"25050227":[],"250636":33,"25077762":[],"25084316":[],"25091007":[],"251":[24,42],"25139357":[],"251879":[33,34],"252":[24,42],"2522939":33,"252436":[33,34],"25254477e":34,"25285802":14,"253":[24,42],"254":[24,42],"2544422":26,"2545724":[],"255":[4,24,42,43],"255001":[33,34],"25561567":[],"256":[3,5,24,42],"25617654e":7,"25617658e":7,"25650679":[],"25663096":[],"257":[24,42],"257004":[],"25700419":[],"25713219e":34,"2572":[10,45],"2575":[10,45],"25794223e":34,"258":[24,42],"25844504":[],"25872167e":[],"25898624":[],"259":[24,42],"259153":[12,34],"2591811":[],"25920793":[40,41],"25923926":22,"2597":[10,45],"259901":[],"25it":[],"25m":[],"26":[3,5,7,10,14,22,24,36,39,44,45],"260":[24,42],"26037366":[],"26063304":[],"260840":[],"26084008":[],"261":[24,42],"26113838e":[],"261498":[],"26149831":[],"2619":34,"262":[24,42],"262638":[],"26263837":[],"26291451":[],"26292364":36,"26297455":34,"263":[24,42],"26301436":6,"26318493":[],"26331821e":[],"26370919":[],"26372759":[],"264":[5,24,42,44],"26409315307910025":7,"2640931530791004":7,"2641":43,"264377":[],"26437713":[],"264421":33,"265":[24,42],"2650":[10,45],"265109911":[5,44],"26513904":[],"26514544":[],"26518597":[],"2654":[10,45],"266":[24,42],"26660718e":[],"26666667":14,"267":[24,42],"26710969":6,"26776828":[],"26780278":6,"268":[10,24,42,45],"26803966":[],"26805987":26,"269217029290255":[],"26931499":[],"26961519":26,"2697447":[],"26995402":34,"26it":[],"27":[1,2,3,5,7,14,22,24,34,36,39,40,41,42,44],"270":[24,42],"27068495e":[],"2707158":[],"27092910":7,"27096183":[],"27099835":22,"271":[24,42],"2714":43,"27152452":[],"2717818":[],"272":[24,42],"27204759":33,"27230624e":[],"273":[24,42],"27305669":[],"273094":[],"27309401":[],"27335131":22,"2736":43,"27424746e":[],"27438488":[],"27463692":26,"27485633":33,"275":[24,42],"2750":[10,45],"27547557":[],"276":[24,42],"276263":[12,34],"27637358":[],"27650338":[],"27693602e":40,"277":[24,42],"27700":[10,45],"27717261":[],"27743488e":[],"2774877574815404":[],"27760":[10,45],"27793476":[],"277935":[],"278":[24,42],"27826845e":[],"27832584e":[],"27859357":[],"27880068":12,"279":[24,42],"27919014":[],"27924636":6,"27971414":[],"27987128":[],"27n_":30,"28":[2,3,4,5,7,10,14,17,22,24,26,34,36,38,39,40,41,42,43,44,45],"280":[24,42],"28008933":[],"280179":33,"280573":6,"280647":[12,34],"28081221e":[],"28096517":[],"281":[24,42],"28134042":34,"281930":33,"28194659":[],"282":[24,42],"28205578e":34,"28206156":[],"28210895":[],"282259":33,"282727":[12,34],"28291282":[],"28294305":[],"283":[24,42],"2830637392":[5,44],"283078":[],"28336218e":7,"2837521e":[],"28390":[10,45],"28391978":34,"284":[24,42],"28418209":[],"28443039":36,"284499":26,"28475098":9,"28490569":[],"285":[24,42],"28535441":[],"28566769":[40,41],"2856881":26,"28570701":26,"28585116":[],"28595266e":[],"286":[24,42],"28607817":[],"2861":30,"28621796e":[],"28622606":[],"28624958":[],"28638913":[],"28641189":[],"28662669":[],"287":[24,42],"2871":[10,45],"2873":[10,45],"28795864":39,"288":[24,42],"28818554":[],"288186":[],"2882":30,"28837459":[],"28858038":[],"2886":30,"289":[24,42],"2890":[1,33],"28908491":[],"28909679e":34,"2892":30,"28962017":[],"28it":7,"28x28":43,"29":[5,7,8,10,21,22,24,36,37,42,44,45],"29009852":33,"2901":43,"29022057":[],"29025302":[],"29030069":22,"29097377":[],"291":[24,42],"29135778":[],"291358":[],"2915":30,"29153991":[],"29167186":6,"29174301":[],"29199381":[],"292":[24,42],"292202":6,"29220202":6,"29228133":[],"2927":43,"29275129":[],"29282684":[],"293":[24,42],"2931":33,"293245":4,"29350903":[],"29374695":[],"29384004e":[],"294":[24,42],"29401213":[],"2941718e":[],"29426584":[],"29454955e":[],"29496954e":[],"295":[24,42],"2953":[4,5,43,44],"2954":[4,5,43,44],"2955":[4,5,43,44],"2956":[4,5,43,44],"2957":[4,5,43,44],"29588674":[],"29592687":[],"296":[24,42],"29633889":[],"296414":33,"29679459":[],"2968":33,"2970942":33,"29726695":[],"29731502":[],"29732036":[],"29734306":[],"29765192":22,"298":[24,42],"2980":33,"29822833":7,"29866668":[],"298667":[],"29894362":[],"299":[24,42],"2990":33,"29933720e":[],"2996":43,"299748":[33,34],"29it":[],"2_":[13,39,40],"2_1":[13,39,40],"2_2":[13,39,40],"2_3":[13,39,40],"2_i":[13,39,40],"2_m":[7,30,36],"2_t":[14,38,39],"2_x":30,"2b":30,"2c8f433990d1":[38,39],"2cm":9,"2d":[2,4,12,13,25,33,39,40,41,42,43],"2e":[7,36],"2f":[1,8,10,11,12,13,33,34,37,39,40,44,45],"2g":[3,42],"2g_i":[3,42],"2k":[4,43],"2m":[7,36],"2n":[1,3,4,33,34,42,43],"2nd":[10,45],"2p":[30,43],"2pm":[31,33],"2pt":5,"2s":43,"2u":0,"2x":[1,4,9,14,33,38,39,43],"2x_ix_jy_iy_j":9,"2x_j":9,"2y_i":11,"2y_j":9,"3":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,22,24,25,26,27,28,29,30,31,35,36,37,38,39,40,41,42,43,44,45],"30":[1,2,5,7,8,10,11,14,22,24,31,33,34,36,37,38,39,41,42,43,44,45],"300":[22,24,39,40,42],"3000":[24,42],"30000":[1,33],"30010":[10,45],"30012384":[],"30085673":[],"301":[24,42],"30119421":9,"30125775":[],"30129931":[],"30150056":[],"30170017":[40,41],"30177145":[],"302":[24,36,42],"3020":43,"30237154":22,"3024":43,"30258509":[26,33],"3029":43,"303":[7,24,42],"3030":43,"303107":33,"30311767":[],"3032":43,"30326262":[],"30335380e":[],"30339081517583943":[],"30361418":[],"30442964":34,"30447937":[],"30466214e":7,"3047648":30,"30478013":[],"30485583":22,"30494363":[],"305":[1,24,33,42],"30506642":33,"30567713":[],"30571694e":[],"306":[1,24,33,42],"30630294":[],"3064":43,"3065":43,"30677003":[],"306770031113352":[],"30685269":12,"306853":12,"3068687590657415":6,"30690504":[],"307":[1,33],"3072":[4,43],"3073":36,"30739146":14,"307631":[],"30763135":[],"3076923076923077":[10,45],"3077":43,"30774404":[],"30787294":7,"308":[1,24,33,42],"3082":43,"309":[1,24,33,42],"30914432":[],"30928349":30,"30940":[10,45],"30971881":[],"30990916":[],"31":[5,7,13,24,26,30,39,40,42,44],"310":[1,24,33,42],"31022577":[],"310277":[],"31027702":[],"310579":34,"3105791":34,"31082439":[],"311":[1,33],"31113868e":[],"312":[24,35,42],"31212802":[],"3123314713548606":[7,36],"31244861":[],"312449":[],"31248389":[],"3126":43,"31276579e":7,"31290061e":[],"31290684":[],"313":[24,35,42,43],"31318084":6,"313183599076104":[],"31395784e":34,"3139661":[],"31415359e":[],"314471861842257":12,"31457796":6,"315":[7,24,35,42],"31532451":26,"3155":[1,6,7,35,36,37],"31579721":[],"31588043":[],"31588332":[],"316":[24,35,42],"31633433":22,"31650694":7,"317":[24,42],"31705377":[],"31714002":[],"31718909":12,"31728952e":34,"317367":12,"3175938":[],"317594":[],"318":[24,42],"31803769":[],"31814386":[],"3189":36,"31895514":[],"31896852":9,"319":[24,42],"31921368":26,"31927572":[],"31949465":[],"31995103":[],"32":[4,5,7,13,14,24,26,30,36,38,39,40,42,43,44],"320":43,"3200":[2,40,41,42],"32023229":[],"32032017":[],"32041353":[],"321":[24,42],"32108713e":34,"32133765":[],"32141575":[],"32149601703519115":[7,36],"3214960170351912":[7,36],"3215":[10,45],"32185967":[],"322":[24,42],"32221699":[],"32234998":22,"32244056":[],"32257967":30,"3225819":26,"32265589":[],"3228044":[],"32341247e":[],"32372846":[],"32382849":[],"324":[3,24,42],"32441343e":[],"3245":3,"32450054":34,"325":[24,42],"3250":[2,7,40,41,42],"32507975":[],"32577534":[],"32584888":[],"326":[24,42],"32615859":[],"326238":[33,34],"32632463":[],"326325":[],"327":[24,42],"32708194":[],"327291":[],"32729105":[],"3273472571412799":[],"328":[24,42],"3283771":[],"328458":12,"32845846":12,"32858131":30,"329":[24,42],"32941592e":[],"329492":33,"33":[3,5,10,13,24,26,31,36,39,40,42,43,44,45],"330":[24,42],"33015882":14,"33020191":[],"3303366":[],"33066907e":[6,34],"33078483":[],"33079132":[],"33104875":[],"33108943":22,"33113018":[],"33159476":[],"33166055e":6,"331939":[33,34],"33197004e":34,"332":[24,42],"33213799":33,"33285444":[],"33285905":[],"3329671101137754":[],"333":[8,24,37,42],"33333333":14,"33408606":[],"33444711e":34,"33457718e":[],"33486875":[],"335":[24,42],"33525471e":[],"33534416":[],"33537181":[],"335849":[],"336":[24,42],"33600213":[],"3364":43,"33656494":26,"33708747":26,"33746734":[],"33746734412664":[],"33751667":30,"338":[24,42],"33800793":[],"33857909e":[],"33860497":[],"339":[24,42],"33903511":[],"33918941":1,"33995567":[],"339961":[],"3399612":[],"33it":[],"34":[3,5,10,24,26,36,42,44,45],"340":[24,42],"340071371496255":34,"34011629":[],"3403":[10,45],"340583":33,"340782":[12,34],"341":[24,42],"34100913":[],"34114547":6,"34133193":[],"34149655":[],"341497":[],"34154132":[],"34158540e":[],"34193915":[],"342680":[33,34],"3426926":26,"34294831e":22,"343":[24,42],"34347894e":34,"3436":[1,33],"34362409":26,"3437":[1,33],"34373214":33,"3439564710454786":[],"344":[24,42],"34412923":34,"34440086":[],"34447052":[],"34459931":39,"34460089":26,"345":[24,42],"34517495":[],"34569596":6,"346":[24,42],"34642944":26,"34685874":[],"346941":[],"34694145":[],"347":[24,42],"34718587":[],"347186":[],"3472":43,"34728094e":34,"348":[24,42],"348676117830458":[],"349":[24,42],"3493":43,"34977681":22,"34998197":[],"35":[1,3,5,7,10,18,24,27,31,33,36,42,44,45],"350":[24,42],"35058127":[],"35084272":[],"351":[24,42],"3512747":[],"351275":[],"35140":[10,45],"35146218":[],"35149796":6,"351498":6,"351636":[12,34],"35182854":6,"352":[24,42],"35248847":[],"35255737e":[],"353":[24,42],"3532":43,"35322418":26,"3536":43,"354":[24,42],"35401107":39,"35408251":[],"354083":[],"35412147":36,"35417405e":34,"35434042e":[],"3544313922":7,"35470445e":[6,34],"3549":[],"355":[24,42],"35533773":7,"35539164e":[],"35564856":[],"356":[24,42],"356399":[33,34],"3568919":[],"357":[24,42],"357508":[33,34],"35771826":7,"35795044":33,"35796655":30,"358":[24,42],"3581341341":[5,44],"35825829e":[],"35846425":36,"359":[6,24,35,42],"3591093":26,"3592571":[],"3597516959642966":[],"3597517":[],"35it":[],"36":[1,3,5,6,7,24,27,30,36,42,44],"360":[2,40,41,42],"3604":43,"36051635":[],"36097055e":[],"36099915":33,"361":[24,42],"36128659e":[],"3613":[10,45],"361556":[33,34],"3616476":[],"3619":43,"362":[24,42],"3621311":6,"363":[24,42],"3632959111950474e":7,"363295916323784e":7,"364":[24,42],"36403046":[],"36420967":[40,41],"36434588":[],"3646":43,"36550376":[],"3655222":6,"366":[24,42],"36674564":26,"36681298":[],"367":3,"3676":[],"36789460e":[],"3679":[],"36795972e":[],"368":[24,42],"36802977":[],"36825174":30,"3689":[],"369":[24,42],"369139":[12,34],"36928":43,"36970119e":34,"36it":[],"37":[1,5,7,10,20,24,27,33,37,42,44,45],"370":[24,42],"3701":[],"37021881":[],"3703":[],"3703468543933255":[],"3705":44,"3706":[],"370782966":[5,44],"37092452":[],"371":[24,42],"37112277":[],"3713":[],"3714":44,"3716":[],"3717":44,"37187359":26,"372":[24,42],"37236385":[],"372364":[],"37239927e":34,"3724":[],"3725":[],"37266855":[],"3727":44,"3729492":[],"373":[24,42],"3730":[],"3732":44,"3733":44,"37335014":[],"3734":[],"3735":44,"3736":44,"37369014":22,"3737":[],"37376184":[],"37388140e":[],"37391132":26,"37396662":7,"374":[24,42],"3740":44,"3741":[],"3743":[],"3744":[],"3745":44,"37477725":[],"374777250972322":[],"3748":44,"3749":44,"375":[24,42],"3750":[],"3752":[],"3753":[],"37540613":[],"3756":[],"375694":33,"3758":[],"3759":44,"376":[24,42],"3760":44,"3764":44,"3765":[5,44],"376547":33,"3766":[],"37667238":[],"3767":44,"3768":[],"3769":[],"377":[24,42],"3770":[5,44],"3773":44,"377372":34,"37737221":34,"37749489":[],"3775":5,"3776":[],"3777":5,"3777801602":7,"3778":[],"3779":5,"378":[24,42],"3780":44,"3781":[],"3782":[],"3784":[],"3785":[],"37853034e":[],"3786":[],"3787":[],"37871763":33,"3788":5,"3789":44,"37895549":[],"3790":[],"37900111":7,"3791":44,"37917253":[],"3792":5,"37938584":30,"3794":44,"3795":[],"3797":[5,44],"3798":[],"3799":[],"38":[5,10,24,27,30,42,44,45],"380":[10,24,42,45],"3800":[],"3801":[],"3802":44,"38020451":[],"380205":[],"3803":44,"38035637":30,"3804":[],"38046294":[],"3806":[],"3808":5,"38088413":[],"3809":[],"3810":[],"3811":[],"3812":5,"3813":[],"38135654":[],"38135733e":7,"3814":5,"3815":[],"3816":[],"38160211":33,"38165546":[],"3817475779":[7,36],"3818":44,"3819":[],"382":[24,42],"3820":44,"38201155":[],"3821":44,"382187":33,"3822":44,"3823":[5,44],"3824":5,"3825":[],"38259375":[],"3826":[],"3827":5,"3828":[],"3829":[],"383":[24,42],"3830":[],"38319502e":[],"3832":[],"3834":[],"3835":[],"3836":[],"3837":[],"3838":[],"38380352":[],"3838917029":38,"3839":5,"384":[24,42],"3840":[],"3841":[],"3842":44,"3842967":[],"3843":[],"3844":44,"3846":[],"38461538461538464":[10,45],"38461539":38,"38465596":[],"3847":[],"38478181":6,"384782":6,"3848":44,"38488879":26,"3849":[],"38493367":[],"385":[24,42],"3850":[],"38511237e":[],"38511413":[],"3853":5,"38533185":7,"3854":[],"3855":44,"3856":5,"3857":44,"3858":[],"3859":[],"386":[10,24,42,45],"3860":44,"3861":44,"3862":[],"38629436":[26,33],"3864":[],"3865":5,"3866":[],"3868":[],"38688646e":34,"3869":[],"387":[24,35,42],"3870":[],"3871":[],"3872":[],"3873":5,"3875":[],"3876":5,"38764522e":[],"3877":44,"3878":[],"38782352":[],"38787447":[],"3879":5,"3881":43,"3882":[],"3883":[],"38831624":[],"3884":[],"388451":43,"3885":[],"3886":36,"3887":5,"3888":[],"3889":[],"389":[24,42],"38916861e":7,"3893":[],"3894":44,"3895":5,"3896":[],"38962192e":7,"3897":5,"3898":[],"3899":[],"39":[1,5,10,23,24,28,31,33,39,40,42,44,45],"390":[24,42],"3900":5,"3901":[],"3902":5,"3903":5,"3906":[],"3907":[],"3907408":[],"39078751e":[],"391":[24,42],"3910":[],"3911":[],"3913":5,"3914":[],"39148625":26,"3915":[],"3918":[],"3919":[],"39197698":34,"391977":34,"392":[24,42],"3920":[],"39200159":[],"3921":5,"39214397":34,"392144":34,"3922":44,"39229856":[],"3923":[],"3924":[],"392564":12,"39256409":12,"3928":[],"39287528":[],"3929":5,"393":[24,42],"39300201":[],"393030":[],"3930301":[],"39308683e":[],"3931":[],"39313789e":34,"3932":[],"3933":[],"3935":[],"3936":5,"3937":44,"3938":[],"3939":5,"394":[24,42],"3940":5,"3944":[],"39457095":[],"3946":[],"3948":[],"39483726":[],"395":[24,42],"3951":5,"3953":5,"3954":[],"39541528":[],"3957":5,"39572825":[],"39579407":6,"396":[24,42],"3960":44,"39612983":[],"3962":[],"3964":[],"39644178":[],"3966":[],"3967":[],"397":[24,42],"3970":[],"39706038":6,"3972":[],"3973":5,"39730396":27,"3975":5,"3976":5,"397700":[12,34],"3978":[],"39789527":[26,33],"3979":[],"398":[24,42],"3980":[],"3980313467":7,"3981":[],"39837199":26,"39856058e":[],"3987":[],"39890447":[],"39895173e":[],"399":[24,42],"3990":[],"39917327":22,"3992":[],"39931051e":34,"3994":5,"3996":[],"39965905e":[],"3998":44,"399836":[33,34],"3999":[],"3d":[3,4,5,7,14,27,36,38,42,44],"3f":[2,4,10,41,42,43,45],"3n":26,"3s":[5,43,44],"3x":[3,9,42],"3x_i":[3,42],"3y":9,"3yk470mj5p931p9dtkk0y6jw0000gn":[2,7,14,27,33,36,38,40,41],"4":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,24,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],"40":[2,5,7,10,23,24,27,28,31,33,36,40,41,42,43,44,45],"400":[5,24,42],"4000":[10,24,33,42,45],"40009482":[],"4001":[],"40043644":26,"40075395":[],"4008":[],"4009":[],"401":[24,42],"4010":[],"4011":[],"40111899":[],"401119":[],"4013":[],"4014":[],"40182469":[],"401842":[12,34],"402":[24,42],"40216748":[],"4024":[],"4025":5,"4027":[],"4032":[],"4033":[],"40362053":[],"4037":[],"40389562":[],"404":[24,34,42],"404130":[],"40413036":[],"4043":[],"4048":[],"4050":[32,33],"40500157":[],"4051":[],"40512793":[],"40513177e":34,"4054":[],"4055":5,"4056":5,"405890":[12,34],"406":[24,42],"40620066":34,"406201":34,"40629059":[],"4063":[],"40644745":[],"4066":[],"40660618e":[],"40666305":[],"4068":[],"4078":[],"408":[24,42],"4082":7,"40837954":30,"4085":43,"4086":[],"4087":[10,45],"4087793":6,"4088":[],"40892146":[],"40927184e":7,"4095":5,"4096":44,"4099":[],"40contain":28,"40it":[],"41":[3,5,10,23,24,26,28,42,44,45],"410":[24,42],"4100":[],"41021561":[],"4106":[],"4107":[10,45],"41097603":[],"411":[24,42],"411730":[],"41173033":[],"412":[24,42],"41219619":[],"41226929e":34,"41246325":[],"4128":[],"41291861":[],"413":[24,42],"4130":[],"4137":[],"41371745":[],"414":[24,42],"4141":43,"41433969":6,"4146":[],"41471556e":[],"4148":[],"415":[24,42],"4150":[],"415066":[],"41506637":[],"41511965e":[2,40,41,42],"415201":33,"4155":[3,16,42],"41594943":[],"416":[24,42],"4162":[],"4162706317":7,"41644629e":34,"4166666666666667":[10,45],"41671085":26,"417":[24,42],"41708096e":34,"41716708":[],"4177":[],"41771755":[],"41772265":33,"41790059":[],"418":[24,42],"4181":[],"418506":[12,34],"4187996":[],"41882037e":7,"41891092":[],"41894238":[],"419":[24,42],"4192":5,"41928689":[],"4199":[],"42":[2,3,4,5,9,10,11,24,26,40,42,43,44,45],"420":[24,42],"4203":[],"420442688206847":[],"4208":[],"421120085426022":[],"42138688e":[],"42143986":[],"42172457":[],"42198678":[],"421987":[],"422":[24,42],"4220":43,"4221":[],"4222":[],"42239354":[],"422658":[],"42265837":[],"423":[24,42],"4230769230769231":[10,45],"42323635":33,"4234":[],"4236":[],"424":[24,42],"4241":43,"42441033":6,"42450":[10,45],"42457498":[],"424575":[],"42484290e":34,"42484459":[],"424863":[],"42486342":[],"42487977":33,"425":[24,42],"4253":[],"42535003":[],"425564":[],"42556446":[],"4256":43,"42578415":[],"4258049":[],"42584543":[],"426":[7,8,24,37,42,44],"42633236e":[],"42642980e":[],"4266":[],"427":[24,42],"4277":[],"42777999":26,"428":[24,42],"42800148":[],"4281152":26,"4287":[],"428741":[],"42874148":[],"429":[24,36,42],"429345":[],"42934502":[],"42967903e":[],"42it":7,"43":[0,1,2,3,5,8,10,26,37,40,41,43,44,45],"430":[24,42],"43043913":[],"43054282":6,"4310":33,"4314":43,"4316":[],"432":[24,42],"43226747e":34,"433":36,"43330971e":7,"4336":[],"4338":43,"434":[24,42],"43425860e":[],"43466245":[],"4349":5,"43490863":[],"43496417":[],"435163":[33,34],"4353":[],"43559429":33,"43579948e":7,"436":[24,42],"43608740e":[],"43639284e":34,"436462435":[5,44],"43647835":[],"436501":12,"43650129":12,"437":[24,42],"43713337":[],"4375":43,"43766686":12,"438":[24,42],"43801947":[],"438060758":7,"43809274e":[],"438136":[33,34],"439":[24,42],"43902948":[],"439230":7,"4394":43,"43941514":[],"43951204":[],"43989497":26,"43it":[],"44":[1,2,3,5,26,40,41,44],"440":[24,42],"44020145e":[],"44079937":26,"44089210e":[6,34],"441":[24,42],"44116407":[],"441182":[],"44118245":[],"441264":33,"442":[24,42],"44210664":[],"4426":[],"442600":[12,34],"44298022":26,"443":[24,42],"443217":[33,34],"44347438":[],"444":[10,24,42,45],"44402322":[],"44407741e":[],"44418822":[],"44437409":33,"44440345":[],"44507049":[],"44520102":[],"44595818":[],"446":[24,42],"446033":36,"44624525e":34,"44632008":[],"446453":33,"44657526e":34,"4466":43,"4472":43,"44729805":[],"44732200e":[],"447659635275407":[],"44765964":[],"44781662":[],"447817":[],"447m":5,"448":[24,42],"44842116":[],"44886896":33,"448m":5,"449":[24,42],"449001126081919":[],"44900113":[],"44921888":[],"44967228":26,"44970586e":[2,40,41,42],"449m":[5,44],"44it":[],"45":[3,5,10,24,31,33,42,43,45],"450":[10,45],"45000312":33,"45014":[],"450257":[12,34],"4504":[10,45],"45062284":[],"45065211":[],"45073476e":[],"450m":[5,44],"451":[24,42],"4512":43,"45134965":[],"451m":5,"45207509":[],"45227801":33,"45253585":[],"452553":33,"45255977":[],"45281756":[],"45290234":[],"452m":5,"453":[24,42],"45308692":[],"45380691e":34,"45399416":30,"453m":5,"454":[24,42],"45405253e":[],"454m":5,"455":[24,42],"45502684":[],"455173":36,"4555094":[],"455592":[],"4556":43,"4557763":12,"455947":[33,34],"455m":5,"456":[10,24,42,45],"4560786541572335":6,"45610021":[],"45642521":[],"45668633":[],"456m":5,"457":[3,5,24,42,44],"457m":5,"458":[24,42],"458027":[33,34],"458078":[12,34],"45808919":33,"45811552":33,"458740":[],"4588":[],"458m":[5,44],"459":[24,42],"45915671e":34,"45922756e":[],"45960079":6,"45976616e":34,"459m":5,"46":[3,5,10,24,31,33,42,44],"460":[24,42],"46000649":22,"4600624385659884":[],"4601":[10,45],"46022436e":[],"46026a8f5d2c":43,"4605":43,"460m":5,"461":[24,42],"46132345":26,"46153846153846156":[10,45],"46156624":[],"461m":[],"462":[8,24,37,42],"4627795":[],"46285399":[],"462m":44,"463":[24,42],"46306318e":[],"46313714":[],"46383925e":7,"46383926e":7,"463861":33,"463m":[5,44],"464":[24,42],"4642383":22,"464m":5,"46580623":33,"465m":[],"466":[24,42],"4667":43,"466m":44,"467":[24,42],"467427755242117":33,"46753261e":34,"46754435":[],"4676059":34,"467606":34,"46766277":[],"467663":[],"467818":[],"46781836":[],"467m":[5,44],"468":[24,42],"46873567":[],"468m":44,"469":[24,42],"46904874e":[],"4694":43,"46984697e":7,"469m":[5,44],"46it":7,"47":[3,5,10,24,31,33,42,44,45],"470":[24,42],"47042744":6,"470714":[33,34],"47075725":7,"470m":44,"47116132":30,"47116868e":7,"4712168":[],"47125748":6,"47128712":[],"47132891":6,"4714":43,"47176716":36,"47176783":36,"47179152":36,"471874":[],"47187428":[],"471m":[5,44],"472":[24,42],"47202442":36,"4722":43,"472445":[],"47244548":[],"4727":[],"47297104":[],"472m":[5,44],"473":[24,42],"47313680":36,"47364408":[],"47391428":39,"473m":44,"47430124e":[],"47447472":[],"474m":[],"475":[24,42],"475405":[],"47540513":[],"475582":6,"47558206":6,"4757488":33,"475m":[],"476":[24,42],"47610036":7,"476m":[],"477":[24,42],"47700752":[],"47701204":[],"4772":[],"477m":5,"47815203":12,"47831084":[],"478m":[],"479":[24,42],"479465113":[5,44],"47950427":26,"479m":5,"47it":7,"48":[3,5,10,24,36,42,44,45],"480":33,"4809676":[],"480m":[],"481":[24,42],"4810":43,"48134747":[],"481401":[],"48140137":[],"48145226":[],"481979":7,"481m":[],"482":[24,42],"48209629":[],"48240312e":[],"48243352e":[],"48257387":[31,33],"48289037":[],"482m":[],"483":[24,42],"483257001":14,"48333258":26,"48336413":[],"48356153e":[],"483m":5,"484":[24,42],"48418018":[],"48423285":[],"48444949":33,"48461009":[],"48464841":[],"48476997":12,"484m":[],"48534921":[],"48577692":[],"48598711":[],"485m":5,"486":[24,42],"48629506":[],"486852":[],"48685204":[],"486m":[],"4871":[],"4871984":[],"487m":[],"488":[24,42],"48815255e":[],"488m":[],"489502":[],"48950243":[],"48994188":6,"489m":[],"49":[3,5,6,7,10,12,24,27,34,38,39,42,44,45],"490":[24,42],"49057373":[],"49078463":[],"490m":[],"491":[24,42],"49152":[4,43],"49186362e":[],"491m":[],"49216685":[],"492m":[],"493":[24,42],"49313815":[],"493m":[],"4940954":[1,33],"49423098":33,"494m":[],"495":[24,42],"49529781":[],"49545139":[],"49555885e":[],"49556373e":[],"4959161509357395e":7,"495916150936645e":7,"495m":[],"49616116":[],"497":[4,5,24,42,43,44],"4974810657432664":[],"497m":[],"498":[4,5,24,42,43,44],"4983":43,"49865980e":[],"498m":[],"499":[4,5,24,42,43,44],"4990":30,"49901588":26,"4992":30,"4993133":[],"4997":30,"499m":[],"4c4c7f":[10,11],"4d":[4,43],"4f":7,"4pm":[31,33],"4s":43,"4y":9,"4y_i":11,"5":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"50":[2,3,4,5,7,8,9,10,11,14,22,24,33,34,36,37,38,39,40,41,42,43,44,45],"500":[2,4,5,7,10,11,14,24,36,37,38,39,40,41,42,43,44,45],"5000":[24,42,43],"50000000e":40,"50000455":6,"50000553":6,"50000718":6,"50000855":6,"50000969":6,"50001063":6,"50001142":6,"50001207":6,"50001261":6,"50001306":6,"50001343":6,"50001374":6,"500014":6,"50001414":6,"50001422":6,"50001439":6,"50001454":6,"50001466":6,"50001476":6,"50001485":6,"50001492":6,"50001498":6,"50001502":6,"50001506":6,"5000151":6,"50001512":6,"50001515":6,"50001517":6,"50001518":6,"50001519":6,"50001521":6,"50001522":6,"50001523":6,"50001524":6,"50001525":6,"50046106":[],"50079895":[],"500m":5,"501":[4,5,43,44],"5014":43,"50172141":[],"5018":30,"50184628e":[],"501m":[],"502":[4,5,24,42,43,44],"50227564e":7,"50274255":[],"502m":5,"503":[4,5,24,42,43,44],"50321091":6,"50359169e":[],"504":[4,5,24,42,43,44],"50427787":36,"50462474":[],"5046808":[],"504m":[],"505":[4,5,24,42,43,44],"50519365":[],"50562981":[],"505m":[],"506":[1,4,5,24,34,42,43,44],"50626752":[],"50653545":[],"506553":34,"50655336":34,"50691065":[],"50697511":[],"507":[4,5,24,42,43,44],"50721349":[],"5078":44,"507d50":[10,11],"508":[4,5,43,44],"50837888e":[],"50846111e":7,"50846112e":7,"508m":[],"509":[24,42],"5091":5,"50925722e":[],"5092982":[],"50it":[],"50j":[14,38],"50x10":[2,40,41,42],"51":[3,5,11,24,42,44,45],"510":[2,24,40,41,42],"511":[4,5,24,42,43,44],"511888":6,"51191552":7,"511m":[],"512":[4,5,24,42,43,44],"512204707520711":30,"51220471":30,"51249881":6,"512499":6,"51267283e":34,"512m":[],"51349834":30,"51374050":36,"514":[24,42],"514219":[33,34],"515":[24,42],"51549827":[],"515m":[],"516":[24,42],"51635486":33,"516m":5,"517":[24,42],"51727541":26,"51741855":[],"517582":[],"51758232":[],"517615":[],"51761523":[],"5177783846":[5,44],"51845286":[],"5186":43,"518895":33,"518923":[],"51892347":[],"519":[24,42,43],"519m":5,"52":[4,5,24,38,39,42,43,44],"52006777e":34,"52015514":[],"52067151":[],"52078202":[],"52180619":[],"521m":[],"522":[24,42],"52204004":[],"52209178":[],"5222222222222223":[2,40,41],"522836":33,"522m":[],"523":[24,42],"52305374":12,"52362157e":34,"524":[24,42],"5240":43,"52400486e":[],"52470105":[],"52482437":[],"525010":[],"52501047":[],"525054":[],"52512898":[],"52518625":[],"52565509e":[],"525739":[],"52573941":[],"526":[24,42],"52626194e":[],"526744":[12,34],"52687741":[],"527":[24,42],"5274":[],"5276":[],"52775466":36,"52795454":[],"527m":5,"528":[24,42],"52856208":[],"52874252":6,"529":[24,42],"52942586":[],"52944573":[],"529446":[],"52950417":[],"5297947920715131":[],"52988562":12,"529886":12,"53":[3,4,5,10,24,42,43,44,45],"5302517":[],"5303329":12,"53049637":[],"5305555555555556":[2,40,41],"531":[24,42],"531280":[33,34],"532":[24,42],"5320148":[],"53229196":30,"53250091":[],"53278871":[],"532789":[],"53294653":[],"533":[24,42],"53367133":26,"534":[24,42],"5340022":[],"534362":33,"53459992":26,"5349":43,"535":[24,42],"53506617":33,"53515878":[],"5353":43,"53542722":[],"53558374":[],"53596681e":34,"536":[24,42],"53632379":33,"5364857":[],"53683592e":[],"5369485":[],"537":[24,42],"53700083":[],"53703498":7,"53738247":36,"53755010e":[],"5378811":12,"538":[24,42],"53811172e":[],"5384615384615384":[10,45],"539":[24,42],"539261":[12,34],"5393":43,"53946725":[],"54":[3,4,5,7,10,24,30,42,43,44,45],"540":[10,24,42,45],"54039921":6,"54041041e":6,"54050804e":[],"54071847":[],"541605":[33,34],"542":[24,42],"54213329":26,"54285633":[],"54342461":33,"5435":43,"54378734e":[],"54379087e":34,"543939":34,"54393936":34,"544":[24,42],"5442":43,"544439":[33,34],"5449":43,"545":[24,42],"545099":[],"54509921":[],"5452708224046345":12,"5454":43,"54601264e":34,"54617756":26,"54637219":36,"54640368":26,"54644868":[],"547":[24,42],"5470":43,"5477":43,"54852248":33,"549":[24,42],"54969188":33,"55":[2,3,4,5,10,24,40,41,42,43,44,45],"55043852e":[],"55063291":30,"55086461":[],"552":[24,42],"552042":[],"55206229":26,"55315304":[],"55328795e":[],"55331574":[],"554":[24,42],"55438359e":34,"555":[24,42],"55511609":[],"55527296":30,"5555555555555556":[2,40,41],"55555773":[],"555m":[],"556":[24,42],"55649207":[],"55684718":[],"55685628":26,"556m":[],"557":[24,42],"557795":[12,34],"55790428":33,"558":[24,42],"55812916":33,"55847112":26,"55854694":12,"55865092":[],"55867377":[],"55868255":[],"559":[24,42],"55906894":14,"5594":7,"55940301":30,"55955126":[],"55972302e":[],"55it":7,"56":[2,3,4,5,10,24,40,41,42,43,44,45],"560":[24,42],"56033697":6,"5608253":[],"561":[24,42],"56135704":33,"5615739502773949":[],"5616":43,"56171141":[],"56198284":6,"561m":[],"56217428":33,"56240703e":[],"56249706":[],"56288861":[],"562888614232874":[],"563":[24,42],"563167":33,"56364308":[],"56366546":[],"56397327":[],"56399029e":[],"563m":[],"564":[10,24,42,45],"56424167":[],"564242":[],"56425249":[],"564374":[12,34],"56465688":[],"56475572":[],"56477354":[],"565":[10,24,42,45],"56536":[1,33],"56548318":26,"56570797e":[],"56589683":36,"566":[10,24,42,45],"56636537":[],"56636616e":7,"56678624":[],"566m":[],"567":[10,45],"56740132":[],"56756375":33,"568":[10,24,36,42,45],"5680":[],"56822376":[],"56830193":33,"568587":[],"56858701":[],"56878976e":[],"56899695":[],"569":[2,10,41,42,45],"56912044e":7,"56939714":6,"56965674":36,"57":[1,3,4,5,9,10,24,31,33,42,43,44,45],"570":[10,43,45],"571":[6,24,35,42],"571105947979344e":7,"571105947979394e":7,"5712104":33,"57201944e":7,"572069":33,"57219055":[],"5721905504656455":[],"57223110e":[],"57285536":[],"573":[24,42],"573029":[],"57302926":[],"57316402e":34,"57329374":[],"574":[24,42],"574465":[12,34],"575":[24,42],"57537966e":34,"57572321":[],"576":[24,36,42],"57670824":[],"5769230769230769":[10,45],"577":[24,42],"577421319924605":[],"578":[24,42],"57811941":[],"5786304":[],"579":[24,42],"57935482":[],"5793788":33,"579437":6,"57943748":6,"57952471e":[],"58":[3,5,10,11,24,31,33,42,45],"580":[24,42],"58076367":[],"5808118":[],"58098325":30,"5810785":[],"58182803":[],"58193124":[],"581m":[],"582":[24,42],"58207928":[],"58268575":[],"5828247":[],"5829913":[],"5833333333333334":[10,45],"583595":[33,34],"58368727":34,"58397472":30,"584":[24,42],"58427764":[],"58465096":[],"58486384":[],"58492636e":34,"585":[24,42],"58519863":33,"58581665e":[],"58639705":33,"587":[24,42],"58739348":[],"58742004e":[],"58793527":[],"58810494":30,"58818643":[],"58841019e":[],"5888888888888889":[2,40,41],"589":[24,42],"58948138":[],"58948347":[],"589971818845805":26,"58it":7,"58m":43,"59":[3,5,10,24,42,45],"590":[24,42],"59004971":[],"590609":6,"59060904":6,"5909":43,"591317992":[5,44],"5914397":[],"59187177":[],"591872":[],"592":[24,42],"59206948":[],"59222238":[],"592658":6,"59265811":6,"593":[24,42],"59327016":[],"594":[24,42],"59412285":[],"5944444444444444":[2,40,41],"59446603":[],"59511582":[],"59545081":[],"59558002":30,"59589728e":[],"596":[24,42],"59602968":26,"59640396":30,"59642735":[],"596m":[],"59703606":[],"5974862":[],"598":[24,42],"59816099":26,"59883217":[],"59895188":[],"599":[24,42],"59905073":[],"59916814e":[],"5993":43,"59987612":12,"59m":43,"5cm":[0,30],"5f":[9,38],"5m":43,"5x":9,"5y":9,"6":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"60":[2,3,4,5,7,10,24,41,42,43,45],"600":[24,42],"6000":[24,42],"60000":5,"6003":43,"60090208":33,"601":[24,42],"6019067271":[5,44],"60293962":6,"603":[24,42],"60307141":26,"603636":33,"6037092":[],"60381656e":[],"60383004":[],"60398689":[],"604":[24,42],"60420593":6,"60493501":30,"605":[24,42],"60543038":34,"606":[24,42],"60673226":12,"6067329321734374":[],"60675691":[],"606760":6,"607":[24,42],"6071713":[],"60742555e":22,"608":[24,42],"60815105":7,"60846694":[],"608467":[],"60863613e":[],"6088":43,"60883945":[],"609":[24,42],"60943791":[26,33],"60it":[],"61":[3,8,24,37,42],"610":[24,42],"61043964e":[],"61050884e":[],"611":[24,42],"6111111111111112":[2,40,41],"61197218":[],"612":[24,42],"61219726":6,"61238907":[24,42],"61246573e":[],"61253537":[],"612939":[33,34],"613":[24,42],"6130353":43,"613579":[33,34],"61394448":[],"614":[24,42],"614808":[12,34],"61480907":[],"615":[24,42],"61504341":[],"61532006":[],"6153846153846154":[10,45],"61585143":[],"616":[24,42],"61631038":33,"61653285e":[],"61669885e":[],"617":[24,42],"61702282":7,"61775176":36,"617961":6,"61796102":6,"618":[24,42],"618982":[33,34],"619":[24,42],"61939429":[24,42],"61949985e":[],"61955303":12,"61971639e":[],"61992828e":[],"61it":[],"61m":43,"62":[4,5,24,42,43,44],"620":[24,42],"62025406":[],"621102":33,"6214":43,"62199022":[],"622":[24,42],"623":[24,42],"62373464":12,"624":[24,42],"62460522":33,"62464344":[],"625":[8,37],"62518501":[],"62554614":[],"6258":43,"6259":43,"62633359":[],"62642303":[],"626635268":[7,36],"627":[24,42],"62841921":[],"62862896":[],"6288":43,"6289054":[],"62894215":6,"629":[24,42],"629100":[],"62910047":[],"62919818":[],"6297":43,"62it":[],"62m":43,"63":[1,2,4,5,7,8,24,34,36,37,40,41,42,43,44],"630":[24,42],"6300745149331701":34,"63025821e":7,"63081005":[],"63162342":34,"63180447":36,"632":[24,42],"63212587":[],"63227278":[],"63249532e":7,"63277911e":[],"63281889":[],"633":[24,42],"633949":33,"634":[24,42],"63401971":12,"634020":12,"634715":[],"63471545":[],"63498144":6,"6353716266230895":[],"63537163":[],"63567272":[],"6357":43,"636":[24,42],"63659131":[],"63677721":[],"63685221":22,"637":[24,42],"637129335071195":34,"63790586e":34,"638":[24,42],"63837812":[],"63843494e":[],"63849228e":[],"63870745":33,"63875295":[],"639":[24,42],"63957747":[],"63m":43,"64":[2,4,5,8,14,24,26,33,37,38,39,40,41,42,43,44],"64012627":6,"64056395":[],"641":[24,42],"6411":43,"64111239":[],"64147722":[],"64158883e":[37,44],"642":[24,42],"64228618e":22,"64257697e":34,"64291044e":[],"64292493":[],"64299732":[],"643":[24,42],"64316192":36,"64316482":36,"64342603":22,"64347512":33,"64365518e":34,"64391062":[],"643m":[],"64432571":[],"64472123":[],"644829":6,"64482901":6,"645":[24,42],"64502836":[],"64527549":[],"64530585":22,"64550753":[],"64594566":[],"645946":[],"646":[24,42],"646283":[12,34],"64695862":[],"647":[7,24,42],"64733822":[],"64742912e":7,"647473":[12,34],"648":[24,42],"648382":[],"64846973e":[],"64874236":26,"649":[24,42],"649382":[12,34],"64969451":[],"649695":[],"64m":43,"64x50":[2,40,41,42],"65":[2,4,5,8,9,10,24,37,40,41,42,43,44,45],"650":[24,42,43],"65015024":30,"65036493":[],"6513444":26,"65196615":[],"652":[24,42],"652187":[],"65218729":[],"6522099":33,"65244075":30,"6527":43,"65318467":26,"65322635":[],"65339992":[],"6536392":34,"654":[24,42],"65408703e":[],"65409368":[],"65442354":34,"654424":34,"654m":[],"655":[24,42],"6556":43,"65565751":[],"65571174e":34,"65599456":34,"6559956":[],"65600":43,"65626992":[],"65628888":[],"65673455":[],"6568551":[],"657":[24,42],"65704027":[],"657041":33,"65715086":[],"65720414":[],"65728698e":[],"65743689":34,"65766777":26,"658":[24,42],"65822169":26,"65825344":[],"65833132":34,"65885453":6,"65891389":34,"658914":34,"65913552":[],"65925306":33,"6599":43,"65m":[5,43,44],"66":[4,5,24,42,43,44],"660":[24,42],"66036618e":34,"660470":[],"66047048":[],"66051179":[],"66064822":34,"66080313":34,"6608358":22,"661":[24,42],"66174067e":34,"662":[24,42],"66204648":7,"66219404":7,"66289428":[],"6628996975186953":34,"66294408":34,"66323494":[],"6638":[10,45],"664":[24,42],"664586":[],"66489687":[],"66490332e":[],"665":[24,42],"66510547":[],"6652177":34,"66545355":[],"66560":[10,45],"66562658e":[],"665m":[],"66608227":33,"6663":43,"666597":33,"66667985":26,"666897":[],"66689729":[],"667":[10,24,42,45],"66722647e":[],"667239":33,"66725024":26,"66798429":[],"668":[24,42],"668172":[33,34],"66878535":[],"669":[24,42],"6691852":33,"66951925":33,"66959644":[],"66m":43,"67":[10,24,42,43,45],"670":[24,42],"67035174":[],"67047975e":7,"67083919":30,"671":[24,42],"67109613":[],"6714298027296224":12,"67189384":[],"67193435":22,"671m":[],"672":[24,42],"67264685":[],"672721":[33,34],"67314874e":6,"67347822":[],"674":[24,42],"67432237e":[],"67541155":[],"67554897":[],"676":[24,42],"6764":43,"67640036":[],"67671601":[],"677":[24,42],"677235":6,"67723533":6,"678":[24,42],"6780674":[],"6781":43,"6788":43,"67890723":[],"6795":43,"67m":43,"68":[24,42],"680":[24,42],"68029581":33,"68037392":[],"680374":[],"681":[24,42],"68184997":[],"6819":43,"68192193":6,"682":[24,42],"68259989":30,"68284332":26,"68286725":34,"683":[24,42],"68324974e":34,"6835":43,"68351374e":[],"68419351":[],"684194":[],"6848187":26,"6849":43,"685":[24,42],"68534263e":7,"68542204":6,"685643":[],"68564345":[],"68581655":[],"68592431":36,"68596176":6,"685962":6,"6860597312101988":[],"68655761":26,"68685905e":[],"6869":[10,45],"6869858":30,"687":[24,42],"68711054":[],"68736603":[],"68759903e":[],"687m":[],"688":[24,42],"68809785":[],"68871199":[],"6887363571":[5,44],"6890":43,"68929213e":7,"689345":33,"689519":[12,34],"68971917":[],"68992377":[],"68m":43,"69":[8,10,24,30,37,42,45],"690":[10,24,42,45],"69009002":[],"69018454":[],"690617":[33,34],"69069n_":30,"690710":[],"69071035":[],"691":[24,42],"69111133e":[],"69167569":[],"692":[2,24,36,40,41,42],"692268":[],"69226802":[],"69230769":38,"6923076923076923":[10,45],"69233822":[],"69273094":30,"692m":[],"693":[24,42],"69303559":[],"69314603":[],"694":[24,42],"6945612":26,"69481287":[],"69484813e":6,"695":[24,42],"69504801":7,"69519297":[],"69524041":[],"69542733":22,"69582036":[],"69585594":33,"696":[24,42],"69629255":[],"69634577e":7,"69666941":33,"69695259":6,"697":[24,42],"69714468":[],"697584":[],"69758412":[],"6980":[22,38,39],"69802962":26,"69818111":[],"69873514":[],"69887085":22,"699":[24,42],"69908626":7,"6999536":12,"69997503":[],"69it":7,"69m":[],"6n_":30,"6pm":33,"7":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,16,22,24,26,27,29,30,32,33,34,36,37,38,39,40,41,42,43,44,45],"70":[2,7,8,10,24,37,40,41,42,45],"700":[24,42],"7000":[24,42],"70037324e":34,"7005538702846336":33,"701":[24,42],"70115106":[24,42],"701370":6,"702":[24,42],"70224083":[],"70249832":[],"70252786":[],"7025846":[],"70262543":[],"703":[24,42],"7031743":30,"7031999826431274":43,"7032":43,"70328587e":[],"7033":43,"70344416":[],"704":[24,42],"70408916":[],"7049":43,"705":[24,42],"70506522":[],"70573539":[],"70594499":34,"706":[24,42],"70653767":[5,44],"706833":[],"7069":43,"707":[24,42],"70710678":[6,34],"7073":5,"7078":43,"708":[24,42],"7082333":[],"70832814":6,"708589":[],"7086067479626619":34,"70899024":[],"709":[24,42],"70917314":34,"7094664":[],"70967214":[],"709698":33,"70it":7,"71":[2,24,40,41,42],"710":[24,42],"7100524":[],"71038664":[],"710746":26,"711":[24,42],"71137935":[],"71142161":34,"711422":34,"7119":[10,45],"71193859":[],"712":[24,42],"712018":[12,34],"71269506e":[],"71285447":[],"713":[24,42],"713163":33,"7135487":[],"71365128":26,"71369789":22,"71375273e":[],"714":[24,42],"71424969":[],"71437567912473":[],"71437568":[],"71467081":[],"71504681":[],"715536":6,"71553646":6,"71615146":[],"71640333":[],"71647328":[],"71654553":39,"717":[24,42],"71727268":[],"717273":[],"71737253":34,"71761101":34,"718":[24,42],"718165":6,"71868557":[],"71875845e":34,"71977472":[],"71979573e":[],"72":[24,42],"720":[24,42],"7203":43,"7207467":[],"721":[24,42],"7215423":[],"72174172":12,"722":[24,42],"72228205":33,"72264336":[],"72271878e":7,"723":[24,42],"72328506":[],"7236674":6,"724":[4,24,42,43],"725":[24,42],"72546953":[],"72598009":26,"72651548":[],"727":[24,42],"72742343e":[],"72782592":[],"728":[24,42],"72859758":6,"72981762":9,"73":[7,24,36,42],"730":[24,42],"73000497":[],"730005":[],"731000":[33,34],"731441119315968":[],"7317759":[],"732":[24,42],"73231305":[],"73293228266057":26,"73293298":[],"7330932":[],"733096":[33,34],"73379189":[],"734":[24,42],"734107":[],"73410729":[],"73441814":[],"73448544":[],"73456649":[],"73482109":[24,42],"735":[24,42],"7354157":[],"736":[24,42],"737":[24,42],"7392":43,"74":[7,24,36,38,39,42],"740":[10,24,42,45],"74042291":[],"7407":43,"74081822":9,"740m":[],"741":[24,42],"741391":[],"7413913":[],"74147751":26,"741m":[],"742":[24,42],"74280244":[],"743189104728408":[],"74384949":34,"74391438":[],"744":[24,42],"74401372":[],"74430995":[],"74437617e":34,"74462857":[],"745":[24,42],"74577867":[],"74587018":[],"746":[24,42],"74607851":34,"747":[24,42],"74724767":[],"74731872":[],"748":[24,42],"74818082":[],"74829661":34,"7483":43,"74840212":6,"7484672e":[],"749":[24,42],"7490462":[],"74934715":33,"749765":[33,34],"74m":43,"75":[3,6,7,9,10,12,24,27,33,34,36,40,41,42,45],"750445":[33,34],"75050135":34,"75054469":[],"7506274061293645":[],"75091492":22,"751":[24,42],"751699":[12,34],"75170092":6,"75174305":[],"75240336e":[],"75268791":[],"75269037":34,"75282841":[],"753":[24,42],"75301638e":34,"75315452":[],"7532":43,"75354069":[],"754":[24,42],"75406265":[],"75457798":[],"75472506":[],"755":[24,42],"75525377e":34,"75546705":30,"75576092":30,"75576555":34,"756":[24,42],"75627883":[],"756279":[],"75631027":[],"756352":[33,34],"757":[24,42],"75707243":22,"7571572558830478":[],"75719828":[],"75770568":34,"758":[24,42],"75821358e":[],"75823753e":[],"7588118737641243":[],"759":[24,42],"75963425":[],"75979803e":34,"75m":43,"76":[3,10,24,31,33,42,45],"7600134536106469":12,"76004012":[],"76010633":[],"76014528":[],"76059447e":[],"76077707e":[],"76084455":[],"761":[24,42],"76135601":[],"7613959":[],"76174289e":[],"76181397e":[],"762":[24,42],"76220793e":34,"763":[24,42],"7635689":22,"76366462":22,"7640203256838339":[],"7644":[],"764997683364458":[],"765":[8,37],"7651068":[],"766":[24,42],"7664107":[],"76771975":[],"767750":12,"76775004":12,"769":[24,42],"7692307692307693":[10,45],"76936315":6,"7694444444444445":[2,40,41],"7696":43,"7697":36,"7698352":[],"76985203":[],"76m":43,"77":[3,10,24,31,33,38,39,42,45],"770204":[],"77025447e":[],"77067609":[],"7707199":30,"77079389e":34,"77124395e":34,"77133246":[],"77152076":6,"77172582":39,"7718":[10,45],"77184871":[],"772":[24,42],"77203046":[],"77265448":[],"77265782":[],"773":[24,42],"77343022e":[],"774":[24,42],"7742213":[],"77448317e":[],"7748567":[],"775":[24,42],"77589027":[],"776":[24,42],"7761":43,"77632628":[],"77636e":[14,39],"77646856":[],"777":[24,42],"77714169":9,"7779287093124035":[],"77794957":[],"778":[24,42],"77805840e":[],"7782028952":[5,44],"77856932":[],"7788":43,"779":[24,42],"77m":43,"78":[3,24,42,43],"780":[24,42],"78009660e":34,"78031111e":[],"7803213":[],"78094722":[],"78156479e":6,"78177713":[],"78184120e":7,"78192446e":[],"782":[24,42],"78220032":[],"78299706":[],"783":[24,42],"78316665":[],"78347558":26,"784":[24,42],"7840642":26,"78449688e":34,"78478186":[],"785061":33,"78515112":14,"78521833":[],"78524451e":[],"78556129":[],"786":[24,42],"7865355":[],"788":[24,42],"78834469":33,"788388":[],"78838813":[],"78882958":[],"78886274":[],"789":[24,42],"7893215781870513":[],"78941903":6,"78951443":[],"78989003e":[],"78m":43,"79":[3,24,42],"790":[24,42],"79035184":[],"7906583":[],"79072516":[],"791":[24,42],"79106945e":[],"79111643":6,"79125269":[],"79142002":33,"79167312e":[],"791809":[],"792":[24,42],"79254918e":[],"792898603630095":[],"79297948":26,"793":[24,42],"793167":[33,34],"79328516":[],"79367372":26,"794282":[12,34],"79482449":30,"794906":[],"79490641":[],"795":[24,42],"79503422":1,"79516409":[],"795225339396409":[],"79550688e":[],"79578306":[],"796":[24,42],"7966":43,"79675445":[],"797":[24,42],"79754897e":34,"79787771":[],"797e":7,"798":[24,42],"7980":43,"79831624e":34,"79877535e":[],"79896478e":[],"799":[24,42],"79909592":36,"79914677":[],"7993408651198877":36,"79934087":36,"7995707762668065":36,"79981535e":22,"79998516":[],"79m":43,"7d7d58":[10,11],"8":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"80":[1,2,3,6,7,9,10,24,34,35,36,40,41,42,45],"800":[5,8,24,37,42,44],"8000":[24,42],"80006130e":[],"80074264":[],"80076024e":[],"80136087":30,"80152684":[],"80189569":[],"80207897":[],"80228781e":[],"802550782087107":[],"80289543":[],"8028954343792245":[],"803":[24,42],"80312429":33,"80354994":7,"80389541":[],"804":[24,42],"80418542":33,"80447153":[],"80460179":36,"80469739":6,"805":[24,42],"80540415e":[],"80548430e":[],"8055555555555556":[2,40,41],"80609615e":7,"80609616e":7,"80621648":33,"80625657":[40,41],"80669838e":34,"807":[24,42],"808":[24,42],"80802836":[],"80847477e":7,"80861057":[],"808611":[],"80m":43,"81":[2,24,40,41,42],"81048318e":7,"81071342":[],"811":[24,42],"81114345":[],"81122914":[],"8115":7,"81160425":6,"812":[24,42],"81233249":30,"81333804":7,"813929":[],"81392948":[],"814":[8,12,24,37,42,44],"81425332":14,"815":[24,42],"81597834":36,"815am":[31,33],"81633628":12,"816454":[33,34],"81651921":[],"81664404":[],"816847":[33,34],"817":[24,42],"81753152":[],"81759234":[],"81784973":[],"818":[24,42],"8182":[],"81840893":[],"81853487e":[],"8186717":[],"81868633":33,"81873184":33,"819":[24,42],"81948868":[],"81953844":[],"8197":[],"81m":43,"82":[3,24,42],"820":[24,42],"82001111":[],"820122":[],"82012236":[],"82032378":33,"82050873":33,"821":[24,42],"82102668":[],"82139086e":[],"82178144":33,"82198978":6,"822":[24,42],"82292185":[],"82296251":[],"823":[24,42],"82379443":[],"824":[24,42],"82402448":[],"82410428":[],"8249367":[],"825":[24,42],"82550815":33,"825607":[],"826":[24,42],"82629718":[],"82651934e":[],"8265786":6,"827":[24,42],"82717721":[],"827462":[],"82766482e":34,"82781715":[],"828":[24,42],"8283245":30,"829":[24,42],"82909728":[],"82988221":[],"83":[3,24,33,42],"830":[24,42],"83009076":[],"8305555555555556":[2,40,41],"8306":[],"831":[24,42],"8311393813043355":[],"83140314":[],"83140314044099":[],"83146596":36,"83190841":[],"832":[24,42],"83283826":[],"83298727":[],"832987270767667":[],"832m":[],"833":[24,42],"833774":[],"83384573":[],"834":[24,42],"8342":[],"83443463":[],"83443698":[],"83471014":30,"83488328":[],"835":[24,42],"83505053":[],"8351":[],"83512277":6,"83519995":33,"8353591":[],"836":[24,42],"83603568":[],"83607342":[],"836186":[],"83618601":[],"83646135":30,"83657122":[],"837":[24,42],"83716603":26,"83752888e":[],"83770406":[],"83774539":[],"83793362":[],"83793923":33,"838":[24,42],"8383548":14,"83870794e":[],"839":[24,42],"83917436e":[],"839818":33,"83m":43,"84":[24,42],"840":[24,42],"84061976":[],"84082439":[],"84094234":[],"841":[24,42],"84132082":[],"84159521":[],"842":[24,42],"842101":[],"84210141":[],"842436":[33,34],"84257054":[],"84268865":[],"84290819e":[],"843":[24,42],"84355903e":[2,40,41,42],"84359332e":[],"84380376":[],"844":[24,42],"84443254e":[2,40,41,42],"84444399":[],"84447599e":34,"84462849":[],"845":[24,42],"845387":12,"84538739":12,"845716766413386":[],"84571677":[],"84575663":[],"8459616":26,"846":[24,42],"84614892":[],"8461538461538461":[10,45],"84638256":[],"846383":[],"84666445":[],"84671508":[],"84698999":[],"847":[24,42],"8470287":[],"84780262":7,"84783351e":[],"848":[24,42],"84835621":[],"84846601":[],"84858":35,"84859258":[],"849":[24,42],"84900747":[],"84923989e":7,"84927263":[],"84929103":[],"849315":12,"84931504":12,"84942247e":[],"84991754":[],"84994524":6,"84m":[],"85":[2,10,24,40,41,42,45],"850":[24,42],"850164":6,"85035714":[],"8509716":33,"851":[24,42],"85115237":[],"852":[24,42],"8522997":12,"8524":43,"85263220":7,"85276246":[],"85278920e":6,"8528":43,"85288931":[],"85297050e":[],"853":[24,42],"85355539":[],"85365229":[],"853835":33,"854":[24,42],"855":[24,42],"85514104":[],"85548858":[],"856":[24,42],"85600299":12,"85601654":[],"85601992":6,"85615662":[],"85654993":[],"85714286":[37,44],"8574":[],"85759522":6,"858":[10,24,42,45],"85813693":[],"858185":33,"8583333333333333":[2,40,41],"85888897e":[],"859":[24,42],"85910255":[],"85949635":14,"86":[24,42],"860":[24,42],"86012593":[],"86015267":[],"860303069807892":30,"86052354":[],"861":[24,42],"8611":43,"86117291":6,"86134827":6,"86145244":12,"86156954":33,"861676":33,"861773":6,"86177342":6,"86192438":26,"862":[24,42],"86221134":[],"86252988":7,"86282204":[],"863":[24,42],"86341536":[],"8635085":[],"86376300e":[],"8638888888888889":[2,40,41],"864":[24,42],"86420934":[],"86452742":[],"865":[24,42],"86570776":22,"86599003e":34,"866":[24,42],"86619181":[],"86629645":26,"86630":[10,45],"8666666666666667":[2,40,41],"86666667":[37,44],"867":[24,42],"86750237e":34,"868":[24,42],"86810":[10,45],"86811569":[],"86830766e":34,"86850693":26,"86850963":[],"86852099":[],"8688":[],"869":[1,24,33,42],"87":[10,24,34,42,45],"870":[1,24,33,42],"8702764":26,"8702784034":[5,44],"87072815e":34,"871":[1,24,33,42],"87135280e":34,"872":[24,42],"87206824":[],"8722222222222222":[2,40,41],"87242312":[],"8727831":[],"873":[1,24,33,42],"87338811e":[],"87354403":[],"87381451":6,"874":[1,24,33,42],"87403627e":[],"87431418":[],"87450434":26,"87458904":[],"8747":43,"87477172e":[],"87496787":[],"875":[2,24,40,41,42],"87533278":[],"87533326":[],"875794":[],"875856":[],"87585634":[],"8759":[14,39],"876":[7,24,42],"87627342":36,"877":[24,42],"87795661":[],"878":[24,42],"87810129":[],"878123":33,"8784267":[],"879":[24,42],"8791492":[],"87918262":14,"87931006":[],"87953769":[],"88":[14,24,38,39,42],"880":[24,42],"88046261":6,"88050263":26,"8805555555555555":[2,40,41],"88088818e":34,"881":[24,42],"88168312e":7,"88182591":34,"882":[24,42],"88228452":33,"88291866":[],"883":[24,42],"88305878":[],"88323026":34,"88336879":6,"88391015":[],"884":[24,42],"884399":[],"88442538":[],"884669":34,"88473534":[],"885":[24,42],"88529063e":7,"88595314":26,"886":[24,42],"88613493":34,"88657125":26,"88667234e":[],"887":[24,42],"88744469e":[],"888":[24,42],"888214":[],"88821402":[],"888577549915147":[],"88866133":26,"888883015934703":45,"8888888888888888":[2,40,41],"889":[24,42],"88901776":[],"88908909e":[],"88960586e":[],"8897518e":[],"89":[24,42,43],"890":[24,42],"89098129":[],"891":[24,42],"89126914e":34,"89142357":[],"89142728":26,"8915573":[],"892":[24,42],"89288636":12,"893":[24,42],"89321335":[],"8932215":[],"8934":[],"894":[24,42],"89410423":6,"8942133":[],"8944444444444445":[2,40,41],"89481038":[],"895":[24,42],"89558707":33,"896":[24,42,43],"89604286":[],"89609007":[],"8964059":[],"896911":[],"8969113":[],"897":[24,42],"89707309e":34,"89793609":[],"898":[24,42],"89805982e":[],"8982":43,"89823921":[40,41],"89881513":26,"89897156":[],"899":[24,42],"89940861":[],"89996783":[],"8f":[7,36],"8g":[7,36],"8n":26,"8x8":[2,40,41,42],"9":[1,2,3,4,5,6,7,8,9,10,12,13,14,22,23,24,26,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45],"90":[2,7,10,24,41,42,45],"900":[24,42],"9000":[24,42],"90075537":6,"901":[24,42],"9011":7,"9012691":33,"90164278":[],"902":[24,42],"90220243":6,"90223115":[],"9026":43,"90266948":6,"9027777777777778":[2,40,41],"9028":43,"90297441":[40,41],"903":[24,42],"90325763":[],"9036573":[],"904":[24,42],"9040":[10,45],"904648525660773":[],"90475506e":7,"905":[24,42],"9050595316983907":[],"90510842":14,"9054":36,"9055555555555556":[2,40,41],"90556496":[],"906":[24,42],"90602444e":[],"90670236":[],"906747":6,"907":[24,42],"90715001":26,"90763970e":34,"90793019":[],"908":[24,42],"90803422":[],"90854751":[],"908548":[],"90871918":[],"908736":[],"90873644":[],"90876452":12,"908765":12,"909":[24,42],"909327":[],"90960269":[],"91":[24,31,33,42,43],"910":[10,24,42,45],"91022359":[],"91050344e":[],"91080327":[],"91086026":[],"911":[24,42],"9111111111111111":[2,40,41],"91128596":6,"912":[4,5,24,42,43,44],"9129629":[],"913":[24,42],"91358019":[],"91373404":[],"914":[4,5,24,42,43,44],"91408373e":34,"9142491":[],"9145":43,"91473433":[],"91487049e":[],"91492986e":7,"915":[4,5,24,42,43,44],"91538877":[],"91540705e":[],"91591367":33,"916":[24,42],"91619855":[],"91634595":30,"91650774":[],"916508":[],"9165822":[],"9166666666666666":[10,45],"9167":43,"917":[4,5,24,42,43,44],"9172":36,"917482":[],"91748202":[],"91760278":6,"91784246":[],"918":[4,5,24,42,43,44],"91812702":6,"91816586":[],"918166":[],"9189726":[],"918992":[33,34],"919":[24,42],"9194":43,"91966064":[],"91992985e":34,"92":[1,7,10,24,31,33,42,43,45],"92054587":33,"920619":[],"92067658":[],"9207":43,"9208878":[],"921":[24,42],"92103867":[],"92123586e":[],"921368":[],"92136836":[],"921567":6,"922":[24,42],"922002":[],"92200223":[],"92201062":30,"922010623244745":30,"92236466e":[],"923":[24,42],"9230769230769231":[10,45],"92317667":[],"92327822e":[],"9234":43,"92351924":[],"923602":33,"924":[24,42],"92405283":[],"924e":7,"925":[2,24,40,41,42],"9250":43,"92507116e":[2,40,41,42],"92526882":30,"92543216":33,"92576742e":[],"92578916":6,"92579609e":[],"926":[24,42],"92604308":[],"92630576":[],"92648983":[],"92651068":36,"927":[24,42],"92717417":[],"92729959":[],"9275":43,"92772833":[],"9277777777777778":[2,40,41],"928":[24,42],"92805329":[],"92822216":[],"92857143":[8,37,44],"9286":43,"929":[24,42],"92930426e":[],"9295763474254684":[],"92991719e":34,"93":[24,42],"930":[24,42],"93003138502386":[],"93022647":[],"93049763":[],"9305555555555556":[2,40,41],"930829":[],"93082933":[],"931":[1,24,33,42],"93155188":6,"93158979":6,"932":[24,42],"932656":[],"93267138892912":[],"93267139":[],"933":[6,24,35,42],"934":[24,42],"93420126":[40,41],"93492130e":7,"935":[24,42],"93500562":[],"93528653e":[],"93535577":14,"93571082":[],"936":[24,42],"93601008e":34,"936313":12,"9363131":12,"937":[24,30,42],"937082":[33,34],"93799826":6,"938":[24,30,42],"93820524":[],"93828592e":[],"9384":43,"9387":[10,45],"93884803":[],"9389615":30,"939":[1,24,30,33,42],"93900613":[],"93901621":[],"93944615e":[],"939507":44,"93988393":[],"94":[8,24,30,37,42,44],"940":[24,42],"94035843":33,"941":[24,42],"9415":43,"942":[24,42],"94226022e":7,"94230225":[],"9423652864980914":[],"942422095469182":[],"9424428e":[],"94256677":[],"94260358":[],"942604":[],"94273542":34,"94284104":6,"943":[24,42],"94320205":6,"94338159":[],"943439":[],"94399217":[],"944":[4,5,24,42,43,44],"94400087":[],"94433302e":[],"9444444444444444":[2,40,41],"94484047e":40,"945":[4,5,24,42,43,44],"94501598e":34,"94591015":[26,33],"946":[4,5,24,42,43,44],"9460":43,"94610136":[],"94639099":12,"94642209":[],"946957":6,"94697839":[],"947":[4,5,24,42,43,44],"9472":43,"9472222222222222":[2,40,41],"94727053e":34,"94756925":33,"94782102e":[],"94785447e":[],"948":[4,5,24,42,43,44],"94814932":[],"94815131":[],"9481513127527335":[],"94822514":7,"94823368":[],"9482527":6,"94854992":[],"94866246":[],"949":[4,5,24,42,43,44],"949162":[],"94916237":[],"94938706":[],"94948363e":34,"949807":[],"94980712":[],"9499":43,"95":[2,8,10,12,24,36,37,40,41,42,45],"950":[4,5,24,42,43,44],"95008046":7,"9503219":[],"95055425":[],"951":[4,5,24,42,43,44],"951109":[],"95117099":[],"95166414":[],"95190644":[],"952":[24,42],"9520":43,"95231424":6,"95235306":[],"952387":34,"9527777777777777":[2,40,41],"9528":43,"95284275":6,"953":[24,42],"953065564":[2,40,41],"95327702":[],"95329348":[],"9534":43,"95351665":6,"95355327":[],"954":[24,30,42],"9541":43,"95429024":[],"955":[24,42],"95508909":[],"95511792":34,"955118":34,"95513615":30,"9555555555555556":[2,40,41],"95558642":[],"9556":43,"955820c21e8b":[5,44],"95597666e":[],"956":[24,42],"956563":[12,34],"95661705":[],"95679388":[],"95682858":26,"95684892":6,"95686268":[],"95696156":33,"95697233e":[],"957":[24,42],"95703":[14,39],"95746721":[],"95762994":[],"95763525":[],"9577228":[],"9578":[],"958":[24,42],"95815651":[],"958228616652075":6,"9588":7,"959":[24,42],"95921115":26,"959402":12,"95940231":12,"95982273":[],"96":[7,8,12,24,36,37,42],"960":[24,30,42],"9601304850035702e":7,"960130485007504e":7,"96024953":6,"9603":43,"96033509e":[],"96046928":[],"96084663":6,"961":[24,30,42],"96183456":[],"962":[24,30,42],"962653":[],"962990":33,"963":[24,42],"963198":[],"9637117593816477":7,"964":[24,42],"9640435":6,"96439516":[],"964588":[],"96459246":[],"96461989e":[],"96489054":[],"9649652536":[5,44],"965":[24,42],"96525482e":34,"96543101":[],"965548":[33,34],"965944":[],"96599594":[],"966":[24,42],"96611032":[],"96618584":[],"96631321":34,"966337":[],"96688672":6,"966899":33,"967":[24,42],"9674":43,"9674916":6,"96750421":[],"967809":[12,34],"96783837":[],"968":[24,42],"96804366":[],"96841776":[],"96850702":[],"9688":7,"96890557e":[],"969":[24,42],"96911909":[],"9694":43,"97":[8,24,37,42,45],"970":[24,42],"97005689":6,"97032289":33,"97033646e":[],"97062694":[],"97069774":[],"970698":[],"97097196":[],"971":[24,42],"97108e":[14,39],"9716":[],"97177697e":34,"972":[24,42],"9722222222222222":[2,40,41],"9723":[],"97243128":6,"97262227":[],"972745":12,"973":[24,42],"97300836":6,"97326759":33,"97375628":[],"974":[24,42],"97449977":[],"97488151":[],"97497404e":7,"975":[2,24,40,41,42],"9750":43,"97504526":[],"97507735":6,"97514104e":[],"97565845e":34,"97594511":[],"976":[24,42],"97606135":[],"97606135399951":[],"9764":[],"97644118":[],"9765":[],"97663980e":34,"97690235":36,"977":[24,42],"97705827":6,"97739698":[],"97758848":6,"97761429e":34,"9777777777777777":[2,40,41],"9778":43,"978":[24,35,42],"9780387310732":32,"9780387848570":32,"97804446":[],"9781492032632":32,"9783319210079595":[],"978553":6,"97864285":34,"97866042":[],"97879245":[],"97898392":[7,34],"979":[24,42],"97906022e":34,"97926491":6,"97948913":[],"9797317":[],"97991527":33,"98":[1,2,8,10,24,37,40,41,42,45],"980":[10,24,42,45],"98004227":[],"9805555555555555":[2,40,41],"98073929":[],"98091621":6,"981":[24,42],"98127617":[],"981321":[33,34],"98139097":6,"98157799":26,"98180203e":34,"982":[24,42],"98201379":[24,42],"98215566e":[],"9824638":22,"98270777e":34,"98275501":6,"982829":5,"983":[24,42],"98316168":[],"98320492":[],"983310":[33,34],"984":[24,42],"98404993":[],"98409646e":[],"98413020e":[],"98413059":6,"984182":[],"98418221":[],"98430782":[],"984308":[],"98454786":6,"984601":[],"98460101":[],"9849967686928113":[37,44],"985":[24,30,42],"98502634":[],"98566191":6,"98597638":26,"986":[24,30,42],"98601306":[],"9860553":[],"9861111111111112":[2,40,41],"98620879e":[],"986699":6,"98680716":6,"98686102":[],"98694705":[],"987":[24,42],"98706221":[],"98716878":6,"9871776311306221":[],"98764765":[],"987648":[],"98765625":[],"987722":[],"98772232":[],"988":[24,42],"98808176":6,"98822371":7,"98844754":33,"9885":[],"9887034589972739":10,"9888005551376943":[],"988835":[],"9888544725633199":[],"9888888888888889":[2,40,41],"9889":[],"989":30,"9890348":6,"98914003":[],"9892":[],"9893447":6,"98947894":34,"9898ff":[10,11],"99":[7,8,10,12,14,22,24,36,37,38,39,42,43,45],"990":[10,24,42,45],"99006712":[],"99009525":6,"99051150":7,"99083639":[],"99084226e":[],"99088801":6,"991":[24,30,42],"9910":43,"99106686":[],"99115119":6,"9915165982451293":[],"991753":[],"99175336":[],"99176998":6,"9919":[],"992":30,"99215828":[],"9924":[],"99242921":6,"99265097":6,"99268332":[],"993":[24,30,42],"9930":43,"993148":[],"99316252":6,"99330715":[24,42],"99344165e":[],"993658072083743":34,"99371056":6,"99389612":6,"993993":[24,42],"99399301":[24,42],"99399308":[24,42],"99399309":[24,42],"99399315":[24,42],"994":[24,42],"9940253773173835":[],"994304":22,"9943201":6,"99439119":[],"99450177":[],"994502":[],"9945729062189713":34,"9947756":6,"99484719":[],"99492986":6,"995":[24,42],"9950597269547777":[],"9952222065466447":[],"99528218":6,"99534399":26,"99539415":6,"9955273625597437":[],"9955500279779226":[],"99566069":6,"9957273060382023":[],"99578809":6,"9958":43,"995840825550726":[],"99589367":[],"996":[6,35,36],"99608161":6,"99630114":[],"9963311287748658":[],"9963961":6,"99650061":6,"996738628265756":34,"9967458":6,"9969332511584248":[],"99700706":6,"99709215":6,"99729756":6,"99751458":6,"99752738":[24,42],"99754609":22,"99758326":6,"99767262":[],"99772199":[],"99775587":6,"9978":43,"9978254":[],"99793613":6,"99799099":6,"998":[24,42],"9981":43,"99813653":6,"9981377":[],"99828624":6,"9983295":6,"99845267":6,"99854557":34,"998577":6,"99858411":[],"9986":43,"99861053":6,"99861427":[],"99862019":34,"99866581":[],"99869482":34,"99871521":6,"99876945":34,"99881845":6,"99883628":34,"99884384":6,"99884409":34,"99888222":[],"99891093":34,"99891873":34,"99893323":6,"99897733":22,"99898558":34,"999":[10,22,24,30,38,39,42,43,45],"99901896":6,"99903755":6,"99906023":34,"99907985":22,"99911427":6,"99912709":34,"99913489":34,"99918546":6,"99919837":6,"99920175":34,"99926459":6,"99927642":34,"9993237":6,"99932732":[],"99933188":6,"99933329":[],"9993511":34,"9993736":[],"99938942":6,"99941797":34,"9994385":6,"99944037":[],"99944272":6,"99949077":[],"99949266":34,"99949306":6,"99951642":[],"99953381":6,"99953475":6,"99956735":34,"99957911":6,"99961294":6,"9996357":[],"99965056":6,"99966322":22,"99967865":6,"99970894":34,"99970988":6,"9997332":6,"99975913":6,"99977849":6,"99978365":34,"99980002":6,"9998161":6,"99984215":[],"99984732":6,"99985103":[],"9998542":[],"99986253":22,"99987324":6,"99988325":[],"99989476":6,"99991263":6,"99992263":[],"99992746":6,"99993978":6,"99995":6,"999955585168597":7,"99998193":[],"99998703":[],"99999773":[],"99999797":22,"99999956":22,"99999985":[],"9m":[5,44],"9x":[7,27],"9y":[7,27],"\u00f8yvind":[7,34,35],"\u03b4":[24,42],"abstract":[0,2,21,24,38,41,42,43],"boolean":[5,44],"break":[1,5,7,12,15,33],"byte":[26,33],"case":[0,1,2,3,4,5,6,7,8,12,13,14,15,17,22,24,25,26,27,28,33,36,39,40,41,42,43,44,45],"catch":[1,33,43],"class":[1,2,4,5,7,8,9,10,12,13,14,24,30,33,36,38,39,40,41,42,43,44,45],"default":[1,2,3,5,7,8,14,17,24,26,27,28,33,34,35,37,38,41,42,43,44],"do":[0,1,3,4,5,6,7,9,10,11,12,13,14,15,16,17,22,23,26,27,28,34,37,43],"ekstr\u00f8m":5,"export":[10,45],"f\u00f8470":[31,33],"final":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,17,19,20,21,23,24,27,29,30,31,33,36,37,41,44],"float":[1,4,5,6,10,12,14,15,24,26,33,34,38,39,42,43,44,45],"function":[0,3,4,5,6,10,15,16,17,18,19,20,23,25,26,44],"import":[1,2,3,4,5,7,8,9,10,11,12,13,14,15,17,18,24,27,30,36,37,38,39,40,41,42,44],"int":[1,2,3,4,5,6,7,12,14,15,22,24,26,30,34,36,38,39,40,41,42,43,44],"long":[1,2,4,5,13,14,33,37,38,39,40,41,42,43],"m\u00f8svatn":[7,27],"new":[0,1,2,3,4,6,7,8,9,10,11,12,14,15,18,22,24,26,27,33,34,37,38,39,40,41,42,43,45],"null":33,"public":[1,25,33],"return":[1,2,3,4,5,6,7,8,9,10,12,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"sch\u00f8yen":[7,34,35],"short":[0,5,6,24,27,28,35,36,42,43],"super":[4,6,24,34,35,42,43],"switch":[1,24,42,43],"throw":[4,7,30,36,43],"true":[1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,20,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"try":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],"var":[2,6,7,11,12,14,19,20,27,30,33,34,35,36,38,40,41,45],"while":[1,2,4,5,6,7,8,9,10,12,13,14,24,30,33,34,35,36,37,38,39,40,41,42,43,44,45],A:[0,3,4,6,7,8,11,12,13,14,17,19,21,23,24,25,26,27,28,29,30,31,32,34,38,39,40],AND:3,And:[0,1,4,5,6,7,10,14,21,24,25,27,28,30,40,41,42,43,45],As:[0,1,2,3,4,5,6,7,9,11,13,14,17,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],At:[1,5,7,14,27,33,38,44],BE:[1,33],Be:[3,25,33,42],Being:[14,38,45],But:[1,2,3,4,6,7,10,11,28,30,34,35,36,41,42,43,44,45],By:[1,4,6,7,13,14,18,26,33,34,35,36,37,38,39,40,43,44],FOR:44,For:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45],IF:[7,35,36],IN:32,If:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],In:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45],Is:12,Ising:[6,13,34,39,40],It:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],Its:[2,3,5,12,40,41,42,44],NO:[8,12,37,44],No:[4,5,7,10,24,33,35,37,39,42,44,45],Not:[1,2,6,7,24,33,34,35,36,39,40,41,42],OR:[24,30,43],Of:[30,43],On:[1,4,16,29,30,31,32,33,43],One:[1,2,4,5,6,7,8,9,12,13,14,18,21,22,27,30,34,36,37,38,39,40,41,42,43],Or:[0,1,2,7,27,33,37,41,42],Such:[1,7,13,17,30,36,37,38,39,40,43],TO:[24,42],That:[0,1,6,8,11,12,13,15,20,27,30,33,35,36,37,40,45],The:[5,11,14,15,16,17,19,20,21,22,23,26,27,28,29,30,31,32],Their:[24,40,41,42],Then:[0,1,2,7,9,10,11,12,13,14,15,26,27,33,34,36,37,38,39,40,41,42,43,45],There:[1,4,5,6,7,9,10,12,13,15,24,26,27,29,30,31,33,34,35,37,38,39,40,42,43,44,45],These:[0,1,3,4,5,6,9,10,11,12,13,14,15,16,17,24,26,27,28,30,31,33,34,35,38,39,40,41,42,43,44,45],To:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,26,27,28,30,35,36,37,38,39,40,41,42,43,44,45],With:[1,6,7,9,10,11,12,13,15,19,26,27,28,30,33,34,36,39,40,45],_0:[6,9,11,12,14,34,37,38,45],_1:[3,6,7,9,11,12,13,14,15,26,34,35,36,37,38,39,40,41,42,45],_2:[3,6,9,12,13,14,26,34,38,39,40,42],_3:26,_4:26,_9:[14,38,39],_:[1,2,3,5,6,7,8,9,10,11,12,13,14,18,19,20,22,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],_________________________________________________________________:[5,43,44],__call__:[4,5,43,44],__class__:[11,24,42,45],__del__:[],__doc__:[7,36],__future__:[9,10],__getattr__:35,__getitem__:[],__init__:[2,3,4,24,35,40,41,42,43],__main__:[3,42],__name__:[3,11,24,35,42,43,45],__traceback__:[4,5,43,44],_accuraci:[24,42,43],_auto10:[7,13,39,40],_auto11:[7,39],_auto12:[7,39],_auto1:[3,4,5,6,7,8,13,14,22,26,30,34,37,38,39,40,42,43],_auto2:[3,4,5,6,7,13,14,26,30,38,39,40,42,43],_auto3:[4,5,6,7,13,14,26,38,39,40,43],_auto4:[5,7,13,14,26,38,39,40],_auto5:[5,7,13,14,26,38,39,40],_auto6:[5,7,13,26,39,40],_auto7:[5,7,13,26,39,40],_auto8:[7,13,39,40],_auto9:[7,13,39,40],_backpropag:[24,42,43],_base:9,_build:[1,18,20,25,27,32,33],_build_call_output:[4,5,43,44],_c:[2,40,41,42],_call:[4,5,43,44],_call_flat:[4,5,43,44],_check_for_error:43,_check_optimize_result:[8,12,37,44],_compon:12,_compute_scor:43,_coordinate_desc:7,_decor:[1,33],_depth:[10,45],_distn_infrastructur:[37,44],_eagerdefinedfunct:[4,5,43,44],_extract_window:43,_feedforward:[24,42,43],_fmt:43,_format:[24,42],_fraction:[10,45],_h:[24,42],_handl:[4,5,43,44],_i:[1,2,3,6,7,8,9,12,13,14,16,17,18,20,27,33,34,35,36,37,38,39,40,41,42],_inference_funct:[4,5,43,44],_initialize_scor:43,_initialize_weight:43,_interpolatefunctionerror:[4,5,43,44],_j:[1,2,3,4,6,7,9,14,18,20,27,34,35,36,38,40,41,42,43],_jit_compil:[4,5,43,44],_k:[14,24,37,38,39,42,43],_l:[13,39,40,41],_lambda:[7,33],_leaf:[10,45],_lock:[4,5,43,44],_logist:[8,12,37,44],_m:[11,45],_make_vjp:[3,14,39],_maybe_define_funct:[4,5,43,44],_multilayer_perceptron:[2,24,40,41,42],_n:[3,6,9,12,14,34,37,38,42],_node:[3,10,14,39,45],_notokstatusexcept:[4,5,43,44],_num_output:[4,5,43,44],_o:[24,42],_p:[6,9,34],_pad:43,_process_traceback_fram:[4,5,43,44],_progress_bar:[24,42,43],_r:[4,5,43,44],_ratio:12,_reset_schedul:43,_reset_weight:43,_reset_weights_independ:43,_sampl:[10,45],_select_forward_and_backward_funct:[4,5,43,44],_set_classif:[24,42],_set_pred_format:43,_split:[7,10,27,45],_src:22,_stateful_fn:[4,5,43,44],_stateless_fn:[4,5,43,44],_t:[14,22,38,39],_test:[7,27],_trace:[3,14,39],_unpad:[],_valu:[3,14,39],_varianc:12,_weight:[10,45],a0:[4,43],a0faa0:[10,11],a1:[1,33],a2:[1,33],a3:[1,33],a4:[1,33],a_0:[1,22,23,28,33,43],a_1:43,a_1a:[1,33],a_1x:[22,23,28],a_2:43,a_2a:[1,33],a_2x:[22,23,28],a_3:[1,33,43],a_3a:[1,33],a_4:[1,33],a_4a:[1,33],a_:[1,2,17,26,33,34,40,41,42,43],a_h:[2,24,40,41,42],a_i:[1,2,3,13,33,40,41,42],a_j:[2,13,40,41],a_k:[1,2,13,40,41],a_matric:[24,42],a_matrix:43,a_previ:43,aaron:32,ab:[1,3,6,14,15,22,33,34,35,38,39,42],ab_channel:25,abandon:[2,41,42],abbrevi:29,abid:30,abil:[1,11,33,45],abl:[1,2,5,6,7,8,11,13,14,17,27,34,37,38,39,40,41,42,43,45],about:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,25,26,27,28,31,35,36,37,38,39,40,41,42,43,44,45],abov:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,26,27,28,30,32,33,34,36,37,38,39,40,41,44,45],abovement:[7,36],abscissa:[14,37,38],absolut:[1,3,6,7,14,33,34,35,36,38,39,42],absorb:[34,35],acceler:[14,22,38,39],accept:[1,4,7,10,27,33,34,43],access:[1,4,12,30,34,43],accid:[5,7,36,37,44],accompani:[1,33,34],accomplish:[9,10,14,38,39,45],accord:[1,2,3,6,7,10,13,14,15,16,17,30,33,35,36,37,38,39,40,41,42,43],accordingli:12,account:[1,4,6,14,16,30,33,35,36,38,39,43],accross:43,accumul:[13,14,22,24,30,38,39,40,42],accur:[1,4,5,7,11,14,36,38,39,43,44],accuraci:[0,1,2,4,5,6,7,8,10,11,12,13,24,28,33,34,37,39,40,41,42,43,44,45],accuracy_scor:[1,2,11,24,33,40,41,42,45],accuracy_score_numpi:[2,40,41,42],achiev:[1,2,6,7,9,13,26,33,35,36,39,40,41,42,43,45],aco:30,acquaint:[25,33],acquir:[2,25,33,41,42],acr:[1,34],across:[2,4,7,10,25,33,36,40,41,42,43],act:[2,4,24,26,40,41,42,43],act_deriv:43,act_func:[24,42,43],act_func_deriv:[24,42,43],action:[30,43],activ:[0,1,3,4,5,10,29,31,33,36,37,38,45],activation_deriv:43,activationfunct:43,actual:[1,2,5,6,7,9,12,17,26,30,33,34,35,36,41,42,45],ad:[2,4,5,6,9,14,16,17,24,26,35,36,37,38,41,42,43,44,45],ada_clf:[11,45],adaboostclassifi:[11,45],adadelta:[14,38,39],adagrad:[23,24,28,42,43],adagradmomentum:[24,42,43],adam:[2,4,5,23,24,28,31,33,41,42,43,44],adam_schedul:[24,42,43],adapt:[5,7,14,32,34,36,37],add:[1,2,3,4,5,6,7,9,11,12,13,16,17,18,22,23,24,27,28,30,33,34,35,36,38,40,41,42,44,45],add_convolution2dlay:43,add_flattenlay:43,add_fullyconnectedlay:43,add_lay:43,add_outgrad:[],add_outputlay:43,add_poolinglay:43,add_subplot:[2,8,13,15,37,39,40,41,42],addendum:6,addit:[0,1,3,4,6,7,8,9,10,11,13,14,16,18,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,42],addition:[13,14,37,38,39,40,43],address:[2,10,12,14,33,38,39,41,42,43,45],adjac:[4,13,39,40,43],adjoint:[6,34,35],adjust:[1,6,13,14,37,38,39,44],admir:[1,33],adopt:43,advanc:[5,7,13,32,33,36,39,40,43],advantag:[2,4,6,7,11,14,26,35,36,37,38,39,40,41,42,43,45],adversari:33,afecionado:33,affect:[4,24,42,43],affin:[1,4,9,12,34,43],afford:[4,43],aficionado:33,aforement:15,african:[1,34],after:[0,1,2,3,5,6,7,10,12,13,14,16,21,22,24,25,26,27,28,30,33,34,35,36,38,39,40,41,42,43,44,45],afterward:[1,33],ag:[1,8,29,33,34,37],ag_0:[3,42],again:[1,2,5,6,7,8,9,11,12,13,14,16,17,22,23,24,27,28,30,33,34,35,36,38,39,40,41,42,45],against:[2,5,8,11,22,23,28,37,40,41,42,44,45],agegroup:[8,37],agegroupmean:[8,37],aggreg:[10,11,43,45],ago:44,agorithm:11,agre:[6,7,30,35,36],agreement:[14,22,38,39],ahead:[10,45],ai:[1,28,32],aid:[12,21,43],aim:[0,1,2,5,7,8,12,15,16,17,25,26,27,28,34,36,37,41,42],ainv:6,airplan:[4,43],aka:[6,35,36],al:[0,1,3,5,16,17,18,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],alarm:[6,8,35,36],albeit:43,algebra:[1,4,6,14,22,25,34,35,36,38,39,43],algorithm:[0,1,2,3,5,6,7,8,9,14,15,23,24,25,26,27,30,32,33,35,36,37,42,43,44],align:[1,3,6,7,8,9,14,27,30,33,34,35,36,37,38,42,43],all:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45],allevi:[2,14,37,38,41,42],alloc:[4,26,43],allow:[0,1,2,3,4,6,7,9,11,14,16,17,24,25,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],almost:[0,1,2,7,9,12,14,22,30,33,36,37,38,39,41,42],alon:[3,10,42],along:[0,3,4,5,6,7,10,11,12,24,25,26,33,34,35,36,37,42,43,44,45],alpha:[1,2,3,4,5,7,8,9,10,11,14,15,24,30,33,34,36,37,38,40,41,42,43,44,45],alpha_0:[4,43],alpha_1:[4,43],alpha_2:[4,43],alpha_:[11,45],alpha_i:[4,14,38,43],alpha_k:[14,38],alpha_m:[11,45],alpha_n:[4,43],alpha_opt:[14,38],alreadi:[3,4,5,6,7,11,13,25,26,30,33,34,35,36,39,40,42,43,45],also:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45],alter:[2,40,41,42],altern:[0,1,2,5,6,7,8,9,10,12,14,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],although:[0,1,2,6,7,9,11,14,17,22,24,33,35,36,38,39,41,42,43,45],alwai:[1,4,6,7,13,14,17,22,30,33,34,35,36,37,38,39,40,43],am:[5,34,43],ame2016:[1,33],american:[1,34],among:[0,1,4,6,10,11,13,26,33,34,35,39,40,43,44,45],amongst:[6,35,36],amount:[1,2,4,5,7,9,11,15,24,25,36,41,42,43,45],an:[0,2,3,4,6,7,8,9,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,30,31,32,34,35,36,37,38,39,40,41,42,43],an_:30,anaconda:[0,1,2,16,25,27,33,41,42],analog:[14,38,39,44],analys:[0,7,35,36],analysi:[0,2,4,5,8,15,16,17,18,20,22,23,26,32,37,40,41,42,43,44],analyt:[0,3,4,6,7,8,13,14,16,23,25,27,28,33,34,35,36,37,38,39,40,43],analytical_gradi:22,analyz:[1,2,4,5,6,7,17,18,27,28,30,33,34,35,40,41,42,43,44],andrew:[2,40,41,42],angl:[1,4,10,34,43],anharmon:4,ani:[1,2,3,4,5,6,7,8,9,10,11,13,15,19,24,30,33,34,35,36,39,40,41,42,43,44,45],anim:[5,13,39,40],ann:[13,39,40],annot:[1,2,4,8,9,24,33,34,37,40,41,42,43,44],announc:33,anoth:[1,2,4,5,6,7,8,9,11,12,13,14,26,27,28,30,33,34,37,38,39,40,41,42,43,44,45],ans_vspac:3,ansatz:[1,33],answer:[0,1,2,4,6,7,26,27,28,31,33,35,36,40,41,42,43],antialias:[3,7,27,42],anticip:[5,44],anymor:[2,9,41,42],anyon:[5,9],anyth:[2,30,41,42,44],anytim:[31,33],apach:[2,41,42],apart:[12,14,37,38],api:[2,25,33,41,42,43],appar:[3,42],appear:[1,2,4,14,17,24,26,30,33,38,39,40,41,42,43],append:[2,4,5,9,10,14,22,24,33,38,41,42,43,44,45],appendix:27,appl:[4,5,43,44],appli:[1,2,3,4,5,7,8,9,10,11,12,13,14,16,17,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,45],applic:[1,2,4,5,6,7,8,10,13,14,22,26,27,30,32,33,34,36,37,38,39,40,41,42,43,44,45],apply_gradi:5,approach:[0,2,3,5,6,7,10,11,12,13,14,18,22,24,25,30,32,34,37,40,41,42,43,44],appropri:[3,7,10,13,14,25,30,36,38,39,40,42,43],approv:33,approx:[0,1,3,4,7,11,12,14,30,33,36,37,38,39,42,43,45],approxim:[1,2,3,4,5,6,7,8,11,12,14,19,20,27,30,33,34,35,36,37,38,39,41,42,43,44,45],apt:[0,1,16,25,27,33],aq:30,ar:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],aragorn:33,arang:[2,4,5,7,8,10,11,13,14,24,27,33,37,38,39,40,41,42,43,44,45],arbitrari:[2,5,7,9,13,14,30,36,37,38,39,40,41,42,44],arbitrarili:[1,2,12,33,40,41,42],arc:[7,27],architectur:[4,5,13,24,43,44],archiv:28,area:[1,4,7,10,27,32,33,43,45],arg:[1,3,4,5,14,33,39,43,44],argmax:[2,12,40,41,42,43],argmin:[5,11,15,45],argnum:[3,14,39],argnum_0:[],argnum_1:[],args_with_tang:[4,5,43,44],argsort:12,argu:[2,14,38,39,41,42],argument:[1,3,4,6,7,12,13,14,22,24,27,33,34,35,36,40,42,43],argval:3,aris:[1,7,13,14,30,33,36,37,38,40],arithmet:[1,14,26,33,38,39],arm:[7,35],armadillo:26,around:[1,2,5,6,7,12,30,33,35,36,40,41,42],arr:3,arrai:[1,2,3,4,5,6,7,8,9,10,12,13,14,15,22,24,25,27,30,34,35,36,37,38,39,40,41,42,43,44],arrang:[4,33,43],arraybox:[14,38,39],arriv:[1,7,10,12,26,30,33,36,43,45],arrow:[13,24,39,40,42,43],arrowprop:9,art3d:[14,38],art:[1,2,16,25,33,41,42],articl:[0,1,4,5,7,11,19,28,33,34,35,36,43],artifici:[1,3,8,13,32,33,37,42],artificialneuron:[13,39,40],arug:[14,38,39],arxiv:[4,5,22,28,38,39,44],as_fram:34,asap:33,asarrai:[1,3,7,10,22,34,35,38,45],ashort:21,asid:34,ask:[6,7,12,13,35,36,40,43],aspect:[1,7,25,27,33,34,35,43],assembl:[1,4,33,43],assert:[5,24,42,43,44],assertionerror:43,assess:[0,1,7,27,33,34,35,36],assici:[5,44],assign:[1,8,9,10,13,14,15,24,29,31,32,33,34,37,38,39,40,41,42,45],associ:[1,7,10,13,15,30,33,36,39,40],assum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],assumpt:[1,4,6,7,10,12,19,27,30,33,34,43,45],assur:43,ast:[1,6,7,19,27,33,35,36,37,43],astronomi:[33,34,35,36,37,38,39,40,41,42,43,44,45],astyp:[5,10,11,45],asymmetr:43,asymmetri:[1,33],asymptot:[5,7,36],async_wait:[4,5,43,44],atla:33,atom:[1,33],attempt:[1,5,7,8,9,11,33,35,37,45],attend:29,attent:[0,1,24,26,33,42,43],attr:[4,5,35,43,44],attract:[1,11,33,45],attractor:44,attribut:[0,1,10,14,24,28,33,35,36,42,43,45],attributeerror:[14,35],audi:[1,33],audio:[4,5,43,44],august:[16,17,33],aurelien:[1,16,29,32,33,39,41,42,43,44],austfjel:[7,27],author:[1,2,11,30,33,41,42],authour:33,auto:[7,10,11,24,30,42,43,45],autocor:30,autocorrelation_tim:30,autocorrelform:30,autocovari:30,autoencod:[5,25,33],autoencond:25,autograd:[23,24,25,28,33,43],autom:[1,25,32,33],automac:26,automag:33,automat:[1,2,3,4,5,12,17,23,24,25,26,33,40,41,43,44],automobil:[4,43],autonom:[5,44],avail:[0,1,2,5,7,11,12,16,21,22,25,26,27,28,29,31,32,33,36,40,41,42,44,45],averag:[1,2,4,7,10,11,14,15,22,24,30,31,33,34,35,36,37,38,39,40,41,42,43,45],avoid:[1,5,6,7,10,12,14,22,24,26,33,34,36,37,42,43,44,45],awai:[3,4,7,34,35,36,42,43],awar:[3,11,42],award:[31,33],ax:[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,24,26,27,28,33,34,36,37,38,39,40,41,42,43,44,45],axes3d:[3,7,14,27,37,38,42],axes_grid1:7,axessubplot:34,axhlin:9,axi:[1,2,3,4,5,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],axiom:[6,35,36],axlabel:[1,33],axvlin:[5,9],axvspan:[5,44],b1:9,b2:9,b3:9,b:[1,2,4,5,6,7,9,10,11,13,14,15,16,17,22,24,30,31,33,34,35,36,37,40,41,42,43,44,45],b_0:1,b_1:[1,3,13,14,38,39,40,42],b_2:[1,14,38,39],b_5:[14,38,39],b_:[1,2,26,40,41,42],b_group:[10,45],b_i:[1,2,3,13,33,39,40,41,42],b_ia_:[1,33],b_ia_i:1,b_index:[10,45],b_j:[2,13,39,40,41,42],b_k:[1,2,13,14,38,39,40,41,42],b_m:[13,39,40],b_score:[10,45],b_valu:[10,45],bachelor:[29,31],back:[1,4,5,6,7,9,10,11,16,24,26,28,30,33,34,35,37,38,39,43,45],backbon:26,backend:[2,5,22,41,42,44],background:[0,32,33,34],backprogag:43,backpropag:[2,24,40,41,42],backtrack:10,backup:26,backward:[2,3,5,13,24,26,40,41,42,43],backward_pass:[],backwardpass:43,bad:[7,24,34,35,42],badli:30,bag:[0,10,25,33],bag_clf:[11,45],baggin:33,baggingboot:[11,45],baggingclassifi:[11,45],baggingtre:11,balanc:[7,36,37],baluka:[0,42],band:26,bandwidth:26,bar:[1,7,12,16,17,24,27,33,42,43],barber:32,bare:[5,11,45],base:[1,2,4,5,6,8,9,10,11,15,25,30,31,32,33,34,35,37,40,41,42,43,44,45],basi:[6,8,9,11,12,13,14,26,34,35,37,38,39,40,45],basic:[7,9,13,14,15,25,27,30,33,38,39,40,41],batch:[4,5,12,13,14,22,23,24,28,37,40,43],batch_shap:[5,44],batch_siz:[2,4,5,24,40,41,42,43,44],batch_typ:43,batchnorm:5,bay:[8,37],bayesian:[6,25,32,33,35,36],beam:[33,36,37,38,39,40,41,42],becattini:31,becaus:[1,2,3,4,5,6,7,9,10,13,14,15,33,35,36,37,38,39,40,41,42,43,44,45],beccatini:33,becom:[1,2,3,6,7,8,10,13,14,22,30,33,34,35,36,37,38,39,40,41,42,43,44,45],been:[1,2,3,4,5,6,7,12,13,14,24,25,26,27,28,33,34,35,36,38,39,40,41,42,43,44],befor:[1,2,3,4,5,6,7,8,9,13,14,15,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],beforehand:[1,30,33],begin:[1,2,3,4,5,6,7,8,9,10,12,13,14,15,22,24,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,45],behav:[2,7,14,36,37,38,41,42],behavior:[1,2,14,33,37,38,39,41,42],behaviour:[13,39,40],behind:[1,2,7,9,14,33,37,38,40,41,42,43,45],being:[1,2,3,4,5,6,8,9,11,12,13,14,18,30,33,34,35,36,37,38,39,40,41,42,43,44,45],believ:[10,26,45],belong:[8,9,10,14,15,24,37,38,39,42,43,45],below:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],benchmark:[11,45],benefici:[2,14,38,39,40,41,42],benefit:[1,2,5,12,14,16,25,33,37,38,39,40,41,42,44],benefiti:43,bengio:[2,22,23,28,29,32,33,34,38,39,41,42],benign:[2,8,10,37,41,42,44,45],besid:[5,6,35,44],bessel:[6,34,35,36],best:[1,2,3,4,5,6,7,8,9,10,11,13,14,27,28,31,33,34,36,37,38,40,41,42,43,44,45],best_estimator_:[37,44],beta1:[22,38,39],beta2:[22,38,39],beta:[1,2,4,6,7,8,11,12,14,17,18,19,20,22,24,27,33,34,37,38,39,40,41,42,43,45],beta_0:[1,2,4,6,7,8,14,33,34,35,36,37,38,40,41,43],beta_0x_:[1,33,34],beta_1:[1,2,4,6,7,8,11,14,33,34,35,36,37,38,39,40,41,43,45],beta_1x_0:[1,33],beta_1x_1:[1,8,33,37],beta_1x_2:[1,33],beta_1x_:[1,33,34],beta_1x_i:[8,14,34,37,38],beta_2:[1,4,14,33,34,38,39,43],beta_2x_0:[1,33],beta_2x_1:[1,33],beta_2x_2:[1,8,33,37],beta_2x_:[1,33,34],beta_2x_i:34,beta_3:[4,43],beta_3x_i:34,beta_4x_i:34,beta_:[1,4,7,8,14,33,34,35,36,37,38,39,43],beta_i:[1,4,6,18,33,34,35,43],beta_j:[1,6,7,14,19,27,33,34,35,36,38,39],beta_k:[14,37,38],beta_linreg:[14,22,37,38,39],beta_m:[11,45],beta_mg_m:[11,45],beta_n:[4,43],beta_ol:36,beta_p:[8,37],beta_px_p:[8,37],beta_ridg:36,betaol:36,betaridg:36,betavalu:6,better:[1,2,3,4,5,7,10,11,12,13,14,22,33,34,35,36,38,41,42,43,44,45],between:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,18,22,24,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],beyond:[1,2,6,7,9,14,22,27,33,34,37,38,39,41,42],bf:[14,15,26,30,37,38],bgd:[14,38,39],bia:[1,2,3,4,6,9,10,11,13,14,20,24,28,33,34,35,37,38,39,40,41,42,43,45],bias:[2,3,4,6,7,10,13,24,28,35,39,43,45],bias_index:43,big:[1,2,3,6,7,15,19,33,35,36,40,41,42,44],bigger:[2,7,34,35,41,42],bigr:[13,39,40],bike:[10,45],bilbo:33,billion:[4,13,25,39,40,43],bin:[1,8,30,34,37,44],binari:[1,4,6,8,10,11,13,24,28,33,35,36,37,42,43,44],binarycrossentropi:5,bind:[1,34],binomi:[25,30,33],binsboot:[7,36],bioinformat:[1,33],biolog:[2,13,39,40,41,42],bios1100:[25,33],bird:[1,4,33,43],birth:33,bishop:[29,32,33],bit:[2,5,26,30,33,40,41,42],bitwis:30,bivari:[3,42],bk:[1,14,34,38,39],bla:[26,33],black:[9,10,15,22,45],bledso:33,blob:[20,21,27,33,37,38,39],block:[7,11,25,26,30,33,36,43],blogpost:5,blue:[1,4,43],bluntli:33,blur:43,bm:34,bmatrix:[1,2,4,6,8,9,12,14,24,26,33,34,35,37,38,40,41,42,43],bmi:[2,40,41,42],bodi:[1,2,5,13,33,39,40,41,42,44],bold:[2,41,42],boldfac:[1,6,17,34,35],boldsymbol:[1,2,3,4,6,7,8,9,11,12,14,15,16,17,18,19,20,22,24,27,33,37,38,39,40,41,42,43,45],boltzmann:[13,25,33,39,40],book1:32,book:[20,27,28,32,33,35,42,43],bool:43,boost:[0,2,10,25,33,41,42],boostrap:[11,45],bootstrap:[0,2,14,20,25,27,28,33,37,38,39,41,42],border:43,borrow:33,boston_dataset:[1,34],bot:9,both:[1,2,5,6,7,9,10,11,14,15,16,17,24,25,26,27,28,30,31,33,34,35,36,37,38,39,41,42,43,44,45],bottl:[8,37],bottleneck:43,bound:[1,9,13,34,38,39,40],boundari:[0,3,5,9,12,13,40,42],box:[3,5,10,44,45],boxed_arg:3,boyd:[9,14,37,38],bracket:[5,30,44],brain:[2,8,13,37,39,40,41,42],branch:[10,45],breast:[6,8,12,28,35,36,37,44],breat:28,breviti:[14,22,38,39],brew:[0,1,16,25,27,33],brg:9,brief:[0,27,28,34],briefli:[1,33],bring:[1,6,7,11,28,33,34,35,41,45],broad:[1,4,5,33,43,44],brought:[14,22,25,33,38,39],brownle:5,browser:33,brute:[4,6,12,34,35,37,43,44],bs:[9,10,11],buffer_s:5,bui:[5,44],build:[1,5,6,7,11,26,30,33,35,36,37,38,39,40,44],built:[1,2,4,5,7,34,36,41,42,43,44],bunch:12,busi:[1,34],c1:[9,12],c2:[9,12],c:[1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,20,25,26,30,31,32,34,35,36,37,38,39,40,41,42,43,45],c_0:30,c_1:[13,39,40],c_2:[13,39,40],c_3:[13,39,40],c_4:[13,39,40],c_:[1,9,10,11,14,22,30,34,37,38,39],c_i:[13,14,38,39,40],c_k:30,ca:[2,33,41,42],cach:11,cal:[1,9,11,13,14,16,17,33,37,38,40,41,45],calcul:[1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,19,22,24,26,28,30,33,35,36,37,38,39,40,41,42,43,44,45],california:[0,28,34],call:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],callabl:[4,5,24,42,43,44],callback:[4,5,43,44],calor:[1,34],cambridg:[14,32,37,38],can:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,30,31,32,34,35,37,40,41,42,43,45],cancel:[1,14,33,34,38,39],cancellation_manag:[4,5,43,44],cancer:[6,11,28,35,36],cancerpd:[8,37,44],candid:[9,10,11,38,45],cannot:[1,2,5,6,7,8,9,10,29,30,33,34,35,37,40,41,42,44,45],canopi:[0,1,16,25,27,33],canva:[0,27,28,33],cap:[6,35,36],capabl:[1,2,9,14,25,33,38,39,41,42,43],capac:[3,31,42],capita:[1,34],caption:[0,27,28],captur:[5,12,13,39,40],captured_input:[4,5,43,44],car:[4,5,43,44],card:[1,8,33,37],cardin:[2,41,42],care:[12,37,43],carefulli:[14,38,44],carlo:[1,7,25,30,32,33,36],carri:[3,7,8,27,36,37,42],cart:11,casella:32,cast:[2,41,42],cat:[4,5,43],categor:[1,2,4,10,12,33,40,41,42,43,45],categori:[1,2,4,8,11,13,15,24,33,34,37,39,40,41,42,43,45],categorical_crossentropi:[2,4,41,42,43],catgeori:44,caus:[1,6,7,30,33,34,35,36],causal:1,causat:[1,33],caution:43,cax:[2,41,42],cb:[7,33],cbar:[2,41,42],cc:[0,1,2,4,5,6,14,28,33,34,35,36,37,38,41,42,43,44],ccc:[6,13,35,39,40],cd_fast:7,cdf:30,cdot:[1,3,7,13,14,15,26,30,33,36,37,38,39,40,42,43],ceil:43,celebr:[14,37,38],cell:[1,3,4,5,7,10,11,14,16,27,33,35,36,37,38,39,42,43,45],cent:45,center:[0,1,2,7,8,9,10,12,15,27,30,33,35,36,37,41,42,45],central:[0,1,4,6,7,9,17,26,28,33,34,35,43],centroid:[15,30],centroid_differ:15,centuri:[4,43],certain:[1,4,7,8,10,30,33,34,36,37,43,45],certainti:36,cg:[14,38],cha:[1,34],chain:[1,2,14,25,30,33,38,39,41,42],challeng:[38,39],chanc:[2,6,14,30,35,36,38,39,40,41,42],chang:[0,1,2,3,4,5,6,7,9,10,12,13,14,15,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44],channel:[4,43],chap4:[40,41,42],chapter3:[1,20,27],chapter:[0,1,7,11,12,19,22,23,26,27,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],charact:[1,4,6,9,33,34,43],character:[9,10,11,13,30,39,40,45],characterist:[1,2,4,11,14,22,33,38,39,41,42,43,44,45],charg:[1,33],charl:[1,34],chase:5,chat:33,chd:[8,37],chddata:[8,37],cheap:[6,34],cheaper:[2,14,38,39,41,42],check:[1,2,4,5,6,7,12,14,24,26,33,34,38,39,41,42,43,44],checkmark:4,checkpoint:5,checkpoint_dir:5,checkpoint_prefix:5,chen:11,chiaramont:[3,42],chin:43,choic:[1,2,3,4,5,7,10,13,14,15,20,24,26,28,33,34,36,37,38,39,40,43],choleski:[6,26,34],choos:[0,3,4,7,10,11,12,14,15,24,27,28,36,37,38,39,43,45],chosen:[0,1,2,3,7,9,10,11,14,17,22,28,30,33,36,37,38,39,41,42,44,45],chosen_datapoint:[2,40,41,42],christian:32,christoph:[29,32,33],cifar10:[4,43],cifar:[4,43],circ:[2,13,40,41,42],circl:[1,9,13,34,39,40],circuit:[4,43,44],circumfer:[10,45],circumv:[2,6,14,34,38,39,41,42],ckpt:5,clariti:30,class_nam:[4,10,43,45],class_predict:43,class_val:[10,45],class_valu:[10,45],class_weight:[4,5,43,44],classic:[8,10,14,37,38,39,40,44,45],classif:[0,1,4,6,7,8,9,12,13,25,27,32,33,34,35,36,38,43],classifc:44,classifi:[0,1,2,5,8,10,11,12,24,28,33,40,41,42,43,44],classificaton:[2,40,41],classifii:[11,45],clealri:45,clean:[2,40,41,42],clear:[2,6,11,13,14,22,38,39,40,41,42,45],clearli:[1,4,6,7,8,9,19,30,34,35,36,37,43,44,45],clever:[2,11,40,41,42,45],clf3:1,clf:[1,7,9,10,11,33,34,45],clf_lasso:7,clf_ridg:[7,33],clip:[4,30,43],clone:31,close:[0,1,2,3,5,7,9,10,12,13,14,15,27,30,32,33,36,37,38,39,40,41,42,43,45],closer:[4,6,14,34,38,39,43],closest:[9,12,14,15,38],closur:[25,33],cloud:[25,33],cluster:[1,2,5,7,12,25,33,36,40,41,42,44],cluster_label:15,cm:[2,3,4,7,9,10,14,27,37,38,40,41,42,43,45],cmap:[1,2,3,4,5,7,9,10,11,24,27,33,40,41,42,43],cmap_arg:7,cmb:29,cmd:[10,45],cmu:34,cn_:30,cnn:[13,39,40],cnn_kera:[4,43],cntk:[25,33],co:[1,3,4,7,10,14,22,33,36,38,39,42,43],cobserv:43,code:[0,4,5,7,8,9,16,17,18,20,23,25,26,27,30,32,44],codebas:[24,42,43],coef0:9,coef:[1,33,43],coef_:[1,6,7,9,10,14,33,34,35,36,37,38,45],coeff:6,coeffici:[1,4,6,7,8,9,10,14,16,17,26,33,34,35,36,37,38,39,45],coerc:[1,7,33,36],cogniz:43,coin:[11,30],coin_toss:[11,45],col:[1,12,33,34],colab:[25,33],cold:[10,45],colinear:[1,34],collabor:[0,27,28],collaps:9,collect:[1,3,7,11,12,22,25,30,32,33,36,45],collinear:[6,34,35],color:[1,4,5,7,9,10,11,22,27,30,38,43,44,45],color_channel:[4,43],color_cod:7,colorbar:[2,7,27,41,42,43],coloumn:[24,42],colsample_bytre:11,colsaobject:11,colspec:[1,33],column:[1,2,3,6,7,8,9,10,12,13,18,24,26,33,34,35,36,37,39,40,41,42,43,44,45],columntransform:[10,45],com:[5,7,20,21,22,25,27,28,32,33,35,37,38,39,40,41,42,43,44],combin:[2,3,6,7,8,11,30,35,36,37,38,39,41,42,43,45],come:[1,2,4,5,6,13,14,15,16,28,33,34,35,36,38,39,40,41,42,43,44],command:[1,2,33,41,42],comment:[0,1,5,6,7,16,17,27,28,33,34],commerci:[0,1,16,25,27,33],commod:[1,33],common:[0,1,2,4,6,7,8,10,12,14,15,27,28,30,33,34,36,37,38,39,40,41,42,43,44,45],commonli:[1,2,5,7,8,10,14,15,34,36,37,38,39,40,41,42,43,44,45],commun:[0,1,13,27,39,40],commut:[4,43],commutatitav:[4,43],compact:[1,2,4,6,7,8,10,12,13,14,15,33,34,35,36,38,39,40,41,42,43,45],compair:1,compar:[0,1,4,5,6,7,12,14,16,17,22,23,24,26,27,28,33,34,35,36,37,38,39,43,44],comparison:[3,5,14,28,38,39,42,43,44],compat:[8,37,43],compet:[1,33],competit:11,compil:[1,2,4,5,14,16,22,25,26,33,38,39,41,42,44],complet:[1,3,4,5,10,13,33,39,40,42,43,44,45],completenn:[13,39,40],complex:[2,6,9,10,12,13,14,16,17,20,28,33,36,38,39,40,41,42,43],complic:[1,2,10,14,33,36,37,40,41,42,44,45],compoment:34,compon:[1,2,4,5,6,7,8,10,15,17,24,25,33,34,35,36,37,40,41,42,43,44,45],components_:12,compos:[10,13,14,15,22,25,33,38,39,40,45],compphys:[1,7,18,20,21,25,27,29,31,32,33,34,37,38,39],comprehend:43,compress:[1,33,34,43],compris:[7,37,43],compromis:[6,34],compulsori:[25,33],comput:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,16,17,18,22,24,25,26,27,28,29,30,32,33,34,35,36,37,40,41,42,43,44],computation:[1,4,7,10,14,30,33,37,38,39,43,45],computationalscienceuio:33,computerlab:[0,27,28],con:28,concat:33,concaten:[3,5,7,15,42,43,44],concav:[2,10,14,34,37,38,41,42,45],concentr:[1,11,34,45],concept:[1,3,25,33,34,42],conceptu:[13,14,37,38,39,40],concern:[1,2,5,8,33,37,40,41,42,44],concic:33,conclud:[1,6,14,22,35,36,38,39],conclus:[0,2,40,41,42],concretefunct:[4,5,43,44],cond:[3,42],conda:[0,1,2,16,25,27,33,41,42],condis:34,condit:[0,1,3,5,6,7,9,10,12,14,30,33,34,39,42,44,45],conduct:[25,33],condwav:[3,42],confid:[1,6,7,8,9,19,27,33,34,35,37],configur:[4,22,43],confirm:[6,13,35,36,39,40],confus:[0,6,7,8,11,26,34,35,36,44],confusion_matrix:[10,45],congruenti:30,conjug:[5,9],conjugaci:[14,38],conjunct:[4,43],connect:[1,2,4,5,10,12,13,14,26,33,34,37,38,39,40,41,42,44,45],consecut:43,consequ:[6,7,9,11,13,14,34,35,36,37,38,39,40,43,45],conserv:[6,15,34],consid:[1,2,3,4,6,7,8,9,10,11,13,14,17,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],consider:[1,2,6,14,33,34,35,36,37,38,40,41,42],consist:[0,1,2,3,4,5,7,13,14,20,22,27,28,30,34,36,37,38,39,40,41,42,43,44,45],constant:[1,3,5,6,7,9,13,14,24,30,33,34,35,36,37,38,39,40,42,43],constitu:[1,33],constitut:[3,7,36,37,42,43],constrain:[2,4,6,8,12,35,37,40,41,42,43],constraint:[6,7,9,14,18,34,35,36,38,39,43,44],construct:[1,2,3,4,6,7,8,9,10,11,12,24,26,30,33,34,35,36,37,43,44,45],consult:28,contact:[1,33],contain:[0,1,3,4,5,6,7,8,9,10,12,13,14,18,20,22,23,24,26,27,28,30,32,33,34,35,36,37,38,39,40,42,43,44,45],contemporari:33,content:[2,25,26,33,41,42],context:[0,4,5,7,11,14,27,36,37,38,39,43,44,45],contigu:26,continu:[1,2,3,4,5,6,7,8,9,10,11,13,14,18,19,22,23,26,27,28,30,33,34,35,36,37,38,40,41,42,43,45],contour:[10,11,14,38],contourf:[9,10,11],contrast:[2,5,10,11,13,39,40,41,42,45],contribut:[1,4,6,14,22,30,33,34,35,38,39,43],contributor:[0,1,27,33],control:[1,2,4,10,14,16,25,33,38,39,40,41,42,43,45],conv2d:[4,5,43],conv2d_49:43,conv2d_50:43,conv2d_51:43,conv2dsep:43,conv2dtranspos:5,conv:[4,5,43],conv_imag:43,conv_lay:43,conv_result:43,convei:33,conveni:[0,1,6,7,13,14,26,27,28,33,35,36,37,38,39,40,41],convent:[13,34,40],converg:[2,3,5,6,7,8,9,12,14,15,22,23,24,28,34,35,37,38,39,40,41,42,44],convergencewarn:[2,7,8,9,12,24,37,40,41,42,44],convert:[1,2,5,6,10,12,14,26,33,34,38,39,41,42,44,45],converttomatrix:[5,44],convex:[5,6,8,34],convinc:[14,37,38],convolut:[0,2,5,25,33,41,42,44],convolution2dlayeropt:43,convolv:43,convolved_imag:43,convout:43,cool:[5,10,45],coolwarm:[7,27],coordin:[6,13,15,34,35,39,40],coorel:[1,34],cope:44,copi:[1,2,15,24,34,40,41,42,43],copyright:[0,28,36,42],core:[3,4,5,11,14,33,39,43,44],corel:33,corner:43,coronari:[8,37],corr:[1,6,8,12,34,37,44],correalt:[12,25],correct:[1,2,3,4,5,6,8,14,26,30,33,34,35,36,38,39,40,41,42,43,44],correctli:[2,3,7,8,11,24,28,40,41,42,43,44,45],correl:[1,2,4,6,7,8,11,13,14,22,25,30,33,35,36,38,39,40,41,42,45],correlation_matrix:[1,6,8,12,34,37,44],correspond:[1,4,6,7,9,10,12,13,16,17,18,25,26,27,30,33,34,35,36,39,40,43,45],corss:42,cortex:[13,39,40],cosin:[4,7,36,43],cost:[1,3,4,6,7,8,9,10,13,14,17,18,20,22,27,28,33,39],cost_deep_grad:[3,42],cost_func:[24,42,43],cost_func_deriv:[24,42,43],cost_funct:[3,42],cost_function_deep:[3,42],cost_function_deep_grad:[3,42],cost_function_grad:[3,42],cost_function_train:[24,42,43],cost_function_v:[24,42,43],cost_grad:[3,42],cost_sum:[3,42],costcrossentropi:[24,42,43],costfunct:43,costlogreg:[24,42,43],costol:[14,22,24,38,39,42,43],could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],coulomb:[1,33],count:[1,3,10,29,30,31,33,45],countor:[14,38],coupl:[5,6,7,35,36,44],cours:[0,1,2,4,6,12,27,28,29,31,34,36,41,43,45],courvil:[22,23,28,29,32,33,34,38,39],cov:[6,7,12,26,30,33,34,35,36],cov_xi:[6,12,34],cov_xx:[6,12,34],cov_yi:[6,12,34],covari:[1,8,25,26,33,35,37,44],covariance_matrix:[6,12,15,34],cover:[1,6,18,25,31,32,34,35,43,45],covert:[1,33],covxi:30,covxx:30,covxz:30,covyi:30,covyz:30,covzz:30,cpu:[2,4,5,41,42,43,44],cpu_util:[4,5,43,44],craft:[4,43],crawford:33,creat:[2,3,4,5,6,7,10,11,12,13,14,24,25,27,33,35,37,38,39,40,41,42,43,44,45],create_biases_and_weight:[2,40,41,42],create_convolutional_neural_network_kera:[4,43],create_neural_network_kera:[2,41,42],create_x:[6,12,24,34,42],credit:[1,8,31,33,37],crim:[1,34],crime:[1,34],criteria:[1,5,10,11,15,30,33,45],criterion:[0,10,11,14,37,38,45],critic:[0,7,27,33,34,35,43],critiqu:[0,27,28],crop:43,cross:[0,1,2,4,8,10,11,14,24,25,28,30,33,34,35,38,39,40,41,42,43,44,45],cross_entropi:5,cross_val_scor:[7,36,37],cross_valid:[8,11,37,44,45],crossvalid:[7,36],crucial:[2,30,41,42,43],cs231:[4,43],cs231n:42,cs231n_2017_lecture4:42,cs:[29,31],csr_matrix:[26,33],csv:[1,5,7,8,10,33,36,37,44,45],ctnk:[2,41,42],ctx:[4,5,43,44],cubic:1,cumbersom:[6,35,36],cumsum:[11,12,33,45],cumul:[0,8,11,30,45],cumulative_heads_ratio:[11,45],cup:[6,35,36],current:[2,3,4,5,7,14,15,22,27,32,37,38,39,41,42,43,44],curs:[1,34],curv:[0,7,8,11,13,27,37,39,40,45],curvatur:[14,37,38,39,44],custom:[7,15,27,45],custom_cmap2:[10,11],custom_cmap:[10,11],cut:43,cute:43,cutpoint:[10,45],cv:[7,8,11,36,37,44,45],cvxbook:[14,37],cvxopt:[6,9,34],cycl:[2,13,39,40,41,42],cyclotron:[34,35,43,44,45],d2_g_t:[3,42],d:[2,3,4,5,6,7,8,9,10,11,12,14,15,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],d_f:[14,37,38],d_g_t:[3,42],d_net_out:[3,42],da:[4,43],dagger:[6,26,34],dai:[2,10,25,40,41,42,45],damp:[4,43],daniel:[31,33],darget:[10,45],darkr:30,dat:[1,33],dat_id:[1,7,8,10,33,34,36,37,45],data1:15,data2:15,data3:15,data4:15,data:[3,5,6,9,11,13,14,15,18,19,20,22,23,26,28,32,36,38,39],data_handl:[4,5,43,44],data_id:[1,7,8,10,33,34,36,37,45],data_indic:[2,40,41,42],data_modul:34,data_panda:33,data_path:[1,7,8,10,33,34,36,37,45],data_url:34,databas:[2,40,41,42],datafil:[1,7,8,10,27,33,34,36,37,45],datafram:[1,5,6,8,10,12,33,34,37,44,45],datapoint:[2,6,7,8,12,14,24,34,36,37,38,39,40,41,42],dataset:[1,5,7,8,9,10,11,12,14,15,16,17,20,24,27,28,33,34,36,37,38,39,44,45],datatyp:[5,44],date:[0,16,17,18,19,20,21,22,23,24,27,28,33,34,35,36,37,38,39,40,41,42,43,44,45],daughter:[11,45],david:32,davison:36,dbh:[2,40,41,42],dbo:[2,40,41,42],dc5e85cd93c3:28,dcomposit:26,ddot:[3,42],dead:[2,41,42],deadlin:[17,18,19,20,21,22,23,24,29],deal:[0,1,2,4,6,7,9,12,14,15,18,19,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44],dealt:1,debt:[8,37],debug:[1,6,7,24,35,36,37,42,44],decad:[1,4,33,43],decai:[1,14,30,33],decemb:[29,31,33],decent:11,decid:[1,3,4,6,7,10,24,27,35,36,37,42,43,44,45],decim:[1,24,33,42,43],decis:[0,1,2,9,12,25,32,33,40,41,42,43],decision_funct:9,decision_tre:[10,45],decisiontreeclassifi:[10,11,45],decisiontreeregressor:[1,10,11,45],declar:[1,5,26,33,44],decompos:[6,7,26,34],decomposit:[1,7,13,27,33,35,39,40],decompost:[6,34],deconvolut:[4,43],decor:[1,33],decorrel:[11,14,22,38,39,45],decreas:[2,3,5,6,7,11,12,14,35,36,37,38,39,40,41,42,43,45],deduc:[1,33],deep:[0,4,8,13,14,22,25,28,29,32,33,34,38,39,40,43,44],deep_neural_network:[3,42],deep_param:[3,42],deep_tree_clf1:10,deep_tree_clf2:10,deep_tree_clf:[10,11,45],deepcopi:[24,42,43],deepen:[6,25,33],deeper:[1,4,5,33,43],deepimag:42,deeplearningbook:32,deer:[4,43],def:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],def_covari:30,def_funct:[4,5,43,44],default_tim:[5,44],defect:[6,34],defici:[6,34],defin:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,34,35,36,37,38,39,43,44,45],definit:[2,3,6,7,8,9,11,12,13,14,18,26,30,34,35,36,37,38,41,42,45],defint:30,defualt:[24,42],defun:[4,5,43,44],defvjp:3,degre:[4,6,7,9,10,11,12,16,17,18,20,27,30,33,35,36,37,43,44,45],del:[2,41,42],delet:7,delimit:[5,44],deliv:[29,33],delta:[0,1,3,4,7,9,13,14,15,22,24,33,38,39,40,41,42,43],delta_0:[4,43],delta_1:[4,43],delta_2:[4,43],delta_3:[4,43],delta_4:[4,43],delta_5:[4,43],delta_:[2,26,40,41],delta_h:[1,2,33,40,41,42],delta_j:[4,13,40,41,43],delta_k:[13,40,41],delta_l:[2,4,40,41,42,43],delta_matrix:[24,42],delta_momentum:[14,22,38,39],delta_n:[1,4,33,43],delta_next:43,delta_term:43,delta_term_next:43,delta_term_pad:43,delug:25,delv:[1,33,43],demand:[14,37,38],demonstr:[1,4,6,7,8,12,13,24,25,33,34,35,36,37,40,42,44],demostr:45,demystifi:[39,40,41,42],den:[5,44],denomin:[2,6,35,36,40,41,42],denot:[2,3,7,8,14,30,37,38,39,40,41,42,43],dens:[2,4,5,41,42,44],dense_1:[5,44],dense_98:43,dense_99:43,densiti:[1,3,7,30,33,36,42],depart:[0,28,31,33,34,35,36,37,38,39,40,41,42,43,44,45],depend:[0,1,2,3,5,6,7,8,9,12,13,14,16,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44],depict:30,deploy:[0,1,16,25,27,33],deprec:[3,4,7,14,27,33,34,38,43],deprecate_nonkeyword_argu:[1,33],depth:[1,4,10,11,26,36,41,42,43,44,45],deriv:[1,2,3,7,8,9,11,12,14,17,18,20,22,24,25,27,33,39,43,44,45],derivati:[14,38,39],derivative_fn:[14,38,39],descend:[6,10,12,34,35,43],descent:[0,1,2,4,8,9,13,23,24,33,34,40,41,43],descent_i:22,descent_x:22,descr:34,describ:[0,1,3,5,6,7,9,11,12,13,14,19,22,26,27,28,33,35,36,38,39,40,42,43,44,45],descript:[0,1,9,10,24,28,33,42,43,45],design:[1,2,4,5,6,7,8,11,12,13,14,16,17,18,19,20,24,27,28,33,35,36,37,38,39,40,41,42,43,44,45],designmatrix:[1,33],desir:[1,3,5,6,14,15,24,33,34,37,38,42,43,44],despit:[2,13,39,40,41,42,43,45],destroi:26,det:[6,26,34],detail:[1,7,12,14,15,24,26,27,28,34,37,38,41],detect:[4,9,13,39,40,43,44],determin:[1,3,4,5,6,7,9,10,11,12,13,14,17,26,30,33,34,35,36,37,38,39,40,42,43,44,45],determinist:[8,14,30,37,38,39],dev:[2,41,42],develop:[0,1,4,6,9,11,12,13,22,23,24,25,26,27,28,33,34,35,36,39,43,45],deviat:[1,2,3,5,6,7,20,27,30,33,34,35,36,41,42],devic:[4,5,43,44],device_nam:[4,5,43,44],devis:[13,39,40],df1:33,df:[5,9,12,14,33,38,44],di:[1,34],diag:[6,9,34,35],diagnost:[2,11,41,42,44,45],diagon:[0,1,6,8,14,19,22,24,26,27,30,33,34,35,37,38,39,42,43,44],diagonaliz:[6,34],diagram:[11,45],diagsvd:7,dice:[7,30,36],dict:[7,9,24,37,42,43,44],dict_kei:34,dictat:0,dictionari:[1,24,34,42,43],did:[0,1,2,6,7,8,11,12,15,27,28,33,35,36,37,38,41,42,45],die:[2,41,42],diff1:[3,42],diff2:[3,42],diff:[3,42],diff_ag:[3,42],diffeent:9,differ:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,18,22,24,25,26,27,30,32,33,34,35,36,37,40,41,42,44,45],different:[23,24,42],differenti:[1,4,17,22,23,24,25,26,33,34,37,40,41,43],differential_oper:[3,14,39],difficult:[1,2,7,11,14,22,27,30,33,36,38,39,41,42,43,45],difficulti:[1,2,14,33,37,38,39,41,42,44],diffonedim:[3,42],diffus:0,digit:[1,2,4,5,7,24,27,28,29,31,33,40,41,42,43],dilemma:[14,38,39],dilut:[2,41,42],dim:[5,12,15,24,26,42,44],dimens:[0,1,2,3,4,5,6,9,10,12,15,17,18,24,26,33,34,35,40,41,42,43,44,45],dimension:[0,1,5,6,7,10,12,14,15,20,22,23,25,26,28,33,35,36,37,38,39,45],dimensionless:[1,4,33,43],diment:26,dimention:43,dimnsion:[5,44],diod:[4,43],direct:[1,2,3,5,12,13,14,15,22,33,34,37,38,39,40,41,42,43,44],directli:[2,5,6,7,24,30,34,40,41,42,43],directori:[10,45],disabl:[4,5,43,44],disadvantag:[1,33],disappear:[4,7,36,43],disc_loss:5,disc_tap:5,discard:[7,12,36,37],disciplin:[1,4,13,33,39,40,43],disclaim:30,discord:33,discourag:[14,34,37,38],discov:[1,33],discover:[6,35],discoveri:44,discret:[0,2,4,6,8,14,35,36,37,38,39,41,42,43],discrimin:[5,8,11,12,37,45],discriminator_loss:5,discriminator_loss_list:5,discriminator_model:5,discriminator_optim:5,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,28,30,32,33,34,35,36,38,39,40,41,42,43,45],diseas:[8,37],disguis:[7,34,35,36],disord:[2,8,37,41,42],dispai:[39,40],displai:[1,2,4,5,6,7,8,9,10,11,12,13,15,24,27,30,33,34,36,37,39,40,41,42,43,44,45],displaystyl:[1,6,18,33,34,35,44],displot:34,disregard:[1,33],dissimilar:[12,15],dist:15,distanc:[1,9,10,12,15,30,34,43,45],distance_list:[10,45],distinct:[4,8,9,10,11,15,37,43,45],distinctli:9,distinguish:[1,5,8,9,30,33,37,44],distplot:[1,34],distribut:[0,1,2,5,7,8,11,12,14,15,16,17,19,20,24,25,26,27,28,33,34,37,38,40,41,42,44,45],distrubut:[0,1,16,25,27,33],ditto:0,dive:[1,9,26,33],diverg:[2,14,37,38,39,41,42],divid:[1,2,4,6,7,8,9,10,12,13,28,30,33,34,35,36,37,39,40,41,42,43,44,45],divis:[7,9,10,14,22,24,26,30,36,37,38,39,42,43],dna:[8,37],dnn1:[5,44],dnn2_gru2:[5,44],dnn:[1,2,3,5,13,24,33,39,40,41,42,44],dnn_kera:[2,41,42],dnn_model:[2,41,42],dnn_numpi:[2,40,41,42],dnn_scikit:[1,2,24,33,40,41,42],doamin:[35,36],doc:[0,1,7,18,20,21,25,27,28,29,31,32,33,34,37,38,39],document:[5,8,12,14,34,37,38,39,42,43,44],doe:[1,2,3,4,5,6,7,9,11,12,13,14,17,22,24,26,27,30,33,36,37,38,41,42,43,44,45],doesn:[4,10,13,40,43,45],dog:[2,4,5,40,41,42,43],domain:[0,6,9,14,27,28,35,36,37,38,44],domin:[1,33],don:[0,1,2,4,6,7,9,12,14,16,22,24,25,27,28,33,34,38,39,40,41,42],done:[0,1,3,4,5,6,7,10,11,12,14,18,26,27,33,34,35,36,37,38,39,42,43,45],dot:[1,3,4,6,7,8,9,10,11,12,13,14,22,26,27,30,33,34,35,36,37,40,41,42,43,45],doubl:[4,5,26,33,43,44],doubli:[2,41,42],down:[0,1,4,7,10,12,13,14,22,33,37,38,39,40,43],download:[1,2,4,6,7,26,27,32,33,40,41,42,43],downsampl:[4,43],dozen:[2,41,42],dq:[7,36],drag:[14,38,39],dramat:12,drastic:[5,43,44],draw:[5,7,11,14,36,37,38,44,45],drawback:[1,2,4,14,34,37,38,39,41,42,43],drawn:[2,5,7,8,12,30,33,36,37,40,41,42],drive:[4,5,43,44],driven:[4,43,44],drop:[1,2,6,7,12,14,22,30,33,34,35,36,38,39,41,42],dropna:[1,7,33,36],dropout:5,dt:[3,4,14,30,38,39,42,43],dtype:[1,2,3,4,5,15,22,24,26,33,34,39,40,41,42,43,44],dualiti:7,dub:[1,33],due:[2,3,6,7,9,11,13,14,24,31,33,34,36,37,38,39,40,41,42,43,45],dummi:[1,34],dumoulin:43,dure:[1,2,4,5,9,10,12,18,21,24,25,27,33,36,38,39,41,42,43,44,45],dwell:[1,34],dwh:[2,40,41,42],dwo:[2,40,41,42],dx:[3,4,9,30,42,43],dx_1:30,dx_1p:[7,36],dx_2p:[7,36],dx_mp:[7,36],dx_n:30,dxp:[7,36],dy:[2,9,30,41,42,43],dynam:[5,44],dz:9,e:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,19,20,22,24,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],e_:[1,3,33,42],each:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,24,25,26,28,29,30,31,33,34,35,36,38,39,40,41,42,43,44,45],eager:[4,5,36,43,44],eapprox:[1,33],earli:[2,4,5,14,22,38,39,40,41,42,43,44],earlier:[1,6,8,9,10,12,13,14,21,22,33,34,37,38,39,40,45],earthexplor:[7,27],eas:[7,10,15,36,43,45],easi:[1,6,7,8,9,10,11,12,13,14,19,22,24,25,26,28,33,34,35,36,37,38,39,40,42,44,45],easier:[6,7,9,10,14,24,28,30,33,34,36,38,39,42,43,45],easiest:[14,37,38],easili:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,24,26,27,33,34,35,36,37,38,40,41,42,43,44,45],eastern:[31,33],ebind:[1,33],eblock:10,echo:44,econometr:33,economi:6,ecosystem:[25,33],ect:[29,45],edg:[4,43],edgecolor:[7,36],edu:[14,28,34,37,42],educ:[0,1,27,28,33,34,37],eff:30,effect:[2,5,11,14,30,38,39,40,41,42,43],effic:[2,40,41,42],effici:[1,4,11,14,25,26,30,33,37,38,39,44],efron:[7,36],egrad:[14,38,39],eig:[6,12,14,22,26,30,33,34,37,38,39],eigen:30,eigenpair:[6,12,34],eigenvalu:[0,1,6,9,12,14,22,26,33,34,35,37,38,39],eigenvector:[6,12,14,18,34,35,38],eight:[26,33],eigval:[26,30,33],eigvalu:[12,14,22,37,38,39],eigvec:[26,30,33],eigvector:[12,14,22,37,38,39],eispack:[26,33],either:[0,2,6,7,8,9,10,11,12,14,16,17,24,27,28,30,33,34,35,36,37,38,40,41,42,43,44,45],elabor:30,elarn:4,elect:45,electr:[1,4,13,33,39,40,43],electron:33,eleg:12,element:[2,3,4,5,6,7,8,9,12,13,14,18,19,21,22,23,24,25,26,27,28,29,32,34,35,36,37,40,41,42,43,44],elementari:[11,14,26,38,39,45],elementwis:[4,14,38,39,43],elementwise_grad:[3,14,24,38,39,42,43],elessar:33,elif:[4,5,15,22,24,42,43,44],elim:26,elimin:[4,9,43],els:[2,3,4,5,8,10,13,14,24,26,37,38,39,40,41,42,43,44,45],elu:[2,41,42],elus:[1,33],em:43,email:[29,31,33],embed:[1,12,34],embodi:[7,20,27,36],emit:30,emner:32,emphas:[1,11,25,33,45],emphasi:[1,25,32,33],empir:[2,12,30,41,42],emploi:[0,1,2,6,7,12,14,27,28,30,33,34,35,36,37,38,40,41,44],employ:[1,33,34],empti:[7,11,24,36,42,43,45],emul:[13,39,40],en:[25,32,44],enabl:[12,22,24,42,43],enbodi:[7,36],encapsul:43,encod:[1,4,6,10,12,15,18,33,34,35,43,45],encompass:[0,1,27,30,33],encount:[1,2,6,7,8,14,22,30,33,34,36,37,38,39,40,41,42],encourag:[0,27,28,43],end:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,22,24,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],end_box:[3,14,39],end_nod:[3,14,39],end_valu:[3,14,39],endpoint:[4,7,43],energi:[1,5,7,34,36,44],enet_coordinate_desc:7,enforc:[13,39,40],eng:32,engin:[1,2,4,5,25,33,41,42,43,44],english:[0,27,28],enhanc:43,enorm:[4,43],enough:[1,7,14,33,36,37,38,44],ensembl:[2,10,41,42],ensur:[1,2,3,4,6,7,12,14,22,24,30,34,35,36,37,38,39,40,41,42,43,44],ensure_initi:[4,5,43,44],entail:33,enter:[6,7,18,34,35],enthought:[0,1,16,25,27,33],entir:[2,4,8,10,24,25,30,33,37,38,39,40,41,42,43,45],entiti:[10,13,26,33,40,45],entri:[1,6,9,12,13,26,33,34,35,36,40],entropi:[2,4,8,11,14,24,33,38,39,40,41,42,43,45],enumer:[1,2,3,4,5,7,9,24,33,34,35,40,41,42,43],env:[1,2,3,4,5,7,8,9,12,14,22,24,30,33,34,35,37,39,40,41,42,43,44],environ:[0,3,22,25,27,42],eo:[1,7,33,36],eol:[1,33],eosfit:[1,33],epoch:[1,2,4,5,13,14,22,23,24,28,33,38,39,40,41,42,43,44],epoch_num:[4,5,43,44],epsilon:[1,6,7,8,14,20,27,33,34,35,36,37,38,39],epsilon_0:[1,33],epsilon_1:[1,33],epsilon_2:[1,33],epsilon_:[1,33],epsilon_i:[1,33,34],eq:[4,14,15,26,30,37,38,43],eqnarrai:[4,6,7,35,36,43],equal:[1,2,3,4,5,6,7,9,10,12,13,14,15,16,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],equat:[2,4,5,6,7,8,9,10,11,12,14,15,17,18,19,20,22,26,27,30,36,39,41,43,45],equilibrium:[3,13,39,40,42],equiv:[4,14,26,30,37,38,43],equival:[1,2,6,8,9,12,14,22,25,26,33,34,35,36,38,39,40,41,42,43],erf:30,eriador:33,eric:[24,42],eridg:33,err:[1,11,45],err_:[7,36],err_sqr:[3,42],errat:[14,37,38],errno:[10,45],erron:[3,42],error:[2,3,5,6,7,8,10,12,13,14,16,17,18,19,20,22,24,25,26,27,28,30,35,37,38,39,40,41,42,43,44],error_estimate_corr_tim:30,error_handl:[4,5,43,44],error_hidden:[2,40,41,42],error_output:[2,40,41,42],escap:[14,37,38,39],esn:44,especi:[0,2,4,10,13,14,27,28,38,39,40,41,42,43,45],essenti:[1,6,7,10,11,13,15,27,28,30,34,39,40,45],establish:[0,1,7,11,12,16,27,28,33,43,45],estim:[0,1,2,6,7,8,11,12,14,25,30,33,34,37,38,39,40,41,42,44,45],estimated_mse_fold:[7,36,37],estimated_mse_kfold:[7,36,37],estimated_mse_sklearn:[7,36,37],et:[0,1,3,5,16,17,18,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],eta0:[9,14,37,38],eta:[1,2,4,9,13,14,22,24,28,33,37,38,39,40,41,42,43],eta_:[14,22,38,39],eta_t:[14,38,39],eta_v:[1,2,4,24,33,40,41,42,43],etc:[0,1,2,4,6,8,9,10,12,13,14,15,16,22,23,25,26,27,28,30,34,37,38,39,40,41,42,44,45],ethic:[25,33,34],etsim:36,euclidean:[1,15,34],euler:0,evalu:[0,1,3,4,5,6,7,10,14,27,30,33,34,35,36,37,38,39,44,45],evaluationform:[21,27,38,39],evaluationgrad:[21,27,38,39],evalut:[14,38,39],even:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,25,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],evenli:[5,44],event:[6,8,11,30,35,36,37,45],eventu:[0,1,6,7,12,13,14,27,28,31,34,35,36,37,38,39,40,44],everi:[1,2,3,4,5,6,7,10,11,12,13,14,15,24,25,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],everyth:[5,13,22,23,24,40,42],everywher:[5,14,37,38],evid:43,evolv:[1,33],exact:[1,3,6,12,13,14,26,30,33,34,38,40],exactli:[1,4,5,7,13,25,27,34,36,39,40,43],exam:[33,45],examin:[7,36,43],exampl:[0,6,12,13,14,16,17,20,21,23,24,25,26,27,28,30,32],exce:[2,13,14,22,38,39,40,41,42],excel:[1,2,5,6,11,28,33,34,41,42,43],except:[4,5,7,9,10,24,26,42,43,44,45],excess:[1,33,43],excit:[1,33,45],exclud:[2,7,13,27,34,35,36,37,39,40,41,42,43],exclus:[1,2,4,7,30,33,36,37,41,42,43],execut:[3,4,5,6,14,34,38,39,42,43,44],execute_with_cancel:[4,5,43,44],executing_eagerli:[4,5,43,44],exemplifi:[14,38,39],exercic:[31,33],exercis:[0,6,25,27,28,29,31,35,37,38,39,40,41,43],exercisesweek35:18,exhaust:[7,36,37],exhibit:[1,6,7,9,33,34,36],exisit:0,exist:[0,1,2,3,4,6,7,8,9,10,14,19,26,27,28,33,34,35,36,37,38,41,42,43,45],exit:[6,26,34],exp:[1,2,3,6,7,8,9,11,12,13,14,16,17,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],exp_term:[2,40,41,42],expand:[6,8,12,14,34,37,38,43],expans:[1,4,6,9,11,13,14,33,34,37,38,40,43,45],expect:[1,2,6,7,8,12,13,14,16,17,20,22,25,27,28,33,34,37,38,39,40,41,42,43],expectation_value_of_h_wrt_p:30,expediti:43,expens:[7,11,14,37,38,39,43,45],experi:[1,2,7,9,14,25,27,33,34,36,37,38,39,41,42],experiment:[1,4,5,7,10,30,33,36,43,44,45],experimental_get_tracing_count:[4,5,43,44],expert:[2,10,41,42,45],explain:[0,1,7,10,11,12,14,20,27,33,37,38,43,45],explained_variance_ratio_:12,explan:28,explanatori:[1,33],explicit:[0,1,4,7,14,22,26,27,33,34,35,38,39,43],explicitli:[1,5,22,33,44],explod:[2,41,42],exploit:[1,4,13,14,33,38,39,40,43],explor:[0,2,5,7,9,14,25,27,28,37,38,39,41,42],expon:[2,24,40,41,42],exponenti:[1,2,6,7,11,14,27,30,33,35,36,37,38,39,41,44,45],export_graphviz:[10,45],export_text:[10,45],exporttext:[10,45],expos:[25,33],express:[1,3,4,6,7,8,11,13,14,17,22,23,26,27,28,30,35,36,39,40,42,43,45],exptmean:30,exptvari:30,extend:[1,3,8,12,14,18,25,33,42,43,44],extens:[0,1,13,16,25,33,39,40],extent:[0,1,2,7,32,33,36,41,42],extern:[4,7,10,43,45],extra:[2,4,6,31,33,34,40,41,42,43,44],extract:[1,4,6,7,8,9,12,14,26,33,34,37,38,43],extrapol:[1,33],extrem:[1,2,5,6,7,8,9,10,14,17,26,34,35,36,37,38,39,41,42,43,44],extremum:[14,37,38],extrins:12,ey:[1,6,7,14,15,26,33,35,36,37,38],f11:[1,33],f12:[1,33],f13:[1,33],f1:[14,38,39,44],f1_grad:[14,38,39],f1d:[14,38],f2:[14,38,39],f2_grad_x1:[14,38,39],f2_grad_x1_analyt:[14,38,39],f2_grad_x2:[14,38,39],f2_grad_x2_analyt:[14,38,39],f3:[14,38,39],f3_grad:[14,38,39],f3_grad_analyt:[14,38,39],f4:[14,38,39],f4_grad:[14,38,39],f4_grad_analyt:[14,38,39],f5:[14,38,39],f5_grad:[14,38,39],f6:[14,38,39],f6_for:[14,38,39],f6_for_grad:[14,38,39],f6_grad_analyt:[14,38,39],f6_while:[14,38,39],f6_while_grad:[14,38,39],f7:[14,38,39],f7_grad:[14,38,39],f7_grad_analyt:[14,38,39],f8:[14,38,39],f8_grad:[14,38,39],f9:[1,14,33,38,39],f9_altern:[14,38,39],f9_alternative_grad:[14,38,39],f9_grad:[14,38,39],f:[1,2,3,4,5,6,7,8,9,11,13,14,15,17,19,20,22,23,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],f_0:[4,11,43,45],f_1:[11,14,37,38,45],f_2:[13,14,37,38,39,40],f_3:[13,39,40],f_:[11,45],f_d:30,f_grad:[14,38,39],f_grad_analyt:[14,38,39],f_i:[1,7,13,17,36,39,40],f_m:[4,11,43,45],f_n:[4,43],f_raw:[],f_vec:[3,42],f_wrap:3,face:[14,37,38,39],facecolor:[7,9,30,36],facil:[1,16,25,33,36,37,38,39,40,41,42],facilit:[13,39,40,43],fact:[1,2,4,6,10,12,13,14,33,34,35,36,37,38,39,40,41,42,43,45],factor:[1,2,4,6,7,10,11,12,14,26,30,33,34,35,36,38,39,40,41,42,43],factori:[14,38,39],fade:7,fafab0:[10,11],fahimeh:[31,33],fail:[1,4,5,7,8,9,12,14,31,33,36,37,38,43,44],failur:[8,37],fairli:[2,3,30,41,42],fake:5,fake_loss:5,fake_output:5,fale:28,fall:[9,10,29,44,45],fals:[1,2,3,4,5,6,7,8,10,11,15,24,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],famili:[1,8,9,30,37],familiar:[0,1,4,6,7,9,16,25,26,27,30,33,35,36,43],famou:[7,13,24,40,42],fanci:44,far:[1,4,5,6,7,9,12,13,14,15,33,34,37,38,39,40,43,44],fashion:[1,10,11,33,45],fast:[2,4,7,11,13,14,25,30,33,36,37,38,40,41,42,43],faster:[2,12,14,38,39,41,42,43],fastest:[14,26,37,38],favor:[8,37],favorit:30,fc:[4,43],fdr:44,featur:[1,2,4,6,7,8,9,11,12,13,14,19,24,25,27,28,30,33,35,36,37,38,39,40,41,42,43,44],feature_map:43,feature_maps_index:43,feature_nam:[1,2,8,10,34,37,41,42,44,45],feautur:[10,45],fed:[2,40,41,42,43],feed:[1,3,4,12,24,25,28,33,43,44],feed_forward:[2,24,40,41,42],feed_forward_out:[2,40,41,42],feed_forward_train:[2,40,41,42],feedback:[5,21,33],feeddorward:[5,44],feedforward:[2,5,13,24,40,41,42,43,44],feel:[0,1,6,7,12,14,16,17,22,23,25,27,28,31,33,35,38,39],feet:[1,34],fei:33,felt:[0,27,28],fetch:[7,27,34],fetch_california_h:34,fetch_openml:[34,43],few:[2,4,5,6,10,30,33,38,40,41,42,43,44,45],fewer:[1,10,12,33,45],ffnn:[2,13,24,28,39,40,41,42],fft2:43,fft:43,field:[0,1,4,7,13,25,33,39,40,43],fifth:[1,7,16,17,27,33],fig:[1,2,3,4,5,7,8,13,14,15,24,27,33,37,38,39,40,41,42,43,44],fig_id:[1,7,8,10,33,34,36,37,45],figaxi:30,figsiz:[1,2,3,4,5,7,8,9,10,11,24,33,34,36,37,40,41,42,43,44,45],figur:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,22,25,27,28,33,34,35,36,37,38,39,40,41,42,43,44,45],figure_id:[1,7,8,10,33,34,36,37,45],figurefil:[1,7,8,10,33,34,36,37,45],file:[0,1,3,4,5,6,7,8,10,14,27,28,33,34,35,36,37,39,44,45],file_prefix:5,filenam:[33,34],filenotfounderror:[10,45],filepath_or_buff:[1,33],fill:[6,10,24,34,42,43,45],filter:[4,5,43],filter_traceback:[4,5,43,44],filtered_flat_arg:[4,5,43,44],filtered_imag:43,filtered_tb:[4,5,43,44],financ:[1,33],find:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,22,25,27,28,30,33,34,35,37,40,41,42,45],fine:[1,15,16,33,43],finish:[3,24,42],finit:[0,4,6,7,13,14,18,30,34,35,36,38,39,40,43],first:[0,1,2,3,4,6,7,8,9,10,11,12,14,15,16,17,18,22,24,26,27,30,31,32,36,39,41,43,44],first_moment:[22,38,39],first_term:[22,38,39],firsteigvector:12,fit:[2,4,5,6,7,8,9,10,12,13,14,16,17,18,22,24,27,28,30,34,36,37,38,39,40,41,42,43,44],fit_beta:[7,34,35],fit_intercept:[1,6,7,34,35,36],fit_mod:[10,45],fit_transform:[1,7,9,10,12,36,37,45],fiti:[1,33],five:[1,10,18,27,33,34,37,44,45],fix:[1,4,5,7,11,12,13,14,22,23,27,28,33,36,37,38,39,40,43,44],fixedformatt:7,fixedloc:7,flag:5,flat:[13,14,22,37,38,39,40],flatten:[2,4,5,6,26,40,41,42,44],flatten_49:43,flattenlay:43,flexibl:[2,7,9,11,13,24,28,33,34,36,39,40,41,42,43],flip:[31,33],float32:[5,10,22,24,42],float64:[5,22,24,26,33,34,39,40,41,42,44],floatingpointerror:[24,42,43],floor:[24,42,43],flop:[6,26,34],flow:[2,5,13,39,40,42,44],fluctuat:[6,35],fluid:0,flush:[24,42,43],fly:12,fm:[1,33,43],fmap:43,fmax:[4,43],fmesh:[14,38],fn:[4,5,8,43,44],fnr:44,focu:[1,4,5,6,7,16,25,28,32,33,34,35,36,43,44],focus:[2,7,8,26,34,35,37,40,41,42],fold:[7,10,27,44,45],folder:[0,1,2,5,7,14,27,28,33,36,38,40,41],follow:[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,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],font:[1,8,30,33,37],fontdict:30,fontsiz:[2,7,9,10,11,30,41,42,45],fontweight:[2,41,42],footprint:[4,43],foral:[9,34],forc:[1,6,7,11,12,33,34,35,37,44,45],forcast:[5,44],forecast:[5,13,39,40,44],forest:[0,1,2,10,25,33,41,42],forget:12,form:[0,1,4,5,6,7,8,9,10,12,13,14,18,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,43,44],formal:[4,5,15,30,43],format:[1,2,3,4,5,7,8,9,10,11,12,24,25,30,32,34,35,36,37,39,40,41,42,43,45],format_data:[5,44],formatstrformatt:[7,14,27,37,38],formul:[5,7,12,15],formula:[0,4,14,30,37,38,39,43],forth:[5,13,39,40],fortran2003:[25,33],fortran2008:[0,27,28],fortran90:30,fortran:[1,16,25,26,33],fortun:[1,12,34],forward:[0,1,4,5,7,24,25,26,28,33,36,43,44],forward_backward:[4,5,43,44],forward_funct:[4,5,43,44],found:[2,3,5,6,7,13,14,20,21,24,27,28,33,34,35,36,38,39,40,41,42],foundat:[25,33,43],four:[5,6,7,9,13,24,26,27,29,31,33,35,39,40,41,42],fourier:[1,33],fourierdef1:[4,43],fourierdef2:[4,43],fourierseriessign:[4,43],fourth:[13,33,34,40],fp:[8,44],fpr:44,frac:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,20,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],fractal:[10,45],fraction:[10,44,45],fragment:45,frame:[8,33,37,44],framework:[2,9,11,30,41,42,43],frank:[6,12,22,23,28],frankefunct:[6,7,12,27,34],fredli:[31,33],free:[0,1,7,12,14,16,17,22,23,25,26,27,28,30,31,32,33,38,39,44],freecodecamp:25,freedom:[6,35],freeli:[0,1,27,33],frequenc:[4,5,7,8,30,36,37,43,44],frequent:[1,9,10,14,33,37,38,45],frequentist:25,fresh:[11,45],fridai:[17,31,33],friedman:[7,19,27,29,32,33,34],friendli:[5,44],frodo:33,frog:[4,43],from:[0,1,2,3,4,5,7,8,9,10,12,14,15,17,18,19,20,23,24,25,26,27,30,31,32,33,41,42,44],from_cod:[10,45],from_logit:[4,5,43],from_tensor_slic:5,fromnumer:3,front:[1,5,6,16,17,33,34,35,44],fuction:43,fulfil:[3,6,13,34,39,40,42],full:[1,2,4,6,8,10,11,14,24,30,33,34,37,38,39,45],full_matric:[6,34],fulli:[4,7,13,29,30,36,37,39,40],fullyconnectedlay:43,fun:[3,14,25,33,39,43],fun_nam:3,func:[1,3,24,33,34,42,43],functionali:12,functionfit:43,fundament:[1,7,25,33,36,43],funtion:3,further:[3,8,10,33,42],furthermor:[1,4,6,7,8,12,13,14,18,25,27,33,34,35,36,37,38,39,40,43],futur:[1,5,9,10,33,34,44,45],futurewarn:[1,33,34],fy:[0,16,27,28,29,31,32,33],fys4155:[0,27,28],fys5419:[32,33],fys5429:[32,33],g0:[3,42],g2d:43,g:[1,2,3,4,5,7,9,10,11,12,14,30,33,35,36,37,38,39,40,41,42,43,44,45],g_0:[3,42],g_1:[3,11,42],g_2:[3,11,42],g_:[3,10,11,42,45],g_analyt:[3,42],g_dnn_ag:[3,42],g_euler:[3,42],g_i:[3,42],g_m:[4,11,43,45],g_n:[4,43],g_re:[3,42],g_t:[3,24,42,43],g_t_d2t:[3,42],g_t_d2x:[3,42],g_t_dt:[3,42],g_t_hessian:[3,42],g_t_hessian_func:[3,42],g_t_invers:[24,42,43],g_t_jacobian:[3,42],g_t_jacobian_func:[3,42],g_trial:[3,42],g_trial_deep:[3,42],g_vec:[3,42],gain:[0,2,6,8,10,11,14,34,35,36,38,39,41,42,45],galleri:[1,33],game:5,gamge:33,gamma1:9,gamma2:9,gamma:[1,3,9,10,11,12,14,22,33,37,38,39,42,45],gamma_0:[11,45],gamma_1:[11,45],gamma_1x:[11,45],gamma_:[1,33],gamma_i:[1,9,30,33],gamma_j:[14,38,39],gamma_k:[14,37,38],gamma_m:[11,45],gamma_x:[1,33],gap:[7,9],gate:[5,13,43,44],gather:[1,2,13,34,39,40,41,42],gaug:[13,39,40],gauss:43,gauss_kernel:43,gaussbacksub:26,gaussian:[5,6,7,9,15,30,35,36,43],gaussian_point:15,gaussian_rbf:9,gave:[14,38,39],gbc:[29,33],gca:[3,7,9,14,27,38,42],gd:[2,23,28,37,41,42],gd_clf:11,gdclassiffiercgain:11,gdclassiffierconfus:11,gdclassiffierroc:11,gdm:[14,22,38,39],gdregress:11,ge:[0,2,6,8,30,34,37,41,42],gen_loss:5,gen_tap:5,gender:[1,33],genener:[5,44],gener:[1,2,3,4,6,7,9,11,12,13,14,15,16,17,18,20,21,22,24,26,27,30,32,34,35,36,37,38,39,40,41,42,43,44],generaliz:[24,42],generallay:[13,39,40],generate_and_save_imag:5,generate_gauss_mask:43,generate_imag:5,generate_latent_point:5,generate_simple_clustering_dataset:15,generated_imag:5,generator_loss:5,generator_loss_list:5,generator_model:5,generator_optim:5,genom:25,geodes:12,geometr:[1,14,33],geometri:[6,35,36],georg:32,geotif:[7,27],geq:[3,6,9,10,14,34,35,37,38,42,45],geron:[1,16,22,29,32,33,38,39,41,42,43,44,45],get:[0,1,2,3,4,5,6,7,8,10,11,12,14,16,21,23,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],get_dummi:[10,45],get_paramet:[3,42],get_pred_format:43,get_prev_a:43,get_split:[10,45],get_yaxi:9,get_yticklabel:7,getattr:3,gibb:[25,33],gif:5,gini:11,gini_index:[10,45],ginvers:14,git:[1,16,25,33],giter:[14,22,38,39],github:[0,1,7,16,18,20,21,22,25,27,28,29,31,32,33,34,37,38,39,42],gitlab:[0,1,16,25,27,28,33],give:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,18,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],given:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],global:[7,8,14,27,37,38,39,43],gloriou:28,glorot:[2,41,42],gnew:14,go:[1,2,4,6,7,9,10,12,13,14,27,33,34,35,36,37,38,40,41,42,43,45],goal:[1,8,10,33,37,45],goe:[1,2,3,6,7,14,15,19,26,33,34,35,36,37,38,39,40,41,42],golden:[14,38],gone:[6,34,35],gong:[2,40,41],good:[2,4,5,6,7,10,11,12,14,18,22,24,25,30,32,34,35,36,37,38,39,41,42,43,44,45],goodfellow:[5,23,28,29,32,33,34,35,37,38,39,40,41,42,43,44],googl:[2,5,22,25,33,41,42],got:[2,7,27,40,41,42],gotcha:22,gotten:[24,42,45],gov:[7,27],gp:32,gpu:[2,14,22,25,33,38,39,41,42],grad:[3,14,22,24,38,39,42,43],grad_analyt:[14,38,39],grade:[29,45],gradient:[0,1,4,5,8,9,10,13,23,24,25,33,34,40,43,45],gradient_bia:[24,42,43],gradient_desc:[4,22,38,43],gradient_kernel:43,gradient_weight:[24,42,43],gradientboostingclassifi:11,gradientboostingregressor:11,gradients_of_discrimin:5,gradients_of_gener:5,gradients_util:[4,5,43,44],gradienttap:5,gradual:[2,15,41,42],grai:[5,7,27,43],graph:[2,10,12,13,14,37,38,39,40,41,42,45],graph_from_dot_data:[10,45],graph_funct:[4,5,43,44],graphic:[1,2,10,33,41,42,44,45],grasp:[1,33],gray_r:[2,4,40,41,42,43],grayscal:[4,43],great:[6,14,37,38,42,43],greater:[2,8,30,37,40,41,42,44],greatli:[14,38,39],greedi:[10,37,44,45],green:[1,4,10,30,43,45],gregor:[24,42],grei:5,grid:[2,4,7,8,9,13,30,34,35,36,39,40,41,42,43],gridsearch:[37,44],gridsearchcv:[37,44],grossli:[14,37,38],ground:[1,33],group:[0,1,7,8,10,15,25,27,28,29,31,33,36,45],groupbi:[1,33],grow:[2,4,10,11,40,41,42,43,44],growth:[1,33],gru:[5,44],guarante:[1,4,5,14,30,33,34,37,38,43,44],guess:[2,5,11,14,15,22,28,37,38,39,40,41,42,44,45],guestrin:11,guid:[2,41,42],guidelin:[21,38,39],h1:[3,42],h:[1,2,6,7,9,14,17,19,22,27,30,31,32,33,34,37,38,39,40,41,42,43],h_1:[3,14,37,38,42],h_2:[3,14,37,38,42],h_:[1,14,33,37,38],h_ind:43,h_m:11,h_stride:43,ha:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],haa:[31,33],habit:[1,34],had:[1,2,7,8,14,33,36,37,38,40,41,42],hadamard:[2,13,14,22,38,39,40,41,42],half:[2,9,10,41,42,45],half_dim:43,half_kernel_height:43,half_kernel_width:43,halv:[11,45],hand:[0,1,2,3,4,6,12,13,14,16,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44],handi:[0,4,27,28,43],handl:[1,2,3,6,10,12,25,35,41,42,45],handle_unknown:[10,45],handsid:[13,40],handwrit:[13,39,40],handwritten:[2,6,33,40,41,42,45],handwrittennot:[20,33,37,38],happen:[2,3,4,5,6,7,11,14,30,34,38,39,40,41,42,43,44,45],hard:[2,8,9,11,14,37,38,40,41,42,44,45],hardcopi:[25,33],harder:[1,2,34,41,42],harmon:[4,43,44],hasn:[2,24,40,41,42],hassl:[1,16,25,33],hast:[25,33],hasti:[1,7,16,17,18,19,27,29,32,33,34,35,36,37,45],hat:[1,2,6,7,8,10,11,12,13,14,18,19,26,27,34,35,36,38,39,40,43,45],have:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,34,35,36,37,38,39,40,41,42,43,44,45],haven:[2,40,41,42],he:[8,37],head:[1,5,11,30,34,44],header:[1,33,34],heads_proba:[11,45],health:[1,34],healthi:44,hear:[1,14,33,38,39],heart:[1,8,33,37],heatmap:[1,2,4,8,24,33,34,37,40,41,42,43,44],heavili:[1,33],heavisid:[2,40,41,42],height:[2,4,7,34,35,40,41,42,43],height_index:43,hein:[0,42],held:[14,22,38,39],help:[0,1,2,5,13,14,17,22,27,28,33,38,39,40,41,42,44],helper:[5,15],henc:[1,6,7,9,10,11,13,14,19,27,33,34,35,36,37,38,39,40,45],henrik:[31,33],her:[8,37],here:[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,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],hereaft:[1,9,13,33,40],hermitian:26,hessenberg:26,hessian:[1,3,6,14,17,22,35,39,42,44],heterogen:[10,11,45],hi:[8,37],hidden:[2,4,5,13,24,28,39,40],hidden_bia:[2,24,40,41,42],hidden_bias_gradi:[2,40,41,42],hidden_deriv:[24,42],hidden_func:[24,42],hidden_layer_s:[1,2,24,33,40,41,42],hidden_neuron:[5,44],hidden_nodes1:[24,42],hidden_nodes2:[24,42],hidden_weight:[2,24,40,41,42],hidden_weights_gradi:[2,40,41,42],hierarch:[6,34,35],high:[1,2,3,4,5,6,7,10,11,12,14,15,22,25,26,27,28,33,34,36,37,38,39,41,42,43,44,45],higher:[1,2,4,6,7,9,14,22,23,27,28,33,34,35,36,37,38,39,41,42,43,45],highest:[2,3,40,41,42,44],highli:[0,1,4,5,11,19,25,26,28,32,33,34,35,36,45],highwai:[1,34],hing:9,hint:[14,17,28,34,37,38],hip:25,hire:[1,33],hist:[5,7,8,30,36,37,44],histogram:[1,7,8,30,34,37,44],histor:[8,12,37],histori:[4,5,13,39,40,43,44],histplot:34,hit:44,hitherto:[6,35],hjorth:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],hobbi:30,hoc:[6,34],hochreit:44,hoff:32,hold:[2,4,7,14,15,22,24,36,37,38,39,40,41,42,43],holder:[1,33],holm:42,holomorphic_grad:[3,14,39],home:[1,34],homepag:[0,27,28,33],homework:[7,14],homogen:[2,4,10,11,14,22,38,39,41,42,43,45],honchar:[3,42],hop:43,hopefulli:[1,12,30,33],horizont:[12,43],hors:[4,8,37,43],hot:[2,10,40,41,42,43,45],hour:[2,25,29,30,31,33,36,40,41,42],house_pric:34,how:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,24,25,26,27,28,30,33,34,35,36,38,39,40,41,42,43,44],howev:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],hspace:[0,1,5,9,11,30,33,45],hstack:[2,24,34,41,42,43],htf:[29,33],html:[1,8,12,18,20,25,27,29,31,32,33,34,37,40,41,42,44],http:[0,1,4,5,7,8,12,14,18,20,21,22,25,26,27,28,29,31,32,33,34,35,37,38,39,40,41,42,43,44],huang:[1,33],huber:[1,33],huge:[2,4,5,25,40,41,42,43,44],human:[1,2,4,7,10,13,33,34,35,39,40,41,42,43,45],humid:[10,45],hundr:[2,41,42,44],hungri:[2,41,42],hybrid:29,hydrogen:[1,33],hyper:[22,28],hyperbol:[2,5,13,41,42,44],hyperparam:9,hyperparamet:[4,5,6,7,10,14,18,24,33,34,35,36,37,38,39,43,44,45],hyperplan:12,hz:[4,5,43,44],i0:[1,33],i1:[1,7,9,13,33,34,35,36,39,40],i2:[1,9,13,33,39,40],i3:[1,13,33,39,40],i5:[1,33],i:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,31,33,34,35,36,37,38,39,40,43,44,45],i_1:[6,7,35,36,43],i_2:[6,7,35,36,43],i_:[14,37,38,43],i_j:43,ian:32,ic:[2,28,40,41,42],id3:45,id:[8,14,37,38],ida:[31,33],idea:[0,1,2,3,4,5,7,10,11,13,14,26,27,28,33,34,35,36,37,38,39,40,41,42,44,45],ideal:[1,3,7,9,14,24,30,33,34,36,39,42],idem:[7,36],ident:[6,7,13,14,18,24,26,27,34,38,39,40,42,43],identical:[35,36],identifi:[1,2,8,10,12,13,14,15,33,34,37,38,39,40,41,42,43,44,45],idx:[],ieor:30,ifft2:43,ifi:[32,42],ifs:[25,33],ignor:[1,2,4,10,24,34,41,42,43,45],ii:[24,26,30,43,44],iii:[24,26,33,43],ij:[1,2,4,7,9,13,15,17,19,26,27,30,33,34,35,36,39,40,41,42,43],ik:[1,26,33,34],ill:44,illustr:[6,8,11,13,14,15,25,33,36,37,38,44,45],ilsvrc:[38,39],im:7,imag:[2,4,5,7,10,12,13,15,24,28,32,33,39,40,41,42,45],image_at_epoch_:5,image_batch:5,image_height:[4,43],image_of_cute_dog:43,image_path:[1,7,8,10,33,34,36,37,45],image_shap:43,image_width:[4,43],imageio:[7,27,43],imagenet:33,images_from_seed_imag:5,imagin:[2,41,42],img:43,img_fft:43,img_height:43,img_path:43,img_width:43,immedi:[1,4,5,7,16,25,33,43,44],imper:43,implement:[0,1,3,4,5,6,7,9,10,11,12,13,14,15,18,22,23,24,27,28,30,33,34,35,36,37,38,39,43,45],impli:[4,6,7,8,14,26,34,35,36,37,38,43],implicit:[4,43],implicitli:[12,30],importantli:[4,43],impos:[1,7,12,13,33,39,40],imposs:[1,6,33,34],impress:[1,13,24,33,39,40,41,42],improv:[0,1,5,6,10,11,12,14,22,27,28,34,39,44,45],impur:[10,45],imread:[7,27,43],imshow:[2,4,5,7,27,40,41,42,43],in1:3,in2:3,in3050:[32,33],in3310:33,in4080:[32,33],in4300:[32,33,45],in4310:32,in5400:4,in5550:32,in_out_neuron:[5,44],inaccur:[14,37,38],inact:[13,39,40],inadequ:[1,33],inbetween:43,inch:[7,34,35],includ:[0,1,2,3,4,5,6,7,8,12,13,16,17,18,21,23,25,27,28,30,31,32,33,34,35,36,40,41,42,43,44],include_bia:[7,10,36,45],inclus:[18,41],incom:[13,39,40],inconveni:43,incorpor:43,incorrect:[2,40,41,42,44],incorrectli:44,incoveni:9,increas:[0,1,2,4,5,6,7,8,9,10,12,13,14,22,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],increasingli:30,increment:38,ind:7,inde:[1,3,5,6,7,14,33,34,42],indefinit:5,independ:[1,6,7,8,9,13,14,30,33,34,37,38,39,40],index:[1,2,4,5,11,15,25,26,28,30,32,33,34,40,41,42,43],index_col:[1,33],indic:[1,2,4,5,6,7,10,11,12,14,17,22,24,27,28,33,34,38,39,40,41,42,43,44],indispens:[7,36],individu:[2,7,8,11,13,30,33,34,36,37,39,40,41,42,44,45],indu:[1,34],indx1:[3,42],indx2:[3,42],indx3:[3,42],indx:26,ineffici:[4,14,38,39,43],inequ:[9,14],inequaltii:[37,38],inertia:[14,22,38,39],inf1000:[25,33],inf1100:[25,33],inf1100l:[25,33],inf1110:[25,33],inf3000:33,infeas:[10,43,45],infer:[1,2,5,7,32,33,36,40,41,42,43],infer_nrow:[1,33],inferenc:[2,41,42],infil:[1,7,8,10,33,36,37,45],infin:[6,7,8,12,19,34,35,36,37],infinit:[4,43],infinitesim:30,influenc:[7,11,36,37,45],influenti:[2,40,41,42],info:33,inform:[0,1,2,4,5,7,10,12,13,14,15,22,23,26,27,28,32,33,36,37,38,39,40,41,42,43,44,45],infti:[4,7,14,30,36,37,38,43],ingeni:[14,37,38,39],ingrad:[],ingredi:[1,10,33,45],inher:[7,36],inherit:[26,33,43],init:[24,42,43],initi:[0,1,2,3,7,11,14,15,24,26,28,30,33,36,37,38,39,40,41,42,43,45],initial_epoch:[4,5,43,44],initialis:43,inititi:[24,42],inject:15,inlin:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],inner:[1,14,34,38],inp:[5,44],inplac:[14,38,39],input:[0,1,2,4,5,6,7,8,9,10,11,13,14,15,16,22,24,27,28,30,33,34,35,36,37,38,39,40,41,43,45],input_channel:43,input_channel_index:43,input_dim:[2,41,42],input_grad:43,input_index:43,input_map:43,input_nod:[24,42],input_shap:[4,5,43,44],inputs:[2,41,42],inputs_shuffl:[1,2,34,40,41,42],insert:[4,6,7,9,11,30,34,35,36,43,45],insid:[1,5,8,34,37,44],insight:[1,2,6,22,23,25,28,33,34,35,36,41,42],insightful:43,insist:[7,14,34,35,38],inspect:[37,44],inspir:[1,2,13,28,33,39,40,41,42],instabl:[3,42],instal:[1,2,6,7,10,16,41,42,45],instanc:[1,2,3,5,7,10,12,14,24,33,34,36,37,38,40,41,42,43,45],instanti:[11,43,45],instead:[1,2,3,4,5,6,7,9,10,12,14,15,22,26,27,30,33,34,36,37,38,39,40,41,42,43,44,45],institut:[2,40,41,42],instruct:[1,2,16,17,33,41,42],insuffici:45,int32:[11,45],int64:34,int64index:33,int_0:30,int_:[4,7,30,36,43],int_a:30,intak:[1,34],integ:[2,3,14,15,24,26,30,33,38,39,40,41,42],integer_vector:[2,40,41,42],integr:[4,7,30,33,36,43],intellectu:33,intellig:[1,15,32,33],intend:[11,33,43,45],intens:[2,28,41,42],intention:15,interact:[0,1,7,10,13,25,27,28,33,39,40,43,44,45],intercept:[1,7,9,12,14,17,27,33,35,36,37,38,44],intercept_:[1,7,9,10,14,33,34,35,36,37,38,45],interceptol:36,interceptridg:36,interchang:[6,13,26,35,36,39,40],interconnect:[2,41,42],interest:[0,1,2,3,4,5,6,7,8,9,10,13,22,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],interfac:[1,2,24,26,34,40,41,42,43],interior:[1,10,33,45],intermedi:[26,34],intern:[2,11,13,39,40,41,42,45],interpol:[2,4,5,7,13,27,39,40,41,42,43],interpr:[6,34,35],interpret:[0,1,2,7,10,11,13,14,18,20,26,27,28,30,40,41,42,43,44,45],interv:[1,4,6,7,8,14,19,27,30,33,34,35,37,38,43],intial:[14,37,38],intiat:43,intiti:43,intract:[1,5,34],intric:43,intricaci:43,intrins:[4,12,26,30,33,43],intro:[25,32,33,42],introduc:[1,2,6,7,9,11,13,18,26,27,30,33,36,37,40,41,42,43,44],introduct:[2,3,5,14,18,21,32,34,37,38,42,44],introductori:[1,5,26,32,33,34],intuit:[1,6,7,9,13,14,22,27,33,35,36,38,39,40,41,42],intuiton:43,inv:[1,6,14,22,33,34,35,37,38,39],invalid:[2,9,40,41],invalu:[1,14,16,25,33,37,38],invari:[2,40,41,42,43],invd:[6,35],inver:[9,39,40],invers:[1,4,7,14,16,17,18,22,23,27,28,33,34,37,38,39,43],inverse_transform:9,invert:[1,6,8,11,14,22,33,35,37,38,39,45],invh:[14,22,38,39],invok:[1,9,34],involv:[1,3,7,8,12,13,34,36,37,38,39,40,42,43],io:[1,18,20,25,27,29,31,32,33,34,42],ion:39,ip:[1,9,30,33],ipca:12,ipykernel_10904:[],ipykernel_10962:[],ipykernel_11016:[],ipykernel_11057:[],ipykernel_11068:[],ipykernel_11090:[],ipykernel_11106:[],ipykernel_11118:[],ipykernel_11123:[],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_19431:[],ipykernel_19440:[],ipykernel_31563:[],ipykernel_31624:[],ipykernel_31672:[],ipykernel_31707:[],ipykernel_31718:[],ipykernel_31736:[],ipykernel_31749:[],ipykernel_31761:[],ipykernel_31766:[],ipykernel_31871:[],ipykernel_74401:[],ipykernel_74620:[],ipykernel_74630:[],ipykernel_8624:2,ipykernel_8674:7,ipykernel_8738:14,ipykernel_87501:[],ipykernel_8779:27,ipykernel_8790:33,ipykernel_8815:36,ipykernel_8843:38,ipykernel_8855:40,ipykernel_8861:41,ipykernel_96069:[],ipynb:[25,33],ipython:[0,1,6,8,10,12,15,16,25,27,28,33,34,37,45],iq:[7,36],iri:[9,10,45],irreduc:[7,36],irrelev:[6,34],irrespect:[1,33],irvin:[0,28],isbox:[3,14,39],iseffici:[38,39],isinst:43,isn:[6,35,36,43],isnan:[24,42,43],isnul:[1,34],isomap:12,isotop:[33,36,37,38,40,41,42],issu:[2,10,26,34,35,41,42,43,45],it_arrai:[14,38],item:[1,14,33,38,39,43],items:[26,33],iter:[2,3,4,5,7,8,9,12,14,15,22,24,30,36,37,39,40,41,42,43,44],its:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,24,25,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44],itself:[0,6,7,13,20,27,28,30,34,35,36,40,43],iv:[24,43],ix:[24,42,43],j1:26,j:[1,2,3,4,5,6,7,9,10,12,13,14,15,17,18,19,20,24,26,27,30,32,33,34,35,36,37,38,39,40,41,42,43,45],j_:7,j_lasso_sk:7,j_ridge_sk:7,j_sk:7,jackknif:[7,25,33,36],jacobian:[3,14,37,38,39],jacobian_shap:3,jakobsen:[31,33],jason:5,jax:[23,25,28,33],jax_descend_i:22,jax_descend_x:22,jax_enable_x64:22,jax_grad:22,jensen:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],jerom:[19,27,32],ji:[13,26,40],jit:[14,38,39],jj:[1,6,7,33,35,36],jk:[1,2,7,13,26,33,39,40,41],jl:[1,33],jm:26,jmlr:42,jnp:[14,22,38,39],job:[3,9,11,42],join:[1,5,7,8,10,33,34,36,37,45],joint:[5,6,35,36],jpg:43,judg:[14,37,38],judgement:[7,27,45],julia:[25,26,27],jump:[27,30],junk:5,jupit:33,jupyt:[1,16,20,25,27,32,33,36],just:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],justif:[1,33],justifi:[4,11,43],k0:[8,37],k1:[8,37],k:[1,2,4,6,7,8,9,10,11,12,13,14,15,24,25,26,27,30,31,33,34,35,38,39,40,41,42,43,45],k_1:43,k_2:43,k_half_height:43,k_half_width:43,k_j:43,k_n:43,k_x:43,k_y:43,kaggl:[0,7,27,28],kajda:[24,42],kappa_d:30,karl:[31,33],karush:9,kate:33,katrin:[31,33],keep:[0,1,2,5,6,7,12,14,15,26,27,28,33,34,35,36,37,38,39,41,42,43,44],keepdim:[2,7,11,24,26,36,40,41,42,43,45],kei:[1,2,4,7,13,24,34,39,40,41,42],kept:[5,7,15,36,44],ker1:43,ker2:43,ker_coef:43,kera:[0,1,5,25,27,28,33,44],kernel:[1,2,4,25,33,34,41,42],kernel_feature_maps_index:43,kernel_fft:43,kernel_height:43,kernel_input_channels_index:43,kernel_regular:[2,4,41,42,43],kernel_reshap:43,kernel_s:5,kernel_width:43,kernelpca:12,kev:[1,33],kevin:[32,33],keyboardinterrupt:[3,4,5,24,42,43,44],keyword:[7,14,24,26,27,33,38,42],kfold:[7,36,37],kg:[2,40,41,42],ki:26,kick:[2,14,38,39,41,42,45],kiener:[3,42],kilomet:[7,34,35],kind:[1,3,4,5,9,13,14,15,33,34,38,39,40,42,43],kj:[7,13,26,34,35,36,40,41],kjm:[25,33],kkt:9,kl:30,km:[13,33,39,40],kmean:15,kmeanspoint:15,kn_k:15,know:[1,2,3,6,7,9,14,25,33,34,35,37,38,39,41,42],knowledg:[1,25,33],known:[0,2,4,5,6,7,8,9,10,13,26,27,28,30,32,34,35,36,37,39,40,41,42,43,44,45],kondev:[1,33],kp:30,kpca:12,kristin:[0,42],kroneck:15,kuhn:9,kumar:42,kvalsund:[31,33],kwarg:[1,3,4,5,14,24,33,39,42,43,44],kwd:[1,4,5,33,43,44],kwown:[1,33],l0:[8,37],l1:[1,2,4,8,33,37,41,42,43],l1_l2:[2,4,41,42,43],l1regl:6,l2:[2,4,40,41,42,43],l:[0,1,2,3,4,6,7,8,9,11,12,13,14,20,24,26,27,30,33,34,36,37,38,39,41,42,43],l_1:[8,37],l_2:[8,14,28,37,38],l_:26,l_j:[13,40],l_ja:[24,42],la:[14,38],la_i:[13,40],la_k:[13,40,41],lab:[21,25,27,33,38,39,42,43],label:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,22,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],label_prob:[38,39],labelencod:[8,11,37,44,45],labels:[7,9,10,45],labels_shuffl:[1,2,34,40,41,42],laboratori:[29,34,35,43,44,45],lack:[1,33],lagari:[3,42],lagrang:[9,12],lam:[24,42,43],lambda:[1,2,3,4,6,7,8,9,11,13,14,18,19,22,24,27,28,30,33,34,35,36,38,39,40,41,42,43,45],lambda_0:12,lambda_1:[6,9,12,34],lambda_2:[9,12],lambda_:12,lambda_i:[9,12],lambda_iy_i:9,lambda_jy_iy_j:9,lambda_k:9,lambda_n:[6,9,34],lamda:[2,41,42],land:[1,9,34],landmark:9,landscap:[14,22,37,38,39],langl:[1,7,12,30,33,34],languag:[0,1,2,5,9,16,25,26,27,28,32,33,41,42,44],lapack:[26,33],laplac:[6,35,36],laptop:25,larg:[0,1,2,3,5,6,7,9,10,11,12,14,16,25,26,27,30,32,33,34,36,37,38,39,40,41,42,43,45],larger:[1,4,6,7,9,11,12,14,18,30,33,34,35,36,37,38,39,43,45],largest:[5,9,12,44],larn:43,lasso:[0,1,8,25,33,44],lasso_sk:7,last:[1,2,3,4,5,6,7,8,9,10,11,13,14,16,18,19,23,24,26,27,30,31,33,35,38,40,41,42,43,44,45],latent:5,latent_dim:5,latent_point:5,latent_space_value_rang:5,later:[0,1,2,5,7,8,9,13,14,15,16,24,25,27,28,33,37,38,39,40,41,42,43,44],latest:[5,25],latest_checkpoint:5,latex:33,latter:[1,4,7,8,9,12,14,17,18,26,27,30,33,34,35,36,37,38,39,43,44],lattic:[13,39,40],law:[1,33,45],lax_numpi:22,layer:[1,5,14,22,24,28,33,38,39,44],lbfg:[8,10,11,12,37,44,45],lcc:[6,7,35,36],lda:12,ldot:[1,7,12,20,27,33,36,37,43],le:[6,8,11,14,18,22,30,34,35,37,38,39,45],lead:[1,2,4,6,7,8,9,10,11,12,13,14,17,18,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],leaf:[10,45],leaki:[2,28,41,42],leakyrelu:5,lear:[14,37,38],learn:[4,5,6,7,8,9,10,11,13,19,23,26,29,31,32,43],learnabl:[4,43],learner:11,learnig:33,learning_r:[4,9,11,22,43,45],learning_rate_init:[1,2,24,33,40,41,42],learning_schedul:[14,22,38,39],learnt:[0,27,28],least:[0,1,8,9,11,12,16,17,18,20,22,23,25,26,28,30,36,37,43],leat:[14,22,38,39],leav:[1,2,4,6,7,10,12,33,35,36,37,41,42,43,45],lectur:[0,1,2,6,11,12,13,14,16,18,22,23,25,26,27,28,29,31,32,38,39,45],lecture_11_backpropag:42,lecturenot:[1,18,20,25,27,32,33],left:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,17,18,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],leftarrow:[9,13,40,41],legend:[1,3,4,5,6,7,8,9,10,11,14,33,34,35,36,37,38,39,42,43,44,45],len:[1,2,3,4,5,6,7,9,10,11,12,13,24,26,33,34,35,36,38,39,40,41,42,43,44,45],len_index:[1,33],length:[0,1,2,3,4,5,9,10,14,17,25,33,34,37,38,39,40,41,42,43,44],length_of_sequ:[5,44],leq:[0,1,6,8,9,14,15,18,30,33,34,35,37,38],less:[1,2,4,5,6,7,9,10,14,25,30,33,34,35,36,37,38,39,41,42,43,44,45],lessen:[2,41,42],let:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,24,26,30,33,34,35,36,37,38,39,40,41,42,43,45],letter:[1,17,26,30,33,34],level:[0,1,2,6,7,10,25,26,27,28,29,31,33,34,36,41,42],lfloor:43,li:[9,12,33],lib:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],liblinear:[9,11,45],librari:[0,1,2,3,4,5,6,7,10,11,12,16,22,23,26,27,28,30,32,34,35,36,37,40,41,42,43,44,45],licens:[0,1,2,16,25,27,28,33,36,41,42],lie:[1,7,12,30,34,36],life:[1,2,9,13,33,39,40,41,42],lifetim:[14,38,39],like:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],likelihood:[1,2,6,10,33,34,38,39,40,41,42,45],lim_:30,lima:[31,33],limit:[0,1,6,7,8,9,12,13,22,26,27,28,33,34,40,44],lin_clf:9,lin_model:[1,34],lin_reg:[10,45],linalg:[1,3,6,7,9,12,14,22,26,30,33,34,35,36,37,38,39,40,42],line1:9,line2:9,line2d:[14,22,38],line3:9,line:[0,1,3,4,5,7,9,10,11,12,14,16,22,24,27,33,34,35,36,37,38,39,42,43,44,45],linear:[0,2,4,6,7,8,10,11,12,13,18,19,22,24,25,27,30,36,38,39,40,41,42,43,45],linear_model:[1,6,7,8,9,10,11,12,14,33,34,35,36,37,38,39,40,44,45],linear_regress:[7,24,36,42],linearli:[6,34],linearloc:[7,14,27,37,38],linearregress:[1,7,8,10,33,34,35,36,37,45],linearsvc:9,lineat:35,liner:[2,4,40,41,42,43],linerar:[11,45],linewidth:[1,3,5,7,9,10,11,27,36,42,44,45],link:[0,1,5,10,13,25,27,28,31,33,40,41,44,45],linlag:[6,35],linpack:[26,33],linreg:[1,33],linspac:[1,3,4,5,7,9,10,11,14,16,17,22,26,30,33,34,35,36,38,39,42,43,45],linu:5,linux:[0,1,2,16,25,27,33,41,42],liquid:[1,33],list:[0,1,2,3,4,5,10,24,25,27,28,33,34,38,41,42,44,45],listcomp:3,listedcolormap:[10,11,45],literatur:[0,2,8,15,32,36,37,41,42,43,44],littl:[2,4,10,13,40,41,42,43,44,45],live:9,ll:[1,30,33,34],lle:[1,34],lloyd:[5,15],lmb:[1,3,6,7,35,36,37,42,44],lmbd:[1,2,4,24,33,40,41,42,43],lmbd_val:[1,2,4,24,33,40,41,42,43],lmbda:[14,37,38],ln:[2,14,37,38,40,41],load:[1,2,5,7,8,10,11,27,34,37,41,42,43,44,45],load_boston:[1,34],load_breast_canc:[2,8,10,11,12,24,37,41,42,44,45],load_data:[4,5,43],load_digit:[2,4,24,40,41,42,43],load_iri:[9,10,45],loc:[1,4,7,8,9,10,11,33,36,37,43,44,45],local:[1,2,3,4,5,8,13,14,33,34,37,38,39,40,41,42,43,44],locat:[3,4,9,42,43],lock:[4,5,43,44],log10:[1,6,7,24,35,36,37,42,43,44],log:[0,1,2,3,5,6,7,8,10,11,12,14,24,26,27,28,33,34,35,36,37,38,39,40,41,42,43,45],log_:[1,33],log_clf:[11,45],logarithm:[1,6,8,26,33,35,36,37],logbook:[0,27,28],logic:[1,2,10,33,41,42,45],logist:[0,1,2,3,9,10,11,12,13,14,22,24,25,34,43,44,45],logistic_predict:[38,39],logistic_regress:[24,42],logisticregress:[8,10,11,12,37,39,40,44,45],logit:[8,37],logreg:[8,10,11,12,37,39,40,44,45],logspac:[1,2,4,6,7,24,33,35,36,37,40,41,42,43,44],longer:[3,4,9,11,15,26,28,30,33,42,43,45],loocv:[7,36,37],look:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,19,22,24,26,27,28,30,33,34,35,36,37,38,39,41,42,43,44,45],loop:[2,5,7,11,13,15,24,25,26,33,36,40,41,42,43,45],lose:[2,40,41,42],loss:[0,1,2,4,5,6,7,8,9,11,12,14,26,27,28,33,35,36,39,40,41,42,43,44,45],loss_fil:5,lossfil:5,lost:5,lot:[1,2,5,7,24,34,36,38,39,41,42,44],low:[1,7,10,11,12,27,28,33,34,36,43,45],lower:[1,2,4,7,10,11,17,24,26,34,41,42,43,45],lowercas:[26,33],lowest:[10,14,30,38,39,44,45],lr:[2,4,5,11,41,42,43,45],lrelu:[24,42,43],lstat:[1,34],lstm:5,lstm_2layer:[5,44],lstsq:[1,33,34],lt:[7,36],lu:[1,6,33,34],lubksb:26,luckili:[3,42],ludcmp:26,lux:26,lvert:[2,40,41,42],lw:[1,33],m1:[4,5,43,44],m:[1,2,3,4,6,7,9,10,11,12,13,14,22,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45],m_1:15,m_:[10,13,40,45],m_h:[1,33],m_k:15,m_l:[13,40],m_n:[1,33],m_p:[1,33],m_t:[14,38,39],ma:12,machin:[2,4,5,6,7,8,10,11,12,13,16,22,23,26,29,32,34,35,36,39,40,41,42,43,44,45],machinelearn:[1,7,18,20,21,25,27,29,31,32,33,34,37,38,39],mackai:32,made:[0,1,2,4,5,6,7,8,10,12,13,19,27,28,33,34,37,39,40,41,42,43,44,45],mae:[1,33],magic:5,magnitud:[2,7,8,14,34,35,37,38,39,40,41,42,44],mai:[0,1,2,3,4,6,7,8,9,10,12,13,14,19,22,23,24,25,26,27,28,30,34,35,36,37,38,39,40,41,42,43,44,45],mail:[29,31],main:[1,2,4,5,6,7,8,10,26,27,28,32,33,34,37,41,42,43,45],mainli:[0,1,6,7,8,10,33,34,35,36,37,45],maintain:[7,34,36,43,44],major:[2,7,10,11,14,26,33,36,37,38,39,40,41,42,43,45],make:[2,3,4,5,6,7,8,9,12,13,14,22,24,25,26,27,28,30,32,35,36,37,38,39,40,41,42,43,44],make_axes_locat:7,make_classif:[39,40],make_moon:[9,10,11,45],make_pipelin:[1,7,11,34,36,45],make_vjp:[3,14,39],makedir:[1,7,8,10,33,34,36,37,45],makeplot:[1,33],malcondit:26,malign:[2,8,10,37,41,42,44,45],mammographi:[6,35,36],manag:[0,1,3,4,16,25,27,33,42,43],mandatori:[31,33],mani:[0,1,2,4,5,6,7,8,9,10,12,14,15,22,23,24,25,26,27,28,30,32,33,34,35,36,37,38,39,41,42,43,44],manifold:12,manner:[4,43],manual:[7,34,35,37,44],map:[1,2,3,7,8,9,12,13,15,27,30,33,37,39,40,41,42,43],margin:[1,6,9,33],marit:[1,33],mariu:42,mark:[33,43],markedli:43,marker:[1,8,22,26,33,34,37],markov:[25,33],marsaglia:30,mass:[1,2,6,14,34,38,39,40,41,42],massag:[1,33],masses2016:[1,33],masses2016ol:[1,33],masses2016tre:1,masseval2016:[1,33],master:[7,20,21,27,29,31,33,37,38,39,42],mat1100:[25,33],mat1110:[25,33],mat1120:[25,33],mat:[25,33],match:[1,2,5,6,14,15,33,34,37,38,39,41,42],materi:[5,6,8,14,18,26,31,38,39,40,41,45],math:[4,8,13,14,22,24,26,30,32,33,36,37,38,39,40,42,43],mathbb:[1,5,6,7,8,9,12,13,14,15,18,19,20,26,27,30,33,34,35,36,37,38,39,40,43],mathbf:[1,6,7,8,9,14,19,20,22,26,27,33,34,35,36,37,38,39],mathcal:[2,6,7,8,14,20,27,35,36,37,38,40,41,42],matheemat:4,mathemat:[1,7,12,13,14,18,25,26,30,32,33,35,36,37,41],mathemati:33,mathrm:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],matmul:[2,3,6,24,35,40,41,42],matnat:32,matplotlib:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],matplotlibdeprecationwarn:[7,14,27,38],matric:[1,2,4,5,7,8,9,12,14,17,18,24,25,34,37,38,41,42,43,44],matrix:[0,1,3,4,5,7,8,9,11,14,16,17,18,19,20,22,23,24,27,28,30,36,43,45],matshow:[2,41,42],matter:[3,4,14,34,37,38,39,42,43],max:[1,2,3,4,5,10,11,13,14,22,24,31,33,37,38,39,40,41,42,43,45],max_depth:[1,10,11,45],max_diff1:[3,42],max_diff2:[3,42],max_diff:[3,42],max_h:43,max_it:[1,2,8,9,12,14,24,33,37,38,39,40,41,42,44],max_iter:15,max_leaf_nod:[11,45],max_pooling2d_49:43,max_pooling2d_50:43,max_queue_s:[4,5,43,44],max_sampl:[11,45],max_w:43,maxdegre:[1,7,11,34,36],maxdepth:[11,45],maxim:[2,5,6,8,9,12,35,36,37,40,41],maximum:[1,2,3,4,6,8,9,10,11,14,15,24,33,34,38,39,40,41,42,43,45],maxpolydegre:[6,7,35,36,37,44],maxpoolin:43,maxpooling2d:[4,43],mbox:[6,7,19,27,34,35,36],mccorduck:33,mcculloch:[13,39,40],md:[12,21,27,38,39],mdoel:[5,44],mean:[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,30,36,38,39,40,41,42,43,44,45],mean_absolute_error:[1,33],mean_divisor:15,mean_i:30,mean_matrix:15,mean_squared_error:[1,5,7,8,11,33,34,36,37,44],mean_squared_log_error:[1,33],mean_vector:15,mean_x:30,meaning:[1,5,8,33,37],meansquarederror:[1,33],meant:[3,4,8,11,14,37,38,39,43],measur:[1,2,3,6,7,10,12,13,15,20,27,28,30,33,34,35,36,40,41,42,43,45],mechan:[0,1,5,30,33,42,44],median:[1,33,34],medicin:[13,39,40],medium:[5,9,14,28,38,39,43,44],medv:[1,34],meet:[1,31],mehta:[1,28,33,34,35],member:45,memori:[4,5,12,13,14,22,26,33,38,39,40,43],mention:[0,1,13,14,27,28,30,33,37,38,39,40],mere:[1,16,28,33,43],meshgrid:[3,6,7,9,10,11,12,24,27,34,42],messag:[6,14,38,39,43],messi:[3,42],met:[1,4,9,33,34,43],metal:[4,5,43,44],meteorolog:[0,10,45],meter:[7,34,35],method:[0,1,2,3,4,5,6,8,9,12,13,15,17,18,19,20,23,25,26,28,30,32,33,34,35,40,41,43,44],metion:[7,27],metric:[1,2,4,7,8,10,11,15,16,17,24,33,34,36,37,40,41,42,43,44,45],metropoli:[25,33],mev:[1,30,33],mgd:[14,38,39],mglearn:[25,33],mgrid:[14,38,43],mhjensen:[2,3,4,7,8,9,12,22,24,34,37,40,41,42,43,44],mi:[11,45],mia:[31,33],michael:[28,40,41,42,43],michigan:[33,34,35,36,37,38,39,40,41,42,43,44,45],microsoft:32,mid:[2,40,41,42],midel:[5,44],midnight:[17,18,19,20,21,22,23,24],midpoint:[10,45],might:[1,2,3,5,7,10,14,34,35,37,38,39,41,42,43,45],mild:[10,45],millimet:[7,34,35],million:[1,33,34,38,39],mimic:[13,39,40],min:[1,3,6,9,10,33,42,45],min_:[1,3,6,15,18,33,34,35,42],min_samples_leaf:[10,45],mind:[1,7,14,27,33,34,35,36,37,38,43],mindboard:[5,44],mine:[25,33],mini:[2,12,13,14,22,23,28,37,40,41,42],minibatch:[2,12,14,24,40,41,42,43],minibathc:[14,38,39],miniforge3:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],minim:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,22,24,27,34,35,36,38,39,40,41,43,44,45],minima:[1,2,8,14,33,37,38,39,40,41,42],minimum:[1,2,3,7,9,10,12,14,34,36,37,38,39,40,41,42,45],minmaxscal:[1,24,34,42],minor:[7,14,27,30,38,43],minst:[2,41,42],minu:[8,37],mirror:[10,43,45],misc:[7,27],misclassif:[9,10,11,45],misclassifi:[9,11,45],miser:1,mismatch:[2,41,42],miss:[1,8,11,34,44,45],mistak:5,mit:[32,43,44],mix:[2,3,33,41,42],mixtur:[14,22,38,39],mk:[10,26,45],mkdir:[1,7,8,10,33,34,36,37,45],ml:[0,1,2,11,14,26,27,28,34,37,38,39,41,42],mlab:30,mle:[6,8,37],mlp:[2,39,41,42],mlpclassifi:[2,24,39,40,41,42],mlpregressor:[1,33],mm:26,mn:[13,30,39,40],mnist:[2,12,24,28,40,41,42],mnist_784:43,mod:30,mode:[24,29,31,33,42,43],model:[3,4,6,8,9,10,11,12,14,15,16,17,19,20,22,24,25,27,30,32,34,35,36,37,38,44],model_select:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],moder:[11,45],modern:[1,7,8,25,33,36,37],modif:[3,13,14,38,39,40,42,45],modifi:[1,2,4,6,8,9,11,13,14,33,34,35,37,38,39,40,41,42,43,45],modul:[1,8,12,26,33,35,37,43,44],modular:[30,43],modulo:30,moe:[12,34],moment:[6,7,14,22,24,30,35,36,42,43],moment_correct:[24,42,43],momentum:[23,24,28,42,43,44],momentum_schedul:[24,42,43],monitor:[14,22,38,39],monochrom:43,monoton:[6,13,30,35,36,39,40],mont:[1,7,25,30,32,33,36],moor:[6,7,35],more:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,19,23,24,25,28,30,40,44],moreov:[1,4,33,43],morten:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],most:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,25,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],mostli:[2,12,41,42],motion:[1,14,33,38,39],motiv:[2,5,41,42],move:[1,5,6,7,8,10,13,14,15,22,24,27,30,33,34,35,36,37,38,39,40,42,43,45],mpl:[1,8,33,37],mpl_toolkit:[3,7,14,27,37,38,42],mplot3d:[3,7,14,27,37,38,42],mplregressor:[2,40,41,42],mse:[0,1,5,6,7,10,11,16,17,18,20,24,27,28,33,34,35,36,37,42,44,45],mse_simpletre:[11,45],mselassopredict:[6,35],mselassotrain:[6,35],mseownridgepredict:[7,35],msepredict:[6,35],mseridgepredict:[1,6,7,35,37,44],msetrain:[6,35],msg:[1,33,34],msle:[1,33],mt:[8,13,37,39,40],mu0:30,mu1:30,mu2:30,mu:[1,7,12,14,30,33,36,38,39],mu_1:34,mu_:[7,30,34,35,36],mu_i:[7,34,35,36],mu_n:12,mu_x:30,much:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,26,27,30,33,34,35,36,38,39,40,41,42,43,44,45],multi:[1,2,4,8,24,25,33,34,37,42,43],multiclass:[2,8,37,40,41],multidimension:[12,13,33,39,40],multilay:[2,41,42],multinomi:[8,37],multipl:[3,5,6,7,8,13,14,30,34,36,37,38,39,44],multipli:[4,6,7,12,14,24,26,30,34,35,36,38,42,43],multiplum:9,multivari:[1,3,11,12,25,30,33,42,45],multivariate_norm:[12,15],multiwai:45,murphi:[12,32,33,35],must:[1,2,3,6,7,9,11,13,14,15,30,33,34,36,37,38,39,40,41,42,43,45],mut_add:[],mutabl:[],mutat:[8,37],mutual:[2,4,7,14,36,37,38,41,42,43],mx_:30,myenv:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],myriad:[1,16,25,33],mz1:30,mz2:30,n1:26,n2:26,n:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],n_0:[13,30,39,40],n_:[2,3,4,9,13,30,39,40,41,42,43],n_boostrap:[7,11,36,45],n_bootstrap:[7,36],n_categori:[2,4,24,40,41,42,43],n_cluster:15,n_compon:12,n_epoch:[14,22,24,38,39,42,43],n_estim:[11,45],n_examples_to_gener:5,n_featur:[2,24,40,41,42],n_filter:[4,43],n_hidden:[3,42],n_hidden_neuron:[1,2,24,33,40,41,42],n_i:30,n_input:[1,2,4,24,34,40,41,42,43],n_instanc:[10,45],n_iter:[37,38,44],n_iter_i:[8,12,37,44],n_job:[11,45],n_k:15,n_l:[13,30,39,40],n_layer:[2,41,42],n_m:[10,45],n_neuron:[2,41,42],n_neurons_connect:[4,43],n_neurons_layer1:[2,41,42],n_neurons_layer2:[2,41,42],n_point:15,n_sampl:[7,9,10,11,15,36,39,40,45],n_split:[7,36,37],n_step:5,n_t:[3,42],n_x:[3,42],nabla:[2,14,37,38,40,41,42],nabla_:[3,14,22,37,38,39,42],nabla_w:[14,38,39],nafter:[24,42,43],nag:[14,38,39],naimi:[1,33],naiv:[8,37,43],naive_kmean:15,najafi:[31,33],nall:[1,33],name:[0,1,2,4,5,6,7,8,9,10,11,13,14,15,16,24,25,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],nameerror:[7,11,16,27,36,37,38],nan:[24,42,43],narrow:[14,38,39],nary_f:[3,14,39],nary_op_arg:[3,14,39],nary_op_kwarg:[3,14,39],nary_oper:[3,14,39],nation:[2,6,34,35,36,40,41,42,43,44,45],nativ:[25,33],natur:[0,1,2,5,9,10,13,14,27,28,30,32,33,37,38,39,40,41,42,44,45],navier:[13,39,40],nb:30,nb_:26,nbconvert:33,nd:15,ndarrai:[3,7,24,42,43],ndef:14,nderiv:[24,42,43],ne:[10,11,26,30,34,45],nearest:[2,4,7,12,40,41,42,43],nearli:[14,37,38],neat:33,neatli:[38,43],neccesari:[7,36],necess:[3,42,43],necessari:[1,2,4,5,9,15,24,33,40,41,42,43,44],necessarili:[1,5,12,30,33],necesserali:[6,35,36],necessit:43,neck:[8,37],need:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,23,24,26,28,30,34,35,36,37,38,39,40,41,42,43,45],neg:[1,2,4,6,7,8,11,14,26,30,33,35,36,37,38,39,40,41,42,43],neg_mean_squared_error:[7,36,37],neglect:30,neglig:30,neighbor:[4,7,12,43],neither:[5,14,38,39,43],neq:[14,15,30,37,38],nerual:[24,42],nervou:[13,39,40],nest:[3,10,13,39,40,45],nesterov:[14,38,39],net:[3,5,13,39,40,42,44],netlib:[26,33],network:[1,10,14,22,25,32,34,38,45],networkd:0,neural:[1,14,22,25,32,34,37,38],neural_network:[1,2,3,24,33,39,40,41,42],neuralnetwork:[2,40,41,42],neuralnetworksanddeeplearn:[40,41,42],neuron:[2,3,4,5,13,41,42,44],neutral:[1,33],neutron:[1,33],never:[2,4,5,7,10,30,36,40,41,42,43,44],new_box:[3,14,39],new_chang:[14,22,38,39],new_hobbit:33,new_root:[3,14,39],new_trac:[3,14,39],new_tracing_count:[4,5,43,44],new_windows_first_dim:43,new_windows_sec_dim:43,newaxi:[1,4,7,10,36,37,43,45],newli:[1,33],newton:[2,8,9,14,30,40,41],next:[1,2,3,4,5,6,7,9,10,14,15,22,23,24,33,34,35,37,38,40,41,42,43,44,45],next_guess:[14,38],next_input:[5,44],next_nod:43,nf8_grad:14,nfrom:14,ng:[2,40,41,42],ngini:[10,45],nhow:[24,42],ni:15,nice:[1,2,6,12,33,34,35,36,40,44],nielsen:[28,40,41,42,43],nimport:14,niter:[14,22,37,38,39],nitric:[1,34],nlambda:[1,6,7,35,36,37,44],nlp:32,nm:30,nm_n:[1,33],nmnm:43,nmse:[7,36],nn:[3,6,7,13,26,35,36,39,40,42],nn_model:[2,41,42],nnmin:[3,42],node:[2,3,4,10,11,13,24,28,39,40,41,42,43],node_constructor:3,node_index:43,nois:[1,5,6,7,9,10,11,14,16,17,20,27,33,34,35,36,37,38,44,45],noise_dimens:5,noisi:[2,7,20,27,36,40,41,42],non:[1,2,4,5,6,7,8,10,11,12,13,14,15,22,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],noncommerci:[0,28,36,42],none:[1,2,3,4,5,6,10,11,14,24,30,33,34,35,36,37,38,39,41,42,43,44,45],nonetheless:43,nonlinear:[4,7,9,10,12,13,36,39,40,43,45],nonneg:[7,10,14,36,37,38,45],nonparametr:7,nonsens:30,nonsingular:26,nonumb:[4,8,9,14,22,26,37,38,39,43],nonxla:[4,5,43,44],nor:[2,5,14,38,39,41,42,43],norm:[1,2,6,7,9,12,14,18,33,34,35,36,37,38,39,40,41,42],normal:[0,4,5,6,7,8,9,10,11,12,13,14,16,17,19,20,22,24,25,26,27,28,30,33,34,35,37,38,39,40,43,44,45],normali:[26,33],norvig:33,norwai:[0,7,27,28,33,39],notat:[1,3,6,7,14,15,22,30,33,34,35,36,38,42,43],note:[0,1,2,3,4,5,6,7,8,9,12,13,14,15,16,17,20,23,24,25,26,27,28,30,32,33,37,38,39,40,41,42,43,44,45],notebook:[0,1,2,4,10,16,25,27,28,33,36,40,41,42,43],notesexercise5week452022:33,notessep14:[20,37],notessep28:38,noth:[2,3,6,9,13,15,24,30,34,35,39,40,41,42,43],notic:[5,6,13,14,26,30,33,35,38,39,40,43],notimplementederror:[3,24,42,43],notion:[4,43],noutput:[24,42,43],nov:0,novel:[4,7,11,37,43],novemb:[2,24,29,31,33,41,42,45],now:[0,1,3,5,6,7,8,9,11,12,13,15,16,17,18,23,24,25,26,27,28,30,33,34,37,40,43,44,45],nowadai:[1,2,4,10,25,33,41,42,43,45],nox:[1,34],np:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],npr:[3,42],nprint:14,npv:44,nsampl:[7,10,36,37,45],nt:[3,42],nthi:[1,33],ntrained_model:7,nu:30,nuclear:[6,34],nuclei:[1,30,33],nucleon:[1,33],nucleu:[1,33],num:5,num_allow_arg:[1,33],num_coordin:[3,42],num_equ:[24,42,43],num_hidden_neuron:[3,42],num_it:[3,42],num_iter:22,num_neuron:[3,42],num_neurons_hidden:[3,42],num_not:[24,42,43],num_output:[4,5,43,44],num_point:[3,42],num_tre:11,num_valu:[3,42],number:[0,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,23,24,26,27,28,29,31,33,35,36,37,40,41,43,44,45],numberid:[8,37],numberparamet:[4,43],numer:[1,6,7,10,11,12,13,14,18,22,25,26,32,33,34,35,36,37,38,39,40,45],numpi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,24,25,27,30,34,35,36,37,40,41,42,43,44,45],numpy_vjp:[],numpy_wrapp:3,nunmpi:[6,34],nvalu:[10,45],nx:[3,14,42],nx_test:7,nx_train:7,nx_train_mean:7,ny:[24,30,42,43],ny_pr:7,ny_train:7,ny_train_mean:7,o:[1,7,8,9,10,12,16,22,26,31,32,33,34,37,43,45],o_j:43,obei:[7,12,14,34,35,36,38],object:[1,2,3,5,7,9,11,14,24,26,33,34,37,38,39,44,45],obliqu:[6,34],observ:[1,2,4,6,7,8,9,10,11,12,13,14,15,30,35,36,37,38,39,40,41,42,43,45],obtain:[1,2,6,7,8,9,10,11,13,14,15,18,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],obviou:[6,7,12,30,34,44],obviouli:33,obvious:[1,5,6,7,22,23,26,28,33,35,36],oc:34,occas:43,occasion:43,occupi:[1,34],occur:[1,7,9,10,26,30,33,43,44,45],oct:[28,42],octob:[21,22,23,24,29,31,33,39,43],od:[0,1],odd:[1,4,8,33,34,37,43],odenum:[3,42],odesi:[3,42],oen:1,off:[2,4,5,6,10,14,20,30,35,36,38,39,40,41,42,43,44,45],offer:[7,12,25,26,29,31,33,36],offic:[31,33],offici:[29,33],often:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,17,25,26,30,33,34,36,37,38,39,40,41,42,43,44,45],oftentim:43,ofter:[26,33],og:[24,42,43],ol:[1,14,16,17,18,19,23,28,33,34,43],old:[2,6,11,14,35,36,37,38,40,41,42,45],ols_fit:36,ols_fit_beta:36,ols_sk:7,ols_svd:7,olsbeta:[1,6,35],omega:[3,4,7,42,43],omega_0:[4,43],omiss:44,omit:[1,6,33,34,35,36],on_train_batch_begin:[4,5,43,44],onc:[2,7,10,12,14,36,37,38,39,41,42,45],one:[0,1,2,4,5,6,7,8,9,10,11,12,14,15,20,22,23,24,25,26,27,28,30,31,33,34,35,36,39,41,43,44,45],onehot:[2,24,40,41,42,43],onehot_vector:[2,40,41,42],onehotencod:[10,45],ones:[0,1,3,6,7,9,10,11,12,14,22,24,26,27,33,34,35,36,37,38,42,43,45],ones_lik:5,onl:[4,43],onli:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],onlin:[12,29],onto:[6,12,34],op_nam:[4,5,43,44],open:[0,1,2,5,7,8,10,16,25,27,29,31,33,36,37,41,42,45],oper:[1,2,4,6,7,11,12,13,14,16,25,30,33,34,35,36,38,39,40,41,42,43,44,45],operation:30,oplu:30,opmiz:[14,38,39],opportun:[1,33],oppos:[7,14,38,39],opposit:[2,6,9,34,41,42,43],opt:[0,2,6,28,33,35,41,42],optim:[0,1,3,4,5,6,7,8,10,11,12,15,16,17,18,19,20,22,23,24,27,28,35,36,45],optimis:[2,4,41,42,43],optimizer_v2:[4,43],option:[1,2,4,6,7,8,9,12,22,24,26,27,28,34,35,36,37,40,41,42,43,44],optionalxlacontext:[4,5,43,44],optmiz:[2,9,14,22,34,38,39,40,41,42],oral:33,orang:1,order:[0,1,2,3,4,6,7,8,9,10,11,12,13,16,17,23,24,26,27,28,30,33,34,35,36,37,40,41,42,43,45],ordinari:[0,1,3,4,8,12,14,16,17,18,20,22,23,25,28,36,37,38,39,43],ordinrari:36,oreilli:32,org:[1,4,5,8,12,22,25,26,32,33,37,38,39,42,44],organ:[7,8,11,26,36,37,43,45],orient:[2,6,24,30,34,35,43],origin:[1,4,6,7,9,12,13,14,26,33,34,36,38,39,40,43],original_imag:43,orthogn:[6,34],orthogon:[1,6,7,9,12,14,18,26,33,34,35,38],orthonorm:[6,34,35],os:[1,2,5,6,7,8,9,10,31,33,34,35,36,37,41,42,45],oscar:[2,41,42],oscil:[4,14,38,39,43,44],oslo:[0,1,16,25,27,28,29,31,33,34,35,36,37,38,39,40,41,42,43,44,45],osx:[0,1,16,25,27,33],other:[0,1,2,3,4,6,7,8,9,11,14,15,16,20,25,27,28,29,30,31,32,35,36,38,41,43],otherwis:[1,2,5,8,14,22,26,28,33,34,37,38,39,40,41,42],ouput:[6,8,13,35,36,37,40,41,44],our:[2,3,4,7,8,9,10,11,13,15,16,17,18,19,20,22,23,24,25,26,27,28,30,35,36,39,44,45],ourmodel:1,ourselv:[0,1,6,7,9,12,14,33,34,35,36,37,38],out1:3,out2:3,out:[1,2,3,5,6,7,8,9,10,11,12,13,14,17,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44],out_deriv:[24,42],out_fil:[10,45],out_h:43,out_w:43,outcom:[1,8,10,11,13,30,34,37,40,43,45],outdoor:[10,45],outer:[7,13,14,40,41,43],outfil:5,outgrad:[],outlier:[1,9,33,34],outlin:[7,11,12,36,43,45],outlook:[10,45],outperform:11,output:[0,1,2,4,5,6,7,8,9,10,11,13,14,17,24,26,27,28,30,33,34,35,36,37,38,39,40,43,45],output_bia:[2,24,40,41,42],output_bias_gradi:[2,40,41,42],output_func:[24,42,43],output_grad_tr:43,output_lay:43,output_nod:[24,42],output_shap:[5,43],output_weight:[2,24,40,41,42],output_weights_gradi:[2,40,41,42],outputlay:43,outputlayer1:[13,39,40],outputlayer2:[13,39,40],outsid:[5,43,44],over1:[14,38,39],over:[1,2,4,5,6,7,10,11,13,14,22,26,27,33,34,35,36,37,38,39,40,41,42,43,45],overal:[2,11,40,41,42,43,45],overcast:[10,45],overcom:[13,14,38,39,40],overdetermin:[1,33],overfit:[1,2,4,7,10,11,14,22,24,36,38,39,40,41,42,43,45],overflow:[2,6,35,36,40,41,42,43],overflowerror:[24,42],overhead:[13,40,43],overlap:[4,8,9,10,37,43,44,45],overlin:[1,6,7,10,11,12,15,26,33,34,35,36,45],overst:[1,33],overtrain:[5,44],overview:[4,37],overwritten:[24,42,43],own:[0,5,6,7,9,13,14,22,23,24,25,26,27,35,36,38,39,40,41,42,44],owner:[1,34],ownmsepredict:1,ownmsetrain:1,ownridgebeta:[1,7,35],ownypredictridg:1,ownytilderidg:1,oxid:[1,34],p0:[3,42],p1:[3,42],p:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,18,24,26,30,33,34,35,36,37,38,40,41,42,43,44,45],p_1:43,p_2:43,p_:[3,5,9,10,42,45],p_hidden:[3,42],p_i:[6,30,35,36],p_j:30,p_n:30,p_output:[3,42],p_x:30,pack:[1,33],packag:[0,1,2,3,4,5,6,7,8,9,12,14,16,22,23,24,25,27,28,30,34,35,37,38,39,40,41,42,43,44],pad:[4,5],pad_imag:43,padded_height:43,padded_imag:43,padded_img:43,padded_width:43,page:[1,25,33],pai:[1,2,10,14,24,38,39,41,42,43,45],paid:0,pair:[1,3,4,10,25,30,33,34,42,43,45],pamilla:33,panda:[0,1,5,6,7,8,10,12,16,25,27,35,36,37,44,45],panel:33,paper:[2,41,42],paradigm:[1,33],parallel:[4,5,11,14,22,25,26,33,38,39,43,44],param:[3,5,42,43,44],param_distribut:[37,44],param_grid:[37,44],paramat:[3,42],paramet:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,18,19,20,22,23,24,27,28,30,35,36,40,41,42,43,45],parameter:[1,7,11,27,33,34,45],parametr:[1,7,16,17,33,34,36],paramt:[4,6,35,36,43],parent:3,parent_argnum:3,parser:[1,33,43],part:[1,2,4,6,7,11,18,19,22,23,24,26,29,30,31,33,35,36,39,41,42,45],partial:[1,2,6,7,8,9,11,12,13,14,17,30,33,34,35,36,37,38,40,41,43,45],particip:[25,29,31,33],particl:[1,5,14,30,33,38,39,44],particular:[1,2,3,4,6,7,10,11,12,13,14,17,27,30,32,33,34,35,36,37,38,39,40,41,42,43,45],particularli:[6,7,9,12,14,22,30,34,36,37,38,39,43],partit:[2,5,10,40,41,42,43,45],partli:[7,33],pass:[3,4,13,15,24,37,43],password:[0,27,28],past:[11,30,44,45],patch:[7,30,36,43],path:[1,5,7,8,10,16,25,33,34,36,37,43,45],pathcollect:22,patient:[8,37],patter:[5,44],pattern:[0,1,4,5,13,29,32,33,39,40,43,44],pauli:[1,33],pavisj:43,pc:[12,25],pca:[1,8,25,33,34,37,44],pcolor:7,pcolormesh:7,pd:[1,5,6,7,8,10,12,33,34,35,36,37,44,45],pde:[0,3,42],pdf:[0,1,4,5,6,7,10,20,21,27,28,32,33,35,36,37,38,42,44,45],pedagog:[1,33,34],peel:44,penal:[7,34,35,36],penalti:[7,14,27,34,35,36,37,38],penros:[6,7,35],pentagon:[14,37,38],peopl:[1,2,10,14,25,34,38,39,40,41,42,44,45],per:[1,2,7,29,31,33,34,36,41,42,43,45],perc_print:[24,42,43],percentag:[1,11,12,24,31,34,42,43,45],perceptron:[1,2,8,33,37,42],peregrin:33,perfect:[1,2,14,22,33,38,39,40,41,42,43,44],perfectli:[5,7,36],perform:[0,1,3,4,5,6,7,9,11,12,13,14,15,16,17,18,20,22,24,25,26,27,28,30,33,34,35,36,37,38,39,43,44],performac:[5,44],perhap:[0,1,6,14,33,34,35,37,38],perimet:[2,10,41,42,45],period:[2,5,30,40,41,42],permut:[12,43],persist:[14,38,39],person:[6,7,8,29,31,33,34,35,36,37],perspect:[0,32],pertin:[13,28,40,41,43],petal:[9,10,45],peter:32,phantom:30,phase:[7,13,39,40],phd:42,phenomena:30,phi:9,phi_k:9,philosophi:[14,38],phone:[31,33],photo:5,php:28,phrase:[1,33,45],physic:[0,1,2,5,8,13,14,28,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],physicist:28,pi:[0,3,4,6,7,8,10,13,14,30,35,36,37,38,39,40,42,43],pick:[2,10,11,12,14,15,38,39,40,41,42,45],pickl:[2,41,42],pictur:[1,33,43],pie:[25,33],piec:[12,15],pillow:[0,1,16,25,27,33],pinv:[6,7,14,22,34,35,36,38,39,40],pip3:[0,1,2,16,27,33,41,42],pip:[0,1,2,16,25,27,33,41,42],pipelin:[1,7,9,11,34,36,43,45],pippin:33,pit:5,pitfal:[7,34,35],pitt:[13,39,40],pixel:[2,4,5,40,41,42,43],pixel_height:[2,4,40,41,42,43],pixel_width:[2,4,40,41,42,43],place:[0,1,5,7,9,14,26,27,33,36,37,38,43],placement:43,plai:[1,4,5,6,7,9,12,25,33,34,35,36,37,43,45],plain:[9,11,13,14,15,22,23,28,37,38,40,45],plan:[7,10,31,32,33],plane:[9,10,45],plateau:[6,35],platform:[4,5,25,33,43,44],plausibl:[13,39,40],pleas:[0,7,8,12,14,27,28,31,33,34,37,38,39,43,44],plenti:[2,41,42],plethora:[4,13,39,40,43],plot:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,22,25,26,27,28,30,33,34,35,38,39,40,41,42,43,44,45],plot_confusion_matrix:[8,11,37,44,45],plot_convolution_result:43,plot_count:7,plot_cumulative_gain:[8,11,37,44,45],plot_data:[2,41,42],plot_dataset:9,plot_decision_boundari:[10,11],plot_import:11,plot_max:[5,44],plot_min:[5,44],plot_model:5,plot_numb:5,plot_predict:9,plot_regression_predict:[10,45],plot_result:5,plot_roc:[8,11,37,44,45],plot_surfac:[3,7,14,27,38,42],plot_train:10,plot_tre:[10,11,45],plqvvvaa0qudcjd5baw2dxe6of2tius3v3:[],plt:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],plu:[1,4,6,8,33,34,35,37,43],pm:[9,36],pmatrix:[3,42],pml:32,pn:[4,43],png:[1,5,7,8,10,33,34,36,37,45],point:[0,1,2,3,4,6,7,8,9,10,11,12,14,15,16,17,18,20,22,23,24,26,27,30,31,33,34,36,37,38,39,40,41,42,43,45],point_1:5,point_2:5,poisson:[25,30,33],poli:[7,9,36,37],poll:45,poly100_kernel_svm_clf:9,poly3:1,poly3_plot:1,poly3dcollect:[14,38],poly_degre:[24,42],poly_featur:[9,10,45],poly_features10:[10,45],poly_fit10:[10,45],poly_fit:[10,45],poly_kernel_svm_clf:9,polydegre:[1,6,7,11,34,35,36,45],polygon:[14,37,38],polym:[13,39,40],polymi:27,polynomi:[1,6,7,8,9,10,11,12,16,17,18,20,22,23,27,28,33,34,36,37,45],polynomial_featur:[7,36],polynomial_svm_clf:9,polynomialfeatur:[1,7,9,10,34,36,37,45],polytrop:[1,7,33,36],pool:4,pool_siz:[4,43],poolin:43,pooling2dlay:43,pooling_act:43,pooling_lay:43,poor:[2,14,22,37,38,39,41,42],poorli:[1,34],pop:[],popul:[1,6,33,34,35,36],popular:[0,1,2,4,7,8,9,10,12,13,16,25,26,27,30,33,34,37,39,40,41,42,43,45],popularli:[1,33],portabl:11,portion:[12,14,22,38,39],pose:[1,5,6,7,12,30,33,36,43],posit:[1,2,3,4,6,8,9,11,12,14,15,18,24,26,30,33,34,35,36,37,38,39,40,41,42,43,45],possibl:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,43,44],possible_gradient_typ:[4,5,43,44],possible_gradient_types_non:[4,5,43,44],possibletapegradienttyp:[4,5,43,44],posterior:[6,35,36],postpon:[1,33,34],postscript:[0,27,28],postul:[6,35,36],potenti:[0,1,4,6,7,13,14,33,34,35,36,38,39,40,43],pott:[13,39,40],power:[1,2,6,7,9,10,13,14,33,34,36,38,39,40,41,42,44,45],pp:[6,7,19,35,36,37],ppv:44,practic:[0,1,6,7,8,9,27,28,30,34,35,36,37,43],practition:[1,2,4,33,41,42,43],pre:33,preced:[2,12,13,30,39,40,41,42],preceed:[5,24,42,44],preceq:9,precis:[0,1,3,6,12,14,26,27,28,30,33,34,35,36,38,39,42,44],pred:[7,36,38,39],pred_format:43,pred_train:[24,42,43],pred_val:[24,42,43],predicit:1,prediciton:[24,42],predict:[0,1,2,6,7,8,9,10,11,16,17,24,25,27,32,33,34,35,36,37,39,40,41,42,43,45],predict_prob:[2,40,41,42],predict_proba:[8,11,37,39,40,44,45],predictor:[1,6,7,8,10,11,12,33,34,35,45],prefer:[0,1,2,7,9,10,12,14,16,25,27,28,33,41,42,45],prepar:[0,1,7,26,27,28,33,34,43],preprocess:[1,5,7,8,9,10,11,12,24,35,36,37,42,44,45],prerequisit:1,prescript:[0,27,28],presenc:[14,38,39],present:[0,1,6,7,8,10,13,14,22,24,26,27,28,30,33,34,35,38,39,40,42,43,45],preserv:[4,12,26,43,44],press:[14,32,37,38],presum:43,pretrain:[2,5,41,42],pretti:[0,1,5,9,10,16,25,27,33,43,44],prev_a:43,prev_centroid:15,prev_g:[],prev_g_flag:[],prev_lay:43,prev_nod:43,prevent:[14,30,38,39,44],previou:[0,1,2,3,4,5,6,7,9,11,12,13,14,22,23,24,26,27,28,30,34,37,38,39,40,41,42,43,44,45],previous:[3,4,10,11,30,42,43,45],previous_nod:43,price:[1,5,10,14,34,38,39,44,45],primal:9,primari:[1,8,33,37,43],prime:30,primit:3,princip:[1,6,8,25,33,34,37,44],principl:[1,7,8,9,15,33,36,37],print:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,22,24,26,30,33,34,35,36,37,38,39,40,41,42,43,44],print_funct:[9,10],print_length:[24,42,43],printout:[1,33],prior:[1,6,7,33,34,35,36],privat:[1,33],pro:28,prob:[2,30,41,42],probabilist:[1,32,33,34],probabl:[1,2,4,5,7,8,11,14,24,25,33,34,37,38,39,40,41,42,43,44,45],problem:[1,4,5,6,7,8,9,10,11,12,13,17,18,24,25,26,27,28,30,36,43],probml:32,proce:[1,6,7,8,9,10,11,12,14,26,33,34,35,36,38,45],procedur:[3,5,6,7,9,11,12,14,22,27,34,35,36,37,38,39,42,43],proceed:[26,43],process:[0,1,3,5,7,10,11,13,14,16,22,25,26,27,30,32,33,36,37,38,39,44,45],prod:32,prod_:[2,6,8,35,36,37,40,41],produc:[0,1,4,5,6,7,10,11,12,13,14,25,26,27,30,33,34,35,36,38,39,40,43,44,45],product:[1,2,4,6,7,8,9,13,14,17,22,25,26,33,34,35,36,37,40,41,42,43],profess:[1,33],profil:[4,5,43,44],profile_util:[4,5,43,44],progag:28,program:[1,2,5,6,7,9,13,15,16,17,22,25,26,29,30,31,33,34,36,39,40,41,43,44],programm:26,progress:[2,5,15,24,38,41,42,43],prohibit:[7,36],project1:[7,27],project:[1,2,3,4,6,12,14,18,19,20,21,22,23,24,25,29,31,34,35,36,38,39,40,41,42,43,44,45],project_root_dir:[1,7,8,10,33,34,36,37,45],promin:[13,39,40],promis:9,promot:[31,33,43],prone:[10,45],pronounc:[14,25,33,38,39],proof:[1,12,13,14,33,36,37,38,40],prop:[24,42,43],propag:[3,4,14,24,28,38,39,43],proper:[0,1,3,7,8,27,33,36,42,43],properli:[0,2,7,9,11,14,22,27,28,38,39,41,42,45],properti:[1,2,4,13,14,17,18,26,33,36,38,39,40,41,43,44],proport:[1,2,6,10,12,14,17,30,33,34,38,39,40,41,42,44,45],propos:[0,2,5,7,11,24,27,28,33,41,42],propto:[6,14,35,36,37,38,39],proton:[1,33],prove:[4,14,37,38,39,43],provid:[0,1,2,4,5,6,7,9,10,11,13,14,16,22,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],proxi:[2,14,22,38,39,41,42],prune:10,pseudo:[26,30,38],pseudocod:[0,27,28],pseudoinv:[6,35],pseudoinvers:[6,7,35],pseudorandom:[7,30,36],psycholog:[1,33],pt:[14,38],ptratio:34,publish:0,punish:[1,2,24,33,40,41,42],pure:[4,10,30,43,45],purest:[10,45],puriti:[10,45],purpos:[1,4,11,13,15,33,34,39,40,43,45],push:[],put:[2,33,41,42],py:[1,2,3,4,5,6,7,8,9,12,14,22,24,27,33,34,35,36,37,38,39,40,41,42,43,44],pycod:33,pydata:25,pydot:[10,45],pyhton2:33,pylab:[1,8,33,37],pylint:[4,5,43,44],pypi:25,pyplot:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],pythagora:[6,35,36],python2:[0,1,16,27,33],python3:[0,1,2,3,4,5,7,8,9,12,14,16,22,24,25,27,33,34,35,37,39,40,41,42,43,44],python:[0,2,3,4,5,6,7,9,12,13,14,15,17,22,23,27,28,30,34,35,38,39,40,41,42,43,44],pytorch:[0,1,25,27,28,33,43],pywrap_tf:[4,5,43,44],q:[6,7,9,12,24,30,34,36,42],qp:9,qquad:[3,12,14,26,38,39,42],qr:[6,7,26,34],quad:[2,14,26,38,40,41,42,43],quadrat:[1,9,10,14,16,17,33,38,43,45],qualit:[0,5,10,27,28,30,45],qualiti:[1,10,16,17,25,33,34,45],quantifi:[2,41,42],quantil:11,quantit:[0,1,7,10,27,28,33,36,45],quantiti:[1,3,6,7,8,10,11,12,13,15,17,26,30,33,34,35,36,37,40,42,43,45],quantum:[0,5,13,32,33,39,40,44],quartil:[1,34],quench:6,queri:[10,45],question:[1,6,7,10,12,13,14,27,31,33,34,35,36,38,39,40],qugan:5,quick:[5,30],quick_execut:[4,5,43,44],quickest:43,quickli:[2,4,10,12,14,24,37,38,41,42,43,45],quit:[2,6,7,10,11,13,34,36,39,40,41,42,45],quot:[5,33],r2:[0,1,6,7,28,33,34,35,37,44],r2_score:[1,33,34],r2score:[1,33],r:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,24,25,26,27,30,34,35,36,37,38,39,40,42,43,45],r_1:[10,45],r_2:[10,45],r_j:[10,45],r_m:[10,45],rad:[1,34],radial:[1,9,13,34,39,40],radioact:30,radiu:[1,2,10,34,41,42,45],rag:3,rain:[10,45],rais:[1,3,14,24,33,35,39,42,43],ramp:[2,41,42],ran0:30,ran1:30,ran2:30,ran3:30,rand:[1,5,6,7,10,11,14,16,17,22,24,26,33,34,35,36,37,38,39,42,43,44,45],randint:[7,10,14,22,36,38,39,45],randn:[1,2,3,6,7,10,12,14,16,17,22,24,33,34,35,36,37,38,39,40,41,42,43,44,45],random:[0,1,2,3,4,5,6,7,9,10,14,15,16,17,22,24,25,26,27,33,34,35,36,38,39,40,41,42,43],random_forest_model:[11,45],random_index:[14,22,38,39],random_indic:[2,4,40,41,42,43],random_st:[1,8,9,10,11,12,34,37,39,40,44,45],randomforestclassifi:[11,45],randomizedsearchcv:[37,44],randomli:[2,7,10,14,15,22,24,36,37,38,39,40,41,42,43,45],randuniform:[37,44],rang:[1,2,3,4,5,6,7,8,10,11,12,13,14,15,22,24,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],rangl:[1,7,12,30,33,34],rangle_x:30,rank:[6,34,43],rankdir:5,raphson:[2,9,14,40,41],rapid:43,rapidli:[1,33,43],rare:[2,14,33,36,37,38,39,40,41,42],rate:[1,2,3,4,5,9,10,11,13,14,23,28,34,37,40,41,43,44,45],rather:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],ratio:[5,8,10,11,12,37,45],rational:[1,33],ravel:[6,7,8,9,10,11,12,14,24,26,34,36,37,38,42,44,45],raw:[4,43],raw_df:34,rbf:[9,12,13,39,40],rbf_kernel_svm_clf:9,rbf_pca:12,rc:[1,30,34],rcond:[1,33,34],rcparam:[1,2,4,8,9,10,11,30,33,37,40,41,42,43,45],re:[3,5,14,37,38,42,43],reach:[2,5,6,7,8,10,11,12,13,14,15,24,35,36,37,38,39,40,41,42,43,44,45],read:[0,1,3,4,5,6,7,8,9,12,13,17,22,23,24,26,27,28,29,30,32,35,37,38,39,40,41,42,43,44],read_csv:[1,7,8,10,33,34,36,37,45],read_fwf:[1,33],readabl:43,reader:[1,7,26,30,33,34,35,43],readi:[1,2,6,7,9,11,12,13,24,26,27,33,35,36,40,41,42,43,45],readili:[2,40,41,42],readthedoc:25,real:[1,2,3,5,8,11,12,13,14,24,26,34,36,37,39,40,41,42,43,44],real_loss:5,real_output:5,realist:9,realiti:30,realiz:[2,13,39,40,41,42],realli:[1,2,33,41,42],rearrang:[14,38,39,43],reason:[1,2,4,5,11,14,32,33,37,38,39,41,42,43,44,45],reassign:[2,41,42],reat:[24,42],reber:[24,42],recal:[6,7,10,11,12,13,26,30,33,34,35,36,37,38,40,44,45],recast:[4,43],receiv:[2,4,11,13,30,39,40,41,42,43,44,45],receiver_operating_characterist:44,recent:[0,1,3,4,5,7,10,11,14,16,22,27,32,33,35,36,37,38,39,42,43,44,45],recept:[4,13,39,40,43],receptive_field:[4,43],recip:[0,1,7,8,26,27,28,33,34,37],reciproc:[6,35],recogn:[1,5,6,11,33,35,36,44,45],recognit:[1,2,4,13,29,32,33,39,40,41,42,43],recommend:[0,1,3,4,5,6,7,9,14,16,19,22,23,25,26,27,28,32,35,36,40,41,42,43,44],reconsid:10,reconstruct:12,record:[0,11,21,27,28,29,31,33,38,39,45],rectangl:[10,14,37,38,45],rectangular:[6,34,43],rectifi:[2,4,13,39,40,41,42,43],recur:[1,25,33],recurr:[0,1,2,25,33,41,42],recurs:[10,25,26,33],red:[1,4,5,7,9,10,22,36,38,43,44,45],redefin:[1,11,33,34,45],redefinit:35,reduc:[2,4,6,7,10,11,12,14,22,33,35,36,37,38,39,40,41,42,43,45],reduct:[1,11,12,25,30,33,34,45],refer:[1,2,3,4,6,7,8,12,13,14,15,21,26,27,28,32,33,34,36,37,38,39,40,41,42,43,44],referenc:[3,42],refin:[13,39,40],refit:[7,36],reflect:[0,1,2,5,6,27,28,30,33,41,42,44],refrain:43,refresh:[25,33],refreshprogrammingskil:33,reg:[11,12],regard:[2,10,14,38,41,42,43,45],regardless:[13,39,40],region:[0,4,5,7,10,13,27,39,40,43,44,45],regist:[7,27,30],reglasso:[6,35],regr_1:[1,10,45],regr_2:[1,10,45],regr_3:[1,10,45],regress:[0,2,9,12,13,16,17,22,23,24,25,26,41,42,43,44],regressor:[1,8,11,24,33,37,42],regridg:[1,6,7,35,36,37,44],regular:[1,4,5,6,7,8,10,14,18,24,28,31,33,34,35,36,38,39,45],regularis:7,regularizi:43,reilli:[1,16,32,33],reinforc:[1,9,25,33,42],reiniti:[24,42],reiter:[2,41,42],reject:8,rel:[1,5,7,8,10,13,14,30,33,34,36,37,38,39,40,43,44,45],relat:[0,1,2,4,5,6,12,14,15,26,30,33,35,36,38,39,41,42,43,44],relationship:[1,5,10,33,43,44,45],relativeerror:[1,33,34],releas:[0,2,4,5,7,14,25,27,28,33,36,38,41,42,43,44],relev:[0,1,2,6,8,12,16,22,23,24,25,27,28,30,33,41,42,43,44],reli:[1,7,9,33],reliabilti:[0,27,28],reliabl:[8,30,37],relu:[4,5,24,28,40,43,44],remain:[2,3,5,7,13,26,30,34,35,36,37,39,40,41,42,43,44],remaind:30,reman:[3,42],remark:[2,41,42],rememb:[0,1,9,14,26,27,28,33,38,39,43,44],remind:[1,6,12,14,26,30,34,35,36,43],remov:[1,5,6,7,33,34,35,36,43,44],render:[1,33,34],reorder:[6,8,34,35,37],reorgan:[1,33],repeat:[1,2,4,5,6,7,10,11,12,14,15,22,23,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],repeated:33,repeatedli:[1,7,11,14,36,38,39,45],repet:[4,43],repetit:[7,33,34,36,37,38,44],rephras:[14,37,38],replac:[0,1,2,4,5,6,7,11,13,15,16,17,22,23,25,27,28,33,34,35,36,37,40,41,42,43,44,45],replica:[7,36],repo:[0,27,28],report:[21,33,38,39],reportexampl:[21,27],reportsampl:21,repositori:[0,1,5,27,28,33,34,43],repres:[1,2,3,4,5,6,7,8,9,10,11,13,14,28,30,33,34,35,36,37,38,39,43,44,45],represent:[1,2,4,7,30,33,36,37,40,41,42,43],representd:[4,43],reproduc:[1,6,7,10,13,16,17,24,25,27,30,33,34,40,42,45],repuls:[1,33],request:[1,14,22,33,38,39],requir:[0,1,2,4,5,6,7,9,10,12,13,14,18,26,33,34,35,36,37,38,39,40,41,43,44,45],rerun:[24,42],res1:[3,42],res2:[3,42],res3:[3,42],res_analyt:[3,42],res_analytical1:[3,42],res_analytical2:[3,42],res_analytical3:[3,42],resaml:[7,27],resampl:[1,8,11,20,24,25,33,34,37,38,42,43,44,45],rescal:[1,12,13,34,39,40],rescu:[6,35,36],reseach:[7,27],research:[0,1,5,14,22,25,32,33,38,39],resembl:[7,30,36],reserv:[2,6,7,30,35,36,40,41,42],reservoir:44,reset:[24,42,43],reset_weight:[24,42,43],reset_weights_independ:43,reshap:[1,2,3,4,5,7,9,10,11,16,17,24,26,33,34,36,40,41,42,43,44,45],residenti:[1,34],residu:[1,6,14,33,38],resiz:[6,34],resourc:[33,43],resourcewarn:[],respect:[0,1,2,3,4,6,7,8,9,11,12,13,14,15,17,18,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],respond:[13,39,40],respons:[1,8,10,13,33,34,37,39,40,43,45],rest:[1,6,34],restat:[1,13,33,40],restor:5,restored_discrimin:5,restored_gener:5,restrict:[1,4,10,13,33,39,40,43,45],result:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,23,24,25,26,27,28,30,33,36,37,38,39,40,41,42,43,45],result_ndim:3,retail:[1,34],retain:[6,7,34,36,37,43],rethink:36,retriev:44,return_data:15,return_sequ:[5,44],return_x_i:[10,45],reus:[2,4,7,19,20,21,27,28,41,42,43],reusabl:43,reveal:[1,13,33,39,40],revers:[2,24,26,41,42],reversed_lay:43,review:[25,26],revisit:[15,40],revolut:33,reward:[1,5,33],rewrit:[1,4,6,7,8,9,11,12,13,14,20,26,27,30,35,37,38,39,40,43,45],rewritten:[3,7,9,11,30,36,42,45],rewrot:[14,37,38],rf:[11,45],rfloor:43,rgb:[4,43],rgoj5yh7evk:25,rh:[7,36],rho2:[24,42,43],rho:[1,11,14,22,24,33,38,39,42,43],rho_1:11,rho_2:11,rho_m:11,rich:[1,33],ride:[10,45],rideclass:[10,45],ridedata:[10,45],ridg:[0,8,12,14,22,23,25,28,33,44],ridge_fit:36,ridge_fit_beta:36,ridge_sk:7,ridgebeta:[6,35],ridgecv:[37,44],right:[1,2,3,4,6,7,8,9,10,11,13,14,15,17,18,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],right_sid:[3,42],rightarrow:[1,2,6,7,9,12,13,14,30,33,34,36,37,38,39,40,41,42],rigor:[1,33],ring:7,rise:[1,33],risk:[1,14,16,17,33,37,38,39],rival:5,river:[1,34],rm:[1,24,30,34,42,43],rms_prop:[24,42,43],rmse:[1,34],rmsporp:[14,22,38,39],rmsprop:[2,4,5,14,23,28,41,42,43,44],rnd_clf:[11,45],rng:30,rnn1:[5,44],rnn2:[5,44],rnn:[5,13,39,40],rnn_2layer:[5,44],rnn_input:[5,44],rnn_output:[5,44],rnn_train:[5,44],rntrick1:30,rntrick2:30,rntrick3:30,rntrick4:30,ro:[1,14,22,33,37,38,39],robert:[19,27,32],robust:[1,33],robustscal:[1,34],roc:[0,8,11,45],rod:0,role:[1,3,6,7,9,25,33,34,35,36,37,42,43,45],roll:7,room:[1,31,33,34],root:[1,6,10,14,30,33,34,35,37,38,39,45],rot90:43,rot:33,rotat:[2,9,10,11,41,42,43,45],rotation_matrix:10,roughli:[2,4,41,42,43],round:[1,8,10,14,24,34,37,38,39,42,43,44,45],routin:[14,26,33,37,38],row:[1,2,3,6,7,8,10,12,24,26,33,34,35,36,37,40,41,42,43,45],rr:[6,34],rrr:[6,34],rug:[14,37,38,39],rule:[1,2,6,7,14,27,33,34,35,36,38,39,41,42],run:[0,1,2,3,4,5,6,7,9,10,12,14,16,22,24,25,27,28,33,34,35,36,37,38,39,41,42,44,45],runtim:[2,7,15,41,42],runtimewarn:[2,7,36,40,41,42],russel:33,rust:[1,16,25,26,33],rv_frozen:[37,44],rvert:[2,40,41,42],rvert_2:[2,40,41,42],s:[0,1,2,3,4,5,6,7,8,10,12,13,14,17,18,19,24,25,26,27,28,30,33,34,35,40,41,42,43,44],s_1:[7,43],s_2:43,s_:[4,7,43],s_i:[7,8,37],s_j:[7,43],s_k:7,saddl:[14,37,38,39],sadli:43,sai:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,26,27,30,33,34,35,36,37,40,41,42,43,44,45],said:[7,10,14,37,38,45],sake:[1,6,8,12,33,34,35,37],sale:[1,33],sam:33,same:[0,1,2,3,4,5,6,7,9,10,12,13,15,18,24,26,27,30,33,34,35,37,40,41,42,44,45],samm:[11,45],sampl:[1,2,3,4,5,6,7,8,9,10,11,14,15,16,17,20,22,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],sample_vari:15,sample_weight:[4,5,43,44],sampleexptvari:30,samwis:33,sastri:12,satisfactori:[1,33],satisfi:[2,3,4,7,9,14,18,26,30,36,37,38,40,41,42,43],satur:[2,7,36,41,42],save:[1,5,7,8,10,14,22,33,34,36,37,38,39,43,44,45],save_fig:[1,7,8,10,11,33,34,36,37,45],savefig:[1,5,7,8,10,30,33,34,36,37,45],savetxt:[5,44],saw:[6,34],scalabl:11,scalar:[3,6,7,11,14,34,35,36,39,42],scale:[0,1,2,4,6,7,8,9,10,11,12,13,14,16,17,18,22,24,25,26,27,28,31,33,35,37,38,39,40,41,42,44,45],scale_mean:5,scale_std:5,scaler:[1,8,9,10,11,12,24,34,36,42,45],scan:[6,8,35,36,37],scari:[6,35,36],scatter:[1,2,7,8,9,10,15,22,33,34,35,36,37,41,42,45],scenario:[7,14,37,38,39],schedul:[14,31,38,39],scheduler_arg:[24,42],scheduler_bia:43,scheduler_weight:43,schedulers_bia:[24,42,43],schedulers_weight:[24,42,43],scheme:[0,2,14,37,38,39,41],schmidhub:44,schrage:30,scienc:[1,2,11,13,14,25,29,30,31,32,34,37,38,39,40,41,42,43],scientif:[0,1,16,25,27,28,33,38,39,43],scientist:[1,33],scikit:[0,4,6,7,8,9,10,11,14,22,25,26,27,28,29,32,39,43,44],scikit_learn:[1,17],scikitlearn:33,scikitplot:[8,11,37,44,45],scipi:[0,1,4,6,7,14,16,25,26,27,33,34,35,36,37,38,43,44],scl:7,score:[0,1,2,4,7,8,10,11,12,16,17,23,24,27,28,31,33,34,36,37,38,39,40,41,42,43,45],scores_kfold:[7,36,37],scratch:[2,14,39,40,41,42],sdg:[14,22,38,39],seaborn:[1,2,4,7,8,22,24,28,33,34,37,40,41,42,43,44],seamless:[0,1,16,25,27,33,43],seamlessli:[24,42,43],search:[1,2,4,6,10,14,33,35,38,39,40,41,42,43,45],sec:7,second:[1,3,4,5,6,7,8,9,10,12,13,15,16,17,24,25,26,27,28,30,31,33,34,36,37,40,42,43,44,45],second_correct:[24,42,43],second_mo:[22,38,39],second_term:[22,38,39],secondeigvector:12,secondli:[13,40,41],section:[5,12,18,26,30,34,35,37,38,39,43,44],sector:[1,33],see:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,16,17,18,19,20,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],seed:[1,2,3,4,5,6,7,9,10,12,14,15,16,17,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],seed_imag:5,seek:[2,3,9,41,42,43],seem:[2,4,5,38,39,40,41,42,43],seemingli:[1,33],seen:[1,2,4,6,11,13,18,30,33,40,41,42,43,45],segment:[14,24,37,38,42,43],seismic:7,seldomli:[1,33],select:[0,2,6,7,9,10,11,12,18,27,28,29,30,31,32,33,34,35,36,40,41,42,43,44,45],self:[2,3,4,5,6,22,24,34,35,40,41,42,43,44],sell:[5,44],semest:[8,29,37,44,45],semi:[9,14,37,38],semilogx:7,send:[6,13,14,31,33,38,39,40,43],senior:[29,31],sens:[1,5,7,9,27,33,36,43],sensibl:[4,43],sensit:[1,6,7,10,14,33,34,35,36,39,44,45],sent:[3,36,42],sentdex:[],sentenc:[5,13,39,40,44],sep:[34,36],separ:[0,1,2,3,5,7,9,10,13,15,16,25,27,30,33,36,39,40,41,42,44],seper:43,septemb:[17,18,19,20,21,27,33,34,38],sequenc:[3,4,5,8,10,11,13,14,25,26,30,33,37,38,39,40,43,44,45],sequenti:[2,4,5,11,13,30,39,40,41,42,43,44,45],sequential_49:43,seri:[1,2,3,4,5,6,7,11,12,13,14,26,33,34,35,36,37,38,39,40,41,42,43,44,45],serif:[1,8,30,33,37],serv:[1,2,3,4,6,8,14,22,27,32,33,34,35,36,37,38,39,41,42,43,45],servic:[0,27,28],session:[2,21,27,29,31,33,36,37,38,39,40,41,42,43,45],set:[2,5,6,7,8,9,11,12,14,15,17,18,22,25,26,27,28,30,31,35,36,38,39,44],set_major_formatt:[7,27],set_major_loc:[7,27],set_tick:[2,9,41,42],set_ticklabel:[2,41,42],set_titl:[1,2,3,4,8,13,15,24,33,37,39,40,41,42,43,44],set_xlabel:[1,2,3,4,8,13,24,33,37,39,40,41,42,43,44],set_xlim:[8,13,37,39,40],set_xticklabel:[2,41,42],set_ylabel:[1,2,3,4,8,24,33,37,40,41,42,43,44],set_ylim:[8,13,37,39,40],set_ytick:[8,37,44],set_yticklabel:[2,7,41,42],set_zlim:[7,27],seth:5,setminu:[7,37],setosa:[9,10],setosa_or_versicolor:9,setp:[7,36],setup:[2,5,7,9,22,24,25,28,33,34,40,41,43],sever:[1,4,6,7,8,9,10,12,13,14,22,25,26,28,30,33,34,35,36,37,38,39,40,43,45],sgd:[2,4,22,23,28,37,41,42,43],sgd_clf:9,sgdclassifi:9,sgdreg:[14,37,38],sgdregressor:[14,37,38],sgn:[6,34,35],shall:43,shallow:[14,38,39],shape:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,24,26,33,34,35,36,37,38,40,41,42,43,44,45],shape_bas:[],share:[2,4,24,33,41,42,43,44],she:[8,37],shell:22,shift:[2,7,13,30,35,39,40,41,42],ship:[4,43],shire:33,shortcom:[14,37,38,39],shorten:[5,44],shorter:30,shorthand:[33,36],shortli:[26,33],should:[0,1,3,4,6,7,9,10,12,13,14,16,17,22,23,24,26,27,28,30,33,34,35,36,38,39,40,43,44,45],should_sync:[4,5,43,44],show:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],show_shap:5,showcas:43,shown:[1,5,6,8,9,12,13,14,22,24,26,34,37,38,39,40,42,43,44],shrink:[4,6,7,9,12,27,34,35,43,44],shrinkag:[6,7,34,35],shrunk:12,shuffl:[1,2,4,5,7,14,22,34,36,37,38,39,40,41,42,43,44],sick:44,side:[1,3,6,9,13,14,26,28,33,35,36,37,38,39,40,42,43],sigh:[25,33],sigma0:30,sigma1:30,sigma2:30,sigma:[1,2,6,7,8,11,12,13,14,18,19,20,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],sigma_0:[6,34,35],sigma_1:[6,34,35],sigma_2:[6,34,35],sigma_:[6,26,33,34,35,36],sigma_fn:[8,13,37,39,40],sigma_i:[1,6,33,34,35],sigma_j:[6,18,34,35],sigma_m:[7,30,36],sigma_n:[12,30],sigma_t:[14,38,39],sigma_x:30,sigmoid:[2,3,5,8,9,11,13,24,28,37,38,39,40,43,44,45],sigmundson:[7,34,35],sign:[2,3,8,9,11,30,31,37,40,41,42,45],signal:[2,4,11,13,39,40,41,42,43],signatur:[4,5,43,44],signifi:5,signific:[2,41,42,43],significantli:[0,2,14,22,30,37,38,39,40,41,42,43],silli:43,sim:[5,6,7,14,19,27,30,35,36,38,39],similar:[0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,24,25,26,27,28,33,34,35,36,37,41,42,43,44,45],similarli:[0,1,2,4,6,9,11,14,21,30,33,34,35,41,42,43,45],similiar:[24,42,43],simpl:[2,3,4,6,7,8,9,11,12,13,15,16,17,18,20,22,23,24,25,26,27,28,30,36,40,41,42],simple_rnn:[5,44],simplefilt:[24,42,43],simplepredict:[11,45],simpler:[1,2,6,7,8,14,17,20,22,23,24,25,27,28,33,35,38,39,41,42],simplernn:[5,44],simplest:[1,2,4,5,10,11,13,15,33,39,40,41,42,43,45],simpletre:[11,45],simpli:[0,1,2,3,5,6,7,9,10,11,12,13,16,24,25,26,27,28,30,33,34,35,36,39,40,41,42,43,45],simplic:[3,6,7,8,9,10,11,12,13,15,34,35,36,37,39,40,42,45],simplicti:[6,34],simplifi:[0,1,7,10,16,25,27,33,34,35,36,43,45],simplist:[4,7,30,36,43],simul:[7,36,43],simultan:[7,36,43],sin:[0,1,2,3,4,5,10,13,14,22,26,33,38,39,40,41,42,43,44],sinc:[1,2,3,4,6,7,8,9,10,11,12,14,22,24,26,30,32,33,34,35,36,37,38,39,40,41,42,43,45],sine:[4,13,39,40,43],singl:[1,2,3,4,6,7,8,9,10,13,14,24,26,28,30,33,34,35,36,37,38,41,42,43],singular:[1,7,14,26,27,33,35,36,37,38],sinusoid:[4,43],site:[0,1,2,3,4,5,7,8,9,12,14,22,24,27,28,29,33,34,35,37,39,40,41,42,43,44],situat:[1,5,6,8,14,22,30,33,34,37,38,39],six:[4,30],size:[1,2,3,4,5,6,7,9,10,11,12,14,22,23,24,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],sketch:11,ski:[10,45],skill:[1,33],skip:[4,5,12,43,44],skiprow:34,skl:[1,7,33,34,35],sklearn:[1,2,4,6,7,8,9,10,11,12,14,15,24,33,34,35,36,37,38,39,40,41,42,43,44,45],skplt:[8,11,37,44,45],skrankefunct:[24,42],sl:[3,7,35,37,44],slack:9,sleep:45,slice:[3,26,33,42],slide:[0,1,4,16,17,27,28,30,33,34,36,38,40,41,42,43],slight:[7,14,36,38,39],slightli:[2,3,4,6,7,8,11,30,34,35,36,37,41,42,43,45],slope:[9,12,13,39,40,44],slow:[1,3,9,14,34,37,38,39,42,43],slower:[6,26,33,34,35],slowest:26,slowli:[13,40],slp:[2,40,41,42],small:[1,2,3,4,6,7,9,10,11,12,13,14,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],smaller:[1,2,3,6,7,9,10,12,14,30,33,34,35,36,37,38,39,41,42,43,44,45],smallest:[1,5,15,16,17,33,37,44],smallest_row_index:15,smooth:[0,1,4,7,10,14,27,33,37,38,43,45],sn:[1,2,4,7,8,24,33,34,37,40,41,42,43,44],sne:12,sneak:33,so:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],soar:7,sobel:43,sobel_kernel:43,social:[1,33],societ:33,socket:[],soft:[2,8,11,13,37,39,40,41,42,45],soften:9,softmax:[4,8,24,37,42,43],softwar:[1,9,16,25,26],sol:9,sole:[1,7,33],solid:[1,8,33,37],solut:[0,1,2,3,4,6,7,9,11,12,14,18,19,26,27,28,30,33,34,35,36,37,38,39,41,43,45],solution_ev:38,soluton:[3,42],solv:[1,2,4,6,7,9,11,12,13,14,26,27,28,33,34,39,40,41,43,44,45],solve_expdec:[3,42],solve_ode_deep_neural_network:[3,42],solve_ode_neural_network:[3,42],solve_pde_deep_neural_network:[3,42],solveod:[3,42],solveode_popul:[3,42],solver:[3,8,9,10,11,12,22,26,37,42,44,45],some:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,24,30,35,36,39,40,41,42,43,44,45],some_model:[7,34,35],somehow:[5,45],someth:[0,1,2,4,5,8,10,12,27,28,30,33,34,37,40,41,42,43,44,45],sometim:[1,2,12,13,14,15,33,34,38,39,40,41,42,43],somewhat:[39,40],soon:[26,31],sophist:[1,33],sopt:[14,38],sort:[6,7,10,12,30,34,36],sound:[4,6,35,36],sourc:[0,1,2,4,7,16,25,26,27,28,30,33,34,36,41,42,43],space:[0,1,2,5,6,9,10,12,13,14,15,22,30,34,35,36,37,38,39,40,41,42,43,44,45],span:[0,1,4,6,10,12,26,33,34,43,45],spare:[2,41,42],spars:[4,7,26,33,43],sparse_add:[],sparse_mtx:[26,33],sparsecategoricalcrossentropi:[4,43],sparseobject:[],sparsiti:11,spatial:[2,3,4,13,39,40,41,42,43],speak:30,special:[7,8,11,13,14,26,30,33,34,35,36,37,38,40,43,45],specif:[0,1,2,3,4,5,6,7,8,9,10,12,13,17,24,25,26,27,28,30,32,33,34,35,36,37,39,40,41,43,44,45],specifi:[1,4,6,7,8,10,12,14,15,22,24,27,30,33,35,36,37,38,39,43,45],specifici:[1,11,33,45],spectacular:[4,43],spectral:[2,41,42],speech:[1,2,4,5,13,33,39,40,41,42,43,44],speed:[2,3,5,14,38,39,40,41,42],speedup:43,spend:30,spent:[0,27,28],sphere:[1,34],spin:7,spite:[1,33],spline:9,split:[2,4,5,6,7,9,10,11,12,15,18,24,27,30,35,36,37,41,42,43,44],splite:1,splitter:[2,11,41,42,45],spontan:30,spot:[4,43],spread:[1,12,30,33,34],spring:[24,42],springer:[19,27,32,33,35],spuriou:[14,22,38,39],sqquar:35,sqrsignal:[4,43],sqrt:[1,4,5,6,7,9,11,12,14,18,22,24,30,34,35,36,38,39,42,43,45],squar:[2,3,4,5,8,9,10,12,14,15,16,17,18,20,22,23,25,26,28,30,36,37,38,39,40,41,42,43,44],squarederror:11,squaredeuclidean:15,squash:[13,39,40,44],srtm:[7,27],srtm_data_norway_1:[7,27],stabil:[0,6,27,28],stabl:[1,5,6,7,8,10,12,25,33,34,35,37,44],stack:[3,4,5,43,44],stacklevel:[1,33],stage:[0,6,14,22,24,27,28,38,39,42,43],stai:[1,3,5,6,12,18,24,33,34,42,44],stand:[1,6,10,13,33,34,35,39,40,45],standadscal:34,standard:[0,1,2,5,6,7,8,9,11,13,16,17,18,20,22,23,26,27,28,30,33,35,37,39,40,41,42,44],standard_basi:3,standardscal:[1,7,8,9,10,11,12,34,35,36,45],stanford:[14,37,42,43],start:[1,2,3,4,5,6,7,9,10,11,12,13,14,15,21,23,24,26,27,28,30,31,33,34,36,37,38,40,41,42,43,44,45],start_box:[3,14,39],start_nod:[3,14,39],start_tim:[15,43],starting_point:22,stat:[7,34,36,37,44],state:[0,2,3,5,6,7,8,9,11,12,13,14,25,28,30,34,35,36,37,38,39,40,41,42,43,45],statement:[1,8,26,37,44],stationari:[0,37,38],statist:[1,2,4,5,8,10,11,12,13,14,15,19,26,27,29,32,34,37,38,39,40,41,42,43,44,45],statu:[1,8,12,33,34,37,44],stavang:[7,27],std:[1,5,7,33,34,36],stdout:[24,42,43],steep:[14,22,37,38,39],steepest:39,step:[1,2,3,4,5,7,8,10,11,12,13,14,15,22,23,24,26,27,33,40,41,42,43,44],step_fn:[8,13,37,39,40],step_length:[14,38,39],step_num:[4,5,43,44],step_siz:38,steps_list:[10,45],steps_per_epoch:[4,5,43,44],stereo:[4,43],still:[0,1,3,4,6,7,12,14,18,30,36,37,38,39,42,43],stimuli:[13,39,40],stk2100:[32,33],stk3155:[0,16,27,28,29,31],stk4021:[32,33],stk4051:[32,33],stk4155:[29,31],stk5000:32,stk:[32,33,45],stochast:[0,1,2,6,7,9,12,13,16,17,23,24,27,33,35,36,37,40,41,42],stock:[5,44],stoke:[13,39,40],stone:[1,8,27,33,37],stop:[2,5,8,10,12,14,15,22,24,37,40,41,42,43,44,45],storag:[6,34],store:[1,2,3,4,7,12,14,24,27,30,33,38,39,40,41,42,43,44],storehaug:[31,33],str:[2,4,5,24,40,41,42,43,44],straight:[1,7,9,14,33,34,36,37,38],straightforward:[1,3,4,6,7,9,10,11,14,26,33,34,35,36,37,38,42,43,45],strategi:[1,2,10,33,40,41,42,45],stratifi:[7,36],strength:[1,6,15,34],stretch:12,strict:[9,14,37,38],strictli:[9,14,37,38,43],stride:[5,26],strided_height:43,strided_width:43,strike:7,string:[2,40,41,42],stroke:[8,37],strong:[4,7,10,11,13,26,30,36,39,40,45],strongli:[1,9,24,25,26,28,34,42,43],stronli:[1,34],structur:[1,2,3,4,7,10,11,13,25,33,36,37,38,39,40,41,42,43,45],stuck:[2,14,37,38,39,40,41,42],student:[0,1,27,28,29,31,32,33,42,43,45],studi:[0,1,4,5,6,7,8,9,12,13,14,18,20,22,24,25,27,28,32,33,34,35,38,39,40,42,43],studier:32,style:[1,8,10,26,33,37,45],sub:[10,13,39,40,45],subarg:[3,14,39],subdivid:[1,26,33],subfield:[1,33],subject:[7,9,30],submatric:43,submit:33,subplot:[1,2,4,5,7,8,9,10,11,14,15,24,27,33,34,36,37,38,40,41,42,43,44,45],subplots_adjust:[9,30],subprogram:[26,33],subract:[1,34],subregion:43,subroutin:[1,33],subsampl:43,subscript:[2,40,41,42],subsequ:[2,5,6,7,13,26,30,34,36,39,40,41,42,43],subset:[2,7,10,13,14,25,33,36,37,38,39,40,41,42,44,45],subspac:[1,9,12,34],substanti:[10,11,43,45],substep:12,substitut:[4,7,13,26,36,39,40,43],subsubset:[10,45],subtask:7,subtl:[2,41,42],subtract:[1,5,6,7,12,14,18,22,24,26,27,30,35,36,38,39,42,43,44],subtre:[10,45],subval:[3,14,39],succeed:[1,5,33],success:[4,8,10,14,30,37,38,43,45],successfulli:[5,10,45],sudo:[0,1,16,25,27,33],suffer:[1,2,3,6,11,33,34,35,41,42,45],suffici:[2,7,9,12,14,36,37,38,40,41,42],sugar:[],suggest:[2,14,28,32,38,39,41,42,43,44],suit:[9,13,39,40],suitabl:[1,30,34],sum:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,37,38,39,40,41,42,43,44,45],sum_:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],sum_i:[1,3,6,7,9,14,18,20,27,34,35,36,38,39,42],sum_j:7,sum_ja_:1,sum_k:[7,9,13,26,40,41],sum_logist:[14,38,39],sum_m:[4,43],sum_n:[4,43],sum_nx_:[4,43],summar:[6,7,10,24,28,35,36,37,38,40,41,42,43,44,45],summari:[2,4,5,11,22,28,29,35,40,41,42,43,44,45],summat:[1,4,17,34,43],sundai:[18,19,20,21,22,23,24],sunni:[10,45],superconduct:[34,35,43,44,45],superfici:4,superimposit:43,superscript:[2,13,39,40,41],supervis:[0,1,6,7,8,10,13,25,33,34,36,37,39,40,45],supplement:[8,37],support:[1,2,10,11,12,14,25,33,34,38,39,41,42,45],suppos:[1,6,7,8,9,11,12,13,14,26,33,34,35,36,37,38,39,40,43,45],suppress:[6,14,35,38,39],sure:[1,2,5,7,24,27,41,42,44],surf:[7,27],surfac:[1,7,27,33],surpass:7,surpris:[1,33,43],surround:[4,25,43],survei:[1,6,7,33,34,35,36],svc:[9,10,11,45],svd:[1,7,12,18,33,36],svdinv:[6,35],svm:[9,10,11,12,45],svm_clf:[9,11,45],swap:43,swath:[6,34],sy:[14,24,37,38,42,43],symbol:[2,6,12,14,25,30,33,34,35,38,39,40,41,42],symmeteri:[2,41,42],symmetr:[0,1,6,9,12,13,14,26,33,34,38,39,40,43,44],symmetri:[7,10,45],sympi:[0,1,16,25,27,33],synonim:30,syntax:[2,14,41],syntaxerror:[2,9,41],system:[0,1,2,4,5,7,8,10,11,13,14,16,24,25,26,27,33,37,38,39,40,41,42,43,44,45],systemat:[5,7,36],t0:[4,7,14,22,38,39,43],t1:[3,14,22,38,39,42],t2:[3,42],t3:[3,42],t:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,33,36,37,38,39,40,41,42,44,45],t_0:[3,10,14,38,39,42,45],t_1:[0,14,38,39],t_2:0,t_:[3,42],t_b:[11,45],t_batch:[24,42,43],t_i:[2,3,6,13,28,34,40,41,42],t_j:[0,13,40],t_k:[10,45],t_test:[24,42],t_train:[24,42],t_val:[24,42,43],tabl:[0,10,24,27,28,30,31,33,39,40,41,42],tabul:[1,33],tabular:33,tackl:5,tag:[3,4,5,6,7,8,13,14,15,22,26,30,34,37,38,39,40,42,43],taht:[1,33],tail:30,tailor:[3,9,12,33,42],taiwan:[1,33],take:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],taken:[1,2,4,7,11,14,26,33,36,38,39,40,41,42,43,45],tan:[4,43],tangent:[2,5,13,14,37,38,39,40,41,42,44],tanh:[2,5,8,9,13,37,38,39,40,41,42,43,44],tape:[4,5,43,44],target:[1,2,4,5,6,7,8,9,10,11,12,13,24,28,33,34,35,36,37,38,39,40,41,42,43,45],target_nam:[10,45],task:[1,2,4,7,10,12,13,15,21,24,27,33,36,39,40,41,42,43,45],tau:[4,6,30,35,36,43],taught:[33,43],tax:[1,34],taylor:[3,14,37,38,42],taylornr:[14,37,38],tba:38,tc:9,td:[2,7,14,27,33,36,38,40,41],teach:33,team:[2,41,42],teaser:1,techinc:43,technic:[1,6,7,14,16,33,34,38,39],techniqu:[1,2,9,11,14,25,30,32,33,34,36,37,38,39,41,42,43],technolog:[1,2,33,40,41,42,43],tell:[1,5,7,11,12,14,30,36,38,39,44,45],temp1:[2,41,42],temp2:[2,41,42],temp:[2,41,42],temperatur:[0,1,10,33,45],temporarili:[2,41,42],ten:[4,18,33,43,45],tend:[4,6,7,9,10,11,13,14,15,22,34,35,36,38,39,40,43,45],tendenc:[1,33],tension:[7,36],tensor:[4,5,43,44],tensorflow:[0,1,3,5,9,15,16,24,25,26,27,28,29,32,33,34,44],term1:[6,7,12,27,34],term2:[6,7,12,27,34],term3:[6,7,12,27,34],term4:[6,7,12,27,34],term:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,24,27,30,33,34,35,37,38,39,41,42,43,45],termin:[1,5,6,10,11,14,16,22,33,34,38,39,45],terrain1:[7,27],terrain:[7,22,23,27,28],test:[0,4,5,6,7,8,9,10,11,14,18,20,22,23,26,27,30,36,37,38,39,43,44,45],test_acc:[4,43],test_accuraci:[2,4,24,40,41,42,43],test_error:7,test_imag:[4,5,43],test_ind:[7,36,37],test_input:5,test_label:[4,5,43],test_loss:[4,43],test_pr:[2,24,40,41,42],test_predict:[2,40,41,42],test_rnn:[5,44],test_scor:[8,11,37,44,45],test_siz:[1,2,4,6,7,11,33,34,35,36,37,40,41,42,43,44,45],test_split:[10,45],tester:35,testerror:[1,7,34,36],testi:[5,44],testpredict:[5,44],testx:[5,44],text:[1,2,3,5,6,9,10,12,14,16,22,26,28,30,32,33,34,36,37,38,39,40,41,42,43,44],textbf:43,textbook:[0,18,22,23,27,28,34,36,43],textual:[10,45],textur:[2,10,41,42,45],tf:[2,4,5,14,15,37,38,41,42,43,44],tfe_py_execut:[4,5,43,44],th:[1,2,3,6,7,8,10,13,14,15,16,17,26,27,30,33,34,35,36,37,38,39,40,41,42,45],than:[1,2,3,4,5,6,7,8,10,11,12,13,14,18,25,28,30,33,34,35,36,39,40,41,42,43,44,45],thank:[5,7,34,35,42],thats:[24,42,43],theano:[2,25,33,41,42],thei:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,26,27,30,34,35,36,37,38,39,40,41,42,43,44,45],them:[0,1,2,4,5,7,9,10,11,12,13,14,24,26,27,28,33,34,35,36,38,39,40,41,42,43,44,45],theme:[1,33],themselv:[1,30,33,43],thenc:[7,36],theorem:[3,7,8,34,37,39,41,42,44],theoret:[1,5,11,33],theori:[0,1,2,4,9,10,13,14,19,25,27,32,33,35,38,39,40,41,42,43,45],thereaft:[1,6,7,12,13,16,17,18,26,27,28,33,36,40,41],therebi:[1,6,8,12,33,34,35,37,43],therefor:[1,2,3,4,5,7,8,9,12,14,30,33,34,36,37,38,39,40,41,42,43],therein:12,thereof:[0,1,7,14,33,36,38,39],thesi:42,theta:[2,5,14,22,30,38,39,40,41,42],theta_:[2,14,38,39,40,41,42],theta_i:[2,40,41,42],theta_linreg:[14,22,38,39],theta_t:[14,38,39],thetaand:[39,40],thetaor:[39,40],thetaxor:[39,40],thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,24,25,26,27,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45],thing:[1,2,3,5,6,8,10,30,33,35,36,37,41,42,45],think:[1,2,4,5,7,10,13,14,15,24,30,33,36,37,38,39,40,41,42,43,44,45],third:[1,4,7,14,22,31,33,36,37,38,39,43],thirti:[8,37,44],thorughout:33,those:[1,4,6,7,9,10,11,12,22,26,27,28,29,33,34,36,43,44,45],though:[2,3,4,5,14,26,30,38,39,40,41,42,43],thought:[0,7,15,27,28,30,36],thousand:[0,1,2,27,33,34,38,39,41,42,45],thread:[4,5,43,44],three:[1,2,4,6,7,9,10,13,16,24,26,27,29,30,31,33,34,35,36,37,39,40,41,42,43,45],threshold:[2,4,10,11,12,13,14,24,38,39,40,41,42,43,44,45],through:[1,2,3,4,5,6,7,9,12,13,14,15,25,26,30,33,34,35,36,37,38,39,40,41,42,43],throughout:[1,5,6,15,24,25,26,30,33,42],thu:[1,2,3,6,7,8,9,11,12,13,14,22,27,31,33,34,35,36,37,38,39,40,41,42,43,44,45],thumb:[1,7,27,33,34],thursdai:[31,33,38,39,45],tibshirani:[7,19,27,29,32,33,34,36],tick_param:7,ticker:[7,14,27,30,37,38],tif:[7,27],tight_layout:[2,8,37,41,42,44],tightli:12,tild:[1,6,7,8,12,16,17,18,19,20,27,30,33,34,35,36,40,41,42],till:[1,5,8,9,10,11,13,26,33,34,37,38,40,41,44,45],time:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,22,24,25,26,27,28,30,33,34,35,36,37,40,41,42,43,45],timeit:[5,44],timer:[5,44],tini:[2,41,42,44],tip:[4,43],titl:[1,2,3,4,5,7,8,9,10,11,14,22,27,30,33,34,36,37,38,39,40,41,42,43,44,45],tmp:[14,38,39],tmp_log:[4,5,43,44],tn:[3,4,8,42,43,44],tnr:44,to_categor:[2,4,5,40,41,42,43,44],to_categorical_numpi:[2,40,41,42],to_numer:[1,7,33,36],to_numpi:43,todai:[4,43],toeplitz:43,togeth:[1,4,7,9,12,14,22,24,25,33,34,38,39,42,43,44],toi:[15,38,39],told:[14,38,39],toler:[3,7,15,42],tolist:[5,44],tomographi:[13,39,40],too:[1,3,5,6,7,10,12,14,16,30,32,33,34,36,37,38,39,42,45],took:[9,33],tool:[1,2,4,7,14,25,34,36,38,39,41,42,43],toolbox:9,top:[1,4,6,7,10,11,19,25,33,35,36],topic:[0,1,6,7,8,9,25,27,28,34,35,37,42],topograph:27,topolog:[2,4,13,39,40,41,42,43],toposort:[],torkjellsdatt:[31,33],toss:[11,30],total:[1,2,3,4,5,7,8,9,11,12,13,14,15,16,17,23,24,26,28,30,31,33,34,36,37,38,40,41,42,43,44,45],total_loss:5,totalclustervari:15,totalscatt:15,toward:[2,3,8,13,14,27,37,38,40,41,42],towardsdatasci:[38,39],town:[1,34],tp:[5,8,44],tpng:[10,45],tpr:44,tpu:[14,22,25,33,38,39],tqdm:7,tr:34,trace:[3,4,5,14,39,43,44],trace_stack:[3,14,39],traceback:[1,3,4,5,7,10,11,14,16,27,33,35,36,37,38,39,42,43,44,45],traceback_util:[4,5,43,44],tracer:[3,14,39],tracing_count:[4,5,43,44],track:[4,14,15,26,37,38,39,43],tract:[1,34],tractabl:[1,33,34],trade:[6,10,20,35,36,45],tradeoff:[1,6,20,27,33,34,35,37],tradit:[1,2,5,7,33,36,40,41,42,44],train:[3,4,6,7,9,10,11,12,13,14,18,20,22,24,27,28,35,36,37,38,39,45],train_acc:[24,42,43],train_accuraci:[1,2,4,33,40,41,42,43],train_dataset:5,train_end:[1,2,34,40,41,42],train_error:[7,24,42,43],train_funct:[4,5,43,44],train_imag:[4,5,43],train_ind:[7,36,37],train_label:[4,5,43],train_pr:[2,40,41,42],train_siz:[1,2,4,34,40,41,42,43],train_step:5,train_test_split:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],train_test_split_numpi:[1,2,34,40,41,42],trainabl:[5,43,44],trainable_vari:5,trained_model:[7,34,35],trainerror:[1,34],traini:[5,44],training_checkpoint:5,training_dataset:5,training_gradi:[14,22,38,39],training_gradient_fun:[38,39],training_loss:[38,39],trainingerror:[7,36],trainpredict:[5,44],trainscor:[5,44],trainx:[5,44],trait:[1,33],trajectori:[5,44],trajectory_i:22,trajectory_x:22,transfer:[10,43,45],transform:[1,6,7,8,9,10,11,12,13,14,22,24,25,26,33,34,35,36,37,38,39,40,42,45],transit:[7,13,39,40],translat:[2,5,7,11,34,35,40,41,42,43,44,45],translate_vjp:3,transpos:[2,6,12,26,34,35,40,41,42,43],travers:[1,6],treat:[1,2,4,7,13,14,30,33,34,35,36,37,38,39,40,41,42,43,44],tree:[0,1,2,7,25,27,33,40,41,42],tree_clf:[10,11,45],tree_clf_:10,tree_clf_sr:10,tree_reg1:[10,45],tree_reg2:[10,45],tree_reg:[10,45],trend:[30,45],treue:8,trevor:[19,27,32],tri:[3,4,5,10,14,37,38,39,42,43,44,45],triain:1,trial:[1,3,5,7,14,30,33,36,37,38],triangl:[14,37,38],triangular:26,trick:[4,5,9,12,14,22,30,38,39,43],trickier:30,tridiagon:26,trigonometr:43,trillion:25,trivial:[1,2,6,12,30,33,35,41,42],troubl:[1,9,13,34,40],truck:[4,43],true_beta:[7,34,35],true_divid:[2,40,41],true_fun:[7,36],truli:[33,44],truncat:22,tucker:9,tuesdai:[31,33,36,37,38,39,40,41,42,43,44,45],tumor:[8,10,28,37,44,45],tumour:[8,37,44],tunabl:[2,22,23,28,41,42],tune:[5,10,14,22,23,26,28,33,37,38,39,43,44,45],tupl:[3,14,24,39,42,43],turbul:0,turn:[1,2,6,7,8,9,10,11,12,13,14,20,26,27,30,33,34,36,37,38,39,40,41,42,43,44,45],tutori:[2,5,41,42],tv:[3,42],tveito:[3,42],tweak:[2,5,11,30,41,42,45],twice:[14,37,38],twist:[0,12],two:[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,23,24,26,29,30,32,33,35,36,38,39,40,41,42,44,45],tx:[14,37,38,39,40],tx_1:[14,37,38],txt:5,ty:[14,37,38],type:[1,2,4,7,9,11,14,17,24,26,27,30,34,35,36,37,38,41,43,45],typeerror:[3,14,39],typic:[1,2,3,4,5,6,8,10,11,13,14,22,28,30,33,34,35,36,37,38,39,40,41,42,43,44],typo:[0,27,28],u:[0,1,3,6,7,9,11,12,13,18,26,33,34,35,39,40,42],u_:[0,26],u_i:[13,39,40],u_m:11,u_t:0,ua:[1,33],ubuntu:[0,1,16,25,27,33],uci:[0,1,28,34],uio:[0,27,28,31,32],uis:45,un:15,unari:[26,33],unary_f:[3,14,39],unary_oper:[3,14,39],unary_to_nari:[3,14,39],unbalanc:[7,10,36,37,45],unbias:[1,6,7,33,35,36],uncent:[7,35],uncertainti:[1,6,33,35,36],uncertitud:30,unchang:[2,4,41,42,43],unclos:[],uncorrel:[11,30,45],undefin:[6,34],under:[0,1,2,6,7,11,14,16,17,25,27,28,33,34,35,36,37,38,41,42,44],underdetermin:[1,33],underfit:[2,7,36,41,42],underflowproblem:[6,35,36],undergo:[6,35,36],undergradu:[29,31],underli:[1,2,10,14,30,33,38,39,41,42,45],underset:[5,15],understand:[1,2,4,6,7,11,14,15,22,24,25,33,34,35,37,38,39,41,42,43,45],understood:[9,14,38,39],undesir:9,undetermin:[6,9,35,36],undo:5,unexpect:[7,36],unexpected:30,unfair:[7,34,35],unfortun:[2,9,10,11,41,42,45],unicode_liter:[9,10],uniform:[1,2,6,7,12,14,16,17,27,30,33,34,37,38,40,41,42,44],uniformli:[14,30,37,38,39],unifrompdf:30,unimport:[14,37,38],union:[6,7,35,36,37],uniqu:[1,3,7,14,15,26,33,36,37,38,42],unique_cluster_label:15,unit:[1,2,4,5,6,11,13,30,33,34,35,39,40,41,42,45],unitari:[6,7,26,34],unitarili:[26,33],uniti:30,univari:30,univers:[0,1,2,3,14,16,25,27,28,29,31,33,34,35,36,37,38,39,41,42,43,44,45],unix:[2,41,42],unknow:[1,26,33],unknown:[1,2,4,5,6,7,9,11,14,17,22,26,33,34,35,36,38,39,40,41,43,44,45],unknowwn:[13,40],unlabel:[2,41,42],unless:[0,1,4,7,12,14,27,28,33,34,36,37,38,43],unlik:[2,3,4,9,14,37,38,39,41,42,43],unnecessarili:[10,45],unoptim:43,unord:[4,43],unravel:[2,40,41,42],unravel_index:43,unreason:43,unrol:[4,12,43],unsampl:43,unseen:[1,8,10,37,45],unstabl:[2,41,42],unsupervis:[0,1,2,5,13,25,33,39,40,41,42],unsymmetr:[26,33],untak:[],until:[2,3,5,10,13,14,15,24,37,38,39,40,41,42,44,45],untouch:1,untradit:43,unusu:[13,39,40],up:[2,4,5,6,7,9,11,12,14,15,17,19,25,26,27,28,30,31,35,38,39,44],updat:[2,3,11,13,14,15,22,24,38,39,40,41,42,43,44,45],update_chang:[24,42,43],update_matrix:[24,42,43],uploa:33,upload:[0,25,27,28,32],upon:[1,2,7,8,12,24,26,27,41,42,43],upper:[1,9,10,17,26,34,43,45],uppercas:[26,33],upsampl:[5,43],upsampled_height:43,upsampled_width:43,upscal:5,url:42,us:[0,5,6,7,9,10,11,12,13,15,16,17,18,19,20,23,26,27,29,30,32,35,36],usa:[33,39],usag:[1,9,25,33,34],usd10000:[1,34],usd:[1,34],use_bia:[5,44],use_multiprocess:[4,5,43,44],usecol:[1,33],useless:[2,40,41,42],user:[0,1,2,3,4,5,7,8,9,12,16,22,24,25,26,27,33,34,35,37,40,41,42,43,44],usernam:[0,27,28],userwarn:[4,7,22,43],usetex:30,usg:[7,27],usr:30,usual:[1,4,5,8,13,14,15,33,37,38,39,40,43,44],ut:[6,35],util:[1,2,4,5,7,8,11,15,24,28,33,34,36,37,41,42,43,44,45],ux:26,v0:30,v1:30,v2:30,v3:43,v:[3,5,6,7,12,14,18,22,24,25,34,35,38,39,42,43],v_0:12,v_ind:43,v_stride:43,va:[2,41,42],val:[14,38,39],val_acc:[24,42,43],val_accuraci:[4,43],val_error:[24,42,43],val_loss:[5,43,44],val_set:[24,42],vale:[3,42],valid:[0,1,2,5,8,10,11,14,22,24,25,28,30,33,34,38,39,41,42,43,44,45],validation_batch_s:[4,5,43,44],validation_data:[4,5,43,44],validation_freq:[4,5,43,44],validation_split:[4,5,43,44],validation_step:[4,5,43,44],valu:[1,2,3,4,5,7,8,9,10,11,13,14,15,16,17,20,22,24,25,26,27,33,38,39,40,41,42,43,45],valuat:[10,45],valued_at_a:[24,42,43],valued_at_z:[24,42,43],valueerror:[1,33],valy:[5,44],van:[1,19,27,33,34,35,36],vandenbergh:[9,14,37,38],vandermond:[1,33],vanilla:[1,7,12,15,34,35],vanish:[2,5,14,30,37,38,41,42],var_x:30,varabl:9,varepsilon:[6,7,19,27,35,36],varepsilon_:[6,7,35,36],varepsilon_i:[6,7,35,36],vari:[1,2,4,6,7,11,16,17,33,36,40,41,42,43,44,45],variabl:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,22,24,26,33,34,35,36,39,40,41,42,43,44,45],varianc:[1,2,6,8,10,11,12,14,15,19,20,22,25,26,28,30,33,34,37,38,39,41,42,45],variance_i:[6,12,34],variance_x:[6,12,34],variant:[0,1,2,7,9,13,14,33,34,37,38,39,40,41,42,43],variat:[0,4,5,12,33,43],varieti:[0,1,4,13,16,25,27,33,39,40,43],variou:[0,2,4,6,7,8,9,10,12,13,14,17,19,22,23,24,25,26,27,30,34,35,38,39,40,41,42,43,44],varydimens:[5,44],vastli:[4,43],vaue:[2,41,42],vault:1,vdot:[3,14,37,38,42],ve:[0,27,28,43],vec:[7,36],vector:[1,2,3,4,5,6,7,8,10,11,12,14,15,17,18,22,24,25,35,36,37,38,41,42,43,44,45],vector_mean:15,veloc:0,ventur:[0,1,9,16,25,33],verbos:[2,4,5,41,42,43,44],veri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,27,28,30,32,33,34,35,36,37,38,39,40,43,44,45],verifi:[4,12,26,33],versatil:[9,33],versicolor:[9,10],version:[0,1,4,5,11,14,15,16,25,26,27,28,30,33,34,38,39,43,44,45],versu:[2,41,42],vert:[1,2,6,7,8,9,10,12,14,18,33,34,35,36,37,38,40,41,45],vert_1:[6,7,34,35,36],vert_2:[6,7,12,18,34,35,36],vertic:43,vi:[24,42,43],via:[0,1,6,7,8,9,10,11,12,13,16,20,24,25,26,27,29,30,31,33,34,35,36,37,39,40,42,43,44,45],vidal:12,video:[1,2,13,25,29,31,33,34,35,36,37,40,41,42,43,44,45],view:[2,4,6,7,13,14,22,30,32,33,35,36,38,39,40,41,42,43],vii:[24,42,43],viii:[24,42,43],violat:9,virginica:10,viridi:[1,2,3,4,24,33,40,41,42,43],virtual:[2,41,42],viscos:[14,38,39],viscou:[14,38,39],visibledeprecationwarn:3,visin:43,vision:[1,4,33,43],visual:[1,4,12,13,16,24,25,33,34,39],visualis:[2,41,42],viz:[7,9,30],vjp:[3,14,39],vjp_argnum:3,vjpfun:[],vjpmaker:3,vjpnode:[3,14,39],vjps_dict:3,vmap:[14,38,39],vmax:[2,7,41,42,43],vmin:[2,7,41,42,43],voic:[4,43],volum:[1,4,33],volume18:42,vote:[0,11],voting_clf:[11,45],votingclassifi:[11,45],votingsimpl:[11,45],vs:[1,5,7,34,36,38,44],vspace:[3,14,39],vstack:[6,12,24,26,30,33,34,42,43],vt:[6,34,35],w1:9,w2:[9,12],w3:9,w:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,24,26,30,33,34,36,37,38,39,40,41,42,43,44,45],w_1:[9,26],w_1x_1:9,w_1x_:9,w_2:[9,26],w_2x_2:9,w_2x_:9,w_3:26,w_4:26,w_:[2,13,39,40,41,42,43],w_h:[24,42],w_hidden:[3,42],w_i:[2,3,11,40,41,42,45],w_ix_i:[13,39,40],w_j:26,w_m:26,w_output:[3,42],w_px_:9,w_px_p:9,wa:[1,2,4,5,6,7,8,11,12,13,14,15,18,24,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],wai:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,18,26,28,30,33,34,35,37,38,39,40,41,42],walk:[10,45],walker:30,wang:[1,33],want:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],warn:[1,2,5,9,24,33,34,40,41,42,43],warrant:[7,36,37],wast:[4,38,39,43],watch:[4,5,25,43,44],wave:[4,43],wavelet:9,we:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,34,35,36,37,40,43],weak:[10,11,15,45],weakli:44,weather:[2,13,39,40,41,42],web:[25,29,31,33,34],weblink:28,webpag:33,websit:[7,26,27,29,33],wedg:[9,30],wednesdai:[31,33,36,37,38,39,40,41,42,43,44,45],wee:12,week:[0,1,6,7,8,27,28,29,31],weekli:[25,27,31,32,33,39],weight:[1,2,3,4,7,8,10,11,13,14,24,27,28,30,34,37,38,39,43,44,45],weight_arrai:[24,42],weights_next:43,weigth:[3,42],welcom:[0,9,25],well:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,16,17,20,21,22,24,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,44,45],went:9,were:[1,2,4,5,6,7,8,9,11,12,13,15,24,30,33,34,36,37,39,40,41,42,43,45],wessel:[1,19,27,33,34,35,36],what:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,20,24,25,26,27,28,30,37,38,39,40,41,42,44],whatev:[4,43],when:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,24,26,27,28,30,33,34,35,36,37,40,41,42,43,44,45],whenev:[14,22,30,38,39,44],where:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],wherea:[7,30,36],wherein:[2,13,39,40,41,42],whether:[0,1,4,6,8,10,27,28,30,33,35,37,43,44,45],which:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,24,25,26,27,28,29,30,31,33,34,35,36,37,40,43,44,45],whichev:[2,4,41,42,43],whilst:43,white:[10,45],whiteboard:[20,34,35,36,37,38,40,41,43,44],who:[1,29,33,44],whole:[2,4,5,6,10,12,14,35,36,38,39,40,41,42,43,44,45],whose:[1,7,11,30,34,36,45],whow:[12,34],whrn:36,why:[1,2,4,7,14,22,27,35,37,38,41],wide:[0,1,2,4,7,8,13,16,25,26,27,33,36,37,39,40,41,42,43],widehat:[7,36],width:[1,4,9,10,33,43,45],width_index:43,wieringen:[1,19,27,33,34,35,36],wiki:44,wikipedia:44,win:[11,45],wind:[10,45],window:43,windows_out:43,wing:[31,33],winther:[3,42],wiothout:[7,34,35],wiscons:[8,37,44],wisconsin:[11,24,28,42,45],wisdom:[7,35],wise:[1,2,6,13,14,34,38,39,40,41,42,43],wish:[0,1,3,6,8,9,12,14,15,24,26,27,28,33,34,37,38,42,43,44,45],with_std:[1,34,36],wither:7,within:[1,3,4,5,8,10,13,14,15,30,32,33,37,38,40,42,43,44,45],withinclust:15,without:[1,2,6,7,9,10,12,13,14,22,23,28,33,34,35,36,38,39,40,41,42,43,45],without_trac:[4,5,43,44],wo5dmep_bbi:[],won:[1,33],wonder:9,woodi:33,word:[1,2,4,5,6,7,8,15,24,30,33,34,35,36,41,42],work:[0,1,2,5,7,8,9,10,14,16,22,25,27,28,29,30,31,33,34,36,37,38,39,40,41,42,43,44,45],worker:[4,5,43,44],workshop:33,world:[1,9,33,34,43],worldwid:[1,33],wors:[1,2,4,5,7,33,36,41,42,43],worst:[10,43,45],worth:[10,43],worthi:[0,27,28],would:[0,1,2,4,6,7,8,9,10,11,12,13,14,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],wrap:[7,26,33],wrap_util:[3,14,39],wrapper:[1,33],write:[0,1,2,3,4,6,7,8,9,13,14,16,17,18,21,22,24,26,27,33,34,36,37,38,39,40,41,43,44],written:[0,1,3,4,6,12,13,14,17,25,26,27,28,30,33,34,35,36,37,38,39,40,42,43],wrong:[2,9,40,41,42],wrongli:[11,44,45],wrote:[6,12,34],wrt:[3,11,14,22,38,39,45],wth:[11,14,22,38,39,45],www:[0,25,26,27,28,32,33,42],wx_1:9,x0:9,x1:[5,9,10,11,14,38,39,44,45],x1_exampl:9,x1d:9,x2:[9,10,11,14,38,39],x2d:[9,12],x2d_train:12,x2dsl:12,x3:9,x:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,26,27,28,30,33,36,37,38,39,40,41,42,43,44,45],x_0:[1,6,12,26,33,34,35,36],x_1:[1,3,6,7,8,9,10,11,12,14,24,26,30,33,34,35,36,37,38,39,40,41,42,45],x_2:[1,3,6,7,8,9,10,11,12,14,24,26,30,33,34,36,37,38,39,40,41,42,45],x_3:[9,26,30],x_4:26,x_:[1,3,4,6,7,9,11,12,14,15,19,26,27,30,33,34,35,36,37,38,42,43,45],x_batch:[24,42,43],x_batch_feedforward:43,x_batch_feedforward_shap:43,x_batch_pad:43,x_center:12,x_data:[2,40,41,42],x_data_ful:[2,40,41,42],x_hidden:[3,42],x_i:[0,1,2,3,6,7,8,9,10,11,12,13,14,15,18,26,30,33,34,35,36,37,38,39,40,41,42,45],x_input:[3,42],x_ix_:[1,33],x_iy_i:9,x_j:[1,3,9,10,13,17,30,34,39,40,42,45],x_jy_j:9,x_k:[13,15,26,30,34,39,40],x_l:30,x_m:[7,13,26,30,36,39,40],x_n:[1,3,4,7,9,12,13,14,26,30,33,36,37,38,39,40,42],x_new:[10,11],x_offset:[7,34,35],x_output:[3,42],x_p:[4,8,10,37,43,45],x_poli:[10,45],x_poly10:[10,45],x_pred:[5,44],x_prev:[3,42],x_reduc:12,x_scale:9,x_small:[14,38,39],x_test:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],x_test_own:7,x_test_scal:[1,7,8,10,11,12,34,35,36,45],x_tot:[5,44],x_train:[1,2,4,5,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],x_train_mean:[7,34,35,36],x_train_own:7,x_train_scal:[1,7,8,10,11,12,34,35,36,45],x_val:[2,24,41,42,43],xarrai:[25,33],xavier:[2,41,42],xbnew:[14,37,38],xcode:[0,1,16,25,27,33],xdclassiffierconfus:11,xdclassiffierroc:11,xg_clf:11,xgb:11,xgbclassifi:11,xgboost:[0,10,45],xgboot:11,xgbregressor:11,xgparam:11,xgtree:11,xi:[9,14,22,38,39],xi_1:9,xi_:9,xi_i:9,xinv:[35,39,40],xk:9,xla:[4,5,14,22,25,33,38,39,43,44],xlabel:[1,2,3,4,5,6,7,8,9,10,11,14,22,27,30,33,34,35,36,37,38,39,41,42,43,44,45],xlim:[7,11,36,45],xm:10,xmesh:[14,38],xnew:[1,14,22,33,37,38,39],xor:43,xp:30,xpanda:[1,34],xpd:[6,12,34],xplot:1,xs:10,xscale:[1,34],xsr:10,xt_x:[14,22,37,38,39],xtest:[7,36,37],xtick:[4,7,9,10,36,43,45],xtrain:[7,36,37],xu:[1,33],xx:[0,1,26,33],xy:[1,7,9,26,27,33],xytext:9,xz:[26,33],y1:[5,44],y2:[5,44],y3:[5,44],y:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],y_0:[1,6,12,26,33,34,35,36],y_1:[1,6,9,10,12,14,26,33,34,35,36,37,38,45],y_1y_1:9,y_1y_1k:9,y_1y_2:9,y_1y_2k:9,y_1y_n:9,y_1y_nk:9,y_2:[1,6,9,10,12,26,33,34,45],y_2y_1:9,y_2y_1k:9,y_2y_2:9,y_2y_2k:9,y_3:[1,10,26,45],y_4:26,y_:[1,2,6,7,11,12,26,33,34,35,36,40,41,42,45],y_data:[1,2,6,7,33,34,35,36,37,40,41,42,44],y_data_ful:[2,40,41,42],y_decis:9,y_fit:[1,34],y_i:[1,2,6,7,8,9,10,11,12,13,14,16,17,18,19,20,26,27,28,33,34,35,36,37,38,39,40,41,42,45],y_if_:[11,45],y_ix_:[1,33],y_ix_i:[8,9,14,34,37,38],y_iy_jk:9,y_j:[7,9,13,20,27,36,39,40],y_k:[13,39,40],y_m:26,y_model:[1,5,6,7,33,34,35,36,37,44],y_n:[9,14,37,38],y_ny_1:9,y_ny_1k:9,y_ny_2:9,y_ny_2k:9,y_ny_n:9,y_ny_nk:9,y_offset:[7,34,35],y_plot:[10,45],y_pred1:[10,45],y_pred2:[10,45],y_pred:[1,2,5,7,8,9,10,11,34,35,36,37,40,41,42,44,45],y_pred_rf:[11,45],y_pred_tre:11,y_proba:[8,11,37,44,45],y_scaler:[7,35,36],y_test:[1,2,4,5,6,7,8,10,11,12,33,34,35,36,37,40,41,42,43,44,45],y_test_onehot:[2,40,41,42],y_test_predict:[1,34],y_test_scal:36,y_tot:[5,44],y_train:[1,2,4,5,6,7,8,10,11,12,33,34,35,36,37,40,41,42,43,44,45],y_train_mean:[7,34,35],y_train_onehot:[2,40,41,42],y_train_predict:[1,34],y_train_scal:[7,35,36],y_val:[2,41,42,43],yadav:[0,42],yand:[24,39,40,41,42],ye:[4,7,8,36,37,43],year:[1,25,33,41],yet:[1,2,7,9,12,14,24,33,37,38,39,40,41,42,43],yi:[14,22,38,39],yield:[1,3,6,7,9,11,13,14,15,26,30,33,35,36,37,38,39,40,42,43,44,45],yk:9,ylabel:[1,2,3,4,5,6,7,8,9,10,11,14,22,27,30,33,34,35,36,37,38,39,41,42,43,44,45],ylim:[4,7,36,43],ym:10,ymesh:[14,38],yn:1,yo:[9,10,11],yor:[24,39,40,41,42],yoshua:[2,32,41,42],you:[0,1,2,3,4,5,6,7,9,10,11,12,14,16,17,18,20,21,22,23,24,25,26,27,28,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45],young:[1,33],your:[2,3,5,6,7,9,12,14,18,20,21,22,23,24,25,26,27,35,36,37,38,39,40,41,42,43,44],yourself:[12,14,33,38,45],youtub:25,ypred:[7,36,37],ypredict2:[14,22,37,38,39],ypredict:[1,14,22,33,34,37,38,39],ypredictlasso:[6,35],ypredictol:[1,6,35,36],ypredictown:[7,34,35],ypredictownridg:[7,35],ypredictridg:[1,6,7,35,36,37,44],ypredictskl:[7,34,35],yridg:33,ys:10,ytest:[7,36,37],ytick:[4,7,9,10,36,43,45],ytild:[1,7,33,34,36],ytilde_test_ol:36,ytilde_test_ridg:36,ytildelasso:[6,35],ytildenp:[1,33,34],ytildeol:[1,6,35],ytildeownridg:[7,35],ytilderidg:[6,7,35],ytrain:[7,36,37],yx:[26,33],yxor:[24,39,40,41,42],yy:[26,33],yz:[26,33],z:[1,2,3,4,5,6,7,8,9,10,12,13,14,24,26,27,30,33,34,36,37,38,39,40,41,42,43,45],z_0:[26,33],z_1:[26,33],z_2:[26,33],z_:[2,3,13,26,33,40,41,42],z_c:[2,40,41,42],z_h:[2,24,40,41,42],z_hidden:[3,42],z_i:[2,13,39,40,41],z_j:[2,13,41,42],z_k:[13,34,40],z_m:[2,40,41],z_matric:[24,42],z_matrix:43,z_mod:[10,45],z_o:[2,24,40,41,42],z_output:[3,42],zaman:30,zaxi:[7,27],zero:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,44,45],zeros_lik:5,zeroth:34,zfill:5,zip:[3,5,7,14,39],zm_h:[1,33],zmq:[],zn:[1,34],zone:[1,34],zoom:33,zx:[26,33],zy:[26,33],zz:[26,33]},titles:["Project 3 on Machine Learning, deadline December 18 (midnight), 2023","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","Week 44, Convolutional Neural Networks (CNN)","Week 45, Recurrent Neural Networks","Week 46: Decision Trees, Ensemble methods and Random Forests"],titleterms:{"1":[1,16,17,18,19,27,33,34],"12":40,"13":28,"14":36,"18":0,"19":41,"2":[1,16,17,18,19,28,33,34,43],"2023":[0,27,31],"21":37,"23":37,"26":42,"3":[0,1,16,17,33,34],"31":34,"34":[16,33],"35":[17,34],"36":[18,35],"37":[19,36],"38":[20,37],"39":[21,22,38],"3d":43,"4":[1,34],"40":[22,39],"41":[22,40],"42":[23,41],"43":[24,42],"44":[24,42,43],"45":44,"46":45,"5":1,"7":35,"9":[27,44],"case":[9,11,30,34,35,37,38],"class":37,"do":[2,33,35,36,38,39,40,41,42,45],"final":[13,22,28,34,35,38,39,40,42,43,45],"function":[1,2,7,8,9,11,12,13,14,22,24,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],"import":[6,22,26,33,34,35,43,45],"long":44,"new":[5,35,36,44],"short":44,"try":44,A:[1,2,5,9,10,22,33,35,36,37,41,42,43,44,45],AND:[24,39,40,41,42],And:[22,33,34,35,37,38,39],But:[22,38,39],In:31,Is:[41,42],Ising:7,No:43,OR:[39,40,41,42],The:[0,1,2,3,4,6,7,8,9,10,12,13,18,24,25,33,34,35,36,37,38,39,40,41,42,43,44,45],To:[33,34],With:[5,35,44],about:[33,34],abov:[24,35,42,43],activ:[2,13,24,28,35,39,40,41,42,43,44],ad:[1,7,18,27,33,34,39,40],adaboost:[11,45],adagrad:[14,22,38,39],adam:[14,22,38,39],adapt:[11,22,38,39,45],add:43,addit:[43,44,45],adjust:[2,40,41,42],advanc:22,adversari:5,again:[4,10,37,43,44],ai:33,aim:[9,10,18,19,20,21,22,23,24,33,45],aka:[33,34],al:22,algebra:[26,33],algorithm:[10,11,12,13,22,28,34,38,39,40,41,45],algortithm:[14,37,38],all:[9,44],an:[1,5,11,33,44,45],analys:[6,34],analysi:[1,6,7,12,25,27,28,30,33,34,35,36],analyt:[1,17,18,22,42],analyz:0,ani:[14,37,38],anoth:[10,35,36],appli:25,approach:[1,9,15,33,36,38,39,45],approxim:[13,40],architectur:[2,40,41,42],argument:[38,39],arithmet:43,arrai:[26,33],artifici:[39,40],assist:31,assumpt:[35,36],august:34,autocorrel:30,autograd:[3,14,22,38,39,42],automat:[14,22,38,39,42],avoid:[38,39],b:[0,18,27,28,38,39],back:[2,12,13,40,41,42],background:[25,27,28,36],backpropag:[43,44],backward:44,bag:[11,45],base:[14,22,36,38,39],basic:[0,1,6,8,10,11,12,26,34,35,36,37,44,45],batch:[2,38,39,41,42],bay:[6,35,36],befor:12,beta:[35,36],better:[9,39,40],bia:[7,27,36],bias:[40,41,42],binari:[2,40,41,45],bind:33,bird:[11,45],boldsymbol:[34,35,36],boost:[11,45],bootstrap:[7,11,36,45],boston:[1,34],breast:[2,41,42],brief:[33,36,37,38,43],bring:[13,40],build:[2,4,10,24,41,42,43,45],c:[0,27,28,33],calcul:34,can:[22,33,36,38,39,44],cancer:[2,8,10,12,37,41,42,44,45],cart:[10,45],cell:44,center:34,central:[14,25,30,36,37,38],chain:[13,40],challeng:37,chang:[11,45],channel:33,chi:[1,33],choic:[41,42],choos:[2,40,41,42],cifar01:[4,43],classic:12,classif:[2,10,11,24,28,37,40,41,42,44,45],classifi:[9,37,45],clip:[2,41,42],cluster:15,cnn:[4,43],code:[1,2,3,6,10,12,13,14,15,22,24,28,33,34,35,36,37,38,39,40,41,42,43,45],coeffici:43,coin:45,collect:[2,4,40,41,42,43],combin:44,come:37,commun:33,compact:37,compar:[3,11,42,45],comparison:35,compet:[22,38,39],compil:43,complet:34,complex:[1,7,27,34,45],complic:[7,38,39],compon:12,comput:[10,38,39,45],computation:36,computerlab:33,con:[10,45],concept:30,condit:[35,36,37,38],confid:36,conjug:[14,38],connect:43,construct:[40,41,42],content:43,continu:39,contn:33,convex:[9,14,37,38],convolut:[4,13,39,40,43],convolution2dlay:43,correctli:[35,36],correl:[12,34,37,43,44],correspond:[37,38],cost:[2,11,24,34,35,36,37,38,40,41,42,43,45],cours:[25,32,33],covari:[6,12,30,34],cover:33,critic:28,cross:[7,27,36,37],ct:43,cumul:44,curv:44,cython:33,d:[0,27,28],data:[0,1,2,4,7,8,10,12,16,17,24,25,27,30,33,34,35,37,40,41,42,43,44,45],dataset:[2,4,40,41,42,43],deadlin:[0,27,28,33],decai:[3,38,39,42],decemb:0,decis:[10,11,45],decomposit:[6,12,18,26,34],deep:[2,3,37,41,42],defin:[0,2,33,40,41,42],definit:40,degre:[1,34],deliveri:[0,27,28],delta:36,demonstr:43,dens:[1,33,43],deriv:[6,13,34,35,36,37,38,40,41,42],descent:[3,11,14,22,28,37,38,39,42],descript:27,design:34,detail:[4,33,42,43],develop:[2,40,41,42],diagon:12,differ:[9,28,38,39,43],different:22,differenti:[0,3,14,38,39,42],diffus:[3,42],dimension:[3,4,9,24,27,34,42,43],directli:[38,39],disadvantag:[10,45],discret:30,discuss:[37,44],distribut:[6,30,35,36],distrubut:[35,36],doe:[34,35,39,40],domain:[30,43],don:43,dot:[38,39],down:[2,41,42,45],dropout:[2,41,42],e:[0,27,28],each:37,economi:34,effect:44,effici:43,electron:[0,27,28],element:[1,30,33,38,39],elimin:26,energi:33,ensembl:[11,45],entropi:[10,37],environ:[1,16,33],equat:[0,1,3,13,33,34,35,37,38,40,42],error:[1,11,33,34,36,45],essenti:33,estim:[35,36],et:22,etc:[33,43],euler:[3,42],evalu:[2,28,40,41,42,43],exampl:[1,2,3,4,5,7,8,9,10,11,22,33,34,35,36,37,38,39,40,41,42,43,44,45],exercis:[1,7,16,17,18,19,20,21,22,23,24,33,34,36,42],expect:[19,30,35,36],expens:36,experi:30,explod:44,explor:[1,16,17,33],exponenti:[3,42],express:[18,19,33,34,37,38],extend:[37,38],extrapol:[5,44],extrem:[11,33,45],ey:[11,45],f:[27,28],f_1:44,factor:45,fall:31,famili:[2,33,34,41,42],famou:26,fantast:34,featur:[10,26,34,45],feed:[2,13,39,40,41,42],file:43,find:[36,38,39,43],fine:[2,41,42],first:[5,13,28,33,34,35,37,38,40,42,45],fit:[1,11,33,35,45],fix:34,flatten:43,flow:41,fold:[36,37],forc:[4,43],forest:[11,45],format:[0,27,28,33,44],forward:[2,3,13,39,40,41,42],four:44,fourier:[4,43],frank:[7,27,34],freedom:[1,34],frequent:34,frequentist:[1,33],fridai:37,from:[6,11,13,22,28,34,35,36,37,38,39,40,43,45],full:[3,40,41,42,43],fulli:43,funtion:[41,42],further:[4,6,34,43,45],g:27,gain:44,gan:5,gate:[24,39,40,41,42],gaussian:26,gd:[14,22,38,39],gener:[5,10,33,45],geometr:[12,37,38],get:22,gini:[10,45],good:[1,33],goodfellow:22,grade:[31,33],gradient:[2,3,11,14,22,28,37,38,39,41,42,44],grid:[37,44],group:37,grow:45,growth:[3,42],ha:25,half:43,hand:[24,42],handl:[26,33,34],happen:[35,36],have:33,head:45,heard:33,hessian:[34,37,38],hidden:[3,41,42,43,44],histogram:36,homework:[37,38],hour:45,hous:[1,34],how:[37,45],hyperbol:[39,40],hyperparamet:[2,40,41,42],hyperplan:9,i:[2,41,42],id3:10,idea:[12,43],ideal:[37,38],ident:[35,36],identifi:36,ii:[33,42],iid:[35,36],iii:42,illustr:[35,39,40],imag:43,implement:[2,40,41,42,44],implic:[6,34],improv:[2,38,40,41,42],includ:[14,22,37,38,39],increment:12,independ:[35,36],index:[10,45],indic:45,inform:31,initi:44,input:[3,42,44],instal:[0,25,27,33],instructor:31,intercept:34,interpret:[6,12,33,34,35,36,37,38],interv:36,introduc:[12,14,22,34,38,39],introduct:[0,1,7,25,26,27,28,33,39,40,41],invers:[6,26,35],invert:34,iter:[11,38,45],its:[34,45],iv:42,jacobian:[34,42],jargon:45,jax:[14,22,38,39],job:[39,40],julia:33,jungl:[11,45],k:[36,37],kei:43,kera:[2,4,41,42,43],kernel:[9,12,43],l:40,lab:44,lagrangian:9,lambda:[37,44],lasso:[6,7,27,34,35,36,37],last:[34,36,37,39],later:[6,34],layer:[2,3,4,13,40,41,42,43],layout:44,learn:[0,1,2,3,12,14,15,16,17,22,24,25,27,28,33,34,35,36,37,38,39,40,41,42,44,45],least:[6,7,19,27,33,34,35],lectur:[33,34,35,36,37,40,41,42,43,44],level:[11,45],librari:[25,33],likelihood:[8,35,36,37],limit:[2,14,30,36,37,38,39,41,42],linear:[1,9,14,26,28,33,34,35,37,44],link:[6,12,29,32,34,35,36],list:43,literatur:[27,28],logist:[8,28,33,37,38,39,40,41,42],loop:[38,39],loss:[34,37,38],lstm:44,lu:26,machin:[0,1,9,14,25,27,28,33,37,38],made:[35,36],mai:33,main:30,make:[1,10,11,16,17,33,34,45],mani:[11,13,40,45],manipul:34,margin:[35,36],mass:33,materi:[29,33,34,35,36,37,42,43,44],math:[6,34],mathemat:[4,6,9,34,38,39,40,43],matric:[6,26,33,35],matrix:[2,6,12,13,26,33,34,35,37,38,39,40,41,42,44],matter:[1,33],max:34,maximum:[35,36,37],mean:[1,33,34,35,37],measur:[37,44],medic:43,meet:[6,11,30,33,34,45],memori:44,mercer:9,method:[7,10,11,14,22,24,27,36,37,38,39,42,45],midnight:[0,27,28],min:34,mini:[38,39],minibatch:[22,38,39],minim:[33,37,42],ml:33,mle:[35,36],mlp:[13,40],mnist:[4,5,43],model:[1,2,5,7,13,33,39,40,41,42,43,45],moment:[38,39],momentum:[14,22,38,39],moon:[9,10,45],more:[4,7,22,26,27,33,34,35,36,37,38,39,41,42,43,45],multi:[39,40,41],multiclass:[24,42],multilay:[13,39,40],multipl:[2,4,40,41,42,43],multipli:9,need:[0,27,33,44],neg:44,network:[0,2,3,4,5,8,13,24,28,33,37,39,40,41,42,43,44],neural:[0,2,3,4,5,8,13,24,28,33,39,40,41,42,43,44],neuron:[39,40,43],newton:[22,37,38,39],nice:[41,42],nn:43,node:45,noen:[22,38,39],non:9,normal:[1,2,36,41,42],notat:[13,39,40],note:[22,34,35,36],novemb:[28,43,44],now:[2,10,14,22,35,36,38,39,41,42],nuclear:[1,33],nueral:37,numba:33,number:[1,3,22,30,34,38,39,42],numer:[0,3,27,28,30,42],numpi:[22,26,33,38,39],object:[4,40,41,42,43],obtain:12,octob:[27,40,41,42],od:[3,42],off:[7,27],ol:[6,7,22,27,35,36,38,39],one:[3,13,37,38,40,42],ones:[39,40],oper:26,optim:[2,9,14,25,33,34,37,38,39,40,41,42,43,44],order:[14,22,38,39],ordinari:[6,7,19,27,33,34,35,42],organ:[1,33],orient:[40,41,42],oslo:32,other:[5,10,12,13,24,26,33,34,37,39,40,42,44,45],our:[1,5,6,12,14,33,34,37,38,40,41,42,43],out:45,outcom:[25,33],output:[3,41,42,44],overarch:[1,5,9,10,18,19,20,21,22,23,24,33,34,44,45],overview:[11,33,38,39,45],own:[1,11,12,16,17,28,33,34,43,45],packag:[26,33],pad:43,panda:[33,34],paper:27,paramet:[33,34,37,38,39,44],part:[0,14,25,27,28,34,37,38,43],partial:[0,3,42],pass:[2,40,41,42,44],path:0,pca:12,pdf:30,pencil:27,perceptron:[13,39,40,41],perform:[2,10,40,41,42,45],period:[4,43],perspect:[2,41,42],pertin:45,plan:[34,35,36,37,38,39,40,41,42,43,44,45],plot:[36,37],point:[5,44],poisson:[3,42],polynomi:[4,35,43],pool:43,popul:[3,42],posit:44,possibl:[42,45],practic:[14,22,31,33,38,39,44],pre:[2,4,40,41,42,43],predict:[5,44],predictor:37,preprocess:34,prerequisit:[4,25,33,43],present:44,princip:12,principl:[4,43],print:45,pro:[10,45],probabl:[6,30,35,36],problem:[0,2,3,14,22,33,34,35,37,38,39,40,41,42,44,45],procedur:[10,33,45],process:[2,4,40,41,42,43],product:[38,39],program:[0,3,14,27,28,37,38,42],project:[0,7,27,28,33,37],prop:[14,38,39],propag:[2,13,40,41,42],properti:[6,30,34,37],prune:45,python:[1,10,16,25,26,33,45],quantiti:44,quick:9,r:33,random:[11,12,30,37,44,45],raphson:[37,38],rate:[22,24,38,39,42],read:[10,33,34,36,45],real:[7,27,33],recogn:43,recommend:[33,34,38,39],rectangular:35,recurr:[5,13,39,40,44],recurs:[38,39,45],reduc:[1,34],reduct:[4,43],reformul:[3,42],regress:[1,6,7,8,10,11,14,18,19,27,28,33,34,35,36,37,38,39,40,45],regressor:45,regular:[2,37,40,41,42,43,44],relat:34,relev:[32,34,36,37,39,40],relu:[2,41,42],remark:[4,43],remind:[7,9,33,37,38],repeat:34,replac:[14,38,39],report:[0,27,28],repositori:36,repres:[24,40,41,42],requir:[3,25,42],resampl:[7,27,35,36],rescal:[7,35],residu:34,resourc:[3,42],result:[34,35,44],review:41,revisit:[14,37,38],rewrit:[33,34,36],rewritten:37,ridg:[1,6,7,18,19,27,34,35,36,37,38],rm:[14,38,39],rmsprop:[22,38,39],rnn:44,roc:44,rule:[13,40],run:43,s:[9,11,22,36,37,38,39,45],same:[14,22,36,38,39,43],sampl:12,scale:[34,36,43],scan:43,schedul:[24,29,33,42,43],schemat:[10,45],scheme:[3,42],scienc:33,scikit:[1,2,12,16,17,24,33,34,35,36,37,38,40,41,42,45],score:44,search:[37,44],second:[14,22,38,39],select:37,semest:31,sensit:[37,38],separ:43,septemb:[35,36,37],session:[35,44],set:[0,1,3,4,10,13,16,24,33,34,37,40,41,42,43,45],setup:42,sever:44,sgd:[14,38,39],should:[2,41,42],sigmoid:[41,42],similar:[14,22,38,39],simpl:[1,5,10,14,33,34,35,37,38,39,43,44,45],singl:[11,39,40,45],singular:[6,12,18,34],size:34,sketch:45,slept:45,slightli:[38,39],soft:9,softmax:[2,40,41],softwar:[0,27,33],solut:42,solv:[0,3,35,37,38,42],solver:14,some:[14,26,33,34,37,38],sound:43,specif:42,specifi:[3,42,44],speed:43,split:[1,16,17,33,34,45],squar:[1,6,7,11,19,27,33,34,35,45],standard:[14,34,36,38,45],start:[22,39],state:[1,33,44],statement:33,statist:[6,7,25,30,33,35,36],steepest:[11,14,37,38],step:[28,36,37,38,39,45],still:34,stochast:[14,22,28,30,38,39],stop:[38,39],stride:43,strong:43,strongli:33,structur:0,studi:[37,44,45],subtract:34,suggest:33,sum:36,summari:[31,33,39],superposit:[4,43],supervis:[2,41,42],support:9,svd:[6,34,35],syntax:[38,39],systemat:[4,43],t:[34,35,43],tabl:45,tail:45,taken:22,target:44,teach:[29,31],teacher:[31,33],technic:[35,42],techniqu:[7,12,27,35],technolog:25,tensor:41,tensorflow:[2,4,41,42,43],tent:33,term:[36,40,44],test:[1,2,16,17,24,28,33,34,35,40,41,42],text:45,textbook:[32,33],than:[37,38],thei:33,theorem:[6,9,12,13,30,35,36,40],theori:30,thi:[18,19,20,21,22,23,33],thing:44,think:34,through:44,thursdai:[34,35,36,37,40,41,42,43,44],time:[38,39,44],tip:[14,22,38,39],togeth:[13,40],tool:33,top:[2,41,42,43,45],topic:33,toss:45,toward:12,trade:[7,27],tradeoff:[7,36],train:[1,2,5,16,17,33,34,40,41,42,43,44],transform:[4,43],tree:[10,11,45],trial:42,tuesdai:35,tune:[2,41,42],two:[4,9,25,27,34,37,43],type:[3,5,13,33,39,40,42,44],typic:45,uio:33,understand:36,unit:[43,44],univers:[13,32,40],unsupervis:15,unsupport:[38,39],up:[0,1,3,10,13,16,22,24,33,34,36,37,40,41,42,43,45],us:[1,2,3,4,8,14,22,24,25,28,33,34,37,38,39,40,41,42,43,44,45],usag:[24,35,36,42,43],valid:[7,27,36,37],valu:[6,12,18,19,30,34,35,36,37,44],vanish:44,vari:[22,38,39],variabl:[30,37,38],varianc:[7,27,35,36],variou:[1,16,28,33,36,37,45],vector:[9,13,26,33,34,39,40],veri:[41,42],verifi:43,video:[38,39],view:[1,5,11,34,44,45],visual:[2,10,40,41,42,43,45],volum:43,vote:45,vs:[4,43],wai:[10,22,36,43,44,45],warm:22,wave:[3,42],we:[22,33,38,39,41,42,44,45],websit:[41,42],wednesdai:35,week:[16,17,18,19,20,21,22,23,24,33,34,35,36,37,38,39,40,41,42,43,44,45],weekend:37,weekli:[29,36],weight:[40,41,42],well:43,what:[1,33,34,35,36,43,45],when:[38,39],which:[2,22,38,39,41,42],why:[33,34,36,39,40,42,43,45],wisconsin:[8,37,44],word:43,wrap:[34,36,43],write:[5,12,28,35,42],x:[34,35],xgboost:11,xor:[24,39,40,41,42],yet:35,you:33,your:[0,1,11,16,17,28,33,34,45],yourself:[0,37],z_j:40,zero:43}}) \ No newline at end of file +Search.setIndex({docnames:["Project3","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","week44","week45","week46"],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:["Project3.ipynb","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","week44.ipynb","week45.ipynb","week46.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,20,22,24,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"00":[1,2,6,7,10,12,24,33,34,37,40,41,42,43,44,45],"000":[2,4,24,40,41,42,43],"0000":[10,43,45],"00000":[10,45],"000000":[6,12,33,34],"0000000010":[24,42],"00000000e":[6,34,37,40,44],"00000215":22,"0000164":[],"00002678":[],"00003617":22,"000054":33,"0000747":[],"0001":[2,18,24,40,41,42,43],"00010133":22,"0001042":[],"00011154":22,"00012095":22,"0001225":[],"00012277":22,"00012569":22,"00012934":[],"00013313":22,"00013514":22,"00014654":22,"00014662":[],"00014875":22,"00015097":[],"00015239":[],"0001539814498783133":[],"0001613":22,"00016373":22,"00016536":[],"00016826":[],"00017031":[],"00017755":22,"00018022":22,"00018647":[],"00018653":[],"00019212":[],"00019432":[],"00019544":22,"00019838":22,"00019883":[],"00019998":6,"00020665":[],"00021042":[],"00021438167895478945":[],"00021512":22,"00021673":[],"00021836":22,"00022035":[],"00022902":[],"0002364":[],"00023679":22,"00023737":[],"0002382102844775691":[37,44],"00024035":22,"00024087":6,"0002442":[],"00024449":[],"00025381":[],"00026064":22,"00026456":22,"00026778":[],"00026861":[],"00027064":[],"0002758":[],"00028129":[],"00028689":22,"00029012":6,"00029121":22,"00029993":[],"00030207":[],"00031112":[],"00031174":[],"00031535148309577417":7,"00031535148309580783":7,"00031579":22,"00032054":22,"00033136014047192484":[],"0003324":[],"00034076":[],"00034548":[],"00034759":22,"00034944":6,"00035097":[],"00035283":22,"00036838":[],"0003826":22,"00038288":[],"0003844":[],"00038836":22,"00039592":[],"00039962":[],"00040199":22,"00040825":[],"000417932":3,"00042089":6,"00042114":22,"00042432":[],"00042748":22,"00043363":[],"00044152":[],"00044663":[],"00045244":[],"00046356":22,"000464088":3,"00047025":[],"00047054":22,"00048049":[],"00048325":[],"00048917":[],"00050142":[],"00050383":[],"0005051756404139333":[],"00050694":6,"00051025":22,"00051793":22,"00052115":[],"00053008":[],"00055182":[],"0005557":[],"0005603761549585715":45,"00056165":22,"00056836":[],"0005701":22,"00057757":[],"00058016":7,"0005840075008020406":10,"00060705":7,"00061058":6,"00061585":[],"00061822":22,"0006225":[],"00062595":7,"00062752":22,"00063364":36,"00063862":36,"00064009":[],"00064115":[],"0006527":[],"00066668":7,"00067395":[],"00068048":22,"00068088":36,"00068251":[],"00068734":7,"00068946":7,"00069073":22,"00070222":[],"00070937":[],"00072326":[],"00072412":[],"00073541":6,"00074902":22,"00075597":36,"00075639":[],"00076029":22,"00076495":7,"00076617":[],"00076905":7,"0007698473260556325":7,"0007698473260556343":7,"00078616":[],"00079129":7,"00079216":[],"00079910":36,"00079968":6,"00081564":[],"0008159":[],"00082447":22,"00083346":36,"00083685":22,"00083826":[],"00084705":7,"00085889":7,"00086063":[],"00087126":[],"00087697":7,"00088573":6,"00089187":36,"00089362":[],"0009075":22,"00090992":[],"00091628":[],"00092039":[],"00092107":22,"00092647":7,"000929":[],"00092904":36,"0009485400848532":[],"00096314":6,"00096557":[],"00099888":22,"001":[2,3,9,14,18,24,37,38,40,41,42],"00100519":7,"00100807":[],"00101364":22,"00102956":[],"00103827":[],"00104613":[],"0010479245926411787":[7,36],"00105081":7,"00105497":[],"00106677":6,"00107008":[],"00107405":7,"00109941":22,"00110716":[],"00111512":22,"00111756":7,"00113717":[],"00114101":[],"0011526":7,"00115506":[],"00115669":[],"00115999":6,"00117125":[],"00117627":[],"00118508":7,"00118591":[],"0011878":[],"00119699":36,"0012":43,"0012099":22,"00122558":22,"00123457":[],"00125459":[],"00126452":[],"00126617e":34,"00128282":[],"00128479":6,"00131428":[],"00132125":[],"001323":7,"00133103":22,"00134327e":[],"00134337":22,"00137818":7,"00139705":6,"00140139":[],"00140849":36,"00143234":[],"00144711":[],"00145652":[],"00146158":22,"00146287":22,"00148047":[],"00148709":[],"00149047":[],"00149311":7,"00149956":7,"00152117":7,"00154733":6,"00154860":36,"00155308":[],"00155701":22,"00156376":7,"00160348":22,"00161414":[],"00163245":[],"00163526":[],"00165867":22,"00168135":[],"00168251":6,"00169021":[],"00170724":[],"00172117":[],"00172452":[],"00174276":7,"00174457":22,"00175331":7,"00176697":22,"00178871":[],"00181115":30,"00182747":[],"00183398":[],"00183869":[],"00184151":[],"00185848":22,"00186347":6,"00186362":[],"00186694":[],"001880":6,"00188233":22,"00189101":[],"00189665":[],"00190742":[],"00192967":[],"00197982":22,"00198187":[],"00199495":[],"00200":9,"00200523":22,"00202624":6,"00202679":[],"00202756":7,"00203959":[],"0020496":12,"002050":12,"0020717457079393":30,"00207732":[],"00210909":22,"00211371":[],"00213144":[],"00213616":22,"00213947":[],"00214832":[],"00217499":7,"00219194":36,"00219502":[],"00219624":[],"0022":43,"00220306":[],"00224413":6,"00224679":22,"00225484":[],"00225909":[],"00227563":22,"00228742":7,"00229911":[],"00233436":[],"00234197":[],"00234327":[],"0023548":7,"002381316302584886":7,"0023813163025848865":7,"00239349":22,"00241318":[],"00242398":[],"00242421":22,"00242847":[],"00242954":36,"00242999":7,"00243186":7,"00243341":[],"0024401":6,"00245177":[],"0024598":[],"00249435":7,"00249831":[],"00251517":[],"00254359":[],"00254976":22,"00258249":22,"00259385":[],"00264305":[],"00266858":3,"00267887":[],"00270244":6,"00271624":22,"00272135":[],"00272586":[],"00274989":7,"0027511":22,"00277816":[],"00283853":[],"00286972":[],"00287151":[],"00287871":[],"00289358":22,"00289724":7,"0029114":[],"00292838":[],"00293072":22,"00293132":[],"00293838":6,"00298058":[],"0030207":[],"00303693":[],"00305172":[],"00306724":[],"00308251":22,"003100":33,"00310113":3,"00312207":22,"00312361":7,"00313125":[],"00313452":[],"00313577":[],"00315593":7,"00316561":[],"00317175":[],"0032153180657605116":[7,36],"00323332":7,"00324512":[],"00324969":[],"00324986":[],"0032542":6,"00325450":36,"00327833":[],"00328377":22,"00328494":[],"003301":7,"00332591":22,"00334743":[],"00335448":[],"0033575":[],"00335936":[],"00335942":[],"0033955154592040923":[7,36],"00341073e":[],"00345227":[],"00346394":[],"00348543":[],"00349817":22,"00353575":[],"00353823":6,"00354307":22,"00354492":[],"00358844":[],"00359612":[],"003620":33,"00362111":[],"0036237":7,"0036367":7,"0036718":[],"00368581":[],"00369758":7,"00370554":[],"0037095":[],"00372657":22,"00374279":[],"00375475":[],"003755":[],"0037744":22,"00378113":[],"00379522":[],"0038332550504751595":[37,44],"0038335":7,"00383872":[],"00387135":[],"003909404072811221":[7,36],"00391839":6,"00392139":[],"00396398":[],"00396988":22,"00398509":[],"0039987":7,"004":[6,35,36],"00402083":22,"004091940707753925":[7,36],"00410387":7,"00410478":7,"00410646":[],"00411073":[],"004113634617443131":[7,34],"00411363461744314":[7,34],"004113634617443147":[7,34],"00413413":[],"00415289":[],"0041559863458613296":[7,36],"00420072":36,"00422908":22,"00424012":[],"00424046":[],"00424909":3,"00424967":7,"00426027":6,"00426531":[],"00427304":[],"00428336":22,"00429899":[],"00431775":[],"00433417":12,"00434364":[],"00439232":30,"00439287":[],"00440346":7,"00440395":[],"00441613":[],"00443743":7,"00445655":12,"00446979":[],"00447992":[],"004480":[],"0045052":22,"00451679":[],"00453622":[],"00455536":[],"00456302":22,"004579219539673834":[7,36],"00458878":7,"00460304":[],"00460405":[],"004610275230656182":[7,36],"00462287":7,"00463639":[],"00464812":[],"00465099":36,"00469926":[],"0047085":[],"00471782":6,"00471983":[],"00472199":7,"00472251":[],"00472512":7,"00472549":[],"00474485":[],"00478655":[],"00479935":22,"00480366":[],"00480371":[],"0048526":[],"00486095":22,"00487843":[],"0048938":[],"0049544":7,"004999999999999994":[],"004999999999999996":[],"005":1,"005000000000000001":[],"0050256":[],"00502702":[],"00504808":[],"00509089":[],"0051127":22,"00512927":6,"00517114":7,"00517832":22,"00518122":[],"00519105":[],"00526348":7,"0053018":7,"00534938":[],"00537764":[],"00538851":[],"00542313":[],"00543374":[],"00544651":22,"00550379":[],"00550433":[],"00551642":22,"00552246":[],"00554552":7,"00555311":[],"00556826":7,"00556958":[],"0055941":[],"00562524":[],"00565625":[],"0056799":6,"00569405":[],"00575271":[],"00579953":7,"00580212":22,"00584432":[],"00585113":[],"00587502":[],"00587564":[],"00587659":22,"00588657":7,"00594042":[],"00595134":[],"00595615":[],"00598615":[],"0059888":[],"0060":43,"00600971":[],"00604105":[],"00604596":12,"006046":12,"00607783":7,"00610607":[],"00611979e":[],"00613258":[],"00615193":[],"00615394":[],"006162":7,"00617499":6,"00618095":22,"00619918":[],"00620039":33,"00620347":[],"00626028":22,"00626773":[],"00627535":[],"0062825":26,"00628874":[],"00630331":7,"00631057":[],"00635214":[],"00635475":[],"00635865":[],"00642221":7,"00642268":[],"00642935":[],"00643466":[],"00643899":[],"00644939":[],"00646613":[],"00651112":[],"00658316":[],"00658451":22,"0065912":[],"00660427":7,"00663699":[],"00665974":[],"00666902":22,"00669662":[],"006719367598355617":30,"00672607":7,"00673407":7,"00676387":7,"00679797":[],"00679887":22,"0068011":7,"00680794":[],"006829400694106674":[],"00683748":6,"00683964":7,"00686801":[],"00686806":[],"0068697":[],"00687175":[],"00693821":[],"00695723":[],"00701442":22,"0070235":[],"007024126888938144":[7,36],"00703355":[],"00704231":[],"00710445":22,"00712321":[],"0071642501586093735":[],"00717079":[],"00719176":7,"0072595":[],"00726135":[],"0072675":[],"00727211":[],"00727646693":[1,33],"007315":[33,34],"00736955":[],"00738008":[],"00739382":[],"00739489":[],"00741987":[],"00742577":[],"0074331":6,"0074724":22,"007472516848671787":34,"00752224":[],"00753349":[],"00754534":[],"00756831":22,"00759119":7,"007607459165915922":[],"00761275":[],"00769731":[],"00777931":[],"007785":[],"00778523":[],"00781918":36,"00784393":7,"00788598":[],"007891914573161948":[],"00790262":[],"00796028":22,"00798188":[],"00798988":[],"00799998":[],"00801855":[],"00802883":[],"00803064":7,"008043926731954223":[],"00804985":[],"00805074":36,"00805892":[],"00806245":22,"00813313":[],"00813803":7,"00817631":7,"00817834":[],"00822879725131466":[],"00823002":6,"00825399":[],"00827728":7,"00828799":[],"00830822":[],"00831018":7,"00832189":[],"00834567":7,"00843617":[],"00844667":[],"00846262916105675":34,"00848002":22,"00848904":7,"00851512":[],"00857028":[],"00858536":[],"00858886":22,"00862101":[],"00862798":26,"0086649156":[1,33],"008675369724975977":6,"00868086":[],"00868983":[],"00879363":[],"00880924":[],"00883798":[],"008897354602673473":[],"008900933315885705":[],"00890232":[],"00892604e":[],"00893027":[],"00894639":6,"00903369":22,"00905423":7,"00906293":[],"00914964":22,"00915433":[],"00915458":[],"009163470508352218":6,"009164545680330616":[7,36],"00917248":7,"00920609":[],"00922229":[],"00923278":[],"00929251598272297":[],"00934327e":34,"00934499":7,"00934865":[],"00938585":[],"0093869":[],"009442796383765939":[],"00946219":[],"00946636":[],"00950778":[],"00952322":[],"00952586":[],"0096208":7,"00962351":22,"00974702":22,"00976647":[],"009855809602167547":[],"00986552":[],"00989896":[],"00990475":6,"00992331":7,"00996754":7,"00996972":[],"01":[1,2,3,6,7,10,12,14,18,22,24,32,33,34,36,37,38,39,40,41,42,43,44,45],"010018312644139219":[7,36],"01004321":[],"010053880703541525":[],"01006401":[],"0100706":7,"0100949":[],"01011906":33,"01012951":[],"01014809":[],"01018743":[],"01023308":[],"01024227":[],"01025184":22,"01027992":[],"01028728":[],"01029574":[],"010296":[],"01031184":6,"010315":[],"01031541":[],"010331721306655165":[7,36],"01033856":[],"01035984":[],"01038358":[],"01045155":[],"01045774":[],"01050849":[],"010516485576646504":[7,36],"0105301":[],"01054509":[],"0105536":[],"01059601":[],"0106014":[],"01066519":7,"01066976":[],"01068907":[],"01076611":6,"01076733":[],"01080274":[],"01089797":[],"0109":[],"010902":33,"01092119":22,"01094579":[],"01094846":[],"01095703":[],"01097223":[],"01097423":[],"0110":30,"01103246":[],"01107621901137467":[7,36],"01111477":[],"0111154":[],"01112952":[],"011225":3,"01128968":[],"01130932":[],"0113104":7,"01135167":[],"01148039":[],"01151984":[],"01161357":[],"01163425":22,"01164198":[],"01165807":[],"01176096":[],"01179792":7,"0118633":[],"011917343246903285":[],"01191824":6,"01193226":[],"01201742":[],"012073649469946107":[7,36],"0120771":[],"01214101":[],"01219292":7,"01222822":34,"01223198":7,"01229732982000352":[],"01231917":7,"01233322":[],"01233332":[],"01247118":[],"01257265":[],"01265755":34,"012658":34,"01267006":[],"01268892":[],"01272215":[],"01281486":[],"01282674":[],"012874822204495243":34,"01288591":[],"01289962":[],"01290811e":[],"01290947":7,"01291943":[],"01295356":6,"01299337":[],"01300561":[],"013121574062587286":[7,36],"01318643":7,"01323615":[],"01329488e":[],"013341":[],"01335857":[],"01344196":[],"01344581":[],"01347636":[],"01347916":7,"01348565":7,"01362274":[],"013623165903312745":[],"01362461":[],"01365363":[],"01366733":[],"01367553":7,"01372375":[],"01382052":[],"01386842":[],"01389847":[],"01397146":7,"01404858":[],"01405935":7,"01408051":[],"01409821":[],"01416528":7,"01420034":[],"01423609":[],"01424197":[],"01427149":[],"01432847":[],"01433809":6,"01436601":[],"014436800088896381":[7,36],"01448147":[],"01449782":7,"01455922":[],"01456159":[],"01458337":7,"014586":34,"01458611":34,"0146081":7,"01463049":7,"01463052":[],"01476097":[],"01477821":[],"01478446":[],"01492":[],"0149713":[],"0149947":[],"01502518":[],"0150723888951771":7,"01507238889517717":7,"01508632":[],"01508966":[],"01512934":[],"01514564":[],"01518949":[],"01521658e":[],"01524072":[],"015244":[],"01526688":[],"01529503":[],"01529708":[],"01531845":7,"01533437":[],"01537557":[],"0154222":[],"01542292":36,"01544605":[],"01549377":7,"01549939":36,"01550546":36,"01552289":[],"01555268":[],"01558197":6,"01562311":[],"01566461":[],"01571866":[],"01580414":[],"01581562":[],"01591021":[],"01594452":36,"01596986":[],"01597952":[],"01600491":[],"01603602":[],"01607534":[],"01612033e":34,"01616709":[],"01617722":[],"01619456":[],"01619664":[],"01621244":[],"016285782696017142":[7,36],"01633169":[],"01633913":7,"01640891":7,"01642305":[],"01655318":7,"016587414993045335":[7,36],"01663866":[],"01667827":[],"01671556":[],"01678384":[],"01678538":[],"01691871":[],"01691985":7,"0169643":6,"016972818397989375":[],"01704432":[],"01708691":[],"01708781":7,"01708852":7,"01713366":7,"01722502":[],"01724499":6,"01731293":[],"01735584819559331":[7,36],"017355848195593312":[7,36],"01736502":[],"01747077":[],"01752908":[],"0176":43,"01762067":[],"01765474":[],"017665":6,"01775594":[],"0177568":[],"01782721":[],"01783414e":34,"01784714":[],"0180":43,"01809873":[],"018232":[33,34],"01828593":[],"01831050e":7,"01831207e":7,"01835274":[],"01859922":[],"01865187e":[],"01866537":7,"0186893":[],"01873344":12,"01873869":6,"01881546":[],"01882522":[],"01895265":[],"01896127":[],"01897575":[],"01898855":7,"01899119":[],"01905883":7,"01908936":7,"019140656913589":[],"01914066":[],"01915888":[],"01916913":[],"0191717":[],"01918548":[],"01919702":[],"01919885":[],"01931743":[],"01936105":[],"01963203":[],"01963611":7,"01969145":7,"01975416527168255":[7,36],"01975848":7,"01989299":[],"01989549":[],"01999282":[],"02":[1,5,7,8,13,24,33,34,37,39,40,42,43,44],"0200568":[],"02017377":[],"02024701e":[],"02024962":7,"020271":[],"02030107":[],"02036545":[],"020404272938413143":[],"02042476":[],"02044454":[],"02049182":[],"02054837e":7,"02058094":[],"02061026":[],"02061094":[],"02066371":[],"02068067":7,"02071142":[],"0207306":[],"02073509":6,"02075115":[],"02075802":[],"02079171":[],"02081274":[],"02083512":[],"02089297":[],"02095266":[],"02098261":7,"02100763":[],"02103178":[],"02109939":[],"02123176":7,"0212604":[],"02126208":[],"02131025":30,"02138725":[],"021592704588021174":[7,36],"021592704588021178":[7,36],"02178583":[],"02183021":[],"02186131":[],"02198702e":7,"02198703e":7,"02200532":[],"02206965e":34,"02208512":7,"02210753":[],"02215597":[],"022156":[],"022210866177877393":[],"02227466":[],"02228115":7,"02229529":7,"02231445":[],"02244382":[],"02244755":[],"02250553":[],"02252765":6,"02276062":[],"02279888":[],"02284019":[],"02287894":[],"02288816":[],"022934":6,"02293408":6,"022999498260366198":[7,36],"02308518":[],"02314144":[],"0231703":[],"02329285":[],"02348765":7,"02355925":[],"02365049":7,"023810076900619058":30,"02385515":[],"02387339":[],"023888460698069384":[],"02392053":[],"02395532":[],"02400359":[],"02416381":[],"02424794":36,"02426651":[],"024318244280276506":[],"02447466":[],"0245528":7,"024632":[],"02468681":[],"02485679":[],"02492265":6,"02498832":7,"025027":[],"02503753":7,"02507163":[],"02509184":[],"025092":[],"02511518":7,"02522069":7,"02531037":[],"02536494":[],"02542246":[],"02546675":36,"025709":[12,34],"02574735e":[],"02582613386840159":[],"02586427":7,"02588522":[],"02590077":[],"02593026":[],"0260906":7,"02610528":[],"02618169":[],"02622906":[],"02623724":[],"026250840755899812":[],"02625193":9,"02635835":[],"02641575":[],"026605727637184554":[7,36],"026605727637184558":[7,36],"0269":43,"02699539":[],"02702328":[],"02702978":[],"02706508":[],"02707227":6,"0271761":[],"02723445":7,"02730775":[],"02745507":[],"02757522":[],"02760079":[],"02760977349102238":[7,36],"027609773491022394":[7,36],"02761736":[],"02763182":[],"02764023":[],"02790465":[],"02791218":[],"0280":43,"02800421":[],"02804715":[],"02809859":[],"02816083":[],"02836801":[],"028389":[],"02838933":[],"02845284":[],"02857":[5,44],"0286851":[],"02876697":[],"02881357":[],"02892224":[],"029":[],"02911162":[],"02912421":[],"02942218":[],"02944425":[],"029483":6,"02950229":[],"0296969":[],"0297291":[],"029733":[33,34],"02976145":7,"02987833":[],"02992852":[],"02994311":6,"02997344":[],"02f":[7,27],"03":[2,7,24,34,37,40,41,42,44],"0301458":[],"03019138":33,"03025391":[],"03027848":[],"03032441e":7,"03037095":12,"030371":12,"03049638":[],"03056169":26,"03060273":[],"03061555":[],"03063575":[],"03065428":[],"03067182":[],"03074083":[],"03077640549":[5,44],"03099776":6,"031":[6,35,36],"03102525":[],"03106988":33,"03107818":[],"03113051":[],"03117156":[],"03119091":[],"03141454":[],"03145163":[],"03172365":[],"03195835":[],"03196357":7,"03203047":[],"03219974":[],"03251863":6,"03256632e":[2,40,41,42],"03267527":7,"03273744":[],"03279636":7,"03285652":[],"0330308045183219":7,"0330308045187757":7,"03308408":6,"0331134070762626":30,"03311341":30,"03316272":[],"03321947":[],"03331552e":[],"03338173":[],"03365768507152769":[7,36],"03370315":[],"03375068":[],"03376827":[],"033790755027115954":[],"03389964":[],"03394827":[],"0340060287164625":[],"03400603":[],"034047":33,"034169230664804":[],"03438051":[],"03443175":[],"03447512":7,"034557":34,"03472297":[],"034723":[],"034985":[],"0353961":[],"03543039":[],"03543455":[],"03543554":[],"03543958":[],"035513525941656535":[],"03556032":[],"03557316":[],"0356":[24,42],"03562355":7,"03568439":7,"0358":[24,42],"03585592":[],"0359":[24,42],"035909":33,"0359565":6,"0361":[24,42],"03611471":[],"03616508":[],"0362":[24,42],"03630548":7,"03633213":[],"0364":[24,42],"0365":[24,42],"03660869":[],"0366352614656884":[],"0367":[24,42],"0368":43,"0369":[24,42],"0370":[24,42],"03707133":12,"03717939":[],"0372":[24,42],"03727597":[],"03728183e":[],"0373":[24,42],"03735403":[],"0374748":[],"0375":[24,42],"0375827":22,"0376":[24,42],"03774822e":[],"0377961":[],"0378":[24,42],"03781367141738902":[7,36],"038":36,"0380":[24,42],"0381":[24,42],"03813208":[],"03814292":7,"03815288":7,"038211969489939":[],"03821197":[],"03827068":[],"0383":[24,42],"038300":[12,34],"0385":[24,42],"03856554":[],"0386":[24,42],"03868779":[],"03872663":[],"038727":[],"03876784":[],"0388":[24,42],"038844":[],"0389":[24,42],"03894328":[],"03894873":[],"039":36,"039039":6,"03903968":[],"03908546":[],"0391":[24,42],"03914571":[],"0393":[24,42],"03935519":[],"03940381":[],"03946221":[],"0395":[24,42],"03955811":33,"0396":[24,42],"03967758":[],"0398":[24,42],"03982972":[],"0399587275832265":[],"039967668952797":7,"0399676689527975":7,"04":[2,7,12,24,37,40,41,42,44],"0400":[24,42],"0401":[24,42],"040102":6,"04010697":7,"04014929":[],"0401585":[],"04028659":[],"0403":[24,42],"0405":[24,42],"04057027":[],"04058784":[],"04063602":7,"0407":[24,42],"0408":[24,42],"04083439":[],"04084872":[],"041":[10,45],"0410":[24,42],"04103307":[],"041050166905828786":[],"04107874":[],"041079":[],"04111096":[],"0411487294305088":7,"041148729430523":7,"0412":[24,42],"0413787":[],"0414":[24,42],"0415":[24,42],"04166112":[],"0417":[24,42],"0419":[24,42],"04191624":[],"04191629":[],"04193203":34,"04198166":[],"042044382097756156":[],"0421":[24,42],"04214702":[],"04218461":[],"04220758":7,"04223754":[],"04225015":[],"0423":[24,42],"0424":[24,42],"04246989":[],"04259402":[],"0426":[24,42],"04276619":[],"0428":[24,42],"04292593":[],"04295757":36,"04299253":30,"043":[10,45],"0430":[24,42],"04310095":[],"04314342":[],"04315108":6,"0431531":[],"0432":[24,42],"0434":[24,42],"04346721":6,"0435":[24,42],"04355837":7,"04362":[10,45],"04362755":[],"0437":[24,42],"04372783":[],"0437499":3,"04389027":7,"0439":[24,42],"04391163":[],"043912":[],"0441":[24,42],"04416475":30,"04423486":7,"04426647":[],"04426744e":34,"0443":[24,42],"044334":[33,34],"04438319":[],"04448923":[],"0445":[24,42],"04450975e":34,"044613":7,"0447":[24,42],"0447389":[],"04473913":[],"04478101":[],"04482932":[],"0449":[24,42],"0451":[24,42],"0453":[24,42],"04532032":[],"04537385":7,"04543942":7,"04547353":[],"0455":[24,42],"04555073":[],"04566964":7,"0457":[24,42],"04570437990371566":[],"04574692":[],"0458":[10,45],"04581197":[],"04584982e":[],"0459":[24,42],"04597076":[],"0461":[24,42],"04619338":[],"0463":[24,42],"04648335":6,"0465":[24,42],"046531":[],"04662395":[],"04669463":[],"0467":[24,42],"04683565":6,"0469":[24,42],"04690007":[],"04699527":[],"0470705":26,"0471":[24,42],"04720848":[],"0473":[24,42],"04746791":[],"0475":[24,42],"0477":[24,42],"04778116":[],"04784395":7,"0479":[24,42],"0481":[24,42],"04816611e":[],"04818727730430286":[7,36],"04822955":[],"04828291":[],"0483":[24,42],"0485":[24,42],"0486":[24,42],"04869126e":[],"0487":[24,42],"048920":33,"04892055":7,"0489354":[],"04899609":[],"0490":[24,42],"04900086":[],"04909093":7,"04912436":7,"0492":[24,42],"04926746":36,"04931542":[],"0494":[24,42],"049462":33,"049556996627824":7,"0495569966278269":7,"04956816":[],"0496":[24,42],"0496375":[],"04965227":[],"04977051":[],"04977093":[],"0498":[24,42],"04it":[],"05":[2,5,7,14,24,27,34,39,40,41,42,44],"0500":[24,42],"05009826":7,"05024857":[],"0503":[24,42],"0505":[24,42],"05056463":[],"05062537":26,"050663":[],"05066303":[],"05066388e":34,"0507":[24,42],"0509":[24,42],"05091289":[],"05100875":7,"0510594":[],"0511":[24,42],"05126901":[],"0514":[24,42],"051418":6,"0516":[24,42],"051649":[12,34],"0516821246279795":[],"0517473":6,"0518":[24,42],"05183886":[],"0520":[24,42],"05206787e":[],"05227921801205679":[7,36],"0523":[24,42],"052305":34,"05234611":[],"0523738":[],"05238712":[],"0525":[24,42],"05263":[10,45],"0526992":[],"0527":[24,42],"052992":[],"0530":[24,42],"05302":[10,45],"0532":[24,42],"0534":[24,42],"053417":34,"05357244":[],"05364854":9,"0537":[24,42],"05383795":7,"053849":6,"05388549e":34,"0539":[24,42],"053944":[],"0541":[24,42],"05412502":[],"05419212":[],"0542566":6,"05432856":[],"054375":[],"0544":[24,42],"05446143":[],"05447415":7,"05459089":[],"0546":[24,42],"054617":34,"054655":34,"0549":[24,42],"054954":[],"05505310046363":3,"0551":[24,42],"05515143e":[],"05526765":[],"0553":[24,42],"05533":[10,45],"05544019":[],"0556":[24,42],"055676":[33,34],"055697":[],"05570692":30,"055706923889776":30,"055734":34,"0558":[24,42],"05589275":12,"055893":12,"055910":34,"055987":34,"05599455":[],"056019":[],"056030":[],"0561":[24,42],"05614483":6,"05623":[10,45],"05629549":33,"0563":[24,42],"056418":[],"05648":[10,45],"05651951":7,"0565419":[],"0566":[24,42],"05667":[10,45],"056683":34,"0568":[24,42],"056870":[],"05687021620384533":[],"056898":[],"056996":[],"0571":[24,42],"057124":[],"05715377":[],"057154":[],"05716368155342902":[7,36],"057179":[],"057219":[],"057231":[],"0573":[24,42],"057300":34,"057361":[],"057393":34,"057406":[],"057418":34,"057446":[],"057457":34,"057462":[],"057502":[],"05750876":[],"0576":[24,42],"057613":[],"057657":[],"057722":34,"0578":[24,42],"05781491e":[],"057831":[],"057835":34,"05785343":7,"057864":[],"05789007":7,"05792524":[],"05796251":7,"05807125":7,"0581":[24,42],"058121":[],"058216":[],"0582573":[],"05825965":[],"05834444":[],"058388":[],"0584":[24,42],"058435":[],"05852973":[],"058550":[],"058552":34,"058556":[],"058567":[],"0586":[24,42],"058645":34,"05873105":[],"058738":[],"058793":[],"05880359":[],"05883":[10,45],"05884":[10,45],"058854":34,"058856":[],"0589":[24,42],"058921":[],"0589434":[],"058952":34,"058996":34,"059004":[],"05900655":[],"059031":34,"0591":[24,42],"05916189":[],"059182":[],"05924492":33,"0594":[24,42],"059427":[],"059439":[],"05966593":[],"059685":[],"0597":[24,42],"059736":[],"059749":[],"05977068":[],"059807":34,"05982961":[],"059830":[],"05989727":[],"0599":[24,42],"059949":[],"059951":34,"05999":[10,45],"059993":34,"06":[7,24,34,38,39,42],"060001":[],"060037":[],"060083":34,"0602":[24,42],"06020587":7,"06020683e":34,"060254":34,"06026294":[],"060278":[],"060300":[],"060334":[],"060349":33,"060387":[],"06043581":7,"0605":[24,42],"060567":[],"06059304":[],"060691":[],"0607":[24,42],"0607062":[],"060716":34,"06072551":[],"06075426":[],"060756":34,"060845":[],"060872":34,"060971":[],"060983":[],"0610":[24,42],"061013":[],"061034":[],"061084":[],"061092":[],"061138":[],"061163":34,"061239":[],"06125720e":[],"061264":[],"061281":[],"0613":[24,42],"061359":34,"061443":34,"061452":34,"061484":[],"0615":[24,42],"061614":34,"061642":[],"061679":33,"061747":[],"061775":[],"0618":[24,42],"061813":[],"061826":[],"061833":[],"061836":[],"061869":[],"061888":[],"061915":[],"061977":[],"06200174":6,"062016":34,"062023":[],"062071":[],"062082":[],"062082386342319454":[7,36],"0621":[24,42],"062100":[],"062221":[],"062250":[],"062273":[],"062292565":[5,44],"06231773":[],"062325":[],"062337":34,"062351":[],"062390":[],"0624":[24,42],"062470":[],"062523":[],"062599":34,"0626":[24,42],"062624":34,"062631":[],"062675":[],"062696":[],"062749":[],"062797":[],"062852":[],"062874":34,"062894":[],"0629":[24,42],"062963":[],"062967":[],"06299237e":[],"063000":[],"06301519":[],"063019":34,"063051":[],"063055":[],"063061":34,"06307625":[],"063080":34,"063081":[],"063159":[],"0632":[24,42],"063225":[],"063260":34,"06331463":[],"063325":[],"063359":[],"063378":[],"063407":[],"063434":[],"06343533":33,"063436":[],"063443":33,"0635":[24,42],"063500":6,"063542":[],"063597":[],"06362348":[],"063653":34,"063705":[],"063716":[],"063722":[],"063723":[],"063724":33,"063747":[],"063760":[],"0638":[24,42],"063822":[],"063832":[],"063864":6,"063894":34,"063905":[],"063912":[],"063927":[],"06394871":[],"063953":[],"06397412":[],"063980":[],"063982":[],"06406913":[],"06407201":[],"064074":34,"0641":[24,42],"064101":[],"064113":[],"06413187":[],"064134":[],"064145":[],"064245":6,"06424868":[],"064275":[],"064294":[],"0643":[24,42],"064320":[],"064412":[],"064420":[],"06444":[10,45],"064444":[],"064501":34,"064527":[],"064532":[],"06453579006728322":[7,36],"064568":[],"0646":[24,42],"064602":[],"064606":34,"064609":34,"064627":6,"064634":[],"064640":[],"064696":[],"064699":34,"064793":34,"06481015":[],"064814":[],"064827":[],"06484621":[],"064856":[],"064874":[],"06488406":[],"064896":[],"0649":[24,42],"06491736":7,"064938":[],"064948":[],"064985":6,"064987":[],"065006":[],"065012":[],"065026":33,"065069":[],"065077":34,"065089":[],"065119":[],"06511966":[],"065147":[],"065158":[],"0652":[24,42],"065207":[],"065214":[],"065215":[],"065249":[],"065289":[],"065378":34,"065390":34,"065410":34,"06547790180152352":[7,36],"06547790180152355":[7,36],"0655":[24,42],"065517":[],"065559":[],"065582":[],"065588":[],"065593":[],"065613":[],"065614":[],"065631":[],"065645":[],"065735":[],"065753":[],"06578047":[],"0658":[24,42],"065801":[],"065808":[],"065815":[],"065872":[],"065910":[],"065982":[],"065984":[],"066042":[],"066066":34,"066077":[],"0661":[24,42],"066143":[],"066200":[],"066323":[],"066344":[],"06637":[10,45],"06638817":[],"0664":[24,42],"06642248":[],"066438":[],"066453":[],"066467":[],"066474":34,"066500":34,"06656566":6,"066566":6,"066612":34,"066647":34,"06664867":[],"06666117":[],"0666807":3,"06668613e":[],"0667":[24,42],"066752":[],"066762":[],"066768":[],"066787":34,"066804":[],"06682268":[],"0668226833598415":[],"066837":[12,34],"066854":34,"066865":[],"066870":[],"066919":[],"066992":[],"066999":34,"0670":[24,42],"067009":[],"067139":[],"06724062":6,"067272":[],"0673":[24,42],"067315":[],"067328":[],"067409":[],"067419":[],"067420":[],"067437":[],"067440":[],"067457":[],"067462":[],"067591":[],"0676":[24,42],"067611":[],"067619":[],"067630":[],"067637":34,"067660":[],"067707":34,"067745":[],"067748":[],"067765":[],"067769":[],"067774":[],"067820":[],"067826":[],"067832":[],"067859":[],"0679":[24,42],"067915":[],"067929":[],"067955":[],"067979":[],"068":[],"068082":[],"068083":[],"068141":[],"0682":[24,42],"068241":[],"068257":[],"068264":34,"068307":34,"068340":[],"068403":[],"068406":[],"068407":[],"06842111e":[],"068437":[],"068439":12,"06843936":12,"068441":34,"06844519414009444":[7,36],"06844519414009445":[7,36],"0685":[24,42],"06853772":[],"068551":[],"06855126e":[],"068606":[],"068609":[],"068612":6,"068624":[],"068629":34,"068650":[],"068671":6,"068727":34,"068731":6,"068734":[],"068743":[],"0687531":[],"068757":[],"068771":6,"068774":6,"0688":[24,42],"068800":6,"068809":[],"068815":[],"068816":[],"06886644":33,"068906":34,"068931":6,"068945":[],"068974":[],"068987":[],"068997":[],"069028":34,"069033":[],"069048":6,"069055":[],"0691":[24,42],"069119":6,"069136":6,"06915522":[],"069213":[],"069239":[],"069257":[],"069296":[],"06931309":[],"069320":[],"069327":6,"069365":[],"069384":[],"069388":[],"069391":[],"0694":[24,42],"069452":34,"069456":[],"069475":6,"069522":[],"069570":[],"069584":[33,34],"069594":[],"069595":6,"069629":[],"06962991":[],"069630":[],"069634":[],"069672":6,"0697":[24,42],"069733":[],"069739":[],"069746":[],"069766":[],"069803":[],"069821":6,"069822":[],"069919":6,"069939":[],"06995653":[],"06it":[],"07":[7,24,34,42],"0700":[24,42],"070009":[],"070042":[],"07004211":[],"070043":[33,34],"070067":[],"070086":[],"070107":[],"070129":6,"070146":34,"070157":[],"07016":[10,45],"07017":[10,45],"070170":6,"07020234":[],"070213":34,"070220":[],"070228":[],"07023654656164897":30,"070275":[],"0703":[24,42],"070338":[],"07039":[10,45],"070400":6,"070406":[],"0704374681593734":[],"070441":[],"070457":34,"070461":[],"070569":[],"070571":6,"070582":34,"070597":[],"07062318":7,"070645":[],"070694":[],"0707":[24,42],"070705":[],"070737":34,"070769":[],"070795":[],"07080407e":34,"070811":[],"070845":[],"070865":[],"070889":[12,34],"070964":[],"070986":34,"0710":[24,42],"071008":[],"071062":[],"071080":[],"071138":[],"07115":[10,45],"071191":[],"0712":43,"071252":[],"071258":[],"0713":[1,24,33,42],"07130734":[],"071323":[],"07136324":[],"07139233":[],"071423":[],"07145103":12,"071452":[],"071456":[],"071498":[],"071554":[],"071564":[],"071579":[],"071587":[],"0716":[24,42],"07160048164232538":[7,36],"0716004816423254":[7,36],"071601":[],"071611":[],"071662":[],"071685":[],"071726":[],"071773":[],"07178264457746288":12,"071788":[],"071792":[],"071801":[],"071805":[],"071872":[],"071879":[],"07188255":[],"0719":[24,42],"071901":[],"071942":[],"071951":[],"071960":[],"072000":34,"072009":[],"072022":[],"07208896238192342":[],"072098":[],"072111":34,"072128":[],"072132":34,"072168":[],"072194":[],"07226292":[],"072285":[],"0723":[24,42],"072305":[],"072310":[],"072338":[],"072369":[],"072404":[],"072410":[],"072476":34,"072483":[],"072486":[],"072495":[],"07250301":[],"072527":6,"0726":[24,42],"072621":34,"072624":[],"072637":[],"072650":[],"072676":6,"072707":[],"072718":[],"072790":[],"072802":6,"072805":[],"072830":[],"07285":4,"07286416":[],"0729":[24,42],"072914":[],"07291818479810824":[],"072931":[],"072953":[],"072967":[],"072973":[],"072976":[],"072990":6,"073008":[],"073011":6,"073059":[],"073063":6,"073079":[],"073080":[],"073088":[],"073131":6,"073152":[],"073154":[],"073184":[],"073187":[],"0732":[24,42],"07321674":[],"073256":[],"07331468":[],"073354":[],"073362":[],"073376":[],"073378":6,"073387":[],"073406":[],"073421":[],"073422":[],"073431":6,"073444":[],"073445":[],"073458":6,"073465":[],"073471":[],"073476":[],"073494":[],"073498":[],"073504":6,"073541":[],"073582":6,"07358383":[],"073586":[],"073592":6,"073598":[12,34],"0736":[24,42],"073618":[],"073630":[],"073634":[],"073635":6,"073640":[],"073644":34,"073708":[],"073712":[],"073716":[],"073720":[],"073728":[],"073734":12,"073736":6,"073766":6,"073797":[],"073802":[],"073810":6,"073824":[],"073840":[],"073842":6,"073853":[],"073858":[],"073876":6,"0739":[24,42],"073929":6,"07393685":[],"073972":[],"073980":[],"073984":[],"073987":6,"074008":6,"074010":[],"074026":6,"07404236":[],"074067":[12,34],"074084":34,"074096":12,"07410236e":[],"074108":[],"074152":6,"074161":[],"07417526":[],"074181":6,"0742":[24,42],"07420079":[],"074201":[],"074210":34,"07421084":6,"074211":[],"074265":6,"074301":[],"074306":[],"074307":[],"074323":34,"074327":[],"074328":[],"074330":[],"074340":[],"074355":[],"07438088":[],"074403":6,"074419":[],"074439":[],"074455":[],"074457":[],"074477":[],"074509":[],"0745177":[],"074545":[],"074560":[],"07456491":6,"074577":[],"0746":[24,42],"074686":[],"074708":[],"07472152457534222":6,"074772":[],"074780":[],"074809":6,"074879":[],"0749":[24,42],"07490892":7,"074969":[],"074970":[],"075017":12,"075030":[],"075058":[],"075089":[],"075171":6,"0752":[24,42],"075249":[],"075294":[],"075331":[],"075342":[],"075352":[],"075421":[],"075454":6,"075471":12,"075513":[],"075521":[],"075523":[],"075582":[],"075587":[],"0756":[24,42],"075684":[],"075758":6,"075779":[],"075804":[],"07581582":[],"075816":34,"075867":[],"075889":34,"0759":[24,42],"075980":[],"075984":[],"075990":[],"076012":[],"076066":6,"076105":[],"076125":[],"076127":[],"076136":[],"076150":34,"07617146":[],"076249":[],"076266":[],"07627734":[],"0763":[24,42],"076331":[],"076337":[],"076349":12,"076354":[],"076355":6,"076413":[],"07641937":36,"0764924":7,"076504":[],"076527":[],"076560707521647":30,"07656071":30,"076586":6,"076587":[],"076592":[],"0766":[24,42],"076612":6,"07663067400487368":[],"076658":[],"076662":[],"076678":[],"076721":[],"07678":[10,45],"076814":6,"076820":[],"0768224464930487":30,"07682245":30,"076825":[],"076833":[],"076857":[],"076897":12,"07692307692307693":[10,45],"076938":[12,34],"076950":[],"076996":[],"0770":[24,42],"077017":6,"077042":[],"077068":[],"07706814":[],"077168":34,"077171":[],"077194":6,"077219":[],"077226":[],"0773":[24,42],"077304":6,"077313":[],"077330":[],"077403":[],"077429":[],"077455":[],"077460":34,"077517":[],"07752620206774397":6,"077542":[],"077549":[],"077571":[],"0776":[24,42],"077613":[],"077630":[],"077650":[],"077705":[],"077710":[],"077731":12,"077734":[],"077756":[],"07777777777777778":[2,40,41],"0778":43,"077833":[],"077847":[],"077931":[],"078":[],"0780":[24,42],"078029":[],"078041":[],"07804489":[],"078106":[],"078110":34,"078187":[],"07820":[10,45],"07824586e":[],"078258":[],"07828283":12,"078283":12,"078329":[],"078336":34,"078377":12,"0784":[24,42],"078412":[],"078423":[],"07842458":[],"078467":[],"078540":34,"078545":[],"078548":[],"078593":[],"078624":[],"07864":[10,45],"078656":[],"0787":[24,42],"078707":[],"07871":[10,45],"078732":[],"078845":[],"078868":[],"078974":34,"078986":34,"0791":[24,42],"079121":[],"079124":[],"079125":[],"079150":[],"079165":12,"079170":[],"079202":[],"079226":[],"079243":[],"079255":[],"07929472":[],"079330":6,"079353":6,"079381":[],"079391":6,"0794":[24,42],"07942491":[],"079432":[],"079434":[],"079437":[],"07944154":[26,33],"079455":[],"079581":[],"079597":6,"079606":[],"079611":6,"0796891867672603":[7,36],"079700":[],"079715":6,"079731":[],"079777":6,"0798":[24,42],"079820":[],"079836":6,"079849":[],"079854":6,"079878":[],"07988085572440823":[],"079882":[],"079892":6,"079914":12,"079946":34,"079948":[],"079958":6,"079964":6,"079969":[],"079971":[],"079975":[],"07it":[],"08":[4,5,7,10,24,30,34,38,39,42,43,45],"080045":12,"080069":6,"080086":6,"080089":[],"0801":[24,42],"080105":[],"08015655":30,"080157":6,"080163":[],"080181":[],"080193":[],"080233":[],"080248":[],"080256":[],"080284":[],"08030109":[],"080322":[],"080406":[],"080411":[],"08043851":6,"080473":[],"0805":[24,42],"080502":[],"080505":[],"080541":6,"080571":[],"080572":[],"080577":[],"080607":[],"080616":34,"08066381":[],"080690":[],"080702":[],"080750":[],"080755":[],"080764":34,"08076969085177746":[],"080773":[],"080832":[],"0809":[24,42],"080903":[],"080906":[],"080933":[],"080935":[],"080953":[],"080980":[],"081000":[],"081057":[],"081120":[],"081126":12,"081136":[],"081150":[],"081164":[],"0812":[24,42],"081246":[],"081276":34,"08131003":7,"081322":[],"081466":[],"0814985":[],"081538":[],"08156108":7,"081570":[],"081584":[],"08159374":[],"0816":[24,42],"081617":[],"081621":[],"081647":[],"08165104":34,"081655":34,"081677":[],"081679":[],"081680":[],"081718":[],"08174081":[],"081742":[],"081753":6,"081762":[],"081772":[],"081779":[],"081804":[],"081821":[],"081832":[],"08185019":[],"08185315":[],"081896":[],"081908":[],"08191117":33,"081916726599974":[],"081937":6,"081955":[],"081960":[],"081976":[],"0819836":[],"0820":[24,42],"082168":12,"082189":[],"082196":6,"082203":[],"082205":[],"08221578":[],"082225":[],"082231":6,"082234":12,"082246":[],"082248":[],"082255":[],"082260":12,"0823":[24,42],"082306":6,"08231145":[],"082329":6,"082347":[],"08238863600759742":[],"08245909":[],"082506":[],"08251519":7,"082517":[],"08255129":[],"08256285":[],"082577":[],"082590":[],"082621":[],"082632":[],"082653":34,"082657":[],"0827":[24,42],"08271388":[],"08272096":[],"082734":12,"082746":[],"082754":[],"082760":[],"082781":[],"082805":[],"08282867":[],"082829":[],"082875":33,"08293853":[],"08299273e":7,"083000":[],"083015":[],"083066":[],"083096":[],"0831":[24,42],"08318298e":[2,40,41,42],"083269":[],"083317":[],"08333333":[24,42],"08333333333333333":[2,10,40,41,45],"08336233266":[5,44],"083371":12,"083393":[],"08339896":[],"083414":12,"083416":[],"083423":12,"08346766":30,"0835":[24,42],"083511":[],"083527":[33,34],"08352721390288316":33,"083604":[],"083630":[],"083669":12,"08368077":33,"083726":[],"08376632":[7,34],"083766322923899":[7,34],"0837663229239043":[7,34],"0838":[24,42],"083848":6,"083853":[],"08389064":[],"08394792":[],"083988":[],"084042":[],"084051":12,"084075":[],"084076":34,"084110":6,"084141":[],"084164":6,"08417181":[],"084172":[],"0842":[24,42],"084207":[],"084212":6,"084247":[],"08426840630693412":[7,36],"08426840630693413":[7,36],"084278":[],"084340":[],"084365":12,"084471":6,"084489":[],"08449894":[],"084536":12,"08455":[10,45],"084550":12,"084594":[],"0846":[24,42],"084617":12,"084633":12,"084644":12,"0846527":26,"084672":6,"084678":[],"08474":[10,45],"084740":[],"084764":[],"084809":34,"08481871":[],"084843":[],"08484802e":34,"084878":[],"084946":[],"084968":[],"084995":[],"0850":[24,42],"085023":[],"08505008":[],"085121":12,"085172":6,"085223":12,"085235":[],"085251":[],"0853136633465326":[37,44],"085382":6,"085390":12,"085391":[],"0854":[24,42],"085425":6,"085427":[],"085454":[],"08551306":7,"08551338":[],"08551625":[],"085557":[],"085709":12,"08576932":7,"0858":[24,42],"085835":12,"085842":12,"085858":[],"085877":[],"085888":12,"085898":12,"085908":[],"08593216":7,"086054":12,"086090":[],"0861":[24,42],"086108":[],"08611111111111111":[2,40,41],"086172":12,"086337":[],"086394":[],"08641073":6,"086411":6,"086441":[],"0865":[24,42],"086518":[],"08652153831327969":[],"086540":12,"086636":[],"086773":12,"086774":[],"086830":12,"086843":[],"086864":[],"086868":[],"086891":12,"0869":[24,42],"08690":[10,45],"086900":[],"08692465":[],"086932":[],"08703034":[],"087062":12,"087063":[],"087159":12,"087175":[],"087180":12,"087184":12,"087211":6,"087212":12,"087247":[],"087250":[],"087254":[],"087271":[],"087280":6,"08728068":[],"0873":[24,42],"087311":[],"08737007811453563":[],"087393":[],"08758":[10,45],"087603":[],"087642":[],"087674":12,"0877":[24,42],"08770809":[],"087761":[],"08776426":33,"087802":12,"087845":[],"087887":33,"087899":[],"088007":12,"0881":[24,42],"088155":[],"08815506":[],"08817972":33,"0881981":6,"088202":12,"08823":28,"088240":[],"088314":12,"088339":12,"088416":[],"08844723450419088":[],"088456":12,"0885":[24,42],"088510":12,"088521":12,"088563":12,"088665":[],"088697":[],"08871404":6,"08874631":[],"08876865":14,"08881497884574564":34,"08888888888888889":[2,40,41],"0889":[24,42,43],"088900":6,"089008":[],"08902":[10,45],"0892144853354966":[37,44],"089227":12,"08928088":[],"0893":[24,42],"089365":[],"089414":[],"089513":6,"089523":12,"0895387":34,"089539":34,"089664":12,"089678":12,"0897":[24,42],"089710":[],"08973767":[],"089752":6,"089781":12,"089793":[],"08988514":[],"089893":12,"08990571":[],"08992459":33,"089925":12,"08996":[10,45],"089979":12,"09":[2,7,24,34,40,41,42,44],"0901":[24,42],"090123":[],"09030678":[],"090361":[],"090365":[],"0905":[24,42],"09076319":[],"090777":6,"090832":12,"090919":12,"090945":12,"0910":[24,42],"091021":12,"091023":6,"091072":12,"091090":12,"091293":12,"091372":12,"0914":[24,42],"09149148":[],"091571":12,"09166666666666666":[2,40,41],"091685":[],"0917":[10,43,45],"091714":12,"09172409":7,"09173024":[],"091796":[],"09179697e":[],"0918":[24,42],"091913":[],"092":[],"09215672":26,"0922":[24,42],"092206":6,"092254":12,"092412":12,"092450":12,"092452":[],"092487":6,"092493":12,"09251":[10,45],"092516":12,"092560":12,"092566":12,"0926":[24,42],"092852":12,"093":[],"0930":[24,42],"093080":[],"09308274":[],"09312344":26,"093218":[],"09327269724691106":[],"09336399":[],"093408":[],"0934955":33,"0935":[24,42],"093551":12,"093559":12,"093570":[],"093657":6,"093866":12,"0939":[24,42],"09391542":[],"093993":12,"093996":12,"094001":12,"094050":12,"09408163":[],"094082198961999e":7,"0940821989652176e":7,"094163":[],"094206":12,"0943":[24,42],"0944":43,"09444444444444444":[2,40,41],"0944958":33,"09455047":[],"0948":[24,42],"0952":[24,42],"09524714":[],"09527217":[],"095273":12,"0954":[],"095420":12,"095528":12,"095596":12,"0956":[24,42],"095624":12,"0958":43,"095821":[],"09599224":[],"09607524":26,"09609807":6,"0961":[24,42],"096434":12,"0965":[24,42],"09676156e":34,"0969":[24,42],"097049":12,"09712586e":[],"0972":43,"097238":12,"09726322":[],"097294":12,"0973":[24,42],"0974":[24,42],"09744":[10,45],"09760094":[],"0978":[24,42],"09780":[10,45],"09787053":[],"09791":[10,45],"09797549e":34,"097995":12,"0983":[24,42],"09832963":[],"09851217":[],"09858511":[],"09861229":[26,33],"0987":[24,42],"098879":12,"09903804":9,"09917246":[],"09919198949274803":[7,36],"0992":[24,42],"099209":[],"09920915":[],"099275":[],"0994119523801045":[],"09951287404314545":[2,40,41],"099552":12,"0996":[24,42],"099701":12,"09978307":30,"0998713":[],"0n":[1,33],"0s":[5,24,42,43,44],"0x1022cc0d0":[],"0x1045a7eb0":[],"0x105b84cd0":[],"0x107a08b50":[],"0x10febc640":[],"0x10febcf10":[],"0x1162c32b0":[],"0x1183f2640":[],"0x118c9b1c0":[],"0x118f6d610":[],"0x1194ee790":38,"0x11ada9670":[],"0x11cb23a60":22,"0x11cb23fd0":22,"0x11de12520":[],"0x11df37280":[],"0x11f5f6520":[],"0x11fdbfd60":[],"0x122d2e790":[],"0x12334c310":[],"0x1262b9a90":[],"0x126323b50":[],"0x1268ba940":[],"0x127a38670":[],"0x127e425e0":[],"0x128f6eee0":38,"0x12b1c2700":14,"0x12e9e6280":14,"0x13002a640":[],"0x1305bb1c0":[],"0x136af27c0":[],"0x13792dfa0":[],"0x13d4a1640":[],"0x13eaa7490":[],"0x13ef4e1c0":[],"0x156346610":[],"0x1635f5340":[],"0x168435640":44,"0x168f3fca0":[],"0x16c9a8880":[],"0x2800bca90":[],"0x280a35220":37,"1":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,21,22,23,24,26,28,29,30,31,32,35,36,37,38,39,40,41,42,43,44,45],"10":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,22,24,26,27,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"100":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,22,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"1000":[1,2,3,5,6,9,12,14,15,22,24,25,30,33,34,37,38,39,40,41,42,44],"10000":[3,6,7,11,12,14,30,35,36,42,43,45],"100000":9,"10001":[11,45],"1001":[10,30,45],"1002":30,"1003":30,"10030":[10,45],"10035098":[],"100351":[],"1005":30,"1007":35,"1007216":22,"10077114273548984":[7,36],"10080981":22,"1009":[30,43],"10095106250934528":26,"101":[24,42,43],"101058":[],"1011":30,"10120164":33,"1013":30,"1013904243":30,"101409":12,"10141413e":7,"1015":30,"10154612":[],"10156593":[],"1016":43,"10160394":[],"10188623":[],"102":[3,4,24,34,42,43],"1020":45,"1023":30,"10230":[10,45],"1024":[4,43],"10247463629935179":[],"10251317e":[],"1026":30,"10268273":[],"1027":30,"103":[2,3,24,40,41,42],"1030":30,"10320791":33,"103273":12,"10340":[10,45],"10354083919795562":[],"1036131":[],"103654":[],"1036544":[],"1037":[30,43],"10378326e":[2,40,41,42],"1038":30,"10391807":7,"10398646080125036":[7,36],"10398646080125037":[7,36],"10399743":26,"10399758":[],"104":[24,42],"1040":30,"10401756":[],"10405456":12,"10430":[10,45],"1044":43,"10440776":[],"104411":[33,34],"10455569":33,"1047":30,"10477501":33,"10479359":[],"10490195":[],"105":[24,42],"10518426027535331":10,"10520":[10,45],"10555555555555556":[2,40,41],"1056":43,"10572":36,"10582403e":34,"10589577":6,"106":[24,42],"1060":43,"106095":[12,34],"10615323e":[],"10638925":[],"1063892533225306":[],"106431":33,"10656534":[],"10683216":[],"107":[24,42],"10706523":[],"10741066e":[],"10776220958055382":[],"1078":36,"10790125813226321":34,"108":[7,10,24,42,45],"10812381":[],"108124":[],"10814421":26,"10815559091341771":45,"10851799e":[],"10888134":33,"1089452":[],"109":[24,42],"10913":7,"10927588":[],"109276":[],"10931453":7,"10954867e":[],"109556":6,"10955639":6,"1095957":[],"10959669":[],"10960":[10,45],"10983954":[],"10e":[24,42,43],"10m":5,"10th":[10,45],"10x":[1,33],"11":[1,3,4,5,6,7,8,9,10,11,12,13,14,16,17,19,22,24,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"110":[24,42],"1100":30,"11007935789924998":[],"1101":30,"11022302e":[6,40],"11022363":[],"11027723":[],"11039573e":[],"11078018494378859":[],"111":[2,8,13,24,37,39,40,41,42],"11100":[10,45],"11110246":26,"11112589053037751":[],"11137061e":[],"11166818":30,"11197884":[],"112":[24,42],"11202337":36,"1123":43,"11232098":26,"112383":[12,34],"1124":[10,45],"113":[24,42],"11339075":[],"1134":43,"11352187":[],"11388888888888889":[2,40,41],"11390":[10,45],"114":[24,42],"11400145":[],"1141":43,"11427818":[],"11450263":[],"114550":36,"11462415":6,"1148":43,"11482289e":7,"1148557":[],"114856":[],"115":[24,42],"11507992e":[2,40,41,42],"11547777218876518":[7,36],"115822":7,"11587186":[],"11590":[10,45],"116":[24,42],"1160326":[],"11628185e":[],"11657689":[],"11660":[10,45],"11666666666666667":[2,40,41],"117":[9,24,42],"11704038":26,"117430":33,"11743722141098414":12,"11744554e":7,"117456":[],"11749517":[],"11780":[10,45],"118":[3,24,42],"11816312":33,"1182":36,"118318":[33,34],"11836068":14,"11837308":[],"11837671":[],"1184":[5,44],"11840":[10,45],"11890":[10,45],"11896755":[],"119":[3,24,42],"11911824":[],"119936":3,"11m":[5,43],"12":[1,2,3,4,5,6,7,9,10,12,13,14,22,24,26,30,32,33,34,36,38,39,41,42,43,44,45],"120":[3,4,24,42,43],"12011393e":[],"12023635e":[],"1203":[10,45],"1203284":9,"12044974":34,"120450":34,"12049203":[],"120508":[],"12050822":[],"1206":9,"121":[9,10,11,24,42,45],"12129289":[],"1213":[],"12155548":[],"1215pm":[31,33],"12182967":7,"122":[3,9,10,11,24,42,43,45],"12222222222222222":[2,40,41],"12224317":[],"122282":33,"123":[3,24,42],"12318726e":7,"12330033":34,"12333649":7,"123711":7,"12380":[10,45],"124":[1,24,33,42],"12400":[10,45],"12417157":[],"12422141":22,"12427537":[],"12428533":[],"124413":[],"12441319":[],"125":[24,42],"12506251":30,"12552073e":7,"12568438":[],"12575322":14,"12591227":34,"12594172":[],"126":[10,24,42,45],"12602928e":34,"1261":[10,45],"12618549":6,"12622478":[],"12625715":[],"12634093":[],"1265":[10,45],"12693357":[],"12695501":[],"127":[5,24,42],"1271":7,"12747234e":34,"12765651865754318":[],"1277":7,"12777777777777777":[2,40,41],"127812":33,"12786653":26,"12790":[10,45],"128":[4,5,14,24,38,39,42,43,44],"12814914":[],"1285896350792584":[],"12858964":[],"128664":7,"12867125":33,"12871842":34,"128x128":43,"129":[3,24,42],"12921833":[],"1297":[10,45],"1298":[10,45],"129963":36,"12998822":[],"12m":43,"12pm":[31,33],"13":[0,1,3,5,6,7,10,12,13,14,22,23,24,26,28,30,33,34,36,37,39,40,42,43,44,45],"130":[10,24,42,45],"13003291":7,"13055555555555556":[2,40,41],"130694":34,"13069442":34,"13076331":[],"131":[10,24,42,45],"13155259":[],"132":[7,10,24,42,45],"13220608e":7,"1326":[10,45],"13261905":[],"1326197715":33,"13280":[10,45],"133":[8,24,37,42],"13310008":[],"13314468":[],"13333333":[24,42],"1336":[],"13371503":26,"134":[24,42],"13404683":[],"13410999":[],"134110":[],"13422946e":[],"1343":43,"13444436":[],"1345":36,"13451895":14,"134565":[],"1346":36,"135":[10,24,42,45],"13535942":7,"13542726":[],"13580759":[],"136":[24,42],"13621148":26,"136236":[],"13646574":6,"13661243e":7,"13679863":7,"137":[24,42],"1371":7,"13740":[10,45],"137400784702911":34,"13749148e":[],"13756504":[],"13759245e":[],"137652":[12,34],"1377":[4,5,43,44],"1378":[4,5,43,44],"1379":[4,5,43,44],"138":[24,42],"1380":[4,5,43,44],"1381":[4,5,43,44],"1382":[4,5,43,44],"13821034":[],"13827006":[],"13829298":[],"1383":[4,5,43,44],"1384":[4,5,43,44],"1385":[4,5,43,44],"1386":[4,5,43,44],"13865173":6,"138775":[12,34],"1387933":[],"13880371":[],"1388888888888889":[2,40,41],"1388976715362099":[],"13890":[10,45],"13894606338836166":[],"139":[24,42],"1392559585048734e":7,"139255958997547e":7,"13925918083728273":[],"139431112903922":36,"1394311129039245":36,"1395084586525954":36,"1395235273363669":36,"13987729":[],"13m":43,"14":[1,3,5,6,7,9,10,11,12,13,14,22,24,26,30,32,33,34,39,40,41,42,44,45],"140":[3,10,24,42,45],"14021063":7,"14023656":[],"14036907":[],"141":[3,24,42],"14100":[10,45],"1412":[22,38,39],"14133772":12,"141338":12,"1416398":7,"14174745":7,"14179769":26,"1418":[10,45],"142":[10,24,42,45],"14250":[10,45],"14277718e":34,"143":[3,8,24,37,42,44],"1437":[2,40,41,42],"1438149":[],"14389839":[],"144":[24,42],"14400":[10,45],"1440501043841336":[2,40,41,42],"14421971":[],"14440":[10,45],"1446729567":[5,44],"14482255345953607":33,"144993":33,"145":[3,24,42],"14526269":[],"14538257":[],"14549142":[],"146":[3,24,42],"14600426":26,"14629156":36,"146591":[],"146704":[],"14670413":[],"14697721":[],"147":[24,42],"14710":[10,45],"14722222222222223":[2,40,41],"147400":[12,34],"147420":[12,34],"147896":7,"1479":[10,45],"148":[4,5,24,42,43,44],"148009":[],"14812206":7,"14839786":26,"14845":[],"14857":[],"14859":7,"14871402":[],"14896753":30,"149":[4,5,24,42,43,44],"149294":[],"149299":[],"14962649":[],"14978631":[],"14g":[7,36],"14m":[],"15":[1,3,4,5,7,8,9,10,13,14,16,17,18,19,22,24,30,33,36,37,38,39,40,42,43,44,45],"150":[4,5,9,10,24,42,43,44,45],"15005476":6,"150218":36,"15024162":[],"15043":7,"15047127":[],"15048894":[],"15055258":[],"150726":[],"150749":[],"15098090e":7,"150989":[],"151":[4,5,24,42,43,44],"15119514":[],"1511986":12,"151199":12,"15130074e":7,"1513237":[],"15148810e":34,"151515":[],"151517":[],"15183857":[],"152":[4,5,10,24,42,43,44,45],"15200":[10,45],"1520039":[],"152701":[],"1527777777777778":[2,40,41],"153":[24,42],"15301931e":[],"153036":[33,34],"15313054":36,"1532465":[],"15352815e":[],"15383855":[],"15384615384615385":[10,45],"154":[24,42],"15443469e":[37,44],"15457792":[],"155":[10,24,42,45],"15553403":[],"155664":7,"15593134e":[],"156":[24,42],"1560":43,"15628391e":34,"1563":43,"15649598":[],"15673992":[],"15693449e":[],"156956":6,"15697121e":[],"157":[24,42],"15724663":[],"1575":[10,45],"15768662":14,"158":[10,24,42,45],"15827078":[],"15863713":[],"1587":[10,45],"159":[24,42],"1590":[10,45],"15913825":[],"15957051":[],"15962297":[],"15975618":[],"15990":[10,45],"15990395":[],"15g":[7,36],"15m":43,"15pm":33,"16":[2,3,4,5,6,7,9,10,11,22,24,30,33,34,35,36,39,40,41,42,43,44,45],"160":[24,42],"1600552":[],"1603":4,"16043757":[],"1608179281668718":[],"16081793":[],"16087734":[],"16089488":[],"160913":43,"161":[24,42],"16111111111111112":[2,40,41],"161573669199933":[],"16168603e":[],"16168848":[],"162":[24,42],"16211139":6,"16220":[10,45],"162246":6,"16231451":[5,44],"1625":[10,45],"1628":[10,45],"162999":33,"163":[24,42],"16304863":34,"163049":34,"1630775253":[2,40,41],"16309331":[],"16336815":[],"16342407":6,"16343471":7,"16356503":36,"16384":[4,43],"16385836":[],"16389131":[],"164":[24,42],"16456084":[],"164812":[],"16481217":[],"16487517":33,"16492688":[],"165":[24,42],"16500":[10,45],"16521791":[],"16539406e":[],"16570701":[],"166":[10,24,42,45],"16650509":[],"16666667":[24,42],"167":[24,42],"16761991":[],"16762223e":[],"167787":6,"168":[10,24,42,45],"16805821e":7,"169":[24,42],"16921883":[],"169219":[],"16933554":[],"16it":7,"17":[2,3,5,6,7,9,10,19,22,24,26,30,34,36,39,40,41,42,43,44,45],"170":[24,42],"17006020e":[],"17022089147584388":[],"17078905":[],"17086577":[],"1709":[10,45],"171":[24,42],"17121077":[],"17136288":[],"17138811":[],"17144765665252978":[],"171525":34,"1715252":34,"17174962e":[2,40,41,42],"172":[24,42],"17222222222222222":[2,40,41],"17257288":[],"1726":[10,45],"17275391":[],"173":[22,24,42],"17300":[10,45],"17305512":[],"1731":[10,45],"17362603":[],"174":[24,42],"17432695":[],"174327":[],"17440757e":[],"17446471":7,"17451":[],"17456211":33,"17469167":[],"174692":[],"175":[24,42],"1752":[10,45],"175300":[33,34],"17540272":[],"176":[24,42],"17603044":[],"17604689":26,"17615838052499":[],"17641709":7,"17644873":26,"17647619":7,"17648722":[],"177":[24,42],"17733642":[],"17736035":[],"17758251":[],"17777777777777778":[2,40,41],"178":[24,42],"17801022":6,"17829104":[],"17841553":[],"17861098":7,"179":[24,42],"1790289":[],"17917768":6,"17927079":30,"17934657e":[],"179404":[],"17949575":6,"17953942":12,"1797":[2,4,40,41,42,43],"17m":[],"18":[3,5,7,8,9,10,11,14,20,22,24,30,33,36,37,38,39,42,43,44,45],"180":[24,42,43],"18029127":6,"1803":28,"18044829":33,"1804736801658276":[],"18065292":[],"18065689e":34,"1807":[5,44],"1809":[10,45],"181":[10,24,42,45],"1812":[10,45],"18128852":[],"18188532":30,"182":[24,42],"1821":[10,45],"18243276e":[],"18276764":33,"183":[24,42],"18303628e":34,"18314387":[],"18321314e":34,"18333333333333332":[2,40,41],"1836":36,"18375572":30,"18383522":34,"184":[10,24,42,45],"18409473e":[],"18410452":33,"18433544":[],"184519":[33,34],"18474816e":[],"1848":43,"18488944":[],"18489312":[],"1849":[4,5,43,44],"18496":43,"185":[24,42],"1850":[4,5,43,44],"1851":[4,5,43,44],"18518557":[],"1852":[4,5,43,44],"18525109":[],"1853":[4,5,43,44],"1854":[4,5,43,44],"1855":[4,5,43,44],"1856":[4,5,43,44],"1857":[4,5,43,44],"185713":[],"18571316":[],"1858":[4,5,43,44],"1859":[4,5,43,44],"1859082":26,"186":[24,42],"1860":[10,45],"18604968":[],"18611111111111112":[2,40,41],"18613217e":7,"1862":43,"18624242":[],"18660":[10,45],"18670072e":34,"18673098":12,"187":[24,42],"1871257":[],"18726877":[],"1875353":[],"18753987":12,"187540":12,"18761375":[],"18780801":33,"188":[24,42],"18807824e":[],"18824315":[],"18829946":[],"18856622":26,"1887":7,"189":[24,42],"189367":33,"189496":[33,34],"189621963782685":[],"189622":[33,34],"18993003":[],"19":[3,5,7,10,14,22,24,30,36,39,42,43,44,45],"190":[24,42],"19003":7,"19010909":[],"19029687":14,"19073291":[],"191":[24,42],"19123037":[],"19154013e":[],"19166136":[],"19166666666666668":[2,40,41],"191963":33,"192":[24,42],"19207979":6,"1921649":[],"19220":[10,45],"193":[24,42],"19314584":[],"19335893":[],"19343949":[],"1937079":[],"19393543":[],"194":[24,42],"1940":[1,34],"194042826649355e":7,"1940428268204826e":7,"19407473":[],"19426595":[],"1943":[13,39,40],"19431161":[],"194312":[],"19436962e":[],"1946":43,"19461919e":34,"19463967":[],"194861702085775":[],"195":[24,42],"1956":[10,45],"19569961":[7,34],"19590868":[],"196":[24,42],"19623863e":[],"19652884e":[],"19683648":[24,42],"197":[24,42],"1970":[26,33],"19717411":[],"19721923":[24,42],"1973":[10,45],"197370":[12,34],"19740":[10,45],"19743643":[],"19769458e":[],"1977":43,"19772911":[],"19783086":14,"1979":[7,36],"19790229":33,"198":[24,42],"19800":[10,45],"19824029":[24,42],"19825288e":[],"19870992":[],"19888258":[],"199":[24,42],"19910208":[],"19942021":26,"1997":44,"19983530":7,"1999":[0,28,36,42],"19it":[],"1_1":[13,39,40],"1_2":[13,39,40],"1_3":[13,39,40],"1cm":[1,9,11,30,33,45],"1d":[2,3,4,40,41,42,43],"1e":[2,3,5,14,15,22,24,38,39,40,41,42,43],"1e10":15,"1e4":7,"1f":[2,41,42],"1k":26,"1n":[1,33],"1s":[5,24,42,43],"1x":[1,33],"2":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,22,23,24,25,26,27,29,30,32,35,36,37,38,39,40,41,42,44,45],"20":[1,2,3,5,7,8,9,10,14,22,24,30,31,33,34,35,36,37,39,40,41,42,43,44,45],"200":[1,3,4,5,9,10,11,24,42,43,44,45],"2000":[1,24,34,42,45],"20015436":7,"20017452":[],"20020918e":[],"2004":[14,37],"2006":32,"2008":33,"201":[24,42],"2010":[2,41,42],"20101684":[],"2011":[2,40,41,42],"2014":5,"20142361":[],"2015":[2,41,42],"2016":[1,33],"2017":42,"2018":[1,7,34,36],"2019":[9,10,45],"202":[24,42],"2021":[7,15,34,35,37,44],"2022":33,"2023":[4,5,16,17,18,19,20,21,22,23,24,28,33,35,36,37,38,39,40,41,42,43,44,45],"20240089":[],"20261698e":[],"2027":[10,43,45],"20272874":[],"20277777777777778":[2,40,41],"20289224":[],"203":[24,42],"20355156":36,"20371418":[],"204":[24,42],"20404676":[],"20484434":[],"204932":[],"20493234":[],"20494446":[],"205":[24,42],"20500":[10,45],"20513942":26,"205231":33,"20536556":26,"20554718e":[],"20594513":[],"206":[24,42],"2060":[10,45],"2069":[10,45],"20695722":[],"207":[24,42],"2070":43,"20726939":[],"207545":[12,34],"207888":33,"208":[24,42],"208190393562401":30,"20820528e":[],"20833333333333334":[2,40,41],"20867052175003364":[7,36],"209":[24,42],"20916295":34,"20956318":[],"20967833":[],"209789":33,"20980":[10,45],"21":[1,2,3,5,6,7,8,10,13,14,16,22,24,26,30,33,34,36,39,40,41,42,43,44,45],"210":[24,42],"210340":[12,34],"21049575":[],"210496":[],"21053692":[],"21055226":[],"21058097":6,"21059098":[],"211":[24,42],"21110005":36,"21130":[10,45],"21152452":[],"2116753732":[5,44],"21169159e":7,"212":[24,42],"21275991":[],"213":[24,42],"213103":[12,34],"213743":[12,34],"214":[24,42],"21401303e":[],"2141":43,"21460652":[],"214607":[],"21467941":[],"21489709":[],"21493779":[],"215":[24,42],"21522960e":34,"21530495e":34,"21546249":[],"21596432":7,"21597684":6,"215977":6,"216":[24,42],"2161908":26,"216290":[12,34],"216683":[12,34],"2167":43,"21682143":[],"217":[24,42],"21706540e":[],"21710121":[],"2171263":[],"218":[24,42],"2184":43,"21860973":[],"21879159":[],"219":[24,42],"21913628":[],"2193546":[],"21947455":[],"22":[1,2,3,5,6,7,10,13,14,20,22,23,24,26,30,33,34,36,37,38,39,40,41,42,43,44,45],"220":[24,42],"22001043":[],"22044605e":[6,34,40],"22092934e":[],"221":[9,24,42],"22103874e":[],"221180":[33,34],"22130126":[],"2216":[10,45],"22169909":[],"2218":[10,45],"221805":3,"221921":6,"22197349":26,"222":[24,42],"22209775e":[],"22227163e":34,"222400":[33,34],"22241171":[],"22291364":[],"22297358":[],"223":[24,42],"22328509":[],"22354860e":[],"22368396":[],"223884":[],"22388434":[],"224":[24,42],"22416937":[],"22467274":36,"225":[5,24,42],"22532324":[],"22574374":[],"2257879":33,"226":[24,42],"22616902":[],"22623101e":34,"226296567359957":[],"22663583":[],"22689573":[],"22690428":6,"227":[24,42],"22729927":[],"22752605":26,"228":[24,42],"228059":[],"22805937":[],"22830615":33,"2284246870217162":[7,36],"22847924":6,"22885848":[],"228942":[],"229":[24,42],"229241":[],"22935165":6,"229352":6,"22974406":[],"22979294e":[],"22996417":26,"23":[2,3,5,7,8,10,13,14,22,24,26,30,33,36,39,40,41,42,44,45],"230":[24,42],"23002365e":7,"23031634":[],"23044077":33,"23047985":[],"23076923076923078":[10,45],"23077531":33,"231":[24,42],"23110543":[],"2314999":22,"23167717":6,"23192074e":[],"232":[24,42],"232435":[33,34],"23257415":[],"23288045":30,"233":[24,42],"23305112":[],"23333333333333334":[2,40,41],"2338675":34,"233868":34,"23392132":[],"23396766e":34,"234":[7,24,42],"234370":12,"23437046":12,"235":[24,42],"23516186":[],"23528337":36,"2361161":[],"23636536":[],"2364":[10,45],"23643365":36,"237":[24,42],"23780865":[],"2379":7,"238":[24,36,42],"23849741":33,"239":[24,42],"2397":[10,45],"23971032":34,"23979359":[],"24":[1,2,3,4,5,7,10,14,20,22,24,26,30,33,36,39,40,41,42,44,45],"240":[24,42],"24005098e":[],"24053124e":34,"24085321":36,"241":[24,42],"24128917":[],"24140":[10,45],"24159785":34,"2416":[10,45],"24175744e":7,"2419":[10,45],"242":[24,42],"24251681":[],"24252405":[],"24280599":[],"242806":[],"243":[24,42],"2430":[10,45],"24339513":[],"24390":[10,45],"244":[24,42],"244119":[],"24411906":[],"24434901e":[],"24444444444444444":[2,40,41],"245":[24,42],"24569547":[],"246":[3,24,42],"24602503e":[],"2465439":[],"24679418":[],"247":[24,42],"24785221":[],"24797183e":34,"248":[24,42],"24828523":[],"24829908":6,"24849282":[],"248493":[],"249":[24,42],"24906604e":7,"24960675":[],"24968001e":[],"25":[3,4,5,6,7,8,9,10,12,14,16,21,22,24,27,33,34,36,37,39,40,41,42,43,44,45],"250":[3,5,8,10,24,37,42,44,45],"25000":[1,34],"25002882":12,"250029":12,"25050227":[],"250636":33,"25077762":[],"25084316":[],"25091007":[],"251":[24,42],"25139357":[],"251879":[33,34],"252":[24,42],"2522939":33,"252436":[33,34],"25254477e":34,"25285802":14,"253":[24,42],"254":[24,42],"2544422":26,"2545724":[],"255":[4,24,42,43],"255001":[33,34],"25561567":[],"256":[3,5,24,42],"25617654e":7,"25617658e":7,"25650679":[],"25663096":[],"257":[24,42],"257004":[],"25700419":[],"25713219e":34,"2572":[10,45],"2575":[10,45],"25794223e":34,"258":[24,42],"25844504":[],"25872167e":[],"25898624":[],"259":[24,42],"259153":[12,34],"2591811":[],"25920793":[40,41],"25923926":22,"2597":[10,45],"259901":[],"25it":[],"25m":[],"26":[3,5,7,10,14,22,24,36,39,44,45],"260":[24,42],"26037366":[],"26063304":[],"260840":[],"26084008":[],"261":[24,42],"26113838e":[],"261498":[],"26149831":[],"2619":34,"262":[24,42],"262638":[],"26263837":[],"26291451":[],"26292364":36,"26297455":34,"263":[24,42],"26301436":6,"26318493":[],"26331821e":[],"26370919":[],"26372759":[],"264":[5,24,42,44],"26409315307910025":7,"2640931530791004":7,"2641":43,"264377":[],"26437713":[],"264421":33,"265":[24,42],"2650":[10,45],"265109911":[5,44],"26513904":[],"26514544":[],"26518597":[],"2654":[10,45],"266":[24,42],"26660718e":[],"26666667":14,"267":[24,42],"26710969":6,"26776828":[],"26780278":6,"268":[10,24,42,45],"26803966":[],"26805987":26,"269217029290255":[],"26931499":[],"26961519":26,"2697447":[],"26995402":34,"26it":[],"27":[1,2,3,5,7,14,22,24,34,36,39,40,41,42,44],"270":[24,42],"27068495e":[],"2707158":[],"27092910":7,"27096183":[],"27099835":22,"271":[24,42],"2714":43,"27152452":[],"2717818":[],"272":[24,42],"27204759":33,"27230624e":[],"273":[24,42],"27305669":[],"273094":[],"27309401":[],"27335131":22,"2736":43,"27424746e":[],"27438488":[],"27463692":26,"27485633":33,"275":[24,42],"2750":[10,45],"27547557":[],"276":[24,42],"276263":[12,34],"27637358":[],"27650338":[],"27693602e":40,"277":[24,42],"27700":[10,45],"27717261":[],"27743488e":[],"2774877574815404":[],"27760":[10,45],"27793476":[],"277935":[],"278":[24,42],"27826845e":[],"27832584e":[],"27859357":[],"27880068":12,"279":[24,42],"27919014":[],"27924636":6,"27971414":[],"27987128":[],"27n_":30,"28":[2,3,4,5,7,10,14,17,22,24,26,34,36,38,39,40,41,42,43,44,45],"280":[24,42],"28008933":[],"280179":33,"280573":6,"280647":[12,34],"28081221e":[],"28096517":[],"281":[24,42],"28134042":34,"281930":33,"28194659":[],"282":[24,42],"28205578e":34,"28206156":[],"28210895":[],"282259":33,"282727":[12,34],"28291282":[],"28294305":[],"283":[24,42],"2830637392":[5,44],"283078":[],"28336218e":7,"2837521e":[],"28390":[10,45],"28391978":34,"284":[24,42],"28418209":[],"28443039":36,"284499":26,"28475098":9,"28490569":[],"285":[24,42],"28535441":[],"28566769":[40,41],"2856881":26,"28570701":26,"28585116":[],"28595266e":[],"286":[24,42],"28607817":[],"2861":30,"28621796e":[],"28622606":[],"28624958":[],"28638913":[],"28641189":[],"28662669":[],"287":[24,42],"2871":[10,45],"2873":[10,45],"28795864":39,"288":[24,42],"28818554":[],"288186":[],"2882":30,"28837459":[],"28858038":[],"2886":30,"289":[24,42],"2890":[1,33],"28908491":[],"28909679e":34,"2892":30,"28962017":[],"28it":7,"28x28":43,"29":[5,7,8,10,21,22,24,36,37,42,44,45],"29009852":33,"2901":43,"29022057":[],"29025302":[],"29030069":22,"29097377":[],"291":[24,42],"29135778":[],"291358":[],"2915":30,"29153991":[],"29167186":6,"29174301":[],"29199381":[],"292":[24,42],"292202":6,"29220202":6,"29228133":[],"2927":43,"29275129":[],"29282684":[],"293":[24,42],"2931":33,"293245":4,"29350903":[],"29374695":[],"29384004e":[],"294":[24,42],"29401213":[],"2941718e":[],"29426584":[],"29454955e":[],"29496954e":[],"295":[24,42],"2953":[4,5,43,44],"2954":[4,5,43,44],"2955":[4,5,43,44],"2956":[4,5,43,44],"2957":[4,5,43,44],"29588674":[],"29592687":[],"296":[24,42],"29633889":[],"296414":33,"29679459":[],"2968":33,"2970942":33,"29726695":[],"29731502":[],"29732036":[],"29734306":[],"29765192":22,"298":[24,42],"2980":33,"29822833":7,"29866668":[],"298667":[],"29894362":[],"299":[24,42],"2990":33,"29933720e":[],"2996":43,"299748":[33,34],"29it":[],"2_":[13,39,40],"2_1":[13,39,40],"2_2":[13,39,40],"2_3":[13,39,40],"2_i":[13,39,40],"2_m":[7,30,36],"2_t":[14,38,39],"2_x":30,"2b":30,"2c8f433990d1":[38,39],"2cm":9,"2d":[2,4,12,13,25,33,39,40,41,42,43],"2e":[7,36],"2f":[1,8,10,11,12,13,33,34,37,39,40,44,45],"2g":[3,42],"2g_i":[3,42],"2k":[4,43],"2m":[7,36],"2n":[1,3,4,33,34,42,43],"2nd":[10,45],"2p":[30,43],"2pm":[31,33],"2pt":5,"2s":43,"2u":0,"2x":[1,4,9,14,33,38,39,43],"2x_ix_jy_iy_j":9,"2x_j":9,"2y_i":11,"2y_j":9,"3":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,22,24,25,26,27,28,29,30,31,35,36,37,38,39,40,41,42,43,44,45],"30":[1,2,5,7,8,10,11,14,22,24,31,33,34,36,37,38,39,41,42,43,44,45],"300":[22,24,39,40,42],"3000":[24,42],"30000":[1,33],"30010":[10,45],"30012384":[],"30085673":[],"301":[24,42],"30119421":9,"30125775":[],"30129931":[],"30150056":[],"30170017":[40,41],"30177145":[],"302":[24,36,42],"3020":43,"30237154":22,"3024":43,"30258509":[26,33],"3029":43,"303":[7,24,42],"3030":43,"303107":33,"30311767":[],"3032":43,"30326262":[],"30335380e":[],"30339081517583943":[],"30361418":[],"30442964":34,"30447937":[],"30466214e":7,"3047648":30,"30478013":[],"30485583":22,"30494363":[],"305":[1,24,33,42],"30506642":33,"30567713":[],"30571694e":[],"306":[1,24,33,42],"30630294":[],"3064":43,"3065":43,"30677003":[],"306770031113352":[],"30685269":12,"306853":12,"3068687590657415":6,"30690504":[],"307":[1,33],"3072":[4,43],"3073":36,"30739146":14,"307631":[],"30763135":[],"3076923076923077":[10,45],"3077":43,"30774404":[],"30787294":7,"308":[1,24,33,42],"3082":43,"309":[1,24,33,42],"30914432":[],"30928349":30,"30940":[10,45],"30971881":[],"30990916":[],"31":[5,7,13,24,26,30,39,40,42,44],"310":[1,24,33,42],"31022577":[],"310277":[],"31027702":[],"310579":34,"3105791":34,"31082439":[],"311":[1,33],"31113868e":[],"312":[24,35,42],"31212802":[],"3123314713548606":[7,36],"31244861":[],"312449":[],"31248389":[],"3126":43,"31276579e":7,"31290061e":[],"31290684":[],"313":[24,35,42,43],"31318084":6,"313183599076104":[],"31395784e":34,"3139661":[],"31415359e":[],"314471861842257":12,"31457796":6,"315":[7,24,35,42],"31532451":26,"3155":[1,6,7,35,36,37],"31579721":[],"31588043":[],"31588332":[],"316":[24,35,42],"31633433":22,"31650694":7,"317":[24,42],"31705377":[],"31714002":[],"31718909":12,"31728952e":34,"317367":12,"3175938":[],"317594":[],"318":[24,42],"31803769":[],"31814386":[],"3189":36,"31895514":[],"31896852":9,"319":[24,42],"31921368":26,"31927572":[],"31949465":[],"31995103":[],"32":[4,5,7,13,14,24,26,30,36,38,39,40,42,43,44],"320":43,"3200":[2,40,41,42],"32023229":[],"32032017":[],"32041353":[],"321":[24,42],"32108713e":34,"32133765":[],"32141575":[],"32149601703519115":[7,36],"3214960170351912":[7,36],"3215":[10,45],"32185967":[],"322":[24,42],"32221699":[],"32234998":22,"32244056":[],"32257967":30,"3225819":26,"32265589":[],"3228044":[],"32341247e":[],"32372846":[],"32382849":[],"324":[3,24,42],"32441343e":[],"3245":3,"32450054":34,"325":[24,42],"3250":[2,7,40,41,42],"32507975":[],"32577534":[],"32584888":[],"326":[24,42],"32615859":[],"326238":[33,34],"32632463":[],"326325":[],"327":[24,42],"32708194":[],"327291":[],"32729105":[],"3273472571412799":[],"328":[24,42],"3283771":[],"328458":12,"32845846":12,"32858131":30,"329":[24,42],"32941592e":[],"329492":33,"33":[3,5,10,13,24,26,31,36,39,40,42,43,44,45],"330":[24,42],"33015882":14,"33020191":[],"3303366":[],"33066907e":[6,34],"33078483":[],"33079132":[],"33104875":[],"33108943":22,"33113018":[],"33159476":[],"33166055e":6,"331939":[33,34],"33197004e":34,"332":[24,42],"33213799":33,"33285444":[],"33285905":[],"3329671101137754":[],"333":[8,24,37,42],"33333333":14,"33408606":[],"33444711e":34,"33457718e":[],"33486875":[],"335":[24,42],"33525471e":[],"33534416":[],"33537181":[],"335849":[],"336":[24,42],"33600213":[],"3364":43,"33656494":26,"33708747":26,"33746734":[],"33746734412664":[],"33751667":30,"338":[24,42],"33800793":[],"33857909e":[],"33860497":[],"339":[24,42],"33903511":[],"33918941":1,"33995567":[],"339961":[],"3399612":[],"33it":[],"34":[3,5,10,24,26,36,42,44,45],"340":[24,42],"340071371496255":34,"34011629":[],"3403":[10,45],"340583":33,"340782":[12,34],"341":[24,42],"34100913":[],"34114547":6,"34133193":[],"34149655":[],"341497":[],"34154132":[],"34158540e":[],"34193915":[],"342680":[33,34],"3426926":26,"34294831e":22,"343":[24,42],"34347894e":34,"3436":[1,33],"34362409":26,"3437":[1,33],"34373214":33,"3439564710454786":[],"344":[24,42],"34412923":34,"34440086":[],"34447052":[],"34459931":39,"34460089":26,"345":[24,42],"34517495":[],"34569596":6,"346":[24,42],"34642944":26,"34685874":[],"346941":[],"34694145":[],"347":[24,42],"34718587":[],"347186":[],"3472":43,"34728094e":34,"348":[24,42],"348676117830458":[],"349":[24,42],"3493":43,"34977681":22,"34998197":[],"35":[1,3,5,7,10,18,24,27,31,33,36,42,44,45],"350":[24,42],"35058127":[],"35084272":[],"351":[24,42],"3512747":[],"351275":[],"35140":[10,45],"35146218":[],"35149796":6,"351498":6,"351636":[12,34],"35182854":6,"352":[24,42],"35248847":[],"35255737e":[],"353":[24,42],"3532":43,"35322418":26,"3536":43,"354":[24,42],"35401107":39,"35408251":[],"354083":[],"35412147":36,"35417405e":34,"35434042e":[],"3544313922":7,"35470445e":[6,34],"3549":[],"355":[24,42],"35533773":7,"35539164e":[],"35564856":[],"356":[24,42],"356399":[33,34],"3568919":[],"357":[24,42],"357508":[33,34],"35771826":7,"35795044":33,"35796655":30,"358":[24,42],"3581341341":[5,44],"35825829e":[],"35846425":36,"359":[6,24,35,42],"3591093":26,"3592571":[],"3597516959642966":[],"3597517":[],"35it":[],"36":[1,3,5,6,7,24,27,30,36,42,44],"360":[2,40,41,42],"3604":43,"36051635":[],"36097055e":[],"36099915":33,"361":[24,42],"36128659e":[],"3613":[10,45],"361556":[33,34],"3616476":[],"3619":43,"362":[24,42],"3621311":6,"363":[24,42],"3632959111950474e":7,"363295916323784e":7,"364":[24,42],"36403046":[],"36420967":[40,41],"36434588":[],"3646":43,"36550376":[],"3655222":6,"366":[24,42],"36674564":26,"36681298":[],"367":3,"3676":[],"36789460e":[],"3679":[],"36795972e":[],"368":[24,42],"36802977":[],"36825174":30,"3689":[],"369":[24,42],"369139":[12,34],"36928":43,"36970119e":34,"36it":[],"37":[1,5,7,10,20,24,27,33,37,42,44,45],"370":[24,42],"3701":[],"37021881":[],"3703":[],"3703468543933255":[],"3705":44,"3706":[],"370782966":[5,44],"37092452":[],"371":[24,42],"37112277":[],"3713":[],"3714":44,"3716":[],"3717":44,"37187359":26,"372":[24,42],"37236385":[],"372364":[],"37239927e":34,"3724":[],"3725":[],"37266855":[],"3727":44,"3729492":[],"373":[24,42],"3730":[],"3732":44,"3733":44,"37335014":[],"3734":[],"3735":44,"3736":44,"37369014":22,"3737":[],"37376184":[],"37388140e":[],"37391132":26,"37396662":7,"374":[24,42],"3740":44,"3741":[],"3743":[],"3744":[],"3745":44,"37477725":[],"374777250972322":[],"3748":44,"3749":44,"375":[24,42],"3750":[],"3752":[],"3753":[],"37540613":[],"3756":[],"375694":33,"3758":[],"3759":44,"376":[24,42],"3760":44,"3764":44,"3765":[5,44],"376547":33,"3766":[],"37667238":[],"3767":44,"3768":[],"3769":[],"377":[24,42],"3770":[5,44],"3773":44,"377372":34,"37737221":34,"37749489":[],"3775":5,"3776":[],"3777":5,"3777801602":7,"3778":[],"3779":5,"378":[24,42],"3780":44,"3781":[],"3782":[],"3784":[],"3785":[],"37853034e":[],"3786":[],"3787":[],"37871763":33,"3788":5,"3789":44,"37895549":[],"3790":[],"37900111":7,"3791":44,"37917253":[],"3792":5,"37938584":30,"3794":44,"3795":[],"3797":[5,44],"3798":[],"3799":[],"38":[5,10,24,27,30,42,44,45],"380":[10,24,42,45],"3800":[],"3801":[],"3802":44,"38020451":[],"380205":[],"3803":44,"38035637":30,"3804":[],"38046294":[],"3806":[],"3808":5,"38088413":[],"3809":[],"3810":[],"3811":[],"3812":5,"3813":[],"38135654":[],"38135733e":7,"3814":5,"3815":[],"3816":[],"38160211":33,"38165546":[],"3817475779":[7,36],"3818":44,"3819":[],"382":[24,42],"3820":44,"38201155":[],"3821":44,"382187":33,"3822":44,"3823":[5,44],"3824":5,"3825":[],"38259375":[],"3826":[],"3827":5,"3828":[],"3829":[],"383":[24,42],"3830":[],"38319502e":[],"3832":[],"3834":[],"3835":[],"3836":[],"3837":[],"3838":[],"38380352":[],"3838917029":38,"3839":5,"384":[24,42],"3840":[],"3841":[],"3842":44,"3842967":[],"3843":[],"3844":44,"3846":[],"38461538461538464":[10,45],"38461539":38,"38465596":[],"3847":[],"38478181":6,"384782":6,"3848":44,"38488879":26,"3849":[],"38493367":[],"385":[24,42],"3850":[],"38511237e":[],"38511413":[],"3853":5,"38533185":7,"3854":[],"3855":44,"3856":5,"3857":44,"3858":[],"3859":[],"386":[10,24,42,45],"3860":44,"3861":44,"3862":[],"38629436":[26,33],"3864":[],"3865":5,"3866":[],"3868":[],"38688646e":34,"3869":[],"387":[24,35,42],"3870":[],"3871":[],"3872":[],"3873":5,"3875":[],"3876":5,"38764522e":[],"3877":44,"3878":[],"38782352":[],"38787447":[],"3879":5,"3881":43,"3882":[],"3883":[],"38831624":[],"3884":[],"388451":43,"3885":[],"3886":36,"3887":5,"3888":[],"3889":[],"389":[24,42],"38916861e":7,"3893":[],"3894":44,"3895":5,"3896":[],"38962192e":7,"3897":5,"3898":[],"3899":[],"39":[1,5,10,23,24,28,31,33,39,40,42,44,45],"390":[24,42],"3900":5,"3901":[],"3902":5,"3903":5,"3906":[],"3907":[],"3907408":[],"39078751e":[],"391":[24,42],"3910":[],"3911":[],"3913":5,"3914":[],"39148625":26,"3915":[],"3918":[],"3919":[],"39197698":34,"391977":34,"392":[24,42],"3920":[],"39200159":[],"3921":5,"39214397":34,"392144":34,"3922":44,"39229856":[],"3923":[],"3924":[],"392564":12,"39256409":12,"3928":[],"39287528":[],"3929":5,"393":[24,42],"39300201":[],"393030":[],"3930301":[],"39308683e":[],"3931":[],"39313789e":34,"3932":[],"3933":[],"3935":[],"3936":5,"3937":44,"3938":[],"3939":5,"394":[24,42],"3940":5,"3944":[],"39457095":[],"3946":[],"3948":[],"39483726":[],"395":[24,42],"3951":5,"3953":5,"3954":[],"39541528":[],"3957":5,"39572825":[],"39579407":6,"396":[24,42],"3960":44,"39612983":[],"3962":[],"3964":[],"39644178":[],"3966":[],"3967":[],"397":[24,42],"3970":[],"39706038":6,"3972":[],"3973":5,"39730396":27,"3975":5,"3976":5,"397700":[12,34],"3978":[],"39789527":[26,33],"3979":[],"398":[24,42],"3980":[],"3980313467":7,"3981":[],"39837199":26,"39856058e":[],"3987":[],"39890447":[],"39895173e":[],"399":[24,42],"3990":[],"39917327":22,"3992":[],"39931051e":34,"3994":5,"3996":[],"39965905e":[],"3998":44,"399836":[33,34],"3999":[],"3d":[3,4,5,7,14,27,36,38,42,44],"3f":[2,4,10,41,42,43,45],"3n":26,"3s":[5,43,44],"3x":[3,9,42],"3x_i":[3,42],"3y":9,"3yk470mj5p931p9dtkk0y6jw0000gn":[2,7,14,27,33,36,38,40,41],"4":[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,24,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],"40":[2,5,7,10,23,24,27,28,31,33,36,40,41,42,43,44,45],"400":[5,24,42],"4000":[10,24,33,42,45],"40009482":[],"4001":[],"40043644":26,"40075395":[],"4008":[],"4009":[],"401":[24,42],"4010":[],"4011":[],"40111899":[],"401119":[],"4013":[],"4014":[],"40182469":[],"401842":[12,34],"402":[24,42],"40216748":[],"4024":[],"4025":5,"4027":[],"4032":[],"4033":[],"40362053":[],"4037":[],"40389562":[],"404":[24,34,42],"404130":[],"40413036":[],"4043":[],"4048":[],"4050":[32,33],"40500157":[],"4051":[],"40512793":[],"40513177e":34,"4054":[],"4055":5,"4056":5,"405890":[12,34],"406":[24,42],"40620066":34,"406201":34,"40629059":[],"4063":[],"40644745":[],"4066":[],"40660618e":[],"40666305":[],"4068":[],"4078":[],"408":[24,42],"4082":7,"40837954":30,"4085":43,"4086":[],"4087":[10,45],"4087793":6,"4088":[],"40892146":[],"40927184e":7,"4095":5,"4096":44,"4099":[],"40contain":28,"40it":[],"41":[3,5,10,23,24,26,28,42,44,45],"410":[24,42],"4100":[],"41021561":[],"4106":[],"4107":[10,45],"41097603":[],"411":[24,42],"411730":[],"41173033":[],"412":[24,42],"41219619":[],"41226929e":34,"41246325":[],"4128":[],"41291861":[],"413":[24,42],"4130":[],"4137":[],"41371745":[],"414":[24,42],"4141":43,"41433969":6,"4146":[],"41471556e":[],"4148":[],"415":[24,42],"4150":0,"415066":[],"41506637":[],"41511965e":[2,40,41,42],"415201":33,"4155":[3,16,42],"41594943":[],"416":[24,42],"4162":[],"4162706317":7,"41644629e":34,"4166666666666667":[10,45],"41671085":26,"417":[24,42],"41708096e":34,"41716708":[],"4177":[],"41771755":[],"41772265":33,"41790059":[],"418":[24,42],"4181":[],"418506":[12,34],"4187996":[],"41882037e":7,"41891092":[],"41894238":[],"419":[24,42],"4192":5,"41928689":[],"4199":[],"42":[2,3,4,5,9,10,11,24,26,40,42,43,44,45],"420":[24,42],"4203":[],"420442688206847":[],"4208":[],"421120085426022":[],"42138688e":[],"42143986":[],"42172457":[],"42198678":[],"421987":[],"422":[24,42],"4220":43,"4221":[],"4222":[],"42239354":[],"422658":[],"42265837":[],"423":[24,42],"4230769230769231":[10,45],"42323635":33,"4234":[],"4236":[],"424":[24,42],"4241":43,"42441033":6,"42450":[10,45],"42457498":[],"424575":[],"42484290e":34,"42484459":[],"424863":[],"42486342":[],"42487977":33,"425":[24,42],"4253":[],"42535003":[],"425564":[],"42556446":[],"4256":43,"42578415":[],"4258049":[],"42584543":[],"426":[7,8,24,37,42,44],"42633236e":[],"42642980e":[],"4266":[],"427":[24,42],"4277":[],"42777999":26,"428":[24,42],"42800148":[],"4281152":26,"4287":[],"428741":[],"42874148":[],"429":[24,36,42],"429345":[],"42934502":[],"42967903e":[],"42it":7,"43":[0,1,2,3,5,8,10,26,37,40,41,43,44,45],"430":[24,42],"43043913":[],"43054282":6,"4310":33,"4314":43,"4316":[],"432":[24,42],"43226747e":34,"433":36,"43330971e":7,"4336":[],"4338":43,"434":[24,42],"43425860e":[],"43466245":[],"4349":5,"43490863":[],"43496417":[],"435163":[33,34],"4353":[],"43559429":33,"43579948e":7,"436":[24,42],"43608740e":[],"43639284e":34,"436462435":[5,44],"43647835":[],"436501":12,"43650129":12,"437":[24,42],"43713337":[],"4375":43,"43766686":12,"438":[24,42],"43801947":[],"438060758":7,"43809274e":[],"438136":[33,34],"439":[24,42],"43902948":[],"439230":7,"4394":43,"43941514":[],"43951204":[],"43989497":26,"43it":[],"44":[1,2,3,5,26,40,41,44],"440":[24,42],"44020145e":[],"44079937":26,"44089210e":[6,34],"441":[24,42],"44116407":[],"441182":[],"44118245":[],"441264":33,"442":[24,42],"44210664":[],"4426":[],"442600":[12,34],"44298022":26,"443":[24,42],"443217":[33,34],"44347438":[],"444":[10,24,42,45],"44402322":[],"44407741e":[],"44418822":[],"44437409":33,"44440345":[],"44507049":[],"44520102":[],"44595818":[],"446":[24,42],"446033":36,"44624525e":34,"44632008":[],"446453":33,"44657526e":34,"4466":43,"4472":43,"44729805":[],"44732200e":[],"447659635275407":[],"44765964":[],"44781662":[],"447817":[],"447m":5,"448":[24,42],"44842116":[],"44886896":33,"448m":5,"449":[24,42],"449001126081919":[],"44900113":[],"44921888":[],"44967228":26,"44970586e":[2,40,41,42],"449m":[5,44],"44it":[],"45":[3,5,10,24,31,33,42,43,45],"450":[10,45],"45000312":33,"45014":[],"450257":[12,34],"4504":[10,45],"45062284":[],"45065211":[],"45073476e":[],"450m":[5,44],"451":[24,42],"4512":43,"45134965":[],"451m":5,"45207509":[],"45227801":33,"45253585":[],"452553":33,"45255977":[],"45281756":[],"45290234":[],"452m":5,"453":[24,42],"45308692":[],"45380691e":34,"45399416":30,"453m":5,"454":[24,42],"45405253e":[],"454m":5,"455":[24,42],"45502684":[],"455173":36,"4555094":[],"455592":[],"4556":43,"4557763":12,"455947":[33,34],"455m":5,"456":[10,24,42,45],"4560786541572335":6,"45610021":[],"45642521":[],"45668633":[],"456m":5,"457":[3,5,24,42,44],"457m":5,"458":[24,42],"458027":[33,34],"458078":[12,34],"45808919":33,"45811552":33,"458740":[],"4588":[],"458m":[5,44],"459":[24,42],"45915671e":34,"45922756e":[],"45960079":6,"45976616e":34,"459m":5,"46":[3,5,10,24,31,33,42,44],"460":[24,42],"46000649":22,"4600624385659884":[],"4601":[10,45],"46022436e":[],"46026a8f5d2c":43,"4605":43,"460m":5,"461":[24,42],"46132345":26,"46153846153846156":[10,45],"46156624":[],"461m":[],"462":[8,24,37,42],"4627795":[],"46285399":[],"462m":44,"463":[24,42],"46306318e":[],"46313714":[],"46383925e":7,"46383926e":7,"463861":33,"463m":[5,44],"464":[24,42],"4642383":22,"464m":5,"46580623":33,"465m":[],"466":[24,42],"4667":43,"466m":44,"467":[24,42],"467427755242117":33,"46753261e":34,"46754435":[],"4676059":34,"467606":34,"46766277":[],"467663":[],"467818":[],"46781836":[],"467m":[5,44],"468":[24,42],"46873567":[],"468m":44,"469":[24,42],"46904874e":[],"4694":43,"46984697e":7,"469m":[5,44],"46it":7,"47":[3,5,10,24,31,33,42,44,45],"470":[24,42],"47042744":6,"470714":[33,34],"47075725":7,"470m":44,"47116132":30,"47116868e":7,"4712168":[],"47125748":6,"47128712":[],"47132891":6,"4714":43,"47176716":36,"47176783":36,"47179152":36,"471874":[],"47187428":[],"471m":[5,44],"472":[24,42],"47202442":36,"4722":43,"472445":[],"47244548":[],"4727":[],"47297104":[],"472m":[5,44],"473":[24,42],"47313680":36,"47364408":[],"47391428":39,"473m":44,"47430124e":[],"47447472":[],"474m":[],"475":[24,42],"475405":[],"47540513":[],"475582":6,"47558206":6,"4757488":33,"475m":[],"476":[24,42],"47610036":7,"476m":[],"477":[24,42],"47700752":[],"47701204":[],"4772":[],"477m":5,"47815203":12,"47831084":[],"478m":[],"479":[24,42],"479465113":[5,44],"47950427":26,"479m":5,"47it":7,"48":[3,5,10,24,36,42,44,45],"480":33,"4809676":[],"480m":[],"481":[24,42],"4810":43,"48134747":[],"481401":[],"48140137":[],"48145226":[],"481979":7,"481m":[],"482":[24,42],"48209629":[],"48240312e":[],"48243352e":[],"48257387":[31,33],"48289037":[],"482m":[],"483":[24,42],"483257001":14,"48333258":26,"48336413":[],"48356153e":[],"483m":5,"484":[24,42],"48418018":[],"48423285":[],"48444949":33,"48461009":[],"48464841":[],"48476997":12,"484m":[],"48534921":[],"48577692":[],"48598711":[],"485m":5,"486":[24,42],"48629506":[],"486852":[],"48685204":[],"486m":[],"4871":[],"4871984":[],"487m":[],"488":[24,42],"48815255e":[],"488m":[],"489502":[],"48950243":[],"48994188":6,"489m":[],"49":[3,5,6,7,10,12,24,27,34,38,39,42,44,45],"490":[24,42],"49057373":[],"49078463":[],"490m":[],"491":[24,42],"49152":[4,43],"49186362e":[],"491m":[],"49216685":[],"492m":[],"493":[24,42],"49313815":[],"493m":[],"4940954":[1,33],"49423098":33,"494m":[],"495":[24,42],"49529781":[],"49545139":[],"49555885e":[],"49556373e":[],"4959161509357395e":7,"495916150936645e":7,"495m":[],"49616116":[],"497":[4,5,24,42,43,44],"4974810657432664":[],"497m":[],"498":[4,5,24,42,43,44],"4983":43,"49865980e":[],"498m":[],"499":[4,5,24,42,43,44],"4990":30,"49901588":26,"4992":30,"4993133":[],"4997":30,"499m":[],"4c4c7f":[10,11],"4d":[4,43],"4f":7,"4pm":[31,33],"4s":43,"4y":9,"4y_i":11,"5":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"50":[2,3,4,5,7,8,9,10,11,14,22,24,33,34,36,37,38,39,40,41,42,43,44,45],"500":[2,4,5,7,10,11,14,24,36,37,38,39,40,41,42,43,44,45],"5000":[24,42,43],"50000000e":40,"50000455":6,"50000553":6,"50000718":6,"50000855":6,"50000969":6,"50001063":6,"50001142":6,"50001207":6,"50001261":6,"50001306":6,"50001343":6,"50001374":6,"500014":6,"50001414":6,"50001422":6,"50001439":6,"50001454":6,"50001466":6,"50001476":6,"50001485":6,"50001492":6,"50001498":6,"50001502":6,"50001506":6,"5000151":6,"50001512":6,"50001515":6,"50001517":6,"50001518":6,"50001519":6,"50001521":6,"50001522":6,"50001523":6,"50001524":6,"50001525":6,"50046106":[],"50079895":[],"500m":5,"501":[4,5,43,44],"5014":43,"50172141":[],"5018":30,"50184628e":[],"501m":[],"502":[4,5,24,42,43,44],"50227564e":7,"50274255":[],"502m":5,"503":[4,5,24,42,43,44],"50321091":6,"50359169e":[],"504":[4,5,24,42,43,44],"50427787":36,"50462474":[],"5046808":[],"504m":[],"505":[4,5,24,42,43,44],"50519365":[],"50562981":[],"505m":[],"506":[1,4,5,24,34,42,43,44],"50626752":[],"50653545":[],"506553":34,"50655336":34,"50691065":[],"50697511":[],"507":[4,5,24,42,43,44],"50721349":[],"5078":44,"507d50":[10,11],"508":[4,5,43,44],"50837888e":[],"50846111e":7,"50846112e":7,"508m":[],"509":[24,42],"5091":5,"50925722e":[],"5092982":[],"50it":[],"50j":[14,38],"50x10":[2,40,41,42],"51":[3,5,11,24,42,44,45],"510":[2,24,40,41,42],"511":[4,5,24,42,43,44],"511888":6,"51191552":7,"511m":[],"512":[4,5,24,42,43,44],"512204707520711":30,"51220471":30,"51249881":6,"512499":6,"51267283e":34,"512m":[],"51349834":30,"51374050":36,"514":[24,42],"514219":[33,34],"515":[24,42],"51549827":[],"515m":[],"516":[24,42],"51635486":33,"516m":5,"517":[24,42],"51727541":26,"51741855":[],"517582":[],"51758232":[],"517615":[],"51761523":[],"5177783846":[5,44],"51845286":[],"5186":43,"518895":33,"518923":[],"51892347":[],"519":[24,42,43],"519m":5,"52":[4,5,24,38,39,42,43,44],"52006777e":34,"52015514":[],"52067151":[],"52078202":[],"52180619":[],"521m":[],"522":[24,42],"52204004":[],"52209178":[],"5222222222222223":[2,40,41],"522836":33,"522m":[],"523":[24,42],"52305374":12,"52362157e":34,"524":[24,42],"5240":43,"52400486e":[],"52470105":[],"52482437":[],"525010":[],"52501047":[],"525054":[],"52512898":[],"52518625":[],"52565509e":[],"525739":[],"52573941":[],"526":[24,42],"52626194e":[],"526744":[12,34],"52687741":[],"527":[24,42],"5274":[],"5276":[],"52775466":36,"52795454":[],"527m":5,"528":[24,42],"52856208":[],"52874252":6,"529":[24,42],"52942586":[],"52944573":[],"529446":[],"52950417":[],"5297947920715131":[],"52988562":12,"529886":12,"53":[3,4,5,10,24,42,43,44,45],"5302517":[],"5303329":12,"53049637":[],"5305555555555556":[2,40,41],"531":[24,42],"531280":[33,34],"532":[24,42],"5320148":[],"53229196":30,"53250091":[],"53278871":[],"532789":[],"53294653":[],"533":[24,42],"53367133":26,"534":[24,42],"5340022":[],"534362":33,"53459992":26,"5349":43,"535":[24,42],"53506617":33,"53515878":[],"5353":43,"53542722":[],"53558374":[],"53596681e":34,"536":[24,42],"53632379":33,"5364857":[],"53683592e":[],"5369485":[],"537":[24,42],"53700083":[],"53703498":7,"53738247":36,"53755010e":[],"5378811":12,"538":[24,42],"53811172e":[],"5384615384615384":[10,45],"539":[24,42],"539261":[12,34],"5393":43,"53946725":[],"54":[3,4,5,7,10,24,30,42,43,44,45],"540":[10,24,42,45],"54039921":6,"54041041e":6,"54050804e":[],"54071847":[],"541605":[33,34],"542":[24,42],"54213329":26,"54285633":[],"54342461":33,"5435":43,"54378734e":[],"54379087e":34,"543939":34,"54393936":34,"544":[24,42],"5442":43,"544439":[33,34],"5449":43,"545":[24,42],"545099":[],"54509921":[],"5452708224046345":12,"5454":43,"54601264e":34,"54617756":26,"54637219":36,"54640368":26,"54644868":[],"547":[24,42],"5470":43,"5477":43,"54852248":33,"549":[24,42],"54969188":33,"55":[2,3,4,5,10,24,40,41,42,43,44,45],"55043852e":[],"55063291":30,"55086461":[],"552":[24,42],"552042":[],"55206229":26,"55315304":[],"55328795e":[],"55331574":[],"554":[24,42],"55438359e":34,"555":[24,42],"55511609":[],"55527296":30,"5555555555555556":[2,40,41],"55555773":[],"555m":[],"556":[24,42],"55649207":[],"55684718":[],"55685628":26,"556m":[],"557":[24,42],"557795":[12,34],"55790428":33,"558":[24,42],"55812916":33,"55847112":26,"55854694":12,"55865092":[],"55867377":[],"55868255":[],"559":[24,42],"55906894":14,"5594":7,"55940301":30,"55955126":[],"55972302e":[],"55it":7,"56":[2,3,4,5,10,24,40,41,42,43,44,45],"560":[24,42],"56033697":6,"5608253":[],"561":[24,42],"56135704":33,"5615739502773949":[],"5616":43,"56171141":[],"56198284":6,"561m":[],"56217428":33,"56240703e":[],"56249706":[],"56288861":[],"562888614232874":[],"563":[24,42],"563167":33,"56364308":[],"56366546":[],"56397327":[],"56399029e":[],"563m":[],"564":[10,24,42,45],"56424167":[],"564242":[],"56425249":[],"564374":[12,34],"56465688":[],"56475572":[],"56477354":[],"565":[10,24,42,45],"56536":[1,33],"56548318":26,"56570797e":[],"56589683":36,"566":[10,24,42,45],"56636537":[],"56636616e":7,"56678624":[],"566m":[],"567":[10,45],"56740132":[],"56756375":33,"568":[10,24,36,42,45],"5680":[],"56822376":[],"56830193":33,"568587":[],"56858701":[],"56878976e":[],"56899695":[],"569":[2,10,41,42,45],"56912044e":7,"56939714":6,"56965674":36,"57":[1,3,4,5,9,10,24,31,33,42,43,44,45],"570":[10,43,45],"571":[6,24,35,42],"571105947979344e":7,"571105947979394e":7,"5712104":33,"57201944e":7,"572069":33,"57219055":[],"5721905504656455":[],"57223110e":[],"57285536":[],"573":[24,42],"573029":[],"57302926":[],"57316402e":34,"57329374":[],"574":[24,42],"574465":[12,34],"575":[24,42],"57537966e":34,"57572321":[],"576":[24,36,42],"57670824":[],"5769230769230769":[10,45],"577":[24,42],"577421319924605":[],"578":[24,42],"57811941":[],"5786304":[],"579":[24,42],"57935482":[],"5793788":33,"579437":6,"57943748":6,"57952471e":[],"58":[3,5,10,11,24,31,33,42,45],"580":[24,42],"58076367":[],"5808118":[],"58098325":30,"5810785":[],"58182803":[],"58193124":[],"581m":[],"582":[24,42],"58207928":[],"58268575":[],"5828247":[],"5829913":[],"5833333333333334":[10,45],"583595":[33,34],"58368727":34,"58397472":30,"584":[24,42],"58427764":[],"58465096":[],"58486384":[],"58492636e":34,"585":[24,42],"58519863":33,"58581665e":[],"58639705":33,"587":[24,42],"58739348":[],"58742004e":[],"58793527":[],"58810494":30,"58818643":[],"58841019e":[],"5888888888888889":[2,40,41],"589":[24,42],"58948138":[],"58948347":[],"589971818845805":26,"58it":7,"58m":43,"59":[3,5,10,24,42,45],"590":[24,42],"59004971":[],"590609":6,"59060904":6,"5909":43,"591317992":[5,44],"5914397":[],"59187177":[],"591872":[],"592":[24,42],"59206948":[],"59222238":[],"592658":6,"59265811":6,"593":[24,42],"59327016":[],"594":[24,42],"59412285":[],"5944444444444444":[2,40,41],"59446603":[],"59511582":[],"59545081":[],"59558002":30,"59589728e":[],"596":[24,42],"59602968":26,"59640396":30,"59642735":[],"596m":[],"59703606":[],"5974862":[],"598":[24,42],"59816099":26,"59883217":[],"59895188":[],"599":[24,42],"59905073":[],"59916814e":[],"5993":43,"59987612":12,"59m":43,"5cm":[0,30],"5f":[9,38],"5m":43,"5x":9,"5y":9,"6":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],"60":[2,3,4,5,7,10,24,41,42,43,45],"600":[24,42],"6000":[24,42],"60000":5,"6003":43,"60090208":33,"601":[24,42],"6019067271":[5,44],"60293962":6,"603":[24,42],"60307141":26,"603636":33,"6037092":[],"60381656e":[],"60383004":[],"60398689":[],"604":[24,42],"60420593":6,"60493501":30,"605":[24,42],"60543038":34,"606":[24,42],"60673226":12,"6067329321734374":[],"60675691":[],"606760":6,"607":[24,42],"6071713":[],"60742555e":22,"608":[24,42],"60815105":7,"60846694":[],"608467":[],"60863613e":[],"6088":43,"60883945":[],"609":[24,42],"60943791":[26,33],"60it":[],"61":[3,8,24,37,42],"610":[24,42],"61043964e":[],"61050884e":[],"611":[24,42],"6111111111111112":[2,40,41],"61197218":[],"612":[24,42],"61219726":6,"61238907":[24,42],"61246573e":[],"61253537":[],"612939":[33,34],"613":[24,42],"6130353":43,"613579":[33,34],"61394448":[],"614":[24,42],"614808":[12,34],"61480907":[],"615":[24,42],"61504341":[],"61532006":[],"6153846153846154":[10,45],"61585143":[],"616":[24,42],"61631038":33,"61653285e":[],"61669885e":[],"617":[24,42],"61702282":7,"61775176":36,"617961":6,"61796102":6,"618":[24,42],"618982":[33,34],"619":[24,42],"61939429":[24,42],"61949985e":[],"61955303":12,"61971639e":[],"61992828e":[],"61it":[],"61m":43,"62":[4,5,24,42,43,44],"620":[24,42],"62025406":[],"621102":33,"6214":43,"62199022":[],"622":[24,42],"623":[24,42],"62373464":12,"624":[24,42],"62460522":33,"62464344":[],"625":[8,37],"62518501":[],"62554614":[],"6258":43,"6259":43,"62633359":[],"62642303":[],"626635268":[7,36],"627":[24,42],"62841921":[],"62862896":[],"6288":43,"6289054":[],"62894215":6,"629":[24,42],"629100":[],"62910047":[],"62919818":[],"6297":43,"62it":[],"62m":43,"63":[1,2,4,5,7,8,24,34,36,37,40,41,42,43,44],"630":[24,42],"6300745149331701":34,"63025821e":7,"63081005":[],"63162342":34,"63180447":36,"632":[24,42],"63212587":[],"63227278":[],"63249532e":7,"63277911e":[],"63281889":[],"633":[24,42],"633949":33,"634":[24,42],"63401971":12,"634020":12,"634715":[],"63471545":[],"63498144":6,"6353716266230895":[],"63537163":[],"63567272":[],"6357":43,"636":[24,42],"63659131":[],"63677721":[],"63685221":22,"637":[24,42],"637129335071195":34,"63790586e":34,"638":[24,42],"63837812":[],"63843494e":[],"63849228e":[],"63870745":33,"63875295":[],"639":[24,42],"63957747":[],"63m":43,"64":[2,4,5,8,14,24,26,33,37,38,39,40,41,42,43,44],"64012627":6,"64056395":[],"641":[24,42],"6411":43,"64111239":[],"64147722":[],"64158883e":[37,44],"642":[24,42],"64228618e":22,"64257697e":34,"64291044e":[],"64292493":[],"64299732":[],"643":[24,42],"64316192":36,"64316482":36,"64342603":22,"64347512":33,"64365518e":34,"64391062":[],"643m":[],"64432571":[],"64472123":[],"644829":6,"64482901":6,"645":[24,42],"64502836":[],"64527549":[],"64530585":22,"64550753":[],"64594566":[],"645946":[],"646":[24,42],"646283":[12,34],"64695862":[],"647":[7,24,42],"64733822":[],"64742912e":7,"647473":[12,34],"648":[24,42],"648382":[],"64846973e":[],"64874236":26,"649":[24,42],"649382":[12,34],"64969451":[],"649695":[],"64m":43,"64x50":[2,40,41,42],"65":[2,4,5,8,9,10,24,37,40,41,42,43,44,45],"650":[24,42,43],"65015024":30,"65036493":[],"6513444":26,"65196615":[],"652":[24,42],"652187":[],"65218729":[],"6522099":33,"65244075":30,"6527":43,"65318467":26,"65322635":[],"65339992":[],"6536392":34,"654":[24,42],"65408703e":[],"65409368":[],"65442354":34,"654424":34,"654m":[],"655":[24,42],"6556":43,"65565751":[],"65571174e":34,"65599456":34,"6559956":[],"65600":43,"65626992":[],"65628888":[],"65673455":[],"6568551":[],"657":[24,42],"65704027":[],"657041":33,"65715086":[],"65720414":[],"65728698e":[],"65743689":34,"65766777":26,"658":[24,42],"65822169":26,"65825344":[],"65833132":34,"65885453":6,"65891389":34,"658914":34,"65913552":[],"65925306":33,"6599":43,"65m":[5,43,44],"66":[4,5,24,42,43,44],"660":[24,42],"66036618e":34,"660470":[],"66047048":[],"66051179":[],"66064822":34,"66080313":34,"6608358":22,"661":[24,42],"66174067e":34,"662":[24,42],"66204648":7,"66219404":7,"66289428":[],"6628996975186953":34,"66294408":34,"66323494":[],"6638":[10,45],"664":[24,42],"664586":[],"66489687":[],"66490332e":[],"665":[24,42],"66510547":[],"6652177":34,"66545355":[],"66560":[10,45],"66562658e":[],"665m":[],"66608227":33,"6663":43,"666597":33,"66667985":26,"666897":[],"66689729":[],"667":[10,24,42,45],"66722647e":[],"667239":33,"66725024":26,"66798429":[],"668":[24,42],"668172":[33,34],"66878535":[],"669":[24,42],"6691852":33,"66951925":33,"66959644":[],"66m":43,"67":[10,24,42,43,45],"670":[24,42],"67035174":[],"67047975e":7,"67083919":30,"671":[24,42],"67109613":[],"6714298027296224":12,"67189384":[],"67193435":22,"671m":[],"672":[24,42],"67264685":[],"672721":[33,34],"67314874e":6,"67347822":[],"674":[24,42],"67432237e":[],"67541155":[],"67554897":[],"676":[24,42],"6764":43,"67640036":[],"67671601":[],"677":[24,42],"677235":6,"67723533":6,"678":[24,42],"6780674":[],"6781":43,"6788":43,"67890723":[],"6795":43,"67m":43,"68":[24,42],"680":[24,42],"68029581":33,"68037392":[],"680374":[],"681":[24,42],"68184997":[],"6819":43,"68192193":6,"682":[24,42],"68259989":30,"68284332":26,"68286725":34,"683":[24,42],"68324974e":34,"6835":43,"68351374e":[],"68419351":[],"684194":[],"6848187":26,"6849":43,"685":[24,42],"68534263e":7,"68542204":6,"685643":[],"68564345":[],"68581655":[],"68592431":36,"68596176":6,"685962":6,"6860597312101988":[],"68655761":26,"68685905e":[],"6869":[10,45],"6869858":30,"687":[24,42],"68711054":[],"68736603":[],"68759903e":[],"687m":[],"688":[24,42],"68809785":[],"68871199":[],"6887363571":[5,44],"6890":43,"68929213e":7,"689345":33,"689519":[12,34],"68971917":[],"68992377":[],"68m":43,"69":[8,10,24,30,37,42,45],"690":[10,24,42,45],"69009002":[],"69018454":[],"690617":[33,34],"69069n_":30,"690710":[],"69071035":[],"691":[24,42],"69111133e":[],"69167569":[],"692":[2,24,36,40,41,42],"692268":[],"69226802":[],"69230769":38,"6923076923076923":[10,45],"69233822":[],"69273094":30,"692m":[],"693":[24,42],"69303559":[],"69314603":[],"694":[24,42],"6945612":26,"69481287":[],"69484813e":6,"695":[24,42],"69504801":7,"69519297":[],"69524041":[],"69542733":22,"69582036":[],"69585594":33,"696":[24,42],"69629255":[],"69634577e":7,"69666941":33,"69695259":6,"697":[24,42],"69714468":[],"697584":[],"69758412":[],"6980":[22,38,39],"69802962":26,"69818111":[],"69873514":[],"69887085":22,"699":[24,42],"69908626":7,"6999536":12,"69997503":[],"69it":7,"69m":[],"6n_":30,"6pm":33,"7":[0,1,2,3,4,5,6,7,8,9,10,12,13,14,16,22,24,26,27,29,30,32,33,34,36,37,38,39,40,41,42,43,44,45],"70":[2,7,8,10,24,37,40,41,42,45],"700":[24,42],"7000":[24,42],"70037324e":34,"7005538702846336":33,"701":[24,42],"70115106":[24,42],"701370":6,"702":[24,42],"70224083":[],"70249832":[],"70252786":[],"7025846":[],"70262543":[],"703":[24,42],"7031743":30,"7031999826431274":43,"7032":43,"70328587e":[],"7033":43,"70344416":[],"704":[24,42],"70408916":[],"7049":43,"705":[24,42],"70506522":[],"70573539":[],"70594499":34,"706":[24,42],"70653767":[5,44],"706833":[],"7069":43,"707":[24,42],"70710678":[6,34],"7073":5,"7078":43,"708":[24,42],"7082333":[],"70832814":6,"708589":[],"7086067479626619":34,"70899024":[],"709":[24,42],"70917314":34,"7094664":[],"70967214":[],"709698":33,"70it":7,"71":[2,24,40,41,42],"710":[24,42],"7100524":[],"71038664":[],"710746":26,"711":[24,42],"71137935":[],"71142161":34,"711422":34,"7119":[10,45],"71193859":[],"712":[24,42],"712018":[12,34],"71269506e":[],"71285447":[],"713":[24,42],"713163":33,"7135487":[],"71365128":26,"71369789":22,"71375273e":[],"714":[24,42],"71424969":[],"71437567912473":[],"71437568":[],"71467081":[],"71504681":[],"715536":6,"71553646":6,"71615146":[],"71640333":[],"71647328":[],"71654553":39,"717":[24,42],"71727268":[],"717273":[],"71737253":34,"71761101":34,"718":[24,42],"718165":6,"71868557":[],"71875845e":34,"71977472":[],"71979573e":[],"72":[24,42],"720":[24,42],"7203":43,"7207467":[],"721":[24,42],"7215423":[],"72174172":12,"722":[24,42],"72228205":33,"72264336":[],"72271878e":7,"723":[24,42],"72328506":[],"7236674":6,"724":[4,24,42,43],"725":[24,42],"72546953":[],"72598009":26,"72651548":[],"727":[24,42],"72742343e":[],"72782592":[],"728":[24,42],"72859758":6,"72981762":9,"73":[7,24,36,42],"730":[24,42],"73000497":[],"730005":[],"731000":[33,34],"731441119315968":[],"7317759":[],"732":[24,42],"73231305":[],"73293228266057":26,"73293298":[],"7330932":[],"733096":[33,34],"73379189":[],"734":[24,42],"734107":[],"73410729":[],"73441814":[],"73448544":[],"73456649":[],"73482109":[24,42],"735":[24,42],"7354157":[],"736":[24,42],"737":[24,42],"7392":43,"74":[7,24,36,38,39,42],"740":[10,24,42,45],"74042291":[],"7407":43,"74081822":9,"740m":[],"741":[24,42],"741391":[],"7413913":[],"74147751":26,"741m":[],"742":[24,42],"74280244":[],"743189104728408":[],"74384949":34,"74391438":[],"744":[24,42],"74401372":[],"74430995":[],"74437617e":34,"74462857":[],"745":[24,42],"74577867":[],"74587018":[],"746":[24,42],"74607851":34,"747":[24,42],"74724767":[],"74731872":[],"748":[24,42],"74818082":[],"74829661":34,"7483":43,"74840212":6,"7484672e":[],"749":[24,42],"7490462":[],"74934715":33,"749765":[33,34],"74m":43,"75":[3,6,7,9,10,12,24,27,33,34,36,40,41,42,45],"750445":[33,34],"75050135":34,"75054469":[],"7506274061293645":[],"75091492":22,"751":[24,42],"751699":[12,34],"75170092":6,"75174305":[],"75240336e":[],"75268791":[],"75269037":34,"75282841":[],"753":[24,42],"75301638e":34,"75315452":[],"7532":43,"75354069":[],"754":[24,42],"75406265":[],"75457798":[],"75472506":[],"755":[24,42],"75525377e":34,"75546705":30,"75576092":30,"75576555":34,"756":[24,42],"75627883":[],"756279":[],"75631027":[],"756352":[33,34],"757":[24,42],"75707243":22,"7571572558830478":[],"75719828":[],"75770568":34,"758":[24,42],"75821358e":[],"75823753e":[],"7588118737641243":[],"759":[24,42],"75963425":[],"75979803e":34,"75m":43,"76":[3,10,24,31,33,42,45],"7600134536106469":12,"76004012":[],"76010633":[],"76014528":[],"76059447e":[],"76077707e":[],"76084455":[],"761":[24,42],"76135601":[],"7613959":[],"76174289e":[],"76181397e":[],"762":[24,42],"76220793e":34,"763":[24,42],"7635689":22,"76366462":22,"7640203256838339":[],"7644":[],"764997683364458":[],"765":[8,37],"7651068":[],"766":[24,42],"7664107":[],"76771975":[],"767750":12,"76775004":12,"769":[24,42],"7692307692307693":[10,45],"76936315":6,"7694444444444445":[2,40,41],"7696":43,"7697":36,"7698352":[],"76985203":[],"76m":43,"77":[3,10,24,31,33,38,39,42,45],"770204":[],"77025447e":[],"77067609":[],"7707199":30,"77079389e":34,"77124395e":34,"77133246":[],"77152076":6,"77172582":39,"7718":[10,45],"77184871":[],"772":[24,42],"77203046":[],"77265448":[],"77265782":[],"773":[24,42],"77343022e":[],"774":[24,42],"7742213":[],"77448317e":[],"7748567":[],"775":[24,42],"77589027":[],"776":[24,42],"7761":43,"77632628":[],"77636e":[14,39],"77646856":[],"777":[24,42],"77714169":9,"7779287093124035":[],"77794957":[],"778":[24,42],"77805840e":[],"7782028952":[5,44],"77856932":[],"7788":43,"779":[24,42],"77m":43,"78":[3,24,42,43],"780":[24,42],"78009660e":34,"78031111e":[],"7803213":[],"78094722":[],"78156479e":6,"78177713":[],"78184120e":7,"78192446e":[],"782":[24,42],"78220032":[],"78299706":[],"783":[24,42],"78316665":[],"78347558":26,"784":[24,42],"7840642":26,"78449688e":34,"78478186":[],"785061":33,"78515112":14,"78521833":[],"78524451e":[],"78556129":[],"786":[24,42],"7865355":[],"788":[24,42],"78834469":33,"788388":[],"78838813":[],"78882958":[],"78886274":[],"789":[24,42],"7893215781870513":[],"78941903":6,"78951443":[],"78989003e":[],"78m":43,"79":[3,24,42],"790":[24,42],"79035184":[],"7906583":[],"79072516":[],"791":[24,42],"79106945e":[],"79111643":6,"79125269":[],"79142002":33,"79167312e":[],"791809":[],"792":[24,42],"79254918e":[],"792898603630095":[],"79297948":26,"793":[24,42],"793167":[33,34],"79328516":[],"79367372":26,"794282":[12,34],"79482449":30,"794906":[],"79490641":[],"795":[24,42],"79503422":1,"79516409":[],"795225339396409":[],"79550688e":[],"79578306":[],"796":[24,42],"7966":43,"79675445":[],"797":[24,42],"79754897e":34,"79787771":[],"797e":7,"798":[24,42],"7980":43,"79831624e":34,"79877535e":[],"79896478e":[],"799":[24,42],"79909592":36,"79914677":[],"7993408651198877":36,"79934087":36,"7995707762668065":36,"79981535e":22,"79998516":[],"79m":43,"7d7d58":[10,11],"8":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"80":[1,2,3,6,7,9,10,24,34,35,36,40,41,42,45],"800":[5,8,24,37,42,44],"8000":[24,42],"80006130e":[],"80074264":[],"80076024e":[],"80136087":30,"80152684":[],"80189569":[],"80207897":[],"80228781e":[],"802550782087107":[],"80289543":[],"8028954343792245":[],"803":[24,42],"80312429":33,"80354994":7,"80389541":[],"804":[24,42],"80418542":33,"80447153":[],"80460179":36,"80469739":6,"805":[24,42],"80540415e":[],"80548430e":[],"8055555555555556":[2,40,41],"80609615e":7,"80609616e":7,"80621648":33,"80625657":[40,41],"80669838e":34,"807":[24,42],"808":[24,42],"80802836":[],"80847477e":7,"80861057":[],"808611":[],"80m":43,"81":[2,24,40,41,42],"81048318e":7,"81071342":[],"811":[24,42],"81114345":[],"81122914":[],"8115":7,"81160425":6,"812":[24,42],"81233249":30,"81333804":7,"813929":[],"81392948":[],"814":[8,12,24,37,42,44],"81425332":14,"815":[24,42],"81597834":36,"815am":[31,33],"81633628":12,"816454":[33,34],"81651921":[],"81664404":[],"816847":[33,34],"817":[24,42],"81753152":[],"81759234":[],"81784973":[],"818":[24,42],"8182":[],"81840893":[],"81853487e":[],"8186717":[],"81868633":33,"81873184":33,"819":[24,42],"81948868":[],"81953844":[],"8197":[],"81m":43,"82":[3,24,42],"820":[24,42],"82001111":[],"820122":[],"82012236":[],"82032378":33,"82050873":33,"821":[24,42],"82102668":[],"82139086e":[],"82178144":33,"82198978":6,"822":[24,42],"82292185":[],"82296251":[],"823":[24,42],"82379443":[],"824":[24,42],"82402448":[],"82410428":[],"8249367":[],"825":[24,42],"82550815":33,"825607":[],"826":[24,42],"82629718":[],"82651934e":[],"8265786":6,"827":[24,42],"82717721":[],"827462":[],"82766482e":34,"82781715":[],"828":[24,42],"8283245":30,"829":[24,42],"82909728":[],"82988221":[],"83":[3,24,33,42],"830":[24,42],"83009076":[],"8305555555555556":[2,40,41],"8306":[],"831":[24,42],"8311393813043355":[],"83140314":[],"83140314044099":[],"83146596":36,"83190841":[],"832":[24,42],"83283826":[],"83298727":[],"832987270767667":[],"832m":[],"833":[24,42],"833774":[],"83384573":[],"834":[24,42],"8342":[],"83443463":[],"83443698":[],"83471014":30,"83488328":[],"835":[24,42],"83505053":[],"8351":[],"83512277":6,"83519995":33,"8353591":[],"836":[24,42],"83603568":[],"83607342":[],"836186":[],"83618601":[],"83646135":30,"83657122":[],"837":[24,42],"83716603":26,"83752888e":[],"83770406":[],"83774539":[],"83793362":[],"83793923":33,"838":[24,42],"8383548":14,"83870794e":[],"839":[24,42],"83917436e":[],"839818":33,"83m":43,"84":[24,42],"840":[24,42],"84061976":[],"84082439":[],"84094234":[],"841":[24,42],"84132082":[],"84159521":[],"842":[24,42],"842101":[],"84210141":[],"842436":[33,34],"84257054":[],"84268865":[],"84290819e":[],"843":[24,42],"84355903e":[2,40,41,42],"84359332e":[],"84380376":[],"844":[24,42],"84443254e":[2,40,41,42],"84444399":[],"84447599e":34,"84462849":[],"845":[24,42],"845387":12,"84538739":12,"845716766413386":[],"84571677":[],"84575663":[],"8459616":26,"846":[24,42],"84614892":[],"8461538461538461":[10,45],"84638256":[],"846383":[],"84666445":[],"84671508":[],"84698999":[],"847":[24,42],"8470287":[],"84780262":7,"84783351e":[],"848":[24,42],"84835621":[],"84846601":[],"84858":35,"84859258":[],"849":[24,42],"84900747":[],"84923989e":7,"84927263":[],"84929103":[],"849315":12,"84931504":12,"84942247e":[],"84991754":[],"84994524":6,"84m":[],"85":[2,10,24,40,41,42,45],"850":[24,42],"850164":6,"85035714":[],"8509716":33,"851":[24,42],"85115237":[],"852":[24,42],"8522997":12,"8524":43,"85263220":7,"85276246":[],"85278920e":6,"8528":43,"85288931":[],"85297050e":[],"853":[24,42],"85355539":[],"85365229":[],"853835":33,"854":[24,42],"855":[24,42],"85514104":[],"85548858":[],"856":[24,42],"85600299":12,"85601654":[],"85601992":6,"85615662":[],"85654993":[],"85714286":[37,44],"8574":[],"85759522":6,"858":[10,24,42,45],"85813693":[],"858185":33,"8583333333333333":[2,40,41],"85888897e":[],"859":[24,42],"85910255":[],"85949635":14,"86":[24,42],"860":[24,42],"86012593":[],"86015267":[],"860303069807892":30,"86052354":[],"861":[24,42],"8611":43,"86117291":6,"86134827":6,"86145244":12,"86156954":33,"861676":33,"861773":6,"86177342":6,"86192438":26,"862":[24,42],"86221134":[],"86252988":7,"86282204":[],"863":[24,42],"86341536":[],"8635085":[],"86376300e":[],"8638888888888889":[2,40,41],"864":[24,42],"86420934":[],"86452742":[],"865":[24,42],"86570776":22,"86599003e":34,"866":[24,42],"86619181":[],"86629645":26,"86630":[10,45],"8666666666666667":[2,40,41],"86666667":[37,44],"867":[24,42],"86750237e":34,"868":[24,42],"86810":[10,45],"86811569":[],"86830766e":34,"86850693":26,"86850963":[],"86852099":[],"8688":[],"869":[1,24,33,42],"87":[10,24,34,42,45],"870":[1,24,33,42],"8702764":26,"8702784034":[5,44],"87072815e":34,"871":[1,24,33,42],"87135280e":34,"872":[24,42],"87206824":[],"8722222222222222":[2,40,41],"87242312":[],"8727831":[],"873":[1,24,33,42],"87338811e":[],"87354403":[],"87381451":6,"874":[1,24,33,42],"87403627e":[],"87431418":[],"87450434":26,"87458904":[],"8747":43,"87477172e":[],"87496787":[],"875":[2,24,40,41,42],"87533278":[],"87533326":[],"875794":[],"875856":[],"87585634":[],"8759":[14,39],"876":[7,24,42],"87627342":36,"877":[24,42],"87795661":[],"878":[24,42],"87810129":[],"878123":33,"8784267":[],"879":[24,42],"8791492":[],"87918262":14,"87931006":[],"87953769":[],"88":[14,24,38,39,42],"880":[24,42],"88046261":6,"88050263":26,"8805555555555555":[2,40,41],"88088818e":34,"881":[24,42],"88168312e":7,"88182591":34,"882":[24,42],"88228452":33,"88291866":[],"883":[24,42],"88305878":[],"88323026":34,"88336879":6,"88391015":[],"884":[24,42],"884399":[],"88442538":[],"884669":34,"88473534":[],"885":[24,42],"88529063e":7,"88595314":26,"886":[24,42],"88613493":34,"88657125":26,"88667234e":[],"887":[24,42],"88744469e":[],"888":[24,42],"888214":[],"88821402":[],"888577549915147":[],"88866133":26,"888883015934703":45,"8888888888888888":[2,40,41],"889":[24,42],"88901776":[],"88908909e":[],"88960586e":[],"8897518e":[],"89":[24,42,43],"890":[24,42],"89098129":[],"891":[24,42],"89126914e":34,"89142357":[],"89142728":26,"8915573":[],"892":[24,42],"89288636":12,"893":[24,42],"89321335":[],"8932215":[],"8934":[],"894":[24,42],"89410423":6,"8942133":[],"8944444444444445":[2,40,41],"89481038":[],"895":[24,42],"89558707":33,"896":[24,42,43],"89604286":[],"89609007":[],"8964059":[],"896911":[],"8969113":[],"897":[24,42],"89707309e":34,"89793609":[],"898":[24,42],"89805982e":[],"8982":43,"89823921":[40,41],"89881513":26,"89897156":[],"899":[24,42],"89940861":[],"89996783":[],"8f":[7,36],"8g":[7,36],"8n":26,"8x8":[2,40,41,42],"9":[1,2,3,4,5,6,7,8,9,10,12,13,14,22,23,24,26,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45],"90":[2,7,10,24,41,42,45],"900":[24,42],"9000":[24,42],"90075537":6,"901":[24,42],"9011":7,"9012691":33,"90164278":[],"902":[24,42],"90220243":6,"90223115":[],"9026":43,"90266948":6,"9027777777777778":[2,40,41],"9028":43,"90297441":[40,41],"903":[24,42],"90325763":[],"9036573":[],"904":[24,42],"9040":[10,45],"904648525660773":[],"90475506e":7,"905":[24,42],"9050595316983907":[],"90510842":14,"9054":36,"9055555555555556":[2,40,41],"90556496":[],"906":[24,42],"90602444e":[],"90670236":[],"906747":6,"907":[24,42],"90715001":26,"90763970e":34,"90793019":[],"908":[24,42],"90803422":[],"90854751":[],"908548":[],"90871918":[],"908736":[],"90873644":[],"90876452":12,"908765":12,"909":[24,42],"909327":[],"90960269":[],"91":[24,31,33,42,43],"910":[10,24,42,45],"91022359":[],"91050344e":[],"91080327":[],"91086026":[],"911":[24,42],"9111111111111111":[2,40,41],"91128596":6,"912":[4,5,24,42,43,44],"9129629":[],"913":[24,42],"91358019":[],"91373404":[],"914":[4,5,24,42,43,44],"91408373e":34,"9142491":[],"9145":43,"91473433":[],"91487049e":[],"91492986e":7,"915":[4,5,24,42,43,44],"91538877":[],"91540705e":[],"91591367":33,"916":[24,42],"91619855":[],"91634595":30,"91650774":[],"916508":[],"9165822":[],"9166666666666666":[10,45],"9167":43,"917":[4,5,24,42,43,44],"9172":36,"917482":[],"91748202":[],"91760278":6,"91784246":[],"918":[4,5,24,42,43,44],"91812702":6,"91816586":[],"918166":[],"9189726":[],"918992":[33,34],"919":[24,42],"9194":43,"91966064":[],"91992985e":34,"92":[1,7,10,24,31,33,42,43,45],"92054587":33,"920619":[],"92067658":[],"9207":43,"9208878":[],"921":[24,42],"92103867":[],"92123586e":[],"921368":[],"92136836":[],"921567":6,"922":[24,42],"922002":[],"92200223":[],"92201062":30,"922010623244745":30,"92236466e":[],"923":[24,42],"9230769230769231":[10,45],"92317667":[],"92327822e":[],"9234":43,"92351924":[],"923602":33,"924":[24,42],"92405283":[],"924e":7,"925":[2,24,40,41,42],"9250":43,"92507116e":[2,40,41,42],"92526882":30,"92543216":33,"92576742e":[],"92578916":6,"92579609e":[],"926":[24,42],"92604308":[],"92630576":[],"92648983":[],"92651068":36,"927":[24,42],"92717417":[],"92729959":[],"9275":43,"92772833":[],"9277777777777778":[2,40,41],"928":[24,42],"92805329":[],"92822216":[],"92857143":[8,37,44],"9286":43,"929":[24,42],"92930426e":[],"9295763474254684":[],"92991719e":34,"93":[24,42],"930":[24,42],"93003138502386":[],"93022647":[],"93049763":[],"9305555555555556":[2,40,41],"930829":[],"93082933":[],"931":[1,24,33,42],"93155188":6,"93158979":6,"932":[24,42],"932656":[],"93267138892912":[],"93267139":[],"933":[6,24,35,42],"934":[24,42],"93420126":[40,41],"93492130e":7,"935":[24,42],"93500562":[],"93528653e":[],"93535577":14,"93571082":[],"936":[24,42],"93601008e":34,"936313":12,"9363131":12,"937":[24,30,42],"937082":[33,34],"93799826":6,"938":[24,30,42],"93820524":[],"93828592e":[],"9384":43,"9387":[10,45],"93884803":[],"9389615":30,"939":[1,24,30,33,42],"93900613":[],"93901621":[],"93944615e":[],"939507":44,"93988393":[],"94":[8,24,30,37,42,44],"940":[24,42],"94035843":33,"941":[24,42],"9415":43,"942":[24,42],"94226022e":7,"94230225":[],"9423652864980914":[],"942422095469182":[],"9424428e":[],"94256677":[],"94260358":[],"942604":[],"94273542":34,"94284104":6,"943":[24,42],"94320205":6,"94338159":[],"943439":[],"94399217":[],"944":[4,5,24,42,43,44],"94400087":[],"94433302e":[],"9444444444444444":[2,40,41],"94484047e":40,"945":[4,5,24,42,43,44],"94501598e":34,"94591015":[26,33],"946":[4,5,24,42,43,44],"9460":43,"94610136":[],"94639099":12,"94642209":[],"946957":6,"94697839":[],"947":[4,5,24,42,43,44],"9472":43,"9472222222222222":[2,40,41],"94727053e":34,"94756925":33,"94782102e":[],"94785447e":[],"948":[4,5,24,42,43,44],"94814932":[],"94815131":[],"9481513127527335":[],"94822514":7,"94823368":[],"9482527":6,"94854992":[],"94866246":[],"949":[4,5,24,42,43,44],"949162":[],"94916237":[],"94938706":[],"94948363e":34,"949807":[],"94980712":[],"9499":43,"95":[2,8,10,12,24,36,37,40,41,42,45],"950":[4,5,24,42,43,44],"95008046":7,"9503219":[],"95055425":[],"951":[4,5,24,42,43,44],"951109":[],"95117099":[],"95166414":[],"95190644":[],"952":[24,42],"9520":43,"95231424":6,"95235306":[],"952387":34,"9527777777777777":[2,40,41],"9528":43,"95284275":6,"953":[24,42],"953065564":[2,40,41],"95327702":[],"95329348":[],"9534":43,"95351665":6,"95355327":[],"954":[24,30,42],"9541":43,"95429024":[],"955":[24,42],"95508909":[],"95511792":34,"955118":34,"95513615":30,"9555555555555556":[2,40,41],"95558642":[],"9556":43,"955820c21e8b":[5,44],"95597666e":[],"956":[24,42],"956563":[12,34],"95661705":[],"95679388":[],"95682858":26,"95684892":6,"95686268":[],"95696156":33,"95697233e":[],"957":[24,42],"95703":[14,39],"95746721":[],"95762994":[],"95763525":[],"9577228":[],"9578":[],"958":[24,42],"95815651":[],"958228616652075":6,"9588":7,"959":[24,42],"95921115":26,"959402":12,"95940231":12,"95982273":[],"96":[7,8,12,24,36,37,42],"960":[24,30,42],"9601304850035702e":7,"960130485007504e":7,"96024953":6,"9603":43,"96033509e":[],"96046928":[],"96084663":6,"961":[24,30,42],"96183456":[],"962":[24,30,42],"962653":[],"962990":33,"963":[24,42],"963198":[],"9637117593816477":7,"964":[24,42],"9640435":6,"96439516":[],"964588":[],"96459246":[],"96461989e":[],"96489054":[],"9649652536":[5,44],"965":[24,42],"96525482e":34,"96543101":[],"965548":[33,34],"965944":[],"96599594":[],"966":[24,42],"96611032":[],"96618584":[],"96631321":34,"966337":[],"96688672":6,"966899":33,"967":[24,42],"9674":43,"9674916":6,"96750421":[],"967809":[12,34],"96783837":[],"968":[24,42],"96804366":[],"96841776":[],"96850702":[],"9688":7,"96890557e":[],"969":[24,42],"96911909":[],"9694":43,"97":[8,24,37,42,45],"970":[24,42],"97005689":6,"97032289":33,"97033646e":[],"97062694":[],"97069774":[],"970698":[],"97097196":[],"971":[24,42],"97108e":[14,39],"9716":[],"97177697e":34,"972":[24,42],"9722222222222222":[2,40,41],"9723":[],"97243128":6,"97262227":[],"972745":12,"973":[24,42],"97300836":6,"97326759":33,"97375628":[],"974":[24,42],"97449977":[],"97488151":[],"97497404e":7,"975":[2,24,40,41,42],"9750":43,"97504526":[],"97507735":6,"97514104e":[],"97565845e":34,"97594511":[],"976":[24,42],"97606135":[],"97606135399951":[],"9764":[],"97644118":[],"9765":[],"97663980e":34,"97690235":36,"977":[24,42],"97705827":6,"97739698":[],"97758848":6,"97761429e":34,"9777777777777777":[2,40,41],"9778":43,"978":[24,35,42],"9780387310732":32,"9780387848570":32,"97804446":[],"9781492032632":32,"9783319210079595":[],"978553":6,"97864285":34,"97866042":[],"97879245":[],"97898392":[7,34],"979":[24,42],"97906022e":34,"97926491":6,"97948913":[],"9797317":[],"97991527":33,"98":[1,2,8,10,24,37,40,41,42,45],"980":[10,24,42,45],"98004227":[],"9805555555555555":[2,40,41],"98073929":[],"98091621":6,"981":[24,42],"98127617":[],"981321":[33,34],"98139097":6,"98157799":26,"98180203e":34,"982":[24,42],"98201379":[24,42],"98215566e":[],"9824638":22,"98270777e":34,"98275501":6,"982829":5,"983":[24,42],"98316168":[],"98320492":[],"983310":[33,34],"984":[24,42],"98404993":[],"98409646e":[],"98413020e":[],"98413059":6,"984182":[],"98418221":[],"98430782":[],"984308":[],"98454786":6,"984601":[],"98460101":[],"9849967686928113":[37,44],"985":[24,30,42],"98502634":[],"98566191":6,"98597638":26,"986":[24,30,42],"98601306":[],"9860553":[],"9861111111111112":[2,40,41],"98620879e":[],"986699":6,"98680716":6,"98686102":[],"98694705":[],"987":[24,42],"98706221":[],"98716878":6,"9871776311306221":[],"98764765":[],"987648":[],"98765625":[],"987722":[],"98772232":[],"988":[24,42],"98808176":6,"98822371":7,"98844754":33,"9885":[],"9887034589972739":10,"9888005551376943":[],"988835":[],"9888544725633199":[],"9888888888888889":[2,40,41],"9889":[],"989":30,"9890348":6,"98914003":[],"9892":[],"9893447":6,"98947894":34,"9898ff":[10,11],"99":[7,8,10,12,14,22,24,36,37,38,39,42,43,45],"990":[10,24,42,45],"99006712":[],"99009525":6,"99051150":7,"99083639":[],"99084226e":[],"99088801":6,"991":[24,30,42],"9910":43,"99106686":[],"99115119":6,"9915165982451293":[],"991753":[],"99175336":[],"99176998":6,"9919":[],"992":30,"99215828":[],"9924":[],"99242921":6,"99265097":6,"99268332":[],"993":[24,30,42],"9930":43,"993148":[],"99316252":6,"99330715":[24,42],"99344165e":[],"993658072083743":34,"99371056":6,"99389612":6,"993993":[24,42],"99399301":[24,42],"99399308":[24,42],"99399309":[24,42],"99399315":[24,42],"994":[24,42],"9940253773173835":[],"994304":22,"9943201":6,"99439119":[],"99450177":[],"994502":[],"9945729062189713":34,"9947756":6,"99484719":[],"99492986":6,"995":[24,42],"9950597269547777":[],"9952222065466447":[],"99528218":6,"99534399":26,"99539415":6,"9955273625597437":[],"9955500279779226":[],"99566069":6,"9957273060382023":[],"99578809":6,"9958":43,"995840825550726":[],"99589367":[],"996":[6,35,36],"99608161":6,"99630114":[],"9963311287748658":[],"9963961":6,"99650061":6,"996738628265756":34,"9967458":6,"9969332511584248":[],"99700706":6,"99709215":6,"99729756":6,"99751458":6,"99752738":[24,42],"99754609":22,"99758326":6,"99767262":[],"99772199":[],"99775587":6,"9978":43,"9978254":[],"99793613":6,"99799099":6,"998":[24,42],"9981":43,"99813653":6,"9981377":[],"99828624":6,"9983295":6,"99845267":6,"99854557":34,"998577":6,"99858411":[],"9986":43,"99861053":6,"99861427":[],"99862019":34,"99866581":[],"99869482":34,"99871521":6,"99876945":34,"99881845":6,"99883628":34,"99884384":6,"99884409":34,"99888222":[],"99891093":34,"99891873":34,"99893323":6,"99897733":22,"99898558":34,"999":[10,22,24,30,38,39,42,43,45],"99901896":6,"99903755":6,"99906023":34,"99907985":22,"99911427":6,"99912709":34,"99913489":34,"99918546":6,"99919837":6,"99920175":34,"99926459":6,"99927642":34,"9993237":6,"99932732":[],"99933188":6,"99933329":[],"9993511":34,"9993736":[],"99938942":6,"99941797":34,"9994385":6,"99944037":[],"99944272":6,"99949077":[],"99949266":34,"99949306":6,"99951642":[],"99953381":6,"99953475":6,"99956735":34,"99957911":6,"99961294":6,"9996357":[],"99965056":6,"99966322":22,"99967865":6,"99970894":34,"99970988":6,"9997332":6,"99975913":6,"99977849":6,"99978365":34,"99980002":6,"9998161":6,"99984215":[],"99984732":6,"99985103":[],"9998542":[],"99986253":22,"99987324":6,"99988325":[],"99989476":6,"99991263":6,"99992263":[],"99992746":6,"99993978":6,"99995":6,"999955585168597":7,"99998193":[],"99998703":[],"99999773":[],"99999797":22,"99999956":22,"99999985":[],"9m":[5,44],"9x":[7,27],"9y":[7,27],"\u00f8yvind":[7,34,35],"\u03b4":[24,42],"abstract":[0,2,21,24,38,41,42,43],"boolean":[5,44],"break":[1,5,7,12,15,33],"byte":[26,33],"case":[0,1,2,3,4,5,6,7,8,12,13,14,15,17,22,24,25,26,27,28,33,36,39,40,41,42,43,44,45],"catch":[1,33,43],"class":[1,2,4,5,7,8,9,10,12,13,14,24,30,33,36,38,39,40,41,42,43,44,45],"default":[1,2,3,5,7,8,14,17,24,26,27,28,33,34,35,37,38,41,42,43,44],"do":[0,1,3,4,5,6,7,9,10,11,12,13,14,15,16,17,22,23,26,27,28,34,37,43],"ekstr\u00f8m":5,"export":[10,45],"f\u00f8470":[31,33],"final":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,17,19,20,21,23,24,27,29,30,31,33,36,37,41,44],"float":[1,4,5,6,10,12,14,15,24,26,33,34,38,39,42,43,44,45],"function":[0,3,4,5,6,10,15,16,17,18,19,20,23,25,26,44],"import":[1,2,3,4,5,7,8,9,10,11,12,13,14,15,17,18,24,27,30,36,37,38,39,40,41,42,44],"int":[1,2,3,4,5,6,7,12,14,15,22,24,26,30,34,36,38,39,40,41,42,43,44],"long":[1,2,4,5,13,14,33,37,38,39,40,41,42,43],"m\u00f8svatn":[7,27],"new":[0,1,2,3,4,6,7,8,9,10,11,12,14,15,18,22,24,26,27,33,34,37,38,39,40,41,42,43,45],"null":33,"public":[1,25,33],"return":[1,2,3,4,5,6,7,8,9,10,12,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"sch\u00f8yen":[7,34,35],"short":[0,5,6,24,27,28,35,36,42,43],"super":[4,6,24,34,35,42,43],"switch":[1,24,42,43],"throw":[4,7,30,36,43],"true":[1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,20,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],"try":[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],"var":[2,6,7,11,12,14,19,20,27,30,33,34,35,36,38,40,41,45],"while":[1,2,4,5,6,7,8,9,10,12,13,14,24,30,33,34,35,36,37,38,39,40,41,42,43,44,45],A:[0,3,4,6,7,8,11,12,13,14,17,19,21,23,24,25,26,27,28,29,30,31,32,34,38,39,40],AND:3,And:[0,1,4,5,6,7,10,14,21,24,25,27,28,30,40,41,42,43,45],As:[0,1,2,3,4,5,6,7,9,11,13,14,17,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],At:[1,5,7,14,27,33,38,44],BE:[1,33],Be:[3,25,33,42],Being:[14,38,45],But:[1,2,3,4,6,7,10,11,28,30,34,35,36,41,42,43,44,45],By:[1,4,6,7,13,14,18,26,33,34,35,36,37,38,39,40,43,44],FOR:44,For:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45],IF:[7,35,36],IN:32,If:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],In:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45],Is:12,Ising:[6,13,34,39,40],It:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],Its:[2,3,5,12,40,41,42,44],NO:[8,12,37,44],No:[4,5,7,10,24,33,35,37,39,42,44,45],Not:[1,2,6,7,24,33,34,35,36,39,40,41,42],OR:[24,30,43],Of:[30,43],On:[1,4,16,29,30,31,32,33,43],One:[1,2,4,5,6,7,8,9,12,13,14,18,21,22,27,30,34,36,37,38,39,40,41,42,43],Or:[0,1,2,7,27,33,37,41,42],Such:[1,7,13,17,30,36,37,38,39,40,43],TO:[24,42],That:[0,1,6,8,11,12,13,15,20,27,30,33,35,36,37,40,45],The:[5,11,14,15,16,17,19,20,21,22,23,26,27,28,29,30,31,32],Their:[24,40,41,42],Then:[0,1,2,7,9,10,11,12,13,14,15,26,27,33,34,36,37,38,39,40,41,42,43,45],There:[1,4,5,6,7,9,10,12,13,15,24,26,27,29,30,31,33,34,35,37,38,39,40,42,43,44,45],These:[0,1,3,4,5,6,9,10,11,12,13,14,15,16,17,24,26,27,28,30,31,33,34,35,38,39,40,41,42,43,44,45],To:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,26,27,28,30,35,36,37,38,39,40,41,42,43,44,45],With:[1,6,7,9,10,11,12,13,15,19,26,27,28,30,33,34,36,39,40,45],_0:[6,9,11,12,14,34,37,38,45],_1:[3,6,7,9,11,12,13,14,15,26,34,35,36,37,38,39,40,41,42,45],_2:[3,6,9,12,13,14,26,34,38,39,40,42],_3:26,_4:26,_9:[14,38,39],_:[1,2,3,5,6,7,8,9,10,11,12,13,14,18,19,20,22,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],_________________________________________________________________:[5,43,44],__call__:[4,5,43,44],__class__:[11,24,42,45],__del__:[],__doc__:[7,36],__future__:[9,10],__getattr__:35,__getitem__:[],__init__:[2,3,4,24,35,40,41,42,43],__main__:[3,42],__name__:[3,11,24,35,42,43,45],__traceback__:[4,5,43,44],_accuraci:[24,42,43],_auto10:[7,13,39,40],_auto11:[7,39],_auto12:[7,39],_auto1:[3,4,5,6,7,8,13,14,22,26,30,34,37,38,39,40,42,43],_auto2:[3,4,5,6,7,13,14,26,30,38,39,40,42,43],_auto3:[4,5,6,7,13,14,26,38,39,40,43],_auto4:[5,7,13,14,26,38,39,40],_auto5:[5,7,13,14,26,38,39,40],_auto6:[5,7,13,26,39,40],_auto7:[5,7,13,26,39,40],_auto8:[7,13,39,40],_auto9:[7,13,39,40],_backpropag:[24,42,43],_base:9,_build:[1,18,20,25,27,32,33],_build_call_output:[4,5,43,44],_c:[2,40,41,42],_call:[4,5,43,44],_call_flat:[4,5,43,44],_check_for_error:43,_check_optimize_result:[8,12,37,44],_compon:12,_compute_scor:43,_coordinate_desc:7,_decor:[1,33],_depth:[10,45],_distn_infrastructur:[37,44],_eagerdefinedfunct:[4,5,43,44],_extract_window:43,_feedforward:[24,42,43],_fmt:43,_format:[24,42],_fraction:[10,45],_h:[24,42],_handl:[4,5,43,44],_i:[1,2,3,6,7,8,9,12,13,14,16,17,18,20,27,33,34,35,36,37,38,39,40,41,42],_inference_funct:[4,5,43,44],_initialize_scor:43,_initialize_weight:43,_interpolatefunctionerror:[4,5,43,44],_j:[1,2,3,4,6,7,9,14,18,20,27,34,35,36,38,40,41,42,43],_jit_compil:[4,5,43,44],_k:[14,24,37,38,39,42,43],_l:[13,39,40,41],_lambda:[7,33],_leaf:[10,45],_lock:[4,5,43,44],_logist:[8,12,37,44],_m:[11,45],_make_vjp:[3,14,39],_maybe_define_funct:[4,5,43,44],_multilayer_perceptron:[2,24,40,41,42],_n:[3,6,9,12,14,34,37,38,42],_node:[3,10,14,39,45],_notokstatusexcept:[4,5,43,44],_num_output:[4,5,43,44],_o:[24,42],_p:[6,9,34],_pad:43,_process_traceback_fram:[4,5,43,44],_progress_bar:[24,42,43],_r:[4,5,43,44],_ratio:12,_reset_schedul:43,_reset_weight:43,_reset_weights_independ:43,_sampl:[10,45],_select_forward_and_backward_funct:[4,5,43,44],_set_classif:[24,42],_set_pred_format:43,_split:[7,10,27,45],_src:22,_stateful_fn:[4,5,43,44],_stateless_fn:[4,5,43,44],_t:[14,22,38,39],_test:[7,27],_trace:[3,14,39],_unpad:[],_valu:[3,14,39],_varianc:12,_weight:[10,45],a0:[4,43],a0faa0:[10,11],a1:[1,33],a2:[1,33],a3:[1,33],a4:[1,33],a_0:[1,22,23,28,33,43],a_1:43,a_1a:[1,33],a_1x:[22,23,28],a_2:43,a_2a:[1,33],a_2x:[22,23,28],a_3:[1,33,43],a_3a:[1,33],a_4:[1,33],a_4a:[1,33],a_:[1,2,17,26,33,34,40,41,42,43],a_h:[2,24,40,41,42],a_i:[1,2,3,13,33,40,41,42],a_j:[2,13,40,41],a_k:[1,2,13,40,41],a_matric:[24,42],a_matrix:43,a_previ:43,aaron:32,ab:[1,3,6,14,15,22,33,34,35,38,39,42],ab_channel:25,abandon:[2,41,42],abbrevi:29,abid:30,abil:[1,11,33,45],abl:[1,2,5,6,7,8,11,13,14,17,27,34,37,38,39,40,41,42,43,45],about:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,25,26,27,28,31,35,36,37,38,39,40,41,42,43,44,45],abov:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,26,27,28,30,32,33,34,36,37,38,39,40,41,44,45],abovement:[7,36],abscissa:[14,37,38],absolut:[1,3,6,7,14,33,34,35,36,38,39,42],absorb:[34,35],acceler:[14,22,38,39],accept:[1,4,7,10,27,33,34,43],access:[1,4,12,30,34,43],accid:[5,7,36,37,44],accompani:[1,33,34],accomplish:[9,10,14,38,39,45],accord:[1,2,3,6,7,10,13,14,15,16,17,30,33,35,36,37,38,39,40,41,42,43],accordingli:12,account:[1,4,6,14,16,30,33,35,36,38,39,43],accross:43,accumul:[13,14,22,24,30,38,39,40,42],accur:[1,4,5,7,11,14,36,38,39,43,44],accuraci:[0,1,2,4,5,6,7,8,10,11,12,13,24,28,33,34,37,39,40,41,42,43,44,45],accuracy_scor:[1,2,11,24,33,40,41,42,45],accuracy_score_numpi:[2,40,41,42],achiev:[1,2,6,7,9,13,26,33,35,36,39,40,41,42,43,45],aco:30,acquaint:[25,33],acquir:[2,25,33,41,42],acr:[1,34],across:[2,4,7,10,25,33,36,40,41,42,43],act:[2,4,24,26,40,41,42,43],act_deriv:43,act_func:[24,42,43],act_func_deriv:[24,42,43],action:[30,43],activ:[0,1,3,4,5,10,29,31,33,36,37,38,45],activation_deriv:43,activationfunct:43,actual:[1,2,5,6,7,9,12,17,26,30,33,34,35,36,41,42,45],ad:[2,4,5,6,9,14,16,17,24,26,35,36,37,38,41,42,43,44,45],ada_clf:[11,45],adaboostclassifi:[11,45],adadelta:[14,38,39],adagrad:[23,24,28,42,43],adagradmomentum:[24,42,43],adam:[2,4,5,23,24,28,31,33,41,42,43,44],adam_schedul:[24,42,43],adapt:[5,7,14,32,34,36,37],add:[1,2,3,4,5,6,7,9,11,12,13,16,17,18,22,23,24,27,28,30,33,34,35,36,38,40,41,42,44,45],add_convolution2dlay:43,add_flattenlay:43,add_fullyconnectedlay:43,add_lay:43,add_outgrad:[],add_outputlay:43,add_poolinglay:43,add_subplot:[2,8,13,15,37,39,40,41,42],addendum:6,addit:[0,1,3,4,6,7,8,9,10,11,13,14,16,18,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,42],addition:[13,14,37,38,39,40,43],address:[2,10,12,14,33,38,39,41,42,43,45],adjac:[4,13,39,40,43],adjoint:[6,34,35],adjust:[1,6,13,14,37,38,39,44],admir:[1,33],adopt:43,advanc:[5,7,13,32,33,36,39,40,43],advantag:[2,4,6,7,11,14,26,35,36,37,38,39,40,41,42,43,45],adversari:33,afecionado:33,affect:[4,24,42,43],affin:[1,4,9,12,34,43],afford:[4,43],aficionado:33,aforement:15,african:[1,34],after:[0,1,2,3,5,6,7,10,12,13,14,16,21,22,24,25,26,27,28,30,33,34,35,36,38,39,40,41,42,43,44,45],afterward:[1,33],ag:[1,8,29,33,34,37],ag_0:[3,42],again:[1,2,5,6,7,8,9,11,12,13,14,16,17,22,23,24,27,28,30,33,34,35,36,38,39,40,41,42,45],against:[2,5,8,11,22,23,28,37,40,41,42,44,45],agegroup:[8,37],agegroupmean:[8,37],aggreg:[10,11,43,45],ago:44,agorithm:11,agre:[6,7,30,35,36],agreement:[14,22,38,39],ahead:[10,45],ai:[1,28,32],aid:[12,21,43],aim:[0,1,2,5,7,8,12,15,16,17,25,26,27,28,34,36,37,41,42],ainv:6,airplan:[4,43],aka:[6,35,36],al:[0,1,3,5,16,17,18,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],alarm:[6,8,35,36],albeit:43,algebra:[1,4,6,14,22,25,34,35,36,38,39,43],algorithm:[0,1,2,3,5,6,7,8,9,14,15,23,24,25,26,27,30,32,33,35,36,37,42,43,44],align:[1,3,6,7,8,9,14,27,30,33,34,35,36,37,38,42,43],all:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45],allevi:[2,14,37,38,41,42],alloc:[4,26,43],allow:[0,1,2,3,4,6,7,9,11,14,16,17,24,25,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],almost:[0,1,2,7,9,12,14,22,30,33,36,37,38,39,41,42],alon:[3,10,42],along:[0,3,4,5,6,7,10,11,12,24,25,26,33,34,35,36,37,42,43,44,45],alpha:[1,2,3,4,5,7,8,9,10,11,14,15,24,30,33,34,36,37,38,40,41,42,43,44,45],alpha_0:[4,43],alpha_1:[4,43],alpha_2:[4,43],alpha_:[11,45],alpha_i:[4,14,38,43],alpha_k:[14,38],alpha_m:[11,45],alpha_n:[4,43],alpha_opt:[14,38],alreadi:[3,4,5,6,7,11,13,25,26,30,33,34,35,36,39,40,42,43,45],also:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45],alter:[2,40,41,42],altern:[1,2,5,6,7,8,9,10,12,14,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],although:[0,1,2,6,7,9,11,14,17,22,24,33,35,36,38,39,41,42,43,45],alwai:[1,4,6,7,13,14,17,22,30,33,34,35,36,37,38,39,40,43],am:[5,34,43],ame2016:[1,33],american:[1,34],among:[0,1,4,6,10,11,13,26,33,34,35,39,40,43,44,45],amongst:[6,35,36],amount:[1,2,4,5,7,9,11,15,24,25,36,41,42,43,45],an:[0,2,3,4,6,7,8,9,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,30,31,32,34,35,36,37,38,39,40,41,42,43],an_:30,anaconda:[0,1,2,16,25,27,33,41,42],analog:[14,38,39,44],analys:[0,7,35,36],analysi:[0,2,4,5,8,15,16,17,18,20,22,23,26,32,37,40,41,42,43,44],analyt:[0,3,4,6,7,8,13,14,16,23,25,27,28,33,34,35,36,37,38,39,40,43],analytical_gradi:22,analyz:[1,2,4,5,6,7,17,18,27,28,30,33,34,35,40,41,42,43,44],andrew:[2,40,41,42],angl:[1,4,10,34,43],anharmon:4,ani:[1,2,3,4,5,6,7,8,9,10,11,13,15,19,24,30,33,34,35,36,39,40,41,42,43,44,45],anim:[5,13,39,40],ann:[13,39,40],annot:[1,2,4,8,9,24,33,34,37,40,41,42,43,44],announc:33,anoth:[1,2,4,5,6,7,8,9,11,12,13,14,26,27,28,30,33,34,37,38,39,40,41,42,43,44,45],ans_vspac:3,ansatz:[1,33],answer:[0,1,2,4,6,7,26,27,28,31,33,35,36,40,41,42,43],antialias:[3,7,27,42],anticip:[5,44],anymor:[2,9,41,42],anyon:[5,9],anyth:[2,30,41,42,44],anytim:[31,33],apach:[2,41,42],apart:[12,14,37,38],api:[2,25,33,41,42,43],appar:[3,42],appear:[1,2,4,14,17,24,26,30,33,38,39,40,41,42,43],append:[2,4,5,9,10,14,22,24,33,38,41,42,43,44,45],appendix:27,appl:[4,5,43,44],appli:[1,2,3,4,5,7,8,9,10,11,12,13,14,16,17,27,28,30,32,33,34,35,36,37,38,39,40,41,42,43,45],applic:[1,2,4,5,6,7,8,10,13,14,22,26,27,30,32,33,34,36,37,38,39,40,41,42,43,44,45],apply_gradi:5,approach:[0,2,3,5,6,7,10,11,12,13,14,18,22,24,25,30,32,34,37,40,41,42,43,44],appropri:[3,7,10,13,14,25,30,36,38,39,40,42,43],approv:33,approx:[0,1,3,4,7,11,12,14,30,33,36,37,38,39,42,43,45],approxim:[1,2,3,4,5,6,7,8,11,12,14,19,20,27,30,33,34,35,36,37,38,39,41,42,43,44,45],apt:[0,1,16,25,27,33],aq:30,ar:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],aragorn:33,arang:[2,4,5,7,8,10,11,13,14,24,27,33,37,38,39,40,41,42,43,44,45],arbitrari:[2,5,7,9,13,14,30,36,37,38,39,40,41,42,44],arbitrarili:[1,2,12,33,40,41,42],arc:[7,27],architectur:[4,5,13,24,43,44],archiv:28,area:[1,4,7,10,27,32,33,43,45],arg:[1,3,4,5,14,33,39,43,44],argmax:[2,12,40,41,42,43],argmin:[5,11,15,45],argnum:[3,14,39],argnum_0:[],argnum_1:[],args_with_tang:[4,5,43,44],argsort:12,argu:[2,14,38,39,41,42],argument:[1,3,4,6,7,12,13,14,22,24,27,33,34,35,36,40,42,43],argval:3,aris:[1,7,13,14,30,33,36,37,38,40],arithmet:[1,14,26,33,38,39],arm:[7,35],armadillo:26,around:[1,2,5,6,7,12,30,33,35,36,40,41,42],arr:3,arrai:[1,2,3,4,5,6,7,8,9,10,12,13,14,15,22,24,25,27,30,34,35,36,37,38,39,40,41,42,43,44],arrang:[4,33,43],arraybox:[14,38,39],arriv:[1,7,10,12,26,30,33,36,43,45],arrow:[13,24,39,40,42,43],arrowprop:9,art3d:[14,38],art:[1,2,16,25,33,41,42],articl:[0,1,4,5,7,11,19,28,33,34,35,36,43],artifici:[1,3,8,13,32,33,37,42],artificialneuron:[13,39,40],arug:[14,38,39],arxiv:[4,5,22,28,38,39,44],as_fram:34,asap:33,asarrai:[1,3,7,10,22,34,35,38,45],ashort:21,asid:34,ask:[6,7,12,13,35,36,40,43],aspect:[1,7,25,27,33,34,35,43],assembl:[1,4,33,43],assert:[5,24,42,43,44],assertionerror:43,assess:[0,1,7,27,33,34,35,36],assici:[5,44],assign:[1,8,9,10,13,14,15,24,29,31,32,33,34,37,38,39,40,41,42,45],associ:[1,7,10,13,15,30,33,36,39,40],assum:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],assumpt:[1,4,6,7,10,12,19,27,30,33,34,43,45],assur:43,ast:[1,6,7,19,27,33,35,36,37,43],astronomi:[33,34,35,36,37,38,39,40,41,42,43,44,45],astyp:[5,10,11,45],asymmetr:43,asymmetri:[1,33],asymptot:[5,7,36],async_wait:[4,5,43,44],atla:33,atom:[1,33],attempt:[1,5,7,8,9,11,33,35,37,45],attend:29,attent:[0,1,24,26,33,42,43],attr:[4,5,35,43,44],attract:[1,11,33,45],attractor:44,attribut:[0,1,10,14,24,28,33,35,36,42,43,45],attributeerror:[14,35],audi:[1,33],audio:[4,5,43,44],august:[16,17,33],aurelien:[1,16,29,32,33,39,41,42,43,44],austfjel:[7,27],author:[1,2,11,30,33,41,42],authour:33,auto:[7,10,11,24,30,42,43,45],autocor:30,autocorrelation_tim:30,autocorrelform:30,autocovari:30,autoencod:[5,25,33],autoencond:25,autograd:[23,24,25,28,33,43],autom:[1,25,32,33],automac:26,automag:33,automat:[1,2,3,4,5,12,17,23,24,25,26,33,40,41,43,44],automobil:[4,43],autonom:[5,44],avail:[0,1,2,5,7,11,12,16,21,22,25,26,27,28,29,31,32,33,36,40,41,42,44,45],averag:[1,2,4,7,10,11,14,15,22,24,30,31,33,34,35,36,37,38,39,40,41,42,43,45],avoid:[1,5,6,7,10,12,14,22,24,26,33,34,36,37,42,43,44,45],awai:[3,4,7,34,35,36,42,43],awar:[3,11,42],award:[31,33],ax:[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,24,26,27,28,33,34,36,37,38,39,40,41,42,43,44,45],axes3d:[3,7,14,27,37,38,42],axes_grid1:7,axessubplot:34,axhlin:9,axi:[1,2,3,4,5,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],axiom:[6,35,36],axlabel:[1,33],axvlin:[5,9],axvspan:[5,44],b1:9,b2:9,b3:9,b:[1,2,4,5,6,7,9,10,11,13,14,15,16,17,22,24,30,31,33,34,35,36,37,40,41,42,43,44,45],b_0:1,b_1:[1,3,13,14,38,39,40,42],b_2:[1,14,38,39],b_5:[14,38,39],b_:[1,2,26,40,41,42],b_group:[10,45],b_i:[1,2,3,13,33,39,40,41,42],b_ia_:[1,33],b_ia_i:1,b_index:[10,45],b_j:[2,13,39,40,41,42],b_k:[1,2,13,14,38,39,40,41,42],b_m:[13,39,40],b_score:[10,45],b_valu:[10,45],bachelor:[29,31],back:[1,4,5,6,7,9,10,11,16,24,26,28,30,33,34,35,37,38,39,43,45],backbon:26,backend:[2,5,22,41,42,44],background:[0,32,33,34],backprogag:43,backpropag:[2,24,40,41,42],backtrack:10,backup:26,backward:[2,3,5,13,24,26,40,41,42,43],backward_pass:[],backwardpass:43,bad:[7,24,34,35,42],badli:30,bag:[0,10,25,33],bag_clf:[11,45],baggin:33,baggingboot:[11,45],baggingclassifi:[11,45],baggingtre:11,balanc:[7,36,37],baluka:42,band:26,bandwidth:26,bar:[1,7,12,16,17,24,27,33,42,43],barber:32,bare:[5,11,45],base:[1,2,4,5,6,8,9,10,11,15,25,30,31,32,33,34,35,37,40,41,42,43,44,45],basi:[6,8,9,11,12,13,14,26,34,35,37,38,39,40,45],basic:[7,9,13,14,15,25,27,30,33,38,39,40,41],batch:[4,5,12,13,14,22,23,24,28,37,40,43],batch_shap:[5,44],batch_siz:[2,4,5,24,40,41,42,43,44],batch_typ:43,batchnorm:5,bay:[8,37],bayesian:[6,25,32,33,35,36],beam:[33,36,37,38,39,40,41,42],becattini:31,becaus:[1,2,3,4,5,6,7,9,10,13,14,15,33,35,36,37,38,39,40,41,42,43,44,45],beccatini:33,becom:[1,2,3,6,7,8,10,13,14,22,30,33,34,35,36,37,38,39,40,41,42,43,44,45],been:[0,1,2,3,4,5,6,7,12,13,14,24,25,26,27,28,33,34,35,36,38,39,40,41,42,43,44],befor:[1,2,3,4,5,6,7,8,9,13,14,15,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],beforehand:[1,30,33],begin:[1,2,3,4,5,6,7,8,9,10,12,13,14,15,22,24,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,45],behav:[2,7,14,36,37,38,41,42],behavior:[1,2,14,33,37,38,39,41,42],behaviour:[13,39,40],behind:[1,2,7,9,14,33,37,38,40,41,42,43,45],being:[1,2,3,4,5,6,8,9,11,12,13,14,18,30,33,34,35,36,37,38,39,40,41,42,43,44,45],believ:[10,26,45],belong:[8,9,10,14,15,24,37,38,39,42,43,45],below:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],benchmark:[11,45],benefici:[2,14,38,39,40,41,42],benefit:[1,2,5,12,14,16,25,33,37,38,39,40,41,42,44],benefiti:43,bengio:[2,22,23,28,29,32,33,34,38,39,41,42],benign:[2,8,10,37,41,42,44,45],besid:[5,6,35,44],bessel:[6,34,35,36],best:[1,2,3,4,5,6,7,8,9,10,11,13,14,27,28,31,33,34,36,37,38,40,41,42,43,44,45],best_estimator_:[37,44],beta1:[22,38,39],beta2:[22,38,39],beta:[1,2,4,6,7,8,11,12,14,17,18,19,20,22,24,27,33,34,37,38,39,40,41,42,43,45],beta_0:[1,2,4,6,7,8,14,33,34,35,36,37,38,40,41,43],beta_0x_:[1,33,34],beta_1:[1,2,4,6,7,8,11,14,33,34,35,36,37,38,39,40,41,43,45],beta_1x_0:[1,33],beta_1x_1:[1,8,33,37],beta_1x_2:[1,33],beta_1x_:[1,33,34],beta_1x_i:[8,14,34,37,38],beta_2:[1,4,14,33,34,38,39,43],beta_2x_0:[1,33],beta_2x_1:[1,33],beta_2x_2:[1,8,33,37],beta_2x_:[1,33,34],beta_2x_i:34,beta_3:[4,43],beta_3x_i:34,beta_4x_i:34,beta_:[1,4,7,8,14,33,34,35,36,37,38,39,43],beta_i:[1,4,6,18,33,34,35,43],beta_j:[1,6,7,14,19,27,33,34,35,36,38,39],beta_k:[14,37,38],beta_linreg:[14,22,37,38,39],beta_m:[11,45],beta_mg_m:[11,45],beta_n:[4,43],beta_ol:36,beta_p:[8,37],beta_px_p:[8,37],beta_ridg:36,betaol:36,betaridg:36,betavalu:6,better:[1,2,3,4,5,7,10,11,12,13,14,22,33,34,35,36,38,41,42,43,44,45],between:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,18,22,24,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],beyond:[1,2,6,7,9,14,22,27,33,34,37,38,39,41,42],bf:[14,15,26,30,37,38],bgd:[14,38,39],bia:[1,2,3,4,6,9,10,11,13,14,20,24,28,33,34,35,37,38,39,40,41,42,43,45],bias:[2,3,4,6,7,10,13,24,28,35,39,43,45],bias_index:43,big:[1,2,3,6,7,15,19,33,35,36,40,41,42,44],bigger:[2,7,34,35,41,42],bigr:[13,39,40],bike:[10,45],bilbo:33,billion:[4,13,25,39,40,43],bin:[1,8,30,34,37,44],binari:[1,4,6,8,10,11,13,24,28,33,35,36,37,42,43,44],binarycrossentropi:5,bind:[1,34],binomi:[25,30,33],binsboot:[7,36],bioinformat:[1,33],biolog:[2,13,39,40,41,42],bios1100:[25,33],bird:[1,4,33,43],birth:33,bishop:[29,32,33],bit:[2,5,26,30,33,40,41,42],bitwis:30,bivari:[3,42],bk:[1,14,34,38,39],bla:[26,33],black:[9,10,15,22,45],bledso:33,blob:[20,21,27,33,37,38,39],block:[7,11,25,26,30,33,36,43],blogpost:5,blue:[1,4,43],bluntli:33,blur:43,bm:34,bmatrix:[1,2,4,6,8,9,12,14,24,26,33,34,35,37,38,40,41,42,43],bmi:[2,40,41,42],bodi:[1,2,5,13,33,39,40,41,42,44],bold:[2,41,42],boldfac:[1,6,17,34,35],boldsymbol:[1,2,3,4,6,7,8,9,11,12,14,15,16,17,18,19,20,22,24,27,33,37,38,39,40,41,42,43,45],boltzmann:[13,25,33,39,40],book1:32,book:[20,27,28,32,33,35,42,43],bool:43,boost:[0,2,10,25,33,41,42],boostrap:[11,45],bootstrap:[0,2,14,20,25,27,28,33,37,38,39,41,42],border:43,borrow:33,boston_dataset:[1,34],bot:9,both:[1,2,5,6,7,9,10,11,14,15,16,17,24,25,26,27,28,30,31,33,34,35,36,37,38,39,41,42,43,44,45],bottl:[8,37],bottleneck:43,bound:[1,9,13,34,38,39,40],boundari:[0,3,5,9,12,13,40,42],box:[3,5,10,44,45],boxed_arg:3,boyd:[9,14,37,38],bracket:[5,30,44],brain:[2,8,13,37,39,40,41,42],branch:[10,45],breast:[6,8,12,28,35,36,37,44],breat:28,breviti:[14,22,38,39],brew:[0,1,16,25,27,33],brg:9,brief:[0,27,28,34],briefli:[1,33],bring:[1,6,7,11,28,33,34,35,41,45],broad:[1,4,5,33,43,44],brought:[14,22,25,33,38,39],brownle:5,browser:33,brute:[4,6,12,34,35,37,43,44],bs:[9,10,11],buffer_s:5,bui:[5,44],build:[1,5,6,7,11,26,30,33,35,36,37,38,39,40,44],built:[1,2,4,5,7,34,36,41,42,43,44],bunch:12,busi:[1,34],c1:[9,12],c2:[9,12],c:[1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,20,25,26,30,31,32,34,35,36,37,38,39,40,41,42,43,45],c_0:30,c_1:[13,39,40],c_2:[13,39,40],c_3:[13,39,40],c_4:[13,39,40],c_:[1,9,10,11,14,22,30,34,37,38,39],c_i:[13,14,38,39,40],c_k:30,ca:[2,33,41,42],cach:11,cal:[1,9,11,13,14,16,17,33,37,38,40,41,45],calcul:[1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,19,22,24,26,28,30,33,35,36,37,38,39,40,41,42,43,44,45],california:[0,28,34],call:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],callabl:[4,5,24,42,43,44],callback:[4,5,43,44],calor:[1,34],cambridg:[14,32,37,38],can:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,30,31,32,34,35,37,40,41,42,43,45],cancel:[1,14,33,34,38,39],cancellation_manag:[4,5,43,44],cancer:[6,11,28,35,36],cancerpd:[8,37,44],candid:[9,10,11,38,45],cannot:[1,2,5,6,7,8,9,10,29,30,33,34,35,37,40,41,42,44,45],canopi:[0,1,16,25,27,33],canva:[0,27,28,33],cap:[6,35,36],capabl:[1,2,9,14,25,33,38,39,41,42,43],capac:[3,31,42],capita:[1,34],caption:[0,27,28],captur:[5,12,13,39,40],captured_input:[4,5,43,44],car:[4,5,43,44],card:[1,8,33,37],cardin:[2,41,42],care:[12,37,43],carefulli:[14,38,44],carlo:[1,7,25,30,32,33,36],carri:[3,7,8,27,36,37,42],cart:11,casella:32,cast:[2,41,42],cat:[4,5,43],categor:[1,2,4,10,12,33,40,41,42,43,45],categori:[1,2,4,8,11,13,15,24,33,34,37,39,40,41,42,43,45],categorical_crossentropi:[2,4,41,42,43],catgeori:44,caus:[1,6,7,30,33,34,35,36],causal:1,causat:[1,33],caution:43,cax:[2,41,42],cb:[7,33],cbar:[2,41,42],cc:[0,1,2,4,5,6,14,28,33,34,35,36,37,38,41,42,43,44],ccc:[6,13,35,39,40],cd_fast:7,cdf:30,cdot:[1,3,7,13,14,15,26,30,33,36,37,38,39,40,42,43],ceil:43,celebr:[14,37,38],cell:[1,3,4,5,7,10,11,14,16,27,33,35,36,37,38,39,42,43,45],cent:45,center:[0,1,2,7,8,9,10,12,15,27,30,33,35,36,37,41,42,45],central:[0,1,4,6,7,9,17,26,28,33,34,35,43],centroid:[15,30],centroid_differ:15,centuri:[4,43],certain:[1,4,7,8,10,30,33,34,36,37,43,45],certainti:36,cg:[14,38],cha:[1,34],chain:[1,2,14,25,30,33,38,39,41,42],challeng:[38,39],chanc:[2,6,14,30,35,36,38,39,40,41,42],chang:[0,1,2,3,4,5,6,7,9,10,12,13,14,15,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44],channel:[4,43],chap4:[40,41,42],chapter3:[1,20,27],chapter:[0,1,7,11,12,19,22,23,26,27,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],charact:[1,4,6,9,33,34,43],character:[9,10,11,13,30,39,40,45],characterist:[1,2,4,11,14,22,33,38,39,41,42,43,44,45],charg:[1,33],charl:[1,34],chase:5,chat:33,chd:[8,37],chddata:[8,37],cheap:[6,34],cheaper:[2,14,38,39,41,42],check:[1,2,4,5,6,7,12,14,24,26,33,34,38,39,41,42,43,44],checkmark:4,checkpoint:5,checkpoint_dir:5,checkpoint_prefix:5,chen:11,chiaramont:[3,42],chin:43,choic:[1,2,3,4,5,7,10,13,14,15,20,24,26,28,33,34,36,37,38,39,40,43],choleski:[6,26,34],choos:[0,3,4,7,10,11,12,14,15,24,27,28,36,37,38,39,43,45],chosen:[0,1,2,3,7,9,10,11,14,17,22,28,30,33,36,37,38,39,41,42,44,45],chosen_datapoint:[2,40,41,42],christian:32,christoph:[29,32,33],cifar10:[4,43],cifar:[4,43],circ:[2,13,40,41,42],circl:[1,9,13,34,39,40],circuit:[4,43,44],circumfer:[10,45],circumv:[2,6,14,34,38,39,41,42],ckpt:5,clariti:30,class_nam:[4,10,43,45],class_predict:43,class_val:[10,45],class_valu:[10,45],class_weight:[4,5,43,44],classic:[8,10,14,37,38,39,40,44,45],classif:[0,1,4,6,7,8,9,12,13,25,27,32,33,34,35,36,38,43],classifc:44,classifi:[0,1,2,5,8,10,11,12,24,28,33,40,41,42,43,44],classificaton:[2,40,41],classifii:[11,45],clealri:45,clean:[2,40,41,42],clear:[2,6,11,13,14,22,38,39,40,41,42,45],clearli:[1,4,6,7,8,9,19,30,34,35,36,37,43,44,45],clever:[2,11,40,41,42,45],clf3:1,clf:[1,7,9,10,11,33,34,45],clf_lasso:7,clf_ridg:[7,33],clip:[4,30,43],clone:31,close:[0,1,2,3,5,7,9,10,12,13,14,15,27,30,32,33,36,37,38,39,40,41,42,43,45],closer:[4,6,14,34,38,39,43],closest:[9,12,14,15,38],closur:[25,33],cloud:[25,33],cluster:[1,2,5,7,12,25,33,36,40,41,42,44],cluster_label:15,cm:[2,3,4,7,9,10,14,27,37,38,40,41,42,43,45],cmap:[1,2,3,4,5,7,9,10,11,24,27,33,40,41,42,43],cmap_arg:7,cmb:29,cmd:[10,45],cmu:34,cn_:30,cnn:[13,39,40],cnn_kera:[4,43],cntk:[25,33],co:[1,3,4,7,10,14,22,33,36,38,39,42,43],cobserv:43,code:[0,4,5,7,8,9,16,17,18,20,23,25,26,27,30,32,44],codebas:[24,42,43],coef0:9,coef:[1,33,43],coef_:[1,6,7,9,10,14,33,34,35,36,37,38,45],coeff:6,coeffici:[1,4,6,7,8,9,10,14,16,17,26,33,34,35,36,37,38,39,45],coerc:[1,7,33,36],cogniz:43,coin:[11,30],coin_toss:[11,45],col:[1,12,33,34],colab:[25,33],cold:[10,45],colinear:[1,34],collabor:[0,27,28],collaps:9,collect:[1,3,7,11,12,22,25,30,32,33,36,45],collinear:[6,34,35],color:[1,4,5,7,9,10,11,22,27,30,38,43,44,45],color_channel:[4,43],color_cod:7,colorbar:[2,7,27,41,42,43],coloumn:[24,42],colsample_bytre:11,colsaobject:11,colspec:[1,33],column:[1,2,3,6,7,8,9,10,12,13,18,24,26,33,34,35,36,37,39,40,41,42,43,44,45],columntransform:[10,45],com:[5,7,20,21,22,25,27,28,32,33,35,37,38,39,40,41,42,43,44],combin:[2,3,6,7,8,11,30,35,36,37,38,39,41,42,43,45],come:[1,2,4,5,6,13,14,15,16,28,33,34,35,36,38,39,40,41,42,43,44],command:[1,2,33,41,42],comment:[0,1,5,6,7,16,17,27,28,33,34],commerci:[0,1,16,25,27,33],commod:[1,33],common:[0,1,2,4,6,7,8,10,12,14,15,27,28,30,33,34,36,37,38,39,40,41,42,43,44,45],commonli:[1,2,5,7,8,10,14,15,34,36,37,38,39,40,41,42,43,44,45],commun:[0,1,13,27,39,40],commut:[4,43],commutatitav:[4,43],compact:[1,2,4,6,7,8,10,12,13,14,15,33,34,35,36,38,39,40,41,42,43,45],compair:1,compar:[0,1,4,5,6,7,12,14,16,17,22,23,24,26,27,28,33,34,35,36,37,38,39,43,44],comparison:[3,5,14,28,38,39,42,43,44],compat:[8,37,43],compet:[1,33],competit:11,compil:[1,2,4,5,14,16,22,25,26,33,38,39,41,42,44],complet:[1,3,4,5,10,13,33,39,40,42,43,44,45],completenn:[13,39,40],complex:[2,6,9,10,12,13,14,16,17,20,28,33,36,38,39,40,41,42,43],complic:[1,2,10,14,33,36,37,40,41,42,44,45],compoment:34,compon:[0,1,2,4,5,6,7,8,10,15,17,24,25,33,34,35,36,37,40,41,42,43,44,45],components_:12,compos:[10,13,14,15,22,25,33,38,39,40,45],compphys:[1,7,18,20,21,25,27,29,31,32,33,34,37,38,39],comprehend:43,compress:[1,33,34,43],compris:[7,37,43],compromis:[6,34],compulsori:[25,33],comput:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,16,17,18,22,24,25,26,27,28,29,30,32,33,34,35,36,37,40,41,42,43,44],computation:[1,4,7,10,14,30,33,37,38,39,43,45],computationalscienceuio:33,computerlab:[0,27,28],con:28,concat:33,concaten:[3,5,7,15,42,43,44],concav:[2,10,14,34,37,38,41,42,45],concentr:[1,11,34,45],concept:[1,3,25,33,34,42],conceptu:[13,14,37,38,39,40],concern:[1,2,5,8,33,37,40,41,42,44],concic:33,conclud:[1,6,14,22,35,36,38,39],conclus:[0,2,40,41,42],concretefunct:[4,5,43,44],cond:[3,42],conda:[0,1,2,16,25,27,33,41,42],condis:34,condit:[0,1,3,5,6,7,9,10,12,14,30,33,34,39,42,44,45],conduct:[25,33],condwav:[3,42],confid:[1,6,7,8,9,19,27,33,34,35,37],configur:[4,22,43],confirm:[6,13,35,36,39,40],confus:[0,6,7,8,11,26,34,35,36,44],confusion_matrix:[10,45],congruenti:30,conjug:[5,9],conjugaci:[14,38],conjunct:[4,43],connect:[1,2,4,5,10,12,13,14,26,33,34,37,38,39,40,41,42,44,45],consecut:43,consequ:[6,7,9,11,13,14,34,35,36,37,38,39,40,43,45],conserv:[6,15,34],consid:[1,2,3,4,6,7,8,9,10,11,13,14,17,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],consider:[1,2,6,14,33,34,35,36,37,38,40,41,42],consist:[0,1,2,3,4,5,7,13,14,20,22,27,28,30,34,36,37,38,39,40,41,42,43,44,45],constant:[1,3,5,6,7,9,13,14,24,30,33,34,35,36,37,38,39,40,42,43],constitu:[1,33],constitut:[3,7,36,37,42,43],constrain:[2,4,6,8,12,35,37,40,41,42,43],constraint:[6,7,9,14,18,34,35,36,38,39,43,44],construct:[1,2,3,4,6,7,8,9,10,11,12,24,26,30,33,34,35,36,37,43,44,45],consult:28,contact:[1,33],contain:[0,1,3,4,5,6,7,8,9,10,12,13,14,18,20,22,23,24,26,27,28,30,32,33,34,35,36,37,38,39,40,42,43,44,45],contemporari:33,content:[2,25,26,33,41,42],context:[0,4,5,7,11,14,27,36,37,38,39,43,44,45],contigu:26,continu:[1,2,3,4,5,6,7,8,9,10,11,13,14,18,19,22,23,26,27,28,30,33,34,35,36,37,38,40,41,42,43,45],contour:[10,11,14,38],contourf:[9,10,11],contrast:[2,5,10,11,13,39,40,41,42,45],contribut:[1,4,6,14,22,30,33,34,35,38,39,43],contributor:[0,1,27,33],control:[1,2,4,10,14,16,25,33,38,39,40,41,42,43,45],conv2d:[4,5,43],conv2d_49:43,conv2d_50:43,conv2d_51:43,conv2dsep:43,conv2dtranspos:5,conv:[4,5,43],conv_imag:43,conv_lay:43,conv_result:43,convei:33,conveni:[0,1,6,7,13,14,26,27,28,33,35,36,37,38,39,40,41],convent:[13,34,40],converg:[2,3,5,6,7,8,9,12,14,15,22,23,24,28,34,35,37,38,39,40,41,42,44],convergencewarn:[2,7,8,9,12,24,37,40,41,42,44],convert:[1,2,5,6,10,12,14,26,33,34,38,39,41,42,44,45],converttomatrix:[5,44],convex:[5,6,8,34],convinc:[14,37,38],convolut:[0,2,5,25,33,41,42,44],convolution2dlayeropt:43,convolv:43,convolved_imag:43,convout:43,cool:[5,10,45],coolwarm:[7,27],coordin:[6,13,15,34,35,39,40],coorel:[1,34],cope:44,copi:[1,2,15,24,34,40,41,42,43],copyright:[0,28,36,42],core:[3,4,5,11,14,33,39,43,44],corel:33,corner:43,coronari:[8,37],corr:[1,6,8,12,34,37,44],correalt:[12,25],correct:[1,2,3,4,5,6,8,14,26,30,33,34,35,36,38,39,40,41,42,43,44],correctli:[2,3,7,8,11,24,28,40,41,42,43,44,45],correl:[1,2,4,6,7,8,11,13,14,22,25,30,33,35,36,38,39,40,41,42,45],correlation_matrix:[1,6,8,12,34,37,44],correspond:[1,4,6,7,9,10,12,13,16,17,18,25,26,27,30,33,34,35,36,39,40,43,45],corss:42,cortex:[13,39,40],cosin:[4,7,36,43],cost:[1,3,4,6,7,8,9,10,13,14,17,18,20,22,27,28,33,39],cost_deep_grad:[3,42],cost_func:[24,42,43],cost_func_deriv:[24,42,43],cost_funct:[3,42],cost_function_deep:[3,42],cost_function_deep_grad:[3,42],cost_function_grad:[3,42],cost_function_train:[24,42,43],cost_function_v:[24,42,43],cost_grad:[3,42],cost_sum:[3,42],costcrossentropi:[24,42,43],costfunct:43,costlogreg:[24,42,43],costol:[14,22,24,38,39,42,43],could:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,18,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],coulomb:[1,33],count:[1,3,10,29,30,31,33,45],countor:[14,38],coupl:[5,6,7,35,36,44],cours:[0,1,2,4,6,12,27,28,29,31,34,36,41,43,45],courvil:[22,23,28,29,32,33,34,38,39],cov:[6,7,12,26,30,33,34,35,36],cov_xi:[6,12,34],cov_xx:[6,12,34],cov_yi:[6,12,34],covari:[1,8,25,26,33,35,37,44],covariance_matrix:[6,12,15,34],cover:[0,1,6,18,25,31,32,34,35,43,45],covert:[1,33],covxi:30,covxx:30,covxz:30,covyi:30,covyz:30,covzz:30,cpu:[2,4,5,41,42,43,44],cpu_util:[4,5,43,44],craft:[4,43],crawford:33,creat:[2,3,4,5,6,7,10,11,12,13,14,24,25,27,33,35,37,38,39,40,41,42,43,44,45],create_biases_and_weight:[2,40,41,42],create_convolutional_neural_network_kera:[4,43],create_neural_network_kera:[2,41,42],create_x:[6,12,24,34,42],credit:[1,8,31,33,37],crim:[1,34],crime:[1,34],criteria:[1,5,10,11,15,30,33,45],criterion:[0,10,11,14,37,38,45],critic:[0,7,27,33,34,35,43],critiqu:[0,27,28],crop:43,cross:[0,1,2,4,8,10,11,14,24,25,28,30,33,34,35,38,39,40,41,42,43,44,45],cross_entropi:5,cross_val_scor:[7,36,37],cross_valid:[8,11,37,44,45],crossvalid:[7,36],crucial:[2,30,41,42,43],cs231:[4,43],cs231n:42,cs231n_2017_lecture4:42,cs:[29,31],csr_matrix:[26,33],csv:[1,5,7,8,10,33,36,37,44,45],ctnk:[2,41,42],ctx:[4,5,43,44],cubic:1,cumbersom:[6,35,36],cumsum:[11,12,33,45],cumul:[0,8,11,30,45],cumulative_heads_ratio:[11,45],cup:[6,35,36],current:[2,3,4,5,7,14,15,22,27,32,37,38,39,41,42,43,44],curs:[1,34],curv:[0,7,8,11,13,27,37,39,40,45],curvatur:[14,37,38,39,44],custom:[7,15,27,45],custom_cmap2:[10,11],custom_cmap:[10,11],cut:43,cute:43,cutpoint:[10,45],cv:[7,8,11,36,37,44,45],cvxbook:[14,37],cvxopt:[6,9,34],cycl:[2,13,39,40,41,42],cyclotron:[34,35,43,44,45],d2_g_t:[3,42],d:[2,3,4,5,6,7,8,9,10,11,12,14,15,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],d_f:[14,37,38],d_g_t:[3,42],d_net_out:[3,42],da:[4,43],dagger:[6,26,34],dai:[2,10,25,40,41,42,45],damp:[4,43],daniel:[31,33],darget:[10,45],darkr:30,dat:[1,33],dat_id:[1,7,8,10,33,34,36,37,45],data1:15,data2:15,data3:15,data4:15,data:[3,5,6,9,11,13,14,15,18,19,20,22,23,26,28,32,36,38,39],data_handl:[4,5,43,44],data_id:[1,7,8,10,33,34,36,37,45],data_indic:[2,40,41,42],data_modul:34,data_panda:33,data_path:[1,7,8,10,33,34,36,37,45],data_url:34,databas:[2,40,41,42],datafil:[1,7,8,10,27,33,34,36,37,45],datafram:[1,5,6,8,10,12,33,34,37,44,45],datapoint:[2,6,7,8,12,14,24,34,36,37,38,39,40,41,42],dataset:[1,5,7,8,9,10,11,12,14,15,16,17,20,24,27,28,33,34,36,37,38,39,44,45],datatyp:[5,44],date:[0,16,17,18,19,20,21,22,23,24,27,28,33,34,35,36,37,38,39,40,41,42,43,44,45],daughter:[11,45],david:32,davison:36,dbh:[2,40,41,42],dbo:[2,40,41,42],dc5e85cd93c3:28,dcomposit:26,ddot:[3,42],dead:[2,41,42],deadlin:[17,18,19,20,21,22,23,24,29],deal:[0,1,2,4,6,7,9,12,14,15,18,19,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44],dealt:1,debt:[8,37],debug:[1,6,7,24,35,36,37,42,44],decad:[1,4,33,43],decai:[1,14,30,33],decemb:[29,31,33],decent:11,decid:[1,3,4,6,7,10,24,27,35,36,37,42,43,44,45],decim:[1,24,33,42,43],decis:[0,1,2,9,12,25,32,33,40,41,42,43],decision_funct:9,decision_tre:[10,45],decisiontreeclassifi:[10,11,45],decisiontreeregressor:[1,10,11,45],declar:[1,5,26,33,44],decompos:[6,7,26,34],decomposit:[1,7,13,27,33,35,39,40],decompost:[6,34],deconvolut:[4,43],decor:[1,33],decorrel:[11,14,22,38,39,45],decreas:[2,3,5,6,7,11,12,14,35,36,37,38,39,40,41,42,43,45],deduc:[1,33],deep:[0,4,8,13,14,22,25,28,29,32,33,34,38,39,40,43,44],deep_neural_network:[3,42],deep_param:[3,42],deep_tree_clf1:10,deep_tree_clf2:10,deep_tree_clf:[10,11,45],deepcopi:[24,42,43],deepen:[6,25,33],deeper:[1,4,5,33,43],deepimag:42,deeplearningbook:32,deer:[4,43],def:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],def_covari:30,def_funct:[4,5,43,44],default_tim:[5,44],defect:[6,34],defici:[6,34],defin:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,34,35,36,37,38,39,43,44,45],definit:[2,3,6,7,8,9,11,12,13,14,18,26,30,34,35,36,37,38,41,42,45],defint:30,defualt:[24,42],defun:[4,5,43,44],defvjp:3,degre:[4,6,7,9,10,11,12,16,17,18,20,27,30,33,35,36,37,43,44,45],del:[2,41,42],delet:7,delimit:[5,44],deliv:[29,33],delta:[0,1,3,4,7,9,13,14,15,22,24,33,38,39,40,41,42,43],delta_0:[4,43],delta_1:[4,43],delta_2:[4,43],delta_3:[4,43],delta_4:[4,43],delta_5:[4,43],delta_:[2,26,40,41],delta_h:[1,2,33,40,41,42],delta_j:[4,13,40,41,43],delta_k:[13,40,41],delta_l:[2,4,40,41,42,43],delta_matrix:[24,42],delta_momentum:[14,22,38,39],delta_n:[1,4,33,43],delta_next:43,delta_term:43,delta_term_next:43,delta_term_pad:43,delug:25,delv:[1,33,43],demand:[14,37,38],demonstr:[1,4,6,7,8,12,13,24,25,33,34,35,36,37,40,42,44],demostr:45,demystifi:[39,40,41,42],den:[5,44],denomin:[2,6,35,36,40,41,42],denot:[2,3,7,8,14,30,37,38,39,40,41,42,43],dens:[2,4,5,41,42,44],dense_1:[5,44],dense_98:43,dense_99:43,densiti:[1,3,7,30,33,36,42],depart:[0,28,31,33,34,35,36,37,38,39,40,41,42,43,44,45],depend:[0,1,2,3,5,6,7,8,9,12,13,14,16,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44],depict:30,deploy:[0,1,16,25,27,33],deprec:[3,4,7,14,27,33,34,38,43],deprecate_nonkeyword_argu:[1,33],depth:[1,4,10,11,26,36,41,42,43,44,45],deriv:[1,2,3,7,8,9,11,12,14,17,18,20,22,24,25,27,33,39,43,44,45],derivati:[14,38,39],derivative_fn:[14,38,39],descend:[6,10,12,34,35,43],descent:[0,1,2,4,8,9,13,23,24,33,34,40,41,43],descent_i:22,descent_x:22,descr:34,describ:[0,1,3,5,6,7,9,11,12,13,14,19,22,26,27,28,33,35,36,38,39,40,42,43,44,45],descript:[0,1,9,10,24,28,33,42,43,45],design:[1,2,4,5,6,7,8,11,12,13,14,16,17,18,19,20,24,27,28,33,35,36,37,38,39,40,41,42,43,44,45],designmatrix:[1,33],desir:[1,3,5,6,14,15,24,33,34,37,38,42,43,44],despit:[2,13,39,40,41,42,43,45],destroi:26,det:[6,26,34],detail:[1,7,12,14,15,24,26,27,28,34,37,38,41],detect:[4,9,13,39,40,43,44],determin:[1,3,4,5,6,7,9,10,11,12,13,14,17,26,30,33,34,35,36,37,38,39,40,42,43,44,45],determinist:[8,14,30,37,38,39],dev:[2,41,42],develop:[0,1,4,6,9,11,12,13,22,23,24,25,26,27,28,33,34,35,36,39,43,45],deviat:[1,2,3,5,6,7,20,27,30,33,34,35,36,41,42],devic:[4,5,43,44],device_nam:[4,5,43,44],devis:[13,39,40],df1:33,df:[5,9,12,14,33,38,44],di:[1,34],diag:[6,9,34,35],diagnost:[2,11,41,42,44,45],diagon:[0,1,6,8,14,19,22,24,26,27,30,33,34,35,37,38,39,42,43,44],diagonaliz:[6,34],diagram:[11,45],diagsvd:7,dice:[7,30,36],dict:[7,9,24,37,42,43,44],dict_kei:34,dictat:0,dictionari:[1,24,34,42,43],did:[0,1,2,6,7,8,11,12,15,27,28,33,35,36,37,38,41,42,45],die:[2,41,42],diff1:[3,42],diff2:[3,42],diff:[3,42],diff_ag:[3,42],diffeent:9,differ:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,18,22,24,25,26,27,30,32,33,34,35,36,37,40,41,42,44,45],different:[23,24,42],differenti:[1,4,17,22,23,24,25,26,33,34,37,40,41,43],differential_oper:[3,14,39],difficult:[1,2,7,11,14,22,27,30,33,36,38,39,41,42,43,45],difficulti:[1,2,14,33,37,38,39,41,42,44],diffonedim:[3,42],diffus:0,digit:[1,2,4,5,7,24,27,28,29,31,33,40,41,42,43],dilemma:[14,38,39],dilut:[2,41,42],dim:[5,12,15,24,26,42,44],dimens:[0,1,2,3,4,5,6,9,10,12,15,17,18,24,26,33,34,35,40,41,42,43,44,45],dimension:[0,1,5,6,7,10,12,14,15,20,22,23,25,26,28,33,35,36,37,38,39,45],dimensionless:[1,4,33,43],diment:26,dimention:43,dimnsion:[5,44],diod:[4,43],direct:[1,2,3,5,12,13,14,15,22,33,34,37,38,39,40,41,42,43,44],directli:[2,5,6,7,24,30,34,40,41,42,43],directori:[10,45],disabl:[4,5,43,44],disadvantag:[1,33],disappear:[4,7,36,43],disc_loss:5,disc_tap:5,discard:[7,12,36,37],disciplin:[1,4,13,33,39,40,43],disclaim:30,discord:33,discourag:[14,34,37,38],discov:[1,33],discover:[6,35],discoveri:44,discret:[0,2,4,6,8,14,35,36,37,38,39,41,42,43],discrimin:[5,8,11,12,37,45],discriminator_loss:5,discriminator_loss_list:5,discriminator_model:5,discriminator_optim:5,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,28,30,32,33,34,35,36,38,39,40,41,42,43,45],diseas:[8,37],disguis:[7,34,35,36],disord:[2,8,37,41,42],dispai:[39,40],displai:[1,2,4,5,6,7,8,9,10,11,12,13,15,24,27,30,33,34,36,37,39,40,41,42,43,44,45],displaystyl:[1,6,18,33,34,35,44],displot:34,disregard:[1,33],dissimilar:[12,15],dist:15,distanc:[1,9,10,12,15,30,34,43,45],distance_list:[10,45],distinct:[4,8,9,10,11,15,37,43,45],distinctli:9,distinguish:[1,5,8,9,30,33,37,44],distplot:[1,34],distribut:[0,1,2,5,7,8,11,12,14,15,16,17,19,20,24,25,26,27,28,33,34,37,38,40,41,42,44,45],distrubut:[0,1,16,25,27,33],ditto:0,dive:[1,9,26,33],diverg:[2,14,37,38,39,41,42],divid:[1,2,4,6,7,8,9,10,12,13,28,30,33,34,35,36,37,39,40,41,42,43,44,45],divis:[7,9,10,14,22,24,26,30,36,37,38,39,42,43],dna:[8,37],dnn1:[5,44],dnn2_gru2:[5,44],dnn:[1,2,3,5,13,24,33,39,40,41,42,44],dnn_kera:[2,41,42],dnn_model:[2,41,42],dnn_numpi:[2,40,41,42],dnn_scikit:[1,2,24,33,40,41,42],doamin:[35,36],doc:[0,1,7,18,20,21,25,27,28,29,31,32,33,34,37,38,39],document:[5,8,12,14,34,37,38,39,42,43,44],doe:[1,2,3,4,5,6,7,9,11,12,13,14,17,22,24,26,27,30,33,36,37,38,41,42,43,44,45],doesn:[4,10,13,40,43,45],dog:[2,4,5,40,41,42,43],domain:[0,6,9,14,27,28,35,36,37,38,44],domin:[1,33],don:[0,1,2,4,6,7,9,12,14,16,22,24,25,27,28,33,34,38,39,40,41,42],done:[0,1,3,4,5,6,7,10,11,12,14,18,26,27,33,34,35,36,37,38,39,42,43,45],dot:[1,3,4,6,7,8,9,10,11,12,13,14,22,26,27,30,33,34,35,36,37,40,41,42,43,45],doubl:[4,5,26,33,43,44],doubli:[2,41,42],down:[0,1,4,7,10,12,13,14,22,33,37,38,39,40,43],download:[1,2,4,6,7,26,27,32,33,40,41,42,43],downsampl:[4,43],dozen:[2,41,42],dq:[7,36],drag:[14,38,39],dramat:12,drastic:[5,43,44],draw:[5,7,11,14,36,37,38,44,45],drawback:[1,2,4,14,34,37,38,39,41,42,43],drawn:[2,5,7,8,12,30,33,36,37,40,41,42],drive:[4,5,43,44],driven:[4,43,44],drop:[1,2,6,7,12,14,22,30,33,34,35,36,38,39,41,42],dropna:[1,7,33,36],dropout:5,dt:[3,4,14,30,38,39,42,43],dtype:[1,2,3,4,5,15,22,24,26,33,34,39,40,41,42,43,44],dualiti:7,dub:[1,33],due:[2,3,6,7,9,11,13,14,24,31,33,34,36,37,38,39,40,41,42,43,45],dummi:[1,34],dumoulin:43,dure:[0,1,2,4,5,9,10,12,18,21,24,25,27,33,36,38,39,41,42,43,44,45],dwell:[1,34],dwh:[2,40,41,42],dwo:[2,40,41,42],dx:[3,4,9,30,42,43],dx_1:30,dx_1p:[7,36],dx_2p:[7,36],dx_mp:[7,36],dx_n:30,dxp:[7,36],dy:[2,9,30,41,42,43],dynam:[5,44],dz:9,e:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,19,20,22,24,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],e_:[1,3,33,42],each:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,24,25,26,28,29,30,31,33,34,35,36,38,39,40,41,42,43,44,45],eager:[4,5,36,43,44],eapprox:[1,33],earli:[2,4,5,14,22,38,39,40,41,42,43,44],earlier:[1,6,8,9,10,12,13,14,21,22,33,34,37,38,39,40,45],earthexplor:[7,27],eas:[7,10,15,36,43,45],easi:[1,6,7,8,9,10,11,12,13,14,19,22,24,25,26,28,33,34,35,36,37,38,39,40,42,44,45],easier:[6,7,9,10,14,24,28,30,33,34,36,38,39,42,43,45],easiest:[14,37,38],easili:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,24,26,27,33,34,35,36,37,38,40,41,42,43,44,45],eastern:[31,33],ebind:[1,33],eblock:10,echo:44,econometr:33,economi:6,ecosystem:[25,33],ect:[29,45],edg:[4,43],edgecolor:[7,36],edu:[14,28,34,37,42],educ:[0,1,27,28,33,34,37],eff:30,effect:[2,5,11,14,30,38,39,40,41,42,43],effic:[2,40,41,42],effici:[1,4,11,14,25,26,30,33,37,38,39,44],efron:[7,36],egrad:[14,38,39],eig:[6,12,14,22,26,30,33,34,37,38,39],eigen:30,eigenpair:[6,12,34],eigenvalu:[1,6,9,12,14,22,26,33,34,35,37,38,39],eigenvector:[6,12,14,18,34,35,38],eight:[26,33],eigval:[26,30,33],eigvalu:[12,14,22,37,38,39],eigvec:[26,30,33],eigvector:[12,14,22,37,38,39],eispack:[26,33],either:[0,2,6,7,8,9,10,11,12,14,16,17,24,27,28,30,33,34,35,36,37,38,40,41,42,43,44,45],elabor:30,elarn:4,elect:45,electr:[1,4,13,33,39,40,43],electron:33,eleg:12,element:[2,3,4,5,6,7,8,9,12,13,14,18,19,21,22,23,24,25,26,27,28,29,32,34,35,36,37,40,41,42,43,44],elementari:[11,14,26,38,39,45],elementwis:[4,14,38,39,43],elementwise_grad:[3,14,24,38,39,42,43],elessar:33,elif:[4,5,15,22,24,42,43,44],elim:26,elimin:[4,9,43],els:[2,3,4,5,8,10,13,14,24,26,37,38,39,40,41,42,43,44,45],elu:[2,41,42],elus:[1,33],em:43,email:[29,31,33],embed:[1,12,34],embodi:[7,20,27,36],emit:30,emner:32,emphas:[1,11,25,33,45],emphasi:[1,25,32,33],empir:[2,12,30,41,42],emploi:[0,1,2,6,7,12,14,27,28,30,33,34,35,36,37,38,40,41,44],employ:[1,33,34],empti:[7,11,24,36,42,43,45],emul:[13,39,40],en:[25,32,44],enabl:[12,22,24,42,43],enbodi:[7,36],encapsul:43,encod:[1,4,6,10,12,15,18,33,34,35,43,45],encompass:[0,1,27,30,33],encount:[1,2,6,7,8,14,22,30,33,34,36,37,38,39,40,41,42],encourag:[0,27,28,43],end:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,22,24,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],end_box:[3,14,39],end_nod:[3,14,39],end_valu:[3,14,39],endpoint:[4,7,43],energi:[1,5,7,34,36,44],enet_coordinate_desc:7,enforc:[13,39,40],eng:32,engin:[1,2,4,5,25,33,41,42,43,44],english:[0,27,28],enhanc:43,enorm:[4,43],enough:[1,7,14,33,36,37,38,44],ensembl:[2,10,41,42],ensur:[1,2,3,4,6,7,12,14,22,24,30,34,35,36,37,38,39,40,41,42,43,44],ensure_initi:[4,5,43,44],entail:33,enter:[6,7,18,34,35],enthought:[0,1,16,25,27,33],entir:[2,4,8,10,24,25,30,33,37,38,39,40,41,42,43,45],entiti:[10,13,26,33,40,45],entri:[1,6,9,12,13,26,33,34,35,36,40],entropi:[2,4,8,11,14,24,33,38,39,40,41,42,43,45],enumer:[1,2,3,4,5,7,9,24,33,34,35,40,41,42,43],env:[1,2,3,4,5,7,8,9,12,14,22,24,30,33,34,35,37,39,40,41,42,43,44],environ:[0,3,22,25,27,42],eo:[1,7,33,36],eol:[1,33],eosfit:[1,33],epoch:[1,2,4,5,13,14,22,23,24,28,33,38,39,40,41,42,43,44],epoch_num:[4,5,43,44],epsilon:[1,6,7,8,14,20,27,33,34,35,36,37,38,39],epsilon_0:[1,33],epsilon_1:[1,33],epsilon_2:[1,33],epsilon_:[1,33],epsilon_i:[1,33,34],eq:[4,14,15,26,30,37,38,43],eqnarrai:[4,6,7,35,36,43],equal:[1,2,3,4,5,6,7,9,10,12,13,14,15,16,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],equat:[2,4,5,6,7,8,9,10,11,12,14,15,17,18,19,20,22,26,27,30,36,39,41,43,45],equilibrium:[3,13,39,40,42],equiv:[4,14,26,30,37,38,43],equival:[1,2,6,8,9,12,14,22,25,26,33,34,35,36,38,39,40,41,42,43],erf:30,eriador:33,eric:[24,42],eridg:33,err:[1,11,45],err_:[7,36],err_sqr:[3,42],errat:[14,37,38],errno:[10,45],erron:[3,42],error:[2,3,5,6,7,8,10,12,13,14,16,17,18,19,20,22,24,25,26,27,28,30,35,37,38,39,40,41,42,43,44],error_estimate_corr_tim:30,error_handl:[4,5,43,44],error_hidden:[2,40,41,42],error_output:[2,40,41,42],escap:[14,37,38,39],esn:44,especi:[0,2,4,10,13,14,27,28,38,39,40,41,42,43,45],essenti:[1,6,7,10,11,13,15,27,28,30,34,39,40,45],establish:[0,1,7,11,12,16,27,28,33,43,45],estim:[0,1,2,6,7,8,11,12,14,25,30,33,34,37,38,39,40,41,42,44,45],estimated_mse_fold:[7,36,37],estimated_mse_kfold:[7,36,37],estimated_mse_sklearn:[7,36,37],et:[0,1,3,5,16,17,18,28,32,33,34,35,36,37,38,39,40,41,42,43,44,45],eta0:[9,14,37,38],eta:[1,2,4,9,13,14,22,24,28,33,37,38,39,40,41,42,43],eta_:[14,22,38,39],eta_t:[14,38,39],eta_v:[1,2,4,24,33,40,41,42,43],etc:[0,1,2,4,6,8,9,10,12,13,14,15,16,22,23,25,26,27,28,30,34,37,38,39,40,41,42,44,45],ethic:[25,33,34],etsim:36,euclidean:[1,15,34],euler:0,evalu:[0,1,3,4,5,6,7,10,14,27,30,33,34,35,36,37,38,39,44,45],evaluationform:[21,27,38,39],evaluationgrad:[21,27,38,39],evalut:[14,38,39],even:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,25,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],evenli:[5,44],event:[6,8,11,30,35,36,37,45],eventu:[0,1,6,7,12,13,14,27,28,31,34,35,36,37,38,39,40,44],everi:[1,2,3,4,5,6,7,10,11,12,13,14,15,24,25,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],everyth:[5,13,22,23,24,40,42],everywher:[5,14,37,38],evid:43,evolv:[1,33],exact:[1,3,6,12,13,14,26,30,33,34,38,40],exactli:[1,4,5,7,13,25,27,34,36,39,40,43],exam:[33,45],examin:[7,36,43],exampl:[0,6,12,13,14,16,17,20,21,23,24,25,26,27,28,30,32],exce:[2,13,14,22,38,39,40,41,42],excel:[1,2,5,6,11,28,33,34,41,42,43],except:[4,5,7,9,10,24,26,42,43,44,45],excess:[1,33,43],excit:[1,33,45],exclud:[2,7,13,27,34,35,36,37,39,40,41,42,43],exclus:[1,2,4,7,30,33,36,37,41,42,43],execut:[3,4,5,6,14,34,38,39,42,43,44],execute_with_cancel:[4,5,43,44],executing_eagerli:[4,5,43,44],exemplifi:[14,38,39],exercic:[31,33],exercis:[0,6,25,27,28,29,31,35,37,38,39,40,41,43],exercisesweek35:18,exhaust:[7,36,37],exhibit:[1,6,7,9,33,34,36],exisit:0,exist:[0,1,2,3,4,6,7,8,9,10,14,19,26,27,28,33,34,35,36,37,38,41,42,43,45],exit:[6,26,34],exp:[1,2,3,6,7,8,9,11,12,13,14,16,17,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],exp_term:[2,40,41,42],expand:[6,8,12,14,34,37,38,43],expans:[1,4,6,9,11,13,14,33,34,37,38,40,43,45],expect:[1,2,6,7,8,12,13,14,16,17,20,22,25,27,28,33,34,37,38,39,40,41,42,43],expectation_value_of_h_wrt_p:30,expediti:43,expens:[7,11,14,37,38,39,43,45],experi:[1,2,7,9,14,25,27,33,34,36,37,38,39,41,42],experiment:[1,4,5,7,10,30,33,36,43,44,45],experimental_get_tracing_count:[4,5,43,44],expert:[2,10,41,42,45],explain:[0,1,7,10,11,12,14,20,27,33,37,38,43,45],explained_variance_ratio_:12,explan:28,explanatori:[1,33],explicit:[0,1,4,7,14,22,26,27,33,34,35,38,39,43],explicitli:[1,5,22,33,44],explod:[2,41,42],exploit:[1,4,13,14,33,38,39,40,43],explor:[0,2,5,7,9,14,25,27,28,37,38,39,41,42],expon:[2,24,40,41,42],exponenti:[1,2,6,7,11,14,27,30,33,35,36,37,38,39,41,44,45],export_graphviz:[10,45],export_text:[10,45],exporttext:[10,45],expos:[25,33],express:[1,3,4,6,7,8,11,13,14,17,22,23,26,27,28,30,35,36,39,40,42,43,45],exptmean:30,exptvari:30,extend:[1,3,8,12,14,18,25,33,42,43,44],extens:[0,1,13,16,25,33,39,40],extent:[0,1,2,7,32,33,36,41,42],extern:[4,7,10,43,45],extra:[2,4,6,31,33,34,40,41,42,43,44],extract:[1,4,6,7,8,9,12,14,26,33,34,37,38,43],extrapol:[1,33],extrem:[1,2,5,6,7,8,9,10,14,17,26,34,35,36,37,38,39,41,42,43,44],extremum:[14,37,38],extrins:12,ey:[1,6,7,14,15,26,33,35,36,37,38],f11:[1,33],f12:[1,33],f13:[1,33],f1:[14,38,39,44],f1_grad:[14,38,39],f1d:[14,38],f2:[14,38,39],f2_grad_x1:[14,38,39],f2_grad_x1_analyt:[14,38,39],f2_grad_x2:[14,38,39],f2_grad_x2_analyt:[14,38,39],f3:[14,38,39],f3_grad:[14,38,39],f3_grad_analyt:[14,38,39],f4:[14,38,39],f4_grad:[14,38,39],f4_grad_analyt:[14,38,39],f5:[14,38,39],f5_grad:[14,38,39],f6:[14,38,39],f6_for:[14,38,39],f6_for_grad:[14,38,39],f6_grad_analyt:[14,38,39],f6_while:[14,38,39],f6_while_grad:[14,38,39],f7:[14,38,39],f7_grad:[14,38,39],f7_grad_analyt:[14,38,39],f8:[14,38,39],f8_grad:[14,38,39],f9:[1,14,33,38,39],f9_altern:[14,38,39],f9_alternative_grad:[14,38,39],f9_grad:[14,38,39],f:[1,2,3,4,5,6,7,8,9,11,13,14,15,17,19,20,22,23,24,26,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],f_0:[4,11,43,45],f_1:[11,14,37,38,45],f_2:[13,14,37,38,39,40],f_3:[13,39,40],f_:[11,45],f_d:30,f_grad:[14,38,39],f_grad_analyt:[14,38,39],f_i:[1,7,13,17,36,39,40],f_m:[4,11,43,45],f_n:[4,43],f_raw:[],f_vec:[3,42],f_wrap:3,face:[14,37,38,39],facecolor:[7,9,30,36],facil:[1,16,25,33,36,37,38,39,40,41,42],facilit:[13,39,40,43],fact:[1,2,4,6,10,12,13,14,33,34,35,36,37,38,39,40,41,42,43,45],factor:[1,2,4,6,7,10,11,12,14,26,30,33,34,35,36,38,39,40,41,42,43],factori:[14,38,39],fade:7,fafab0:[10,11],fahimeh:[31,33],fail:[1,4,5,7,8,9,12,14,31,33,36,37,38,43,44],failur:[8,37],fairli:[2,3,30,41,42],fake:5,fake_loss:5,fake_output:5,fale:28,fall:[9,10,29,44,45],fals:[1,2,3,4,5,6,7,8,10,11,15,24,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],famili:[1,8,9,30,37],familiar:[0,1,4,6,7,9,16,25,26,27,30,33,35,36,43],famou:[7,13,24,40,42],fanci:44,far:[1,4,5,6,7,9,12,13,14,15,33,34,37,38,39,40,43,44],fashion:[1,10,11,33,45],fast:[2,4,7,11,13,14,25,30,33,36,37,38,40,41,42,43],faster:[2,12,14,38,39,41,42,43],fastest:[14,26,37,38],favor:[8,37],favorit:30,fc:[4,43],fdr:44,featur:[1,2,4,6,7,8,9,11,12,13,14,19,24,25,27,28,30,33,35,36,37,38,39,40,41,42,43,44],feature_map:43,feature_maps_index:43,feature_nam:[1,2,8,10,34,37,41,42,44,45],feautur:[10,45],fed:[2,40,41,42,43],feed:[1,3,4,12,24,25,28,33,43,44],feed_forward:[2,24,40,41,42],feed_forward_out:[2,40,41,42],feed_forward_train:[2,40,41,42],feedback:[5,21,33],feeddorward:[5,44],feedforward:[2,5,13,24,40,41,42,43,44],feel:[0,1,6,7,12,14,16,17,22,23,25,27,28,31,33,35,38,39],feet:[1,34],fei:33,felt:[0,27,28],fetch:[7,27,34],fetch_california_h:34,fetch_openml:[34,43],few:[2,4,5,6,10,30,33,38,40,41,42,43,44,45],fewer:[1,10,12,33,45],ffnn:[2,13,24,28,39,40,41,42],fft2:43,fft:43,field:[0,1,4,7,13,25,33,39,40,43],fifth:[1,7,16,17,27,33],fig:[1,2,3,4,5,7,8,13,14,15,24,27,33,37,38,39,40,41,42,43,44],fig_id:[1,7,8,10,33,34,36,37,45],figaxi:30,figsiz:[1,2,3,4,5,7,8,9,10,11,24,33,34,36,37,40,41,42,43,44,45],figur:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,22,25,27,28,33,34,35,36,37,38,39,40,41,42,43,44,45],figure_id:[1,7,8,10,33,34,36,37,45],figurefil:[1,7,8,10,33,34,36,37,45],file:[0,1,3,4,5,6,7,8,10,14,27,28,33,34,35,36,37,39,44,45],file_prefix:5,filenam:[33,34],filenotfounderror:[10,45],filepath_or_buff:[1,33],fill:[6,10,24,34,42,43,45],filter:[4,5,43],filter_traceback:[4,5,43,44],filtered_flat_arg:[4,5,43,44],filtered_imag:43,filtered_tb:[4,5,43,44],financ:[1,33],find:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,22,25,27,28,30,33,34,35,37,40,41,42,45],fine:[1,15,16,33,43],finish:[3,24,42],finit:[0,4,6,7,13,14,18,30,34,35,36,38,39,40,43],first:[0,1,2,3,4,6,7,8,9,10,11,12,14,15,16,17,18,22,24,26,27,30,31,32,36,39,41,43,44],first_moment:[22,38,39],first_term:[22,38,39],firsteigvector:12,fit:[2,4,5,6,7,8,9,10,12,13,14,16,17,18,22,24,27,28,30,34,36,37,38,39,40,41,42,43,44],fit_beta:[7,34,35],fit_intercept:[1,6,7,34,35,36],fit_mod:[10,45],fit_transform:[1,7,9,10,12,36,37,45],fiti:[1,33],five:[1,10,18,27,33,34,37,44,45],fix:[1,4,5,7,11,12,13,14,22,23,27,28,33,36,37,38,39,40,43,44],fixedformatt:7,fixedloc:7,flag:5,flat:[13,14,22,37,38,39,40],flatten:[2,4,5,6,26,40,41,42,44],flatten_49:43,flattenlay:43,flexibl:[2,7,9,11,13,24,28,33,34,36,39,40,41,42,43],flip:[31,33],float32:[5,10,22,24,42],float64:[5,22,24,26,33,34,39,40,41,42,44],floatingpointerror:[24,42,43],floor:[24,42,43],flop:[6,26,34],flow:[2,5,13,39,40,42,44],fluctuat:[6,35],fluid:0,flush:[24,42,43],fly:12,fm:[1,33,43],fmap:43,fmax:[4,43],fmesh:[14,38],fn:[4,5,8,43,44],fnr:44,focu:[1,4,5,6,7,16,25,28,32,33,34,35,36,43,44],focus:[2,7,8,26,34,35,37,40,41,42],fold:[7,10,27,44,45],folder:[0,1,2,5,7,14,27,28,33,36,38,40,41],follow:[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,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],font:[1,8,30,33,37],fontdict:30,fontsiz:[2,7,9,10,11,30,41,42,45],fontweight:[2,41,42],footprint:[4,43],foral:[9,34],forc:[1,6,7,11,12,33,34,35,37,44,45],forcast:[5,44],forecast:[5,13,39,40,44],forest:[0,1,2,10,25,33,41,42],forget:12,form:[0,1,4,5,6,7,8,9,10,12,13,14,18,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,43,44],formal:[4,5,15,30,43],format:[1,2,3,4,5,7,8,9,10,11,12,24,25,30,32,34,35,36,37,39,40,41,42,43,45],format_data:[5,44],formatstrformatt:[7,14,27,37,38],formul:[5,7,12,15],formula:[0,4,14,30,37,38,39,43],forth:[5,13,39,40],fortran2003:[25,33],fortran2008:[0,27,28],fortran90:30,fortran:[1,16,25,26,33],fortun:[1,12,34],forward:[0,1,4,5,7,24,25,26,28,33,36,43,44],forward_backward:[4,5,43,44],forward_funct:[4,5,43,44],found:[0,2,3,5,6,7,13,14,20,21,24,27,28,33,34,35,36,38,39,40,41,42],foundat:[25,33,43],four:[5,6,7,9,13,24,26,27,29,31,33,35,39,40,41,42],fourier:[1,33],fourierdef1:[4,43],fourierdef2:[4,43],fourierseriessign:[4,43],fourth:[13,33,34,40],fp:[8,44],fpr:44,frac:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,20,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],fractal:[10,45],fraction:[10,44,45],fragment:45,frame:[8,33,37,44],framework:[2,9,11,30,41,42,43],frank:[6,12,22,23,28],frankefunct:[6,7,12,27,34],fredli:[31,33],free:[0,1,7,12,14,16,17,22,23,25,26,27,28,30,31,32,33,38,39,44],freecodecamp:25,freedom:[6,35],freeli:[0,1,27,33],frequenc:[4,5,7,8,30,36,37,43,44],frequent:[1,9,10,14,33,37,38,45],frequentist:25,fresh:[11,45],fridai:[17,31,33],friedman:[7,19,27,29,32,33,34],friendli:[5,44],frodo:33,frog:[4,43],from:[0,1,2,3,4,5,7,8,9,10,12,14,15,17,18,19,20,23,24,25,26,27,30,31,32,33,41,42,44],from_cod:[10,45],from_logit:[4,5,43],from_tensor_slic:5,fromnumer:3,front:[1,5,6,16,17,33,34,35,44],fuction:43,fulfil:[3,6,13,34,39,40,42],full:[1,2,4,6,8,10,11,14,24,30,33,34,37,38,39,45],full_matric:[6,34],fulli:[4,7,13,29,30,36,37,39,40],fullyconnectedlay:43,fun:[3,14,25,33,39,43],fun_nam:3,func:[1,3,24,33,34,42,43],functionali:12,functionfit:43,fundament:[1,7,25,33,36,43],funtion:3,further:[3,8,10,33,42],furthermor:[1,4,6,7,8,12,13,14,18,25,27,33,34,35,36,37,38,39,40,43],futur:[1,5,9,10,33,34,44,45],futurewarn:[1,33,34],fy:[0,16,27,28,29,31,32,33],fys3150:0,fys4155:[0,27,28],fys5419:[32,33],fys5429:[32,33],g0:[3,42],g2d:43,g:[1,2,3,4,5,7,9,10,11,12,14,30,33,35,36,37,38,39,40,41,42,43,44,45],g_0:[3,42],g_1:[3,11,42],g_2:[3,11,42],g_:[3,10,11,42,45],g_analyt:[3,42],g_dnn_ag:[3,42],g_euler:[3,42],g_i:[3,42],g_m:[4,11,43,45],g_n:[4,43],g_re:[3,42],g_t:[3,24,42,43],g_t_d2t:[3,42],g_t_d2x:[3,42],g_t_dt:[3,42],g_t_hessian:[3,42],g_t_hessian_func:[3,42],g_t_invers:[24,42,43],g_t_jacobian:[3,42],g_t_jacobian_func:[3,42],g_trial:[3,42],g_trial_deep:[3,42],g_vec:[3,42],gain:[0,2,6,8,10,11,14,34,35,36,38,39,41,42,45],galleri:[1,33],game:5,gamge:33,gamma1:9,gamma2:9,gamma:[1,3,9,10,11,12,14,22,33,37,38,39,42,45],gamma_0:[11,45],gamma_1:[11,45],gamma_1x:[11,45],gamma_:[1,33],gamma_i:[1,9,30,33],gamma_j:[14,38,39],gamma_k:[14,37,38],gamma_m:[11,45],gamma_x:[1,33],gap:[7,9],gate:[5,13,43,44],gather:[1,2,13,34,39,40,41,42],gaug:[13,39,40],gauss:43,gauss_kernel:43,gaussbacksub:26,gaussian:[5,6,7,9,15,30,35,36,43],gaussian_point:15,gaussian_rbf:9,gave:[14,38,39],gbc:[29,33],gca:[3,7,9,14,27,38,42],gd:[2,23,28,37,41,42],gd_clf:11,gdclassiffiercgain:11,gdclassiffierconfus:11,gdclassiffierroc:11,gdm:[14,22,38,39],gdregress:11,ge:[0,2,6,8,30,34,37,41,42],gen_loss:5,gen_tap:5,gender:[1,33],genener:[5,44],gener:[1,2,3,4,6,7,9,11,12,13,14,15,16,17,18,20,21,22,24,26,27,30,32,34,35,36,37,38,39,40,41,42,43,44],generaliz:[24,42],generallay:[13,39,40],generate_and_save_imag:5,generate_gauss_mask:43,generate_imag:5,generate_latent_point:5,generate_simple_clustering_dataset:15,generated_imag:5,generator_loss:5,generator_loss_list:5,generator_model:5,generator_optim:5,genom:25,geodes:12,geometr:[1,14,33],geometri:[6,35,36],georg:32,geotif:[7,27],geq:[3,6,9,10,14,34,35,37,38,42,45],geron:[1,16,22,29,32,33,38,39,41,42,43,44,45],get:[0,1,2,3,4,5,6,7,8,10,11,12,14,16,21,23,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],get_dummi:[10,45],get_paramet:[3,42],get_pred_format:43,get_prev_a:43,get_split:[10,45],get_yaxi:9,get_yticklabel:7,getattr:3,gibb:[25,33],gif:5,gini:11,gini_index:[10,45],ginvers:14,git:[1,16,25,33],giter:[14,22,38,39],github:[0,1,7,16,18,20,21,22,25,27,28,29,31,32,33,34,37,38,39,42],gitlab:[0,1,16,25,27,28,33],give:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,18,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],given:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],global:[7,8,14,27,37,38,39,43],gloriou:28,glorot:[2,41,42],gnew:14,go:[1,2,4,6,7,9,10,12,13,14,27,33,34,35,36,37,38,40,41,42,43,45],goal:[1,8,10,33,37,45],goe:[1,2,3,6,7,14,15,19,26,33,34,35,36,37,38,39,40,41,42],golden:[14,38],gone:[6,34,35],gong:[2,40,41],good:[2,4,5,6,7,10,11,12,14,18,22,24,25,30,32,34,35,36,37,38,39,41,42,43,44,45],goodfellow:[5,23,28,29,32,33,34,35,37,38,39,40,41,42,43,44],googl:[2,5,22,25,33,41,42],got:[2,7,27,40,41,42],gotcha:22,gotten:[24,42,45],gov:[7,27],gp:32,gpu:[2,14,22,25,33,38,39,41,42],grad:[3,14,22,24,38,39,42,43],grad_analyt:[14,38,39],grade:[29,45],gradient:[0,1,4,5,8,9,10,13,23,24,25,33,34,40,43,45],gradient_bia:[24,42,43],gradient_desc:[4,22,38,43],gradient_kernel:43,gradient_weight:[24,42,43],gradientboostingclassifi:11,gradientboostingregressor:11,gradients_of_discrimin:5,gradients_of_gener:5,gradients_util:[4,5,43,44],gradienttap:5,gradual:[2,15,41,42],grai:[5,7,27,43],graph:[2,10,12,13,14,37,38,39,40,41,42,45],graph_from_dot_data:[10,45],graph_funct:[4,5,43,44],graphic:[1,2,10,33,41,42,44,45],grasp:[1,33],gray_r:[2,4,40,41,42,43],grayscal:[4,43],great:[6,14,37,38,42,43],greater:[2,8,30,37,40,41,42,44],greatli:[14,38,39],greedi:[10,37,44,45],green:[1,4,10,30,43,45],gregor:[24,42],grei:5,grid:[2,4,7,8,9,13,30,34,35,36,39,40,41,42,43],gridsearch:[37,44],gridsearchcv:[37,44],grossli:[14,37,38],ground:[1,33],group:[0,1,7,8,10,15,25,27,28,29,31,33,36,45],groupbi:[1,33],grow:[2,4,10,11,40,41,42,43,44],growth:[1,33],gru:[5,44],guarante:[1,4,5,14,30,33,34,37,38,43,44],guess:[2,5,11,14,15,22,28,37,38,39,40,41,42,44,45],guestrin:11,guid:[2,41,42],guidelin:[21,38,39],h1:[3,42],h:[1,2,6,7,9,14,17,19,22,27,30,31,32,33,34,37,38,39,40,41,42,43],h_1:[3,14,37,38,42],h_2:[3,14,37,38,42],h_:[1,14,33,37,38],h_ind:43,h_m:11,h_stride:43,ha:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],haa:[31,33],habit:[1,34],had:[1,2,7,8,14,33,36,37,38,40,41,42],hadamard:[2,13,14,22,38,39,40,41,42],half:[2,9,10,41,42,45],half_dim:43,half_kernel_height:43,half_kernel_width:43,halv:[11,45],hand:[0,1,2,3,4,6,12,13,14,16,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44],handi:[0,4,27,28,43],handl:[1,2,3,6,10,12,25,35,41,42,45],handle_unknown:[10,45],handsid:[13,40],handwrit:[13,39,40],handwritten:[2,6,33,40,41,42,45],handwrittennot:[20,33,37,38],happen:[2,3,4,5,6,7,11,14,30,34,38,39,40,41,42,43,44,45],hard:[2,8,9,11,14,37,38,40,41,42,44,45],hardcopi:[25,33],harder:[1,2,34,41,42],harmon:[4,43,44],hasn:[2,24,40,41,42],hassl:[1,16,25,33],hast:[25,33],hasti:[1,7,16,17,18,19,27,29,32,33,34,35,36,37,45],hat:[1,2,6,7,8,10,11,12,13,14,18,19,26,27,34,35,36,38,39,40,43,45],have:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,34,35,36,37,38,39,40,41,42,43,44,45],haven:[2,40,41,42],he:[8,37],head:[1,5,11,30,34,44],header:[1,33,34],heads_proba:[11,45],health:[1,34],healthi:44,hear:[1,14,33,38,39],heart:[1,8,33,37],heatmap:[1,2,4,8,24,33,34,37,40,41,42,43,44],heavili:[1,33],heavisid:[2,40,41,42],height:[2,4,7,34,35,40,41,42,43],height_index:43,hein:42,held:[14,22,38,39],help:[0,1,2,5,13,14,17,22,27,28,33,38,39,40,41,42,44],helper:[5,15],henc:[1,6,7,9,10,11,13,14,19,27,33,34,35,36,37,38,39,40,45],henrik:[31,33],her:[8,37],here:[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,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],hereaft:[1,9,13,33,40],hermitian:26,hessenberg:26,hessian:[1,3,6,14,17,22,35,39,42,44],heterogen:[10,11,45],hi:[8,37],hidden:[0,2,4,5,13,24,28,39,40],hidden_bia:[2,24,40,41,42],hidden_bias_gradi:[2,40,41,42],hidden_deriv:[24,42],hidden_func:[24,42],hidden_layer_s:[1,2,24,33,40,41,42],hidden_neuron:[5,44],hidden_nodes1:[24,42],hidden_nodes2:[24,42],hidden_weight:[2,24,40,41,42],hidden_weights_gradi:[2,40,41,42],hierarch:[6,34,35],high:[1,2,3,4,5,6,7,10,11,12,14,15,22,25,26,27,28,33,34,36,37,38,39,41,42,43,44,45],higher:[1,2,4,6,7,9,14,22,23,27,28,33,34,35,36,37,38,39,41,42,43,45],highest:[2,3,40,41,42,44],highli:[0,1,4,5,11,19,25,26,28,32,33,34,35,36,45],highwai:[1,34],hing:9,hint:[14,17,28,34,37,38],hip:25,hire:[1,33],hist:[5,7,8,30,36,37,44],histogram:[1,7,8,30,34,37,44],histor:[8,12,37],histori:[4,5,13,39,40,43,44],histplot:34,hit:44,hitherto:[6,35],hjorth:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],hobbi:30,hoc:[6,34],hochreit:44,hoff:32,hold:[2,4,7,14,15,22,24,36,37,38,39,40,41,42,43],holder:[1,33],holm:42,holomorphic_grad:[3,14,39],home:[1,34],homepag:[0,27,28,33],homework:[7,14],homogen:[2,4,10,11,14,22,38,39,41,42,43,45],honchar:[3,42],hop:43,hopefulli:[1,12,30,33],horizont:[12,43],hors:[4,8,37,43],hot:[2,10,40,41,42,43,45],hour:[2,25,29,30,31,33,36,40,41,42],house_pric:34,how:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,24,25,26,27,28,30,33,34,35,36,38,39,40,41,42,43,44],howev:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],hspace:[0,1,5,9,11,30,33,45],hstack:[2,24,34,41,42,43],htf:[29,33],html:[1,8,12,18,20,25,27,29,31,32,33,34,37,40,41,42,44],http:[0,1,4,5,7,8,12,14,18,20,21,22,25,26,27,28,29,31,32,33,34,35,37,38,39,40,41,42,43,44],huang:[1,33],huber:[1,33],huge:[2,4,5,25,40,41,42,43,44],human:[1,2,4,7,10,13,33,34,35,39,40,41,42,43,45],humid:[10,45],hundr:[2,41,42,44],hungri:[2,41,42],hybrid:29,hydrogen:[1,33],hyper:[22,28],hyperbol:[2,5,13,41,42,44],hyperparam:9,hyperparamet:[4,5,6,7,10,14,18,24,33,34,35,36,37,38,39,43,44,45],hyperplan:12,hz:[4,5,43,44],i0:[1,33],i1:[1,7,9,13,33,34,35,36,39,40],i2:[1,9,13,33,39,40],i3:[1,13,33,39,40],i5:[1,33],i:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,31,33,34,35,36,37,38,39,40,43,44,45],i_1:[6,7,35,36,43],i_2:[6,7,35,36,43],i_:[14,37,38,43],i_j:43,ian:32,ic:[2,28,40,41,42],id3:45,id:[8,14,37,38],ida:[31,33],idea:[0,1,2,3,4,5,7,10,11,13,14,26,27,28,33,34,35,36,37,38,39,40,41,42,44,45],ideal:[1,3,7,9,14,24,30,33,34,36,39,42],idem:[7,36],ident:[6,7,13,14,18,24,26,27,34,38,39,40,42,43],identical:[35,36],identifi:[1,2,8,10,12,13,14,15,33,34,37,38,39,40,41,42,43,44,45],idx:[],ieor:30,ifft2:43,ifi:[32,42],ifs:[25,33],ignor:[1,2,4,10,24,34,41,42,43,45],ii:[24,26,30,43,44],iii:[24,26,33,43],ij:[1,2,4,7,9,13,15,17,19,26,27,30,33,34,35,36,39,40,41,42,43],ik:[1,26,33,34],ill:44,illustr:[6,8,11,13,14,15,25,33,36,37,38,44,45],ilsvrc:[38,39],im:7,imag:[2,4,5,7,10,12,13,15,24,28,32,33,39,40,41,42,45],image_at_epoch_:5,image_batch:5,image_height:[4,43],image_of_cute_dog:43,image_path:[1,7,8,10,33,34,36,37,45],image_shap:43,image_width:[4,43],imageio:[7,27,43],imagenet:33,images_from_seed_imag:5,imagin:[2,41,42],img:43,img_fft:43,img_height:43,img_path:43,img_width:43,immedi:[1,4,5,7,16,25,33,43,44],imper:43,implement:[0,1,3,4,5,6,7,9,10,11,12,13,14,15,18,22,23,24,27,28,30,33,34,35,36,37,38,39,43,45],impli:[4,6,7,8,14,26,34,35,36,37,38,43],implicit:[4,43],implicitli:[12,30],importantli:[4,43],impos:[1,7,12,13,33,39,40],imposs:[1,6,33,34],impress:[1,13,24,33,39,40,41,42],improv:[0,1,5,6,10,11,12,14,22,27,28,34,39,44,45],impur:[10,45],imread:[7,27,43],imshow:[2,4,5,7,27,40,41,42,43],in1:3,in2:3,in3050:[32,33],in3310:33,in4080:[32,33],in4300:[32,33,45],in4310:32,in5400:4,in5550:32,in_out_neuron:[5,44],inaccur:[14,37,38],inact:[13,39,40],inadequ:[1,33],inbetween:43,inch:[7,34,35],includ:[0,1,2,3,4,5,6,7,8,12,13,16,17,18,21,23,25,27,28,30,31,32,33,34,35,36,40,41,42,43,44],include_bia:[7,10,36,45],inclus:[18,41],incom:[13,39,40],inconveni:43,incorpor:43,incorrect:[2,40,41,42,44],incorrectli:44,incoveni:9,increas:[0,1,2,4,5,6,7,8,9,10,12,13,14,22,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],increasingli:30,increment:38,ind:7,inde:[1,3,5,6,7,14,33,34,42],indefinit:5,independ:[1,6,7,8,9,13,14,30,33,34,37,38,39,40],index:[1,2,4,5,11,15,25,26,28,30,32,33,34,40,41,42,43],index_col:[1,33],indic:[1,2,4,5,6,7,10,11,12,14,17,22,24,27,28,33,34,38,39,40,41,42,43,44],indispens:[7,36],individu:[2,7,8,11,13,30,33,34,36,37,39,40,41,42,44,45],indu:[1,34],indx1:[3,42],indx2:[3,42],indx3:[3,42],indx:26,ineffici:[4,14,38,39,43],inequ:[9,14],inequaltii:[37,38],inertia:[14,22,38,39],inf1000:[25,33],inf1100:[25,33],inf1100l:[25,33],inf1110:[25,33],inf3000:33,infeas:[10,43,45],infer:[1,2,5,7,32,33,36,40,41,42,43],infer_nrow:[1,33],inferenc:[2,41,42],infil:[1,7,8,10,33,36,37,45],infin:[6,7,8,12,19,34,35,36,37],infinit:[4,43],infinitesim:30,influenc:[7,11,36,37,45],influenti:[2,40,41,42],info:33,inform:[0,1,2,4,5,7,10,12,13,14,15,22,23,26,27,28,32,33,36,37,38,39,40,41,42,43,44,45],infti:[4,7,14,30,36,37,38,43],ingeni:[14,37,38,39],ingrad:[],ingredi:[1,10,33,45],inher:[7,36],inherit:[26,33,43],init:[24,42,43],initi:[0,1,2,3,7,11,14,15,24,26,28,30,33,36,37,38,39,40,41,42,43,45],initial_epoch:[4,5,43,44],initialis:43,inititi:[24,42],inject:15,inlin:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],inner:[1,14,34,38],inp:[5,44],inplac:[14,38,39],input:[0,1,2,4,5,6,7,8,9,10,11,13,14,15,16,22,24,27,28,30,33,34,35,36,37,38,39,40,41,43,45],input_channel:43,input_channel_index:43,input_dim:[2,41,42],input_grad:43,input_index:43,input_map:43,input_nod:[24,42],input_shap:[4,5,43,44],inputs:[2,41,42],inputs_shuffl:[1,2,34,40,41,42],insert:[4,6,7,9,11,30,34,35,36,43,45],insid:[1,5,8,34,37,44],insight:[1,2,6,22,23,25,28,33,34,35,36,41,42],insightful:43,insist:[7,14,34,35,38],inspect:[37,44],inspir:[1,2,13,28,33,39,40,41,42],instabl:[3,42],instal:[1,2,6,7,10,16,41,42,45],instanc:[1,2,3,5,7,10,12,14,24,33,34,36,37,38,40,41,42,43,45],instanti:[11,43,45],instead:[1,2,3,4,5,6,7,9,10,12,14,15,22,26,27,30,33,34,36,37,38,39,40,41,42,43,44,45],institut:[2,40,41,42],instruct:[1,2,16,17,33,41,42],insuffici:45,int32:[11,45],int64:34,int64index:33,int_0:30,int_:[4,7,30,36,43],int_a:30,intak:[1,34],integ:[2,3,14,15,24,26,30,33,38,39,40,41,42],integer_vector:[2,40,41,42],integr:[4,7,30,33,36,43],intellectu:33,intellig:[1,15,32,33],intend:[11,33,43,45],intens:[2,28,41,42],intention:15,interact:[0,1,7,10,13,25,27,28,33,39,40,43,44,45],intercept:[1,7,9,12,14,17,27,33,35,36,37,38,44],intercept_:[1,7,9,10,14,33,34,35,36,37,38,45],interceptol:36,interceptridg:36,interchang:[6,13,26,35,36,39,40],interconnect:[2,41,42],interest:[0,1,2,3,4,5,6,7,8,9,10,13,22,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],interfac:[1,2,24,26,34,40,41,42,43],interior:[1,10,33,45],intermedi:[26,34],intern:[2,11,13,39,40,41,42,45],interpol:[2,4,5,7,13,27,39,40,41,42,43],interpr:[6,34,35],interpret:[0,1,2,7,10,11,13,14,18,20,26,27,28,30,40,41,42,43,44,45],interv:[1,4,6,7,8,14,19,27,30,33,34,35,37,38,43],intial:[14,37,38],intiat:43,intiti:43,intract:[1,5,34],intric:43,intricaci:43,intrins:[4,12,26,30,33,43],intro:[25,32,33,42],introduc:[1,2,6,7,9,11,13,18,26,27,30,33,36,37,40,41,42,43,44],introduct:[2,3,5,14,18,21,32,34,37,38,42,44],introductori:[1,5,26,32,33,34],intuit:[1,6,7,9,13,14,22,27,33,35,36,38,39,40,41,42],intuiton:43,inv:[1,6,14,22,33,34,35,37,38,39],invalid:[2,9,40,41],invalu:[1,14,16,25,33,37,38],invari:[2,40,41,42,43],invd:[6,35],inver:[9,39,40],invers:[1,4,7,14,16,17,18,22,23,27,28,33,34,37,38,39,43],inverse_transform:9,invert:[1,6,8,11,14,22,33,35,37,38,39,45],invh:[14,22,38,39],invok:[1,9,34],involv:[1,3,7,8,12,13,34,36,37,38,39,40,42,43],io:[1,18,20,25,27,29,31,32,33,34,42],ion:39,ip:[1,9,30,33],ipca:12,ipykernel_10904:[],ipykernel_10962:[],ipykernel_11016:[],ipykernel_11057:[],ipykernel_11068:[],ipykernel_11090:[],ipykernel_11106:[],ipykernel_11118:[],ipykernel_11123:[],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_19431:[],ipykernel_19440:[],ipykernel_31563:[],ipykernel_31624:[],ipykernel_31672:[],ipykernel_31707:[],ipykernel_31718:[],ipykernel_31736:[],ipykernel_31749:[],ipykernel_31761:[],ipykernel_31766:[],ipykernel_31871:[],ipykernel_74401:[],ipykernel_74620:[],ipykernel_74630:[],ipykernel_8624:2,ipykernel_8674:7,ipykernel_8738:14,ipykernel_87501:[],ipykernel_8779:27,ipykernel_8790:33,ipykernel_8815:36,ipykernel_8843:38,ipykernel_8855:40,ipykernel_8861:41,ipykernel_96069:[],ipynb:[25,33],ipython:[0,1,6,8,10,12,15,16,25,27,28,33,34,37,45],iq:[7,36],iri:[9,10,45],irreduc:[7,36],irrelev:[6,34],irrespect:[1,33],irvin:[0,28],isbox:[3,14,39],iseffici:[38,39],isinst:43,isn:[6,35,36,43],isnan:[24,42,43],isnul:[1,34],isomap:12,isotop:[33,36,37,38,40,41,42],issu:[2,10,26,34,35,41,42,43,45],it_arrai:[14,38],item:[1,14,33,38,39,43],items:[26,33],iter:[2,3,4,5,7,8,9,12,14,15,22,24,30,36,37,39,40,41,42,43,44],its:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,24,25,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44],itself:[0,6,7,13,20,27,28,30,34,35,36,40,43],iv:[24,43],ix:[24,42,43],j1:26,j:[1,2,3,4,5,6,7,9,10,12,13,14,15,17,18,19,20,24,26,27,30,32,33,34,35,36,37,38,39,40,41,42,43,45],j_:7,j_lasso_sk:7,j_ridge_sk:7,j_sk:7,jackknif:[7,25,33,36],jacobian:[3,14,37,38,39],jacobian_shap:3,jakobsen:[31,33],jason:5,jax:[23,25,28,33],jax_descend_i:22,jax_descend_x:22,jax_enable_x64:22,jax_grad:22,jensen:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],jerom:[19,27,32],ji:[13,26,40],jit:[14,38,39],jj:[1,6,7,33,35,36],jk:[1,2,7,13,26,33,39,40,41],jl:[1,33],jm:26,jmlr:42,jnp:[14,22,38,39],job:[3,9,11,42],join:[1,5,7,8,10,33,34,36,37,45],joint:[5,6,35,36],jpg:43,judg:[14,37,38],judgement:[7,27,45],julia:[25,26,27],jump:[27,30],junk:5,jupit:33,jupyt:[1,16,20,25,27,32,33,36],just:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],justif:[1,33],justifi:[4,11,43],k0:[8,37],k1:[8,37],k:[0,1,2,4,6,7,8,9,10,11,12,13,14,15,24,25,26,27,30,31,33,34,35,38,39,40,41,42,43,45],k_1:43,k_2:43,k_half_height:43,k_half_width:43,k_j:43,k_n:43,k_x:43,k_y:43,kaggl:[0,7,27,28],kajda:[24,42],kappa_d:30,karl:[31,33],karush:9,kate:33,katrin:[31,33],keep:[0,1,2,5,6,7,12,14,15,26,27,28,33,34,35,36,37,38,39,41,42,43,44],keepdim:[2,7,11,24,26,36,40,41,42,43,45],kei:[1,2,4,7,13,24,34,39,40,41,42],kept:[5,7,15,36,44],ker1:43,ker2:43,ker_coef:43,kera:[0,1,5,25,27,28,33,44],kernel:[1,2,4,25,33,34,41,42],kernel_feature_maps_index:43,kernel_fft:43,kernel_height:43,kernel_input_channels_index:43,kernel_regular:[2,4,41,42,43],kernel_reshap:43,kernel_s:5,kernel_width:43,kernelpca:12,kev:[1,33],kevin:[32,33],keyboardinterrupt:[3,4,5,24,42,43,44],keyword:[7,14,24,26,27,33,38,42],kfold:[7,36,37],kg:[2,40,41,42],ki:26,kick:[2,14,38,39,41,42,45],kiener:[3,42],kilomet:[7,34,35],kind:[1,3,4,5,9,13,14,15,33,34,38,39,40,42,43],kj:[7,13,26,34,35,36,40,41],kjm:[25,33],kkt:9,kl:30,km:[13,33,39,40],kmean:15,kmeanspoint:15,kn_k:15,know:[1,2,3,6,7,9,14,25,33,34,35,37,38,39,41,42],knowledg:[1,25,33],known:[0,2,4,5,6,7,8,9,10,13,26,27,28,30,32,34,35,36,37,39,40,41,42,43,44,45],kondev:[1,33],kp:30,kpca:12,kristin:42,kroneck:15,kuhn:9,kumar:42,kvalsund:[31,33],kwarg:[1,3,4,5,14,24,33,39,42,43,44],kwd:[1,4,5,33,43,44],kwown:[1,33],l0:[8,37],l1:[1,2,4,8,33,37,41,42,43],l1_l2:[2,4,41,42,43],l1regl:6,l2:[2,4,40,41,42,43],l:[0,1,2,3,4,6,7,8,9,11,12,13,14,20,24,26,27,30,33,34,36,37,38,39,41,42,43],l_1:[8,37],l_2:[8,14,28,37,38],l_:26,l_j:[13,40],l_ja:[24,42],la:[14,38],la_i:[13,40],la_k:[13,40,41],lab:[0,21,25,27,33,38,39,42,43],label:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,22,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],label_prob:[38,39],labelencod:[8,11,37,44,45],labels:[7,9,10,45],labels_shuffl:[1,2,34,40,41,42],laboratori:[29,34,35,43,44,45],lack:[1,33],lagari:[3,42],lagrang:[9,12],lam:[24,42,43],lambda:[1,2,3,4,6,7,8,9,11,13,14,18,19,22,24,27,28,30,33,34,35,36,38,39,40,41,42,43,45],lambda_0:12,lambda_1:[6,9,12,34],lambda_2:[9,12],lambda_:12,lambda_i:[9,12],lambda_iy_i:9,lambda_jy_iy_j:9,lambda_k:9,lambda_n:[6,9,34],lamda:[2,41,42],land:[1,9,34],landmark:9,landscap:[14,22,37,38,39],langl:[1,7,12,30,33,34],languag:[0,1,2,5,9,16,25,26,27,28,32,33,41,42,44],lapack:[26,33],laplac:[6,35,36],laptop:25,larg:[0,1,2,3,5,6,7,9,10,11,12,14,16,25,26,27,30,32,33,34,36,37,38,39,40,41,42,43,45],larger:[1,4,6,7,9,11,12,14,18,30,33,34,35,36,37,38,39,43,45],largest:[5,9,12,44],larn:43,lasso:[0,1,8,25,33,44],lasso_sk:7,last:[1,2,3,4,5,6,7,8,9,10,11,13,14,16,18,19,23,24,26,27,30,31,33,35,38,40,41,42,43,44,45],latent:5,latent_dim:5,latent_point:5,latent_space_value_rang:5,later:[0,1,2,5,7,8,9,13,14,15,16,24,25,27,28,33,37,38,39,40,41,42,43,44],latest:[5,25],latest_checkpoint:5,latex:33,latter:[0,1,4,7,8,9,12,14,17,18,26,27,30,33,34,35,36,37,38,39,43,44],lattic:[13,39,40],law:[1,33,45],lax_numpi:22,layer:[0,1,5,14,22,24,28,33,38,39,44],lbfg:[8,10,11,12,37,44,45],lcc:[6,7,35,36],lda:12,ldot:[1,7,12,20,27,33,36,37,43],le:[6,8,11,14,18,22,30,34,35,37,38,39,45],lead:[1,2,4,6,7,8,9,10,11,12,13,14,17,18,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],leaf:[10,45],leaki:[2,28,41,42],leakyrelu:5,lear:[14,37,38],learn:[4,5,6,7,8,9,10,11,13,19,23,26,29,31,32,43],learnabl:[4,43],learner:11,learnig:33,learning_r:[4,9,11,22,43,45],learning_rate_init:[1,2,24,33,40,41,42],learning_schedul:[14,22,38,39],learnt:[0,27,28],least:[0,1,8,9,11,12,16,17,18,20,22,23,25,26,28,30,36,37,43],leat:[14,22,38,39],leav:[1,2,4,6,7,10,12,33,35,36,37,41,42,43,45],lectur:[0,1,2,6,11,12,13,14,16,18,22,23,25,26,27,28,29,31,32,38,39,45],lecture_11_backpropag:42,lecturenot:[1,18,20,25,27,32,33],left:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,17,18,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],leftarrow:[9,13,40,41],legend:[1,3,4,5,6,7,8,9,10,11,14,33,34,35,36,37,38,39,42,43,44,45],len:[1,2,3,4,5,6,7,9,10,11,12,13,24,26,33,34,35,36,38,39,40,41,42,43,44,45],len_index:[1,33],length:[0,1,2,3,4,5,9,10,14,17,25,33,34,37,38,39,40,41,42,43,44],length_of_sequ:[5,44],leq:[0,1,6,8,9,14,15,18,30,33,34,35,37,38],less:[1,2,4,5,6,7,9,10,14,25,30,33,34,35,36,37,38,39,41,42,43,44,45],lessen:[2,41,42],let:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,24,26,30,33,34,35,36,37,38,39,40,41,42,43,45],letter:[1,17,26,30,33,34],level:[0,1,2,6,7,10,25,26,27,28,29,31,33,34,36,41,42],lfloor:43,li:[9,12,33],lib:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],liblinear:[9,11,45],librari:[0,1,2,3,4,5,6,7,10,11,12,16,22,23,26,27,28,30,32,34,35,36,37,40,41,42,43,44,45],licens:[0,1,2,16,25,27,28,33,36,41,42],lie:[1,7,12,30,34,36],life:[1,2,9,13,33,39,40,41,42],lifetim:[14,38,39],like:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,22,23,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],likelihood:[1,2,6,10,33,34,38,39,40,41,42,45],lim_:30,lima:[31,33],limit:[0,1,6,7,8,9,12,13,22,26,27,28,33,34,40,44],lin_clf:9,lin_model:[1,34],lin_reg:[10,45],linalg:[1,3,6,7,9,12,14,22,26,30,33,34,35,36,37,38,39,40,42],line1:9,line2:9,line2d:[14,22,38],line3:9,line:[0,1,3,4,5,7,9,10,11,12,14,16,22,24,27,33,34,35,36,37,38,39,42,43,44,45],linear:[0,2,4,6,7,8,10,11,12,13,18,19,22,24,25,27,30,36,38,39,40,41,42,43,45],linear_model:[1,6,7,8,9,10,11,12,14,33,34,35,36,37,38,39,40,44,45],linear_regress:[7,24,36,42],linearli:[6,34],linearloc:[7,14,27,37,38],linearregress:[1,7,8,10,33,34,35,36,37,45],linearsvc:9,lineat:35,liner:[2,4,40,41,42,43],linerar:[11,45],linewidth:[1,3,5,7,9,10,11,27,36,42,44,45],link:[0,1,5,10,13,25,27,28,31,33,40,41,44,45],linlag:[6,35],linpack:[26,33],linreg:[1,33],linspac:[1,3,4,5,7,9,10,11,14,16,17,22,26,30,33,34,35,36,38,39,42,43,45],linu:5,linux:[0,1,2,16,25,27,33,41,42],liquid:[1,33],list:[0,1,2,3,4,5,10,24,25,27,28,33,34,38,41,42,44,45],listcomp:3,listedcolormap:[10,11,45],literatur:[0,2,8,15,32,36,37,41,42,43,44],littl:[2,4,10,13,40,41,42,43,44,45],live:9,ll:[1,30,33,34],lle:[1,34],lloyd:[5,15],lmb:[1,3,6,7,35,36,37,42,44],lmbd:[1,2,4,24,33,40,41,42,43],lmbd_val:[1,2,4,24,33,40,41,42,43],lmbda:[14,37,38],ln:[2,14,37,38,40,41],load:[1,2,5,7,8,10,11,27,34,37,41,42,43,44,45],load_boston:[1,34],load_breast_canc:[2,8,10,11,12,24,37,41,42,44,45],load_data:[4,5,43],load_digit:[2,4,24,40,41,42,43],load_iri:[9,10,45],loc:[1,4,7,8,9,10,11,33,36,37,43,44,45],local:[1,2,3,4,5,8,13,14,33,34,37,38,39,40,41,42,43,44],locat:[3,4,9,42,43],lock:[4,5,43,44],log10:[1,6,7,24,35,36,37,42,43,44],log:[0,1,2,3,5,6,7,8,10,11,12,14,24,26,27,28,33,34,35,36,37,38,39,40,41,42,43,45],log_:[1,33],log_clf:[11,45],logarithm:[1,6,8,26,33,35,36,37],logbook:[0,27,28],logic:[1,2,10,33,41,42,45],logist:[0,1,2,3,9,10,11,12,13,14,22,24,25,34,43,44,45],logistic_predict:[38,39],logistic_regress:[24,42],logisticregress:[8,10,11,12,37,39,40,44,45],logit:[8,37],logreg:[8,10,11,12,37,39,40,44,45],logspac:[1,2,4,6,7,24,33,35,36,37,40,41,42,43,44],longer:[3,4,9,11,15,26,28,30,33,42,43,45],loocv:[7,36,37],look:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,19,22,24,26,27,28,30,33,34,35,36,37,38,39,41,42,43,44,45],loop:[2,5,7,11,13,15,24,25,26,33,36,40,41,42,43,45],lose:[2,40,41,42],loss:[0,1,2,4,5,6,7,8,9,11,12,14,26,27,28,33,35,36,39,40,41,42,43,44,45],loss_fil:5,lossfil:5,lost:5,lot:[1,2,5,7,24,34,36,38,39,41,42,44],low:[1,7,10,11,12,27,28,33,34,36,43,45],lower:[1,2,4,7,10,11,17,24,26,34,41,42,43,45],lowercas:[26,33],lowest:[10,14,30,38,39,44,45],lr:[2,4,5,11,41,42,43,45],lrelu:[24,42,43],lstat:[1,34],lstm:5,lstm_2layer:[5,44],lstsq:[1,33,34],lt:[7,36],lu:[1,6,33,34],lubksb:26,luckili:[3,42],ludcmp:26,lux:26,lvert:[2,40,41,42],lw:[1,33],m1:[4,5,43,44],m:[1,2,3,4,6,7,9,10,11,12,13,14,22,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45],m_1:15,m_:[10,13,40,45],m_h:[1,33],m_k:15,m_l:[13,40],m_n:[1,33],m_p:[1,33],m_t:[14,38,39],ma:12,machin:[2,4,5,6,7,8,10,11,12,13,16,22,23,26,29,32,34,35,36,39,40,41,42,43,44,45],machinelearn:[1,7,18,20,21,25,27,29,31,32,33,34,37,38,39],mackai:32,made:[0,1,2,4,5,6,7,8,10,12,13,19,27,28,33,34,37,39,40,41,42,43,44,45],mae:[1,33],magic:5,magnitud:[2,7,8,14,34,35,37,38,39,40,41,42,44],mai:[0,1,2,3,4,6,7,8,9,10,12,13,14,19,22,23,24,25,26,27,28,30,34,35,36,37,38,39,40,41,42,43,44,45],mail:[29,31],main:[1,2,4,5,6,7,8,10,26,27,28,32,33,34,37,41,42,43,45],mainli:[0,1,6,7,8,10,33,34,35,36,37,45],maintain:[7,34,36,43,44],major:[2,7,10,11,14,26,33,36,37,38,39,40,41,42,43,45],make:[2,3,4,5,6,7,8,9,12,13,14,22,24,25,26,27,28,30,32,35,36,37,38,39,40,41,42,43,44],make_axes_locat:7,make_classif:[39,40],make_moon:[9,10,11,45],make_pipelin:[1,7,11,34,36,45],make_vjp:[3,14,39],makedir:[1,7,8,10,33,34,36,37,45],makeplot:[1,33],malcondit:26,malign:[2,8,10,37,41,42,44,45],mammographi:[6,35,36],manag:[0,1,3,4,16,25,27,33,42,43],mandatori:[31,33],mani:[0,1,2,4,5,6,7,8,9,10,12,14,15,22,23,24,25,26,27,28,30,32,33,34,35,36,37,38,39,41,42,43,44],manifold:12,manner:[4,43],manual:[7,34,35,37,44],map:[1,2,3,7,8,9,12,13,15,27,30,33,37,39,40,41,42,43],margin:[1,6,9,33],marit:[1,33],mariu:42,mark:[33,43],markedli:43,marker:[1,8,22,26,33,34,37],markov:[25,33],marsaglia:30,mass:[1,2,6,14,34,38,39,40,41,42],massag:[1,33],masses2016:[1,33],masses2016ol:[1,33],masses2016tre:1,masseval2016:[1,33],master:[7,20,21,27,29,31,33,37,38,39,42],mat1100:[25,33],mat1110:[25,33],mat1120:[25,33],mat:[0,25,33],match:[1,2,5,6,14,15,33,34,37,38,39,41,42],materi:[0,5,6,8,14,18,26,31,38,39,40,41,45],math:[4,8,13,14,22,24,26,30,32,33,36,37,38,39,40,42,43],mathbb:[1,5,6,7,8,9,12,13,14,15,18,19,20,26,27,30,33,34,35,36,37,38,39,40,43],mathbf:[1,6,7,8,9,14,19,20,22,26,27,33,34,35,36,37,38,39],mathcal:[2,6,7,8,14,20,27,35,36,37,38,40,41,42],matheemat:4,mathemat:[1,7,12,13,14,18,25,26,30,32,33,35,36,37,41],mathemati:33,mathrm:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],matmul:[2,3,6,24,35,40,41,42],matnat:32,matplotlib:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],matplotlibdeprecationwarn:[7,14,27,38],matric:[1,2,4,5,7,8,9,12,14,17,18,24,25,34,37,38,41,42,43,44],matrix:[0,1,3,4,5,7,8,9,11,14,16,17,18,19,20,22,23,24,27,28,30,36,43,45],matshow:[2,41,42],matter:[3,4,14,34,37,38,39,42,43],max:[1,2,3,4,5,10,11,13,14,22,24,31,33,37,38,39,40,41,42,43,45],max_depth:[1,10,11,45],max_diff1:[3,42],max_diff2:[3,42],max_diff:[3,42],max_h:43,max_it:[1,2,8,9,12,14,24,33,37,38,39,40,41,42,44],max_iter:15,max_leaf_nod:[11,45],max_pooling2d_49:43,max_pooling2d_50:43,max_queue_s:[4,5,43,44],max_sampl:[11,45],max_w:43,maxdegre:[1,7,11,34,36],maxdepth:[11,45],maxim:[2,5,6,8,9,12,35,36,37,40,41],maximum:[1,2,3,4,6,8,9,10,11,14,15,24,33,34,38,39,40,41,42,43,45],maxpolydegre:[6,7,35,36,37,44],maxpoolin:43,maxpooling2d:[4,43],mbox:[6,7,19,27,34,35,36],mccorduck:33,mcculloch:[13,39,40],md:[12,21,27,38,39],mdoel:[5,44],mean:[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,30,36,38,39,40,41,42,43,44,45],mean_absolute_error:[1,33],mean_divisor:15,mean_i:30,mean_matrix:15,mean_squared_error:[1,5,7,8,11,33,34,36,37,44],mean_squared_log_error:[1,33],mean_vector:15,mean_x:30,meaning:[1,5,8,33,37],meansquarederror:[1,33],meant:[3,4,8,11,14,37,38,39,43],measur:[1,2,3,6,7,10,12,13,15,20,27,28,30,33,34,35,36,40,41,42,43,45],mechan:[0,1,5,30,33,42,44],median:[1,33,34],medicin:[13,39,40],medium:[5,9,14,28,38,39,43,44],medv:[1,34],meet:[1,31],mehta:[1,28,33,34,35],mek4270:0,member:45,memori:[4,5,12,13,14,22,26,33,38,39,40,43],mention:[0,1,13,14,27,28,30,33,37,38,39,40],mere:[1,16,28,33,43],meshgrid:[3,6,7,9,10,11,12,24,27,34,42],messag:[6,14,38,39,43],messi:[3,42],met:[1,4,9,33,34,43],metal:[4,5,43,44],meteorolog:[0,10,45],meter:[7,34,35],method:[0,1,2,3,4,5,6,8,9,12,13,15,17,18,19,20,23,25,26,28,30,32,33,34,35,40,41,43,44],metion:[7,27],metric:[1,2,4,7,8,10,11,15,16,17,24,33,34,36,37,40,41,42,43,44,45],metropoli:[25,33],mev:[1,30,33],mgd:[14,38,39],mglearn:[25,33],mgrid:[14,38,43],mhjensen:[2,3,4,7,8,9,12,22,24,34,37,40,41,42,43,44],mi:[11,45],mia:[31,33],michael:[28,40,41,42,43],michigan:[33,34,35,36,37,38,39,40,41,42,43,44,45],microsoft:32,mid:[2,40,41,42],midel:[5,44],midnight:[17,18,19,20,21,22,23,24],midpoint:[10,45],might:[1,2,3,5,7,10,14,34,35,37,38,39,41,42,43,45],mild:[10,45],millimet:[7,34,35],million:[1,33,34,38,39],mimic:[13,39,40],min:[1,3,6,9,10,33,42,45],min_:[1,3,6,15,18,33,34,35,42],min_samples_leaf:[10,45],mind:[1,7,14,27,33,34,35,36,37,38,43],mindboard:[5,44],mine:[25,33],mini:[2,12,13,14,22,23,28,37,40,41,42],minibatch:[2,12,14,24,40,41,42,43],minibathc:[14,38,39],miniforge3:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],minim:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,22,24,27,34,35,36,38,39,40,41,43,44,45],minima:[1,2,8,14,33,37,38,39,40,41,42],minimum:[1,2,3,7,9,10,12,14,34,36,37,38,39,40,41,42,45],minmaxscal:[1,24,34,42],minor:[7,14,27,30,38,43],minst:[2,41,42],minu:[8,37],mirror:[10,43,45],misc:[7,27],misclassif:[9,10,11,45],misclassifi:[9,11,45],miser:1,mismatch:[2,41,42],miss:[1,8,11,34,44,45],mistak:5,mit:[32,43,44],mix:[2,3,33,41,42],mixtur:[14,22,38,39],mk:[10,26,45],mkdir:[1,7,8,10,33,34,36,37,45],ml:[0,1,2,11,14,26,27,28,34,37,38,39,41,42],mlab:30,mle:[6,8,37],mlp:[2,39,41,42],mlpclassifi:[2,24,39,40,41,42],mlpregressor:[1,33],mm:26,mn:[13,30,39,40],mnist:[2,12,24,28,40,41,42],mnist_784:43,mod:30,mode:[24,29,31,33,42,43],model:[3,4,6,8,9,10,11,12,14,15,16,17,19,20,22,24,25,27,30,32,34,35,36,37,38,44],model_select:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],moder:[11,45],modern:[1,7,8,25,33,36,37],modif:[3,13,14,38,39,40,42,45],modifi:[1,2,4,6,8,9,11,13,14,33,34,35,37,38,39,40,41,42,43,45],modul:[1,8,12,26,33,35,37,43,44],modular:[30,43],modulo:30,moe:[12,34],moment:[6,7,14,22,24,30,35,36,42,43],moment_correct:[24,42,43],momentum:[23,24,28,42,43,44],momentum_schedul:[24,42,43],monitor:[14,22,38,39],monochrom:43,monoton:[6,13,30,35,36,39,40],mont:[1,7,25,30,32,33,36],moor:[6,7,35],more:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,19,23,24,25,28,30,40,44],moreov:[1,4,33,43],morten:[31,33,34,35,36,37,38,39,40,41,42,43,44,45],most:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,22,25,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],mostli:[2,12,41,42],motion:[1,14,33,38,39],motiv:[2,5,41,42],move:[1,5,6,7,8,10,13,14,15,22,24,27,30,33,34,35,36,37,38,39,40,42,43,45],mpl:[1,8,33,37],mpl_toolkit:[3,7,14,27,37,38,42],mplot3d:[3,7,14,27,37,38,42],mplregressor:[2,40,41,42],mse:[0,1,5,6,7,10,11,16,17,18,20,24,27,28,33,34,35,36,37,42,44,45],mse_simpletre:[11,45],mselassopredict:[6,35],mselassotrain:[6,35],mseownridgepredict:[7,35],msepredict:[6,35],mseridgepredict:[1,6,7,35,37,44],msetrain:[6,35],msg:[1,33,34],msle:[1,33],mt:[8,13,37,39,40],mu0:30,mu1:30,mu2:30,mu:[1,7,12,14,30,33,36,38,39],mu_1:34,mu_:[7,30,34,35,36],mu_i:[7,34,35,36],mu_n:12,mu_x:30,much:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,26,27,30,33,34,35,36,38,39,40,41,42,43,44,45],multi:[1,2,4,8,24,25,33,34,37,42,43],multiclass:[2,8,37,40,41],multidimension:[12,13,33,39,40],multilay:[2,41,42],multinomi:[8,37],multipl:[3,5,6,7,8,13,14,30,34,36,37,38,39,44],multipli:[4,6,7,12,14,24,26,30,34,35,36,38,42,43],multiplum:9,multivari:[1,3,11,12,25,30,33,42,45],multivariate_norm:[12,15],multiwai:45,murphi:[12,32,33,35],must:[1,2,3,6,7,9,11,13,14,15,30,33,34,36,37,38,39,40,41,42,43,45],mut_add:[],mutabl:[],mutat:[8,37],mutual:[2,4,7,14,36,37,38,41,42,43],mx_:30,myenv:[1,2,3,4,5,7,8,9,12,14,22,24,33,34,35,37,39,40,41,42,43,44],myriad:[1,16,25,33],mz1:30,mz2:30,n1:26,n2:26,n:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],n_0:[13,30,39,40],n_:[2,3,4,9,13,30,39,40,41,42,43],n_boostrap:[7,11,36,45],n_bootstrap:[7,36],n_categori:[2,4,24,40,41,42,43],n_cluster:15,n_compon:12,n_epoch:[14,22,24,38,39,42,43],n_estim:[11,45],n_examples_to_gener:5,n_featur:[2,24,40,41,42],n_filter:[4,43],n_hidden:[3,42],n_hidden_neuron:[1,2,24,33,40,41,42],n_i:30,n_input:[1,2,4,24,34,40,41,42,43],n_instanc:[10,45],n_iter:[37,38,44],n_iter_i:[8,12,37,44],n_job:[11,45],n_k:15,n_l:[13,30,39,40],n_layer:[2,41,42],n_m:[10,45],n_neuron:[2,41,42],n_neurons_connect:[4,43],n_neurons_layer1:[2,41,42],n_neurons_layer2:[2,41,42],n_point:15,n_sampl:[7,9,10,11,15,36,39,40,45],n_split:[7,36,37],n_step:5,n_t:[3,42],n_x:[3,42],nabla:[2,14,37,38,40,41,42],nabla_:[3,14,22,37,38,39,42],nabla_w:[14,38,39],nafter:[24,42,43],nag:[14,38,39],naimi:[1,33],naiv:[8,37,43],naive_kmean:15,najafi:[31,33],nall:[1,33],name:[0,1,2,4,5,6,7,8,9,10,11,13,14,15,16,24,25,26,27,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],nameerror:[7,11,16,27,36,37,38],nan:[24,42,43],narrow:[14,38,39],nary_f:[3,14,39],nary_op_arg:[3,14,39],nary_op_kwarg:[3,14,39],nary_oper:[3,14,39],nation:[2,6,34,35,36,40,41,42,43,44,45],nativ:[25,33],natur:[0,1,2,5,9,10,13,14,27,28,30,32,33,37,38,39,40,41,42,44,45],navier:[13,39,40],nb:30,nb_:26,nbconvert:33,nd:15,ndarrai:[3,7,24,42,43],ndef:14,nderiv:[24,42,43],ne:[10,11,26,30,34,45],nearest:[2,4,7,12,40,41,42,43],nearli:[14,37,38],neat:33,neatli:[38,43],neccesari:[7,36],necess:[3,42,43],necessari:[1,2,4,5,9,15,24,33,40,41,42,43,44],necessarili:[1,5,12,30,33],necesserali:[6,35,36],necessit:43,neck:[8,37],need:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,22,23,24,26,28,30,34,35,36,37,38,39,40,41,42,43,45],neg:[1,2,4,6,7,8,11,14,26,30,33,35,36,37,38,39,40,41,42,43],neg_mean_squared_error:[7,36,37],neglect:30,neglig:30,neighbor:[4,7,12,43],neither:[5,14,38,39,43],neq:[14,15,30,37,38],nerual:[24,42],nervou:[13,39,40],nest:[3,10,13,39,40,45],nesterov:[14,38,39],net:[3,5,13,39,40,42,44],netlib:[26,33],network:[1,10,14,22,25,32,34,38,45],networkd:0,neural:[1,14,22,25,32,34,37,38],neural_network:[1,2,3,24,33,39,40,41,42],neuralnetwork:[2,40,41,42],neuralnetworksanddeeplearn:[40,41,42],neuron:[2,3,4,5,13,41,42,44],neutral:[1,33],neutron:[1,33],never:[2,4,5,7,10,30,36,40,41,42,43,44],new_box:[3,14,39],new_chang:[14,22,38,39],new_hobbit:33,new_root:[3,14,39],new_trac:[3,14,39],new_tracing_count:[4,5,43,44],new_windows_first_dim:43,new_windows_sec_dim:43,newaxi:[1,4,7,10,36,37,43,45],newli:[1,33],newton:[2,8,9,14,30,40,41],next:[1,2,3,4,5,6,7,9,10,14,15,22,23,24,33,34,35,37,38,40,41,42,43,44,45],next_guess:[14,38],next_input:[5,44],next_nod:43,nf8_grad:14,nfrom:14,ng:[2,40,41,42],ngini:[10,45],nhow:[24,42],ni:15,nice:[1,2,6,12,33,34,35,36,40,44],nielsen:[28,40,41,42,43],nimport:14,niter:[14,22,37,38,39],nitric:[1,34],nlambda:[1,6,7,35,36,37,44],nlp:32,nm:30,nm_n:[1,33],nmnm:43,nmse:[7,36],nn:[3,6,7,13,26,35,36,39,40,42],nn_model:[2,41,42],nnmin:[3,42],node:[0,2,3,4,10,11,13,24,28,39,40,41,42,43],node_constructor:3,node_index:43,nois:[1,5,6,7,9,10,11,14,16,17,20,27,33,34,35,36,37,38,44,45],noise_dimens:5,noisi:[2,7,20,27,36,40,41,42],non:[1,2,4,5,6,7,8,10,11,12,13,14,15,22,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],noncommerci:[0,28,36,42],none:[1,2,3,4,5,6,10,11,14,24,30,33,34,35,36,37,38,39,41,42,43,44,45],nonetheless:43,nonlinear:[4,7,9,10,12,13,36,39,40,43,45],nonneg:[7,10,14,36,37,38,45],nonparametr:7,nonsens:30,nonsingular:26,nonumb:[4,8,9,14,22,26,37,38,39,43],nonxla:[4,5,43,44],nor:[2,5,14,38,39,41,42,43],norm:[1,2,6,7,9,12,14,18,33,34,35,36,37,38,39,40,41,42],normal:[0,4,5,6,7,8,9,10,11,12,13,14,16,17,19,20,22,24,25,26,27,28,30,33,34,35,37,38,39,40,43,44,45],normali:[26,33],norvig:33,norwai:[0,7,27,28,33,39],notat:[1,3,6,7,14,15,22,30,33,34,35,36,38,42,43],note:[0,1,2,3,4,5,6,7,8,9,12,13,14,15,16,17,20,23,24,25,26,27,28,30,32,33,37,38,39,40,41,42,43,44,45],notebook:[0,1,2,4,10,16,25,27,28,33,36,40,41,42,43],notesexercise5week452022:33,notessep14:[20,37],notessep28:38,noth:[2,3,6,9,13,15,24,30,34,35,39,40,41,42,43],notic:[5,6,13,14,26,30,33,35,38,39,40,43],notimplementederror:[3,24,42,43],notion:[4,43],noutput:[24,42,43],nov:[0,28],novel:[4,7,11,37,43],novemb:[2,24,29,31,33,41,42,45],now:[0,1,3,5,6,7,8,9,11,12,13,15,16,17,18,23,24,25,26,27,28,30,33,34,37,40,43,44,45],nowadai:[1,2,4,10,25,33,41,42,43,45],nox:[1,34],np:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],npr:[3,42],nprint:14,npv:44,nsampl:[7,10,36,37,45],nt:[3,42],nthi:[1,33],ntrained_model:7,nu:30,nuclear:[6,34],nuclei:[1,30,33],nucleon:[1,33],nucleu:[1,33],num:5,num_allow_arg:[1,33],num_coordin:[3,42],num_equ:[24,42,43],num_hidden_neuron:[3,42],num_it:[3,42],num_iter:22,num_neuron:[3,42],num_neurons_hidden:[3,42],num_not:[24,42,43],num_output:[4,5,43,44],num_point:[3,42],num_tre:11,num_valu:[3,42],number:[0,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,23,24,26,27,28,29,31,33,35,36,37,40,41,43,44,45],numberid:[8,37],numberparamet:[4,43],numer:[1,6,7,10,11,12,13,14,18,22,25,26,32,33,34,35,36,37,38,39,40,45],numpi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,24,25,27,30,34,35,36,37,40,41,42,43,44,45],numpy_vjp:[],numpy_wrapp:3,nunmpi:[6,34],nvalu:[10,45],nx:[3,14,42],nx_test:7,nx_train:7,nx_train_mean:7,ny:[24,30,42,43],ny_pr:7,ny_train:7,ny_train_mean:7,o:[1,7,8,9,10,12,16,22,26,31,32,33,34,37,43,45],o_j:43,obei:[7,12,14,34,35,36,38],object:[1,2,3,5,7,9,11,14,24,26,33,34,37,38,39,44,45],obliqu:[6,34],observ:[1,2,4,6,7,8,9,10,11,12,13,14,15,30,35,36,37,38,39,40,41,42,43,45],obtain:[1,2,6,7,8,9,10,11,13,14,15,18,22,23,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],obviou:[6,7,12,30,34,44],obviouli:33,obvious:[1,5,6,7,22,23,26,28,33,35,36],oc:34,occas:43,occasion:43,occupi:[1,34],occur:[1,7,9,10,26,30,33,43,44,45],oct:42,octob:[21,22,23,24,29,31,33,39,43],od:[0,1],odd:[1,4,8,33,34,37,43],odenum:[3,42],odesi:[3,42],oen:1,off:[2,4,5,6,10,14,20,30,35,36,38,39,40,41,42,43,44,45],offer:[7,12,25,26,29,31,33,36],offic:[31,33],offici:[29,33],often:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,17,25,26,30,33,34,36,37,38,39,40,41,42,43,44,45],oftentim:43,ofter:[26,33],og:[24,42,43],ol:[1,14,16,17,18,19,23,28,33,34,43],old:[2,6,11,14,35,36,37,38,40,41,42,45],ols_fit:36,ols_fit_beta:36,ols_sk:7,ols_svd:7,olsbeta:[1,6,35],omega:[3,4,7,42,43],omega_0:[4,43],omiss:44,omit:[1,6,33,34,35,36],on_train_batch_begin:[4,5,43,44],onc:[2,7,10,12,14,36,37,38,39,41,42,45],one:[0,1,2,4,5,6,7,8,9,10,11,12,14,15,20,22,23,24,25,26,27,28,30,31,33,34,35,36,39,41,43,44,45],onehot:[2,24,40,41,42,43],onehot_vector:[2,40,41,42],onehotencod:[10,45],ones:[0,1,3,6,7,9,10,11,12,14,22,24,26,27,33,34,35,36,37,38,42,43,45],ones_lik:5,onl:[4,43],onli:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],onlin:[12,29],onto:[6,12,34],op_nam:[4,5,43,44],open:[0,1,2,5,7,8,10,16,25,27,29,31,33,36,37,41,42,45],oper:[1,2,4,6,7,11,12,13,14,16,25,30,33,34,35,36,38,39,40,41,42,43,44,45],operation:30,oplu:30,opmiz:[14,38,39],opportun:[1,33],oppos:[7,14,38,39],opposit:[2,6,9,34,41,42,43],opt:[0,2,6,28,33,35,41,42],optim:[0,1,3,4,5,6,7,8,10,11,12,15,16,17,18,19,20,22,23,24,27,28,35,36,45],optimis:[2,4,41,42,43],optimizer_v2:[4,43],option:[1,2,4,6,7,8,9,12,22,24,26,27,28,34,35,36,37,40,41,42,43,44],optionalxlacontext:[4,5,43,44],optmiz:[2,9,14,22,34,38,39,40,41,42],oral:33,orang:1,order:[0,1,2,3,4,6,7,8,9,10,11,12,13,16,17,23,24,26,27,28,30,33,34,35,36,37,40,41,42,43,45],ordinari:[0,1,3,4,8,12,14,16,17,18,20,22,23,25,28,36,37,38,39,43],ordinrari:36,oreilli:32,org:[1,4,5,8,12,22,25,26,32,33,37,38,39,42,44],organ:[7,8,11,26,36,37,43,45],orient:[2,6,24,30,34,35,43],origin:[1,4,6,7,9,12,13,14,26,33,34,36,38,39,40,43],original_imag:43,orthogn:[6,34],orthogon:[1,6,7,9,12,14,18,26,33,34,35,38],orthonorm:[6,34,35],os:[1,2,5,6,7,8,9,10,31,33,34,35,36,37,41,42,45],oscar:[2,41,42],oscil:[4,14,38,39,43,44],oslo:[0,1,16,25,27,28,29,31,33,34,35,36,37,38,39,40,41,42,43,44,45],osx:[0,1,16,25,27,33],other:[0,1,2,3,4,6,7,8,9,11,14,15,16,20,25,27,28,29,30,31,32,35,36,38,41,43],otherwis:[1,2,5,8,14,22,26,28,33,34,37,38,39,40,41,42],ouput:[6,8,13,35,36,37,40,41,44],our:[2,3,4,7,8,9,10,11,13,15,16,17,18,19,20,22,23,24,25,26,27,28,30,35,36,39,44,45],ourmodel:1,ourselv:[0,1,6,7,9,12,14,33,34,35,36,37,38],out1:3,out2:3,out:[1,2,3,5,6,7,8,9,10,11,12,13,14,17,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44],out_deriv:[24,42],out_fil:[10,45],out_h:43,out_w:43,outcom:[1,8,10,11,13,30,34,37,40,43,45],outdoor:[10,45],outer:[7,13,14,40,41,43],outfil:5,outgrad:[],outlier:[1,9,33,34],outlin:[7,11,12,36,43,45],outlook:[10,45],outperform:11,output:[0,1,2,4,5,6,7,8,9,10,11,13,14,17,24,26,27,28,30,33,34,35,36,37,38,39,40,43,45],output_bia:[2,24,40,41,42],output_bias_gradi:[2,40,41,42],output_func:[24,42,43],output_grad_tr:43,output_lay:43,output_nod:[24,42],output_shap:[5,43],output_weight:[2,24,40,41,42],output_weights_gradi:[2,40,41,42],outputlay:43,outputlayer1:[13,39,40],outputlayer2:[13,39,40],outsid:[5,43,44],over1:[14,38,39],over:[1,2,4,5,6,7,10,11,13,14,22,26,27,33,34,35,36,37,38,39,40,41,42,43,45],overal:[2,11,40,41,42,43,45],overcast:[10,45],overcom:[13,14,38,39,40],overdetermin:[1,33],overfit:[1,2,4,7,10,11,14,22,24,36,38,39,40,41,42,43,45],overflow:[2,6,35,36,40,41,42,43],overflowerror:[24,42],overhead:[13,40,43],overlap:[4,8,9,10,37,43,44,45],overlin:[1,6,7,10,11,12,15,26,33,34,35,36,45],overst:[1,33],overtrain:[5,44],overview:[4,37],overwritten:[24,42,43],own:[0,5,6,7,9,13,14,22,23,24,25,26,27,35,36,38,39,40,41,42,44],owner:[1,34],ownmsepredict:1,ownmsetrain:1,ownridgebeta:[1,7,35],ownypredictridg:1,ownytilderidg:1,oxid:[1,34],p0:[3,42],p1:[3,42],p:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,18,24,26,30,33,34,35,36,37,38,40,41,42,43,44,45],p_1:43,p_2:43,p_:[3,5,9,10,42,45],p_hidden:[3,42],p_i:[6,30,35,36],p_j:30,p_n:30,p_output:[3,42],p_x:30,pack:[1,33],packag:[0,1,2,3,4,5,6,7,8,9,12,14,16,22,23,24,25,27,28,30,34,35,37,38,39,40,41,42,43,44],pad:[4,5],pad_imag:43,padded_height:43,padded_imag:43,padded_img:43,padded_width:43,page:[1,25,33],pai:[1,2,10,14,24,38,39,41,42,43,45],paid:0,pair:[1,3,4,10,25,30,33,34,42,43,45],pamilla:33,panda:[0,1,5,6,7,8,10,12,16,25,27,35,36,37,44,45],panel:33,paper:[2,41,42],paradigm:[1,33],parallel:[4,5,11,14,22,25,26,33,38,39,43,44],param:[3,5,42,43,44],param_distribut:[37,44],param_grid:[37,44],paramat:[3,42],paramet:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,18,19,20,22,23,24,27,28,30,35,36,40,41,42,43,45],parameter:[1,7,11,27,33,34,45],parametr:[1,7,16,17,33,34,36],paramt:[4,6,35,36,43],parent:3,parent_argnum:3,parser:[1,33,43],part:[1,2,4,6,7,11,18,19,22,23,24,26,29,30,31,33,35,36,39,41,42,45],partial:[1,2,6,7,8,9,11,12,13,14,17,30,33,34,35,36,37,38,40,41,43,45],particip:[25,29,31,33],particl:[1,5,14,30,33,38,39,44],particular:[1,2,3,4,6,7,10,11,12,13,14,17,27,30,32,33,34,35,36,37,38,39,40,41,42,43,45],particularli:[6,7,9,12,14,22,30,34,36,37,38,39,43],partit:[2,5,10,40,41,42,43,45],partli:[7,33],pass:[3,4,13,15,24,37,43],password:[0,27,28],past:[11,30,44,45],patch:[7,30,36,43],path:[1,5,7,8,10,16,25,33,34,36,37,43,45],pathcollect:22,patient:[8,37],patter:[5,44],pattern:[0,1,4,5,13,29,32,33,39,40,43,44],pauli:[1,33],pavisj:43,pc:[12,25],pca:[1,8,25,33,34,37,44],pcolor:7,pcolormesh:7,pd:[1,5,6,7,8,10,12,33,34,35,36,37,44,45],pde:[0,3,42],pdf:[0,1,4,5,6,7,10,20,21,27,28,32,33,35,36,37,38,42,44,45],pedagog:[1,33,34],peel:44,penal:[7,34,35,36],penalti:[7,14,27,34,35,36,37,38],penros:[6,7,35],pentagon:[14,37,38],peopl:[1,2,10,14,25,34,38,39,40,41,42,44,45],per:[1,2,7,29,31,33,34,36,41,42,43,45],perc_print:[24,42,43],percentag:[1,11,12,24,31,34,42,43,45],perceptron:[1,2,8,33,37,42],peregrin:33,perfect:[1,2,14,22,33,38,39,40,41,42,43,44],perfectli:[5,7,36],perform:[0,1,3,4,5,6,7,9,11,12,13,14,15,16,17,18,20,22,24,25,26,27,28,30,33,34,35,36,37,38,39,43,44],performac:[5,44],perhap:[0,1,6,14,33,34,35,37,38],perimet:[2,10,41,42,45],period:[2,5,30,40,41,42],permut:[12,43],persist:[14,38,39],person:[6,7,8,29,31,33,34,35,36,37],perspect:[0,32],pertin:[13,28,40,41,43],petal:[9,10,45],peter:32,phantom:30,phase:[7,13,39,40],phd:42,phenomena:30,phi:9,phi_k:9,philosophi:[14,38],phone:[31,33],photo:5,php:28,phrase:[1,33,45],physic:[0,1,2,5,8,13,14,28,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],physicist:28,pi:[0,3,4,6,7,8,10,13,14,30,35,36,37,38,39,40,42,43],pick:[2,10,11,12,14,15,38,39,40,41,42,45],pickl:[2,41,42],pictur:[1,33,43],pie:[25,33],piec:[12,15],pillow:[0,1,16,25,27,33],pinv:[6,7,14,22,34,35,36,38,39,40],pip3:[0,1,2,16,27,33,41,42],pip:[0,1,2,16,25,27,33,41,42],pipelin:[1,7,9,11,34,36,43,45],pippin:33,pit:5,pitfal:[7,34,35],pitt:[13,39,40],pixel:[2,4,5,40,41,42,43],pixel_height:[2,4,40,41,42,43],pixel_width:[2,4,40,41,42,43],place:[0,1,5,7,9,14,26,27,33,36,37,38,43],placement:43,plai:[1,4,5,6,7,9,12,25,33,34,35,36,37,43,45],plain:[9,11,13,14,15,22,23,28,37,38,40,45],plan:[7,10,31,32,33],plane:[9,10,45],plateau:[6,35],platform:[4,5,25,33,43,44],plausibl:[13,39,40],pleas:[0,7,8,12,14,27,28,31,33,34,37,38,39,43,44],plenti:[2,41,42],plethora:[4,13,39,40,43],plot:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,22,25,26,27,28,30,33,34,35,38,39,40,41,42,43,44,45],plot_confusion_matrix:[8,11,37,44,45],plot_convolution_result:43,plot_count:7,plot_cumulative_gain:[8,11,37,44,45],plot_data:[2,41,42],plot_dataset:9,plot_decision_boundari:[10,11],plot_import:11,plot_max:[5,44],plot_min:[5,44],plot_model:5,plot_numb:5,plot_predict:9,plot_regression_predict:[10,45],plot_result:5,plot_roc:[8,11,37,44,45],plot_surfac:[3,7,14,27,38,42],plot_train:10,plot_tre:[10,11,45],plqvvvaa0qudcjd5baw2dxe6of2tius3v3:[],plt:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],plu:[1,4,6,8,33,34,35,37,43],pm:[9,36],pmatrix:[3,42],pml:32,pn:[4,43],png:[1,5,7,8,10,33,34,36,37,45],point:[0,1,2,3,4,6,7,8,9,10,11,12,14,15,16,17,18,20,22,23,24,26,27,30,31,33,34,36,37,38,39,40,41,42,43,45],point_1:5,point_2:5,poisson:[25,30,33],poli:[7,9,36,37],poll:45,poly100_kernel_svm_clf:9,poly3:1,poly3_plot:1,poly3dcollect:[14,38],poly_degre:[24,42],poly_featur:[9,10,45],poly_features10:[10,45],poly_fit10:[10,45],poly_fit:[10,45],poly_kernel_svm_clf:9,polydegre:[1,6,7,11,34,35,36,45],polygon:[14,37,38],polym:[13,39,40],polymi:27,polynomi:[1,6,7,8,9,10,11,12,16,17,18,20,22,23,27,28,33,34,36,37,45],polynomial_featur:[7,36],polynomial_svm_clf:9,polynomialfeatur:[1,7,9,10,34,36,37,45],polytrop:[1,7,33,36],pool:4,pool_siz:[4,43],poolin:43,pooling2dlay:43,pooling_act:43,pooling_lay:43,poor:[2,14,22,37,38,39,41,42],poorli:[1,34],pop:[],popul:[1,6,33,34,35,36],popular:[0,1,2,4,7,8,9,10,12,13,16,25,26,27,30,33,34,37,39,40,41,42,43,45],popularli:[1,33],portabl:11,portion:[12,14,22,38,39],pose:[1,5,6,7,12,30,33,36,43],posit:[1,2,3,4,6,8,9,11,12,14,15,18,24,26,30,33,34,35,36,37,38,39,40,41,42,43,45],possibl:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,43,44],possible_gradient_typ:[4,5,43,44],possible_gradient_types_non:[4,5,43,44],possibletapegradienttyp:[4,5,43,44],posterior:[6,35,36],postpon:[1,33,34],postscript:[0,27,28],postul:[6,35,36],potenti:[0,1,4,6,7,13,14,33,34,35,36,38,39,40,43],pott:[13,39,40],power:[1,2,6,7,9,10,13,14,33,34,36,38,39,40,41,42,44,45],pp:[6,7,19,35,36,37],ppv:44,practic:[0,1,6,7,8,9,27,28,30,34,35,36,37,43],practition:[1,2,4,33,41,42,43],pre:33,preced:[2,12,13,30,39,40,41,42],preceed:[5,24,42,44],preceq:9,precis:[0,1,3,6,12,14,26,27,28,30,33,34,35,36,38,39,42,44],pred:[7,36,38,39],pred_format:43,pred_train:[24,42,43],pred_val:[24,42,43],predicit:1,prediciton:[24,42],predict:[0,1,2,6,7,8,9,10,11,16,17,24,25,27,32,33,34,35,36,37,39,40,41,42,43,45],predict_prob:[2,40,41,42],predict_proba:[8,11,37,39,40,44,45],predictor:[1,6,7,8,10,11,12,33,34,35,45],prefer:[0,1,2,7,9,10,12,14,16,25,27,28,33,41,42,45],prepar:[0,1,7,26,27,28,33,34,43],preprocess:[1,5,7,8,9,10,11,12,24,35,36,37,42,44,45],prerequisit:1,prescript:[0,27,28],presenc:[14,38,39],present:[0,1,6,7,8,10,13,14,22,24,26,27,28,30,33,34,35,38,39,40,42,43,45],preserv:[4,12,26,43,44],press:[14,32,37,38],presum:43,pretrain:[2,5,41,42],pretti:[0,1,5,9,10,16,25,27,33,43,44],prev_a:43,prev_centroid:15,prev_g:[],prev_g_flag:[],prev_lay:43,prev_nod:43,prevent:[14,30,38,39,44],previou:[0,1,2,3,4,5,6,7,9,11,12,13,14,22,23,24,26,27,28,30,34,37,38,39,40,41,42,43,44,45],previous:[3,4,10,11,30,42,43,45],previous_nod:43,price:[1,5,10,14,34,38,39,44,45],primal:9,primari:[1,8,33,37,43],prime:30,primit:3,princip:[0,1,6,8,25,33,34,37,44],principl:[1,7,8,9,15,33,36,37],print:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,22,24,26,30,33,34,35,36,37,38,39,40,41,42,43,44],print_funct:[9,10],print_length:[24,42,43],printout:[1,33],prior:[1,6,7,33,34,35,36],privat:[1,33],pro:28,prob:[2,30,41,42],probabilist:[1,32,33,34],probabl:[1,2,4,5,7,8,11,14,24,25,33,34,37,38,39,40,41,42,43,44,45],problem:[1,4,5,6,7,8,9,10,11,12,13,17,18,24,25,26,27,28,30,36,43],probml:32,proce:[1,6,7,8,9,10,11,12,14,26,33,34,35,36,38,45],procedur:[3,5,6,7,9,11,12,14,22,27,34,35,36,37,38,39,42,43],proceed:[26,43],process:[0,1,3,5,7,10,11,13,14,16,22,25,26,27,30,32,33,36,37,38,39,44,45],prod:32,prod_:[2,6,8,35,36,37,40,41],produc:[0,1,4,5,6,7,10,11,12,13,14,25,26,27,30,33,34,35,36,38,39,40,43,44,45],product:[1,2,4,6,7,8,9,13,14,17,22,25,26,33,34,35,36,37,40,41,42,43],profess:[1,33],profil:[4,5,43,44],profile_util:[4,5,43,44],progag:28,program:[1,2,5,6,7,9,13,15,16,17,22,25,26,29,30,31,33,34,36,39,40,41,43,44],programm:26,progress:[2,5,15,24,38,41,42,43],prohibit:[7,36],project1:[7,27],project:[1,2,3,4,6,12,14,18,19,20,21,22,23,24,25,29,31,34,35,36,38,39,40,41,42,43,44,45],project_root_dir:[1,7,8,10,33,34,36,37,45],promin:[13,39,40],promis:9,promot:[31,33,43],prone:[10,45],pronounc:[14,25,33,38,39],proof:[1,12,13,14,33,36,37,38,40],prop:[24,42,43],propag:[3,4,14,24,28,38,39,43],proper:[0,1,3,7,8,27,33,36,42,43],properli:[0,2,7,9,11,14,22,27,28,38,39,41,42,45],properti:[1,2,4,13,14,17,18,26,33,36,38,39,40,41,43,44],proport:[1,2,6,10,12,14,17,30,33,34,38,39,40,41,42,44,45],propos:[0,2,5,7,11,24,27,28,33,41,42],propto:[6,14,35,36,37,38,39],proton:[1,33],prove:[4,14,37,38,39,43],provid:[0,1,2,4,5,6,7,9,10,11,13,14,16,22,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],proxi:[2,14,22,38,39,41,42],prune:10,pseudo:[26,30,38],pseudocod:[0,27,28],pseudoinv:[6,35],pseudoinvers:[6,7,35],pseudorandom:[7,30,36],psycholog:[1,33],pt:[14,38],ptratio:34,publish:0,punish:[1,2,24,33,40,41,42],pure:[4,10,30,43,45],purest:[10,45],puriti:[10,45],purpos:[1,4,11,13,15,33,34,39,40,43,45],push:[],put:[2,33,41,42],py:[1,2,3,4,5,6,7,8,9,12,14,22,24,27,33,34,35,36,37,38,39,40,41,42,43,44],pycod:33,pydata:25,pydot:[10,45],pyhton2:33,pylab:[1,8,33,37],pylint:[4,5,43,44],pypi:25,pyplot:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],pythagora:[6,35,36],python2:[0,1,16,27,33],python3:[0,1,2,3,4,5,7,8,9,12,14,16,22,24,25,27,33,34,35,37,39,40,41,42,43,44],python:[0,2,3,4,5,6,7,9,12,13,14,15,17,22,23,27,28,30,34,35,38,39,40,41,42,43,44],pytorch:[0,1,25,27,28,33,43],pywrap_tf:[4,5,43,44],q:[6,7,9,12,24,30,34,36,42],qp:9,qquad:[3,12,14,26,38,39,42],qr:[6,7,26,34],quad:[2,14,26,38,40,41,42,43],quadrat:[1,9,10,14,16,17,33,38,43,45],qualit:[0,5,10,27,28,30,45],qualiti:[1,10,16,17,25,33,34,45],quantifi:[2,41,42],quantil:11,quantit:[0,1,7,10,27,28,33,36,45],quantiti:[1,3,6,7,8,10,11,12,13,15,17,26,30,33,34,35,36,37,40,42,43,45],quantum:[0,5,13,32,33,39,40,44],quartil:[1,34],quench:6,queri:[10,45],question:[1,6,7,10,12,13,14,27,31,33,34,35,36,38,39,40],qugan:5,quick:[5,30],quick_execut:[4,5,43,44],quickest:43,quickli:[2,4,10,12,14,24,37,38,41,42,43,45],quit:[2,6,7,10,11,13,34,36,39,40,41,42,45],quot:[5,33],r2:[0,1,6,7,28,33,34,35,37,44],r2_score:[1,33,34],r2score:[1,33],r:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,24,25,26,27,30,34,35,36,37,38,39,40,42,43,45],r_1:[10,45],r_2:[10,45],r_j:[10,45],r_m:[10,45],rad:[1,34],radial:[1,9,13,34,39,40],radioact:30,radiu:[1,2,10,34,41,42,45],rag:3,rain:[10,45],rais:[1,3,14,24,33,35,39,42,43],ramp:[2,41,42],ran0:30,ran1:30,ran2:30,ran3:30,rand:[1,5,6,7,10,11,14,16,17,22,24,26,33,34,35,36,37,38,39,42,43,44,45],randint:[7,10,14,22,36,38,39,45],randn:[1,2,3,6,7,10,12,14,16,17,22,24,33,34,35,36,37,38,39,40,41,42,43,44,45],random:[0,1,2,3,4,5,6,7,9,10,14,15,16,17,22,24,25,26,27,33,34,35,36,38,39,40,41,42,43],random_forest_model:[11,45],random_index:[14,22,38,39],random_indic:[2,4,40,41,42,43],random_st:[1,8,9,10,11,12,34,37,39,40,44,45],randomforestclassifi:[11,45],randomizedsearchcv:[37,44],randomli:[2,7,10,14,15,22,24,36,37,38,39,40,41,42,43,45],randuniform:[37,44],rang:[1,2,3,4,5,6,7,8,10,11,12,13,14,15,22,24,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],rangl:[1,7,12,30,33,34],rangle_x:30,rank:[6,34,43],rankdir:5,raphson:[2,9,14,40,41],rapid:43,rapidli:[1,33,43],rare:[2,14,33,36,37,38,39,40,41,42],rate:[1,2,3,4,5,9,10,11,13,14,23,28,34,37,40,41,43,44,45],rather:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,26,30,33,34,35,36,37,38,39,40,41,42,43,44,45],ratio:[5,8,10,11,12,37,45],rational:[1,33],ravel:[6,7,8,9,10,11,12,14,24,26,34,36,37,38,42,44,45],raw:[4,43],raw_df:34,rbf:[9,12,13,39,40],rbf_kernel_svm_clf:9,rbf_pca:12,rc:[1,30,34],rcond:[1,33,34],rcparam:[1,2,4,8,9,10,11,30,33,37,40,41,42,43,45],re:[3,5,14,37,38,42,43],reach:[2,5,6,7,8,10,11,12,13,14,15,24,35,36,37,38,39,40,41,42,43,44,45],read:[0,1,3,4,5,6,7,8,9,12,13,17,22,23,24,26,27,28,29,30,32,35,37,38,39,40,41,42,43,44],read_csv:[1,7,8,10,33,34,36,37,45],read_fwf:[1,33],readabl:43,reader:[1,7,26,30,33,34,35,43],readi:[1,2,6,7,9,11,12,13,24,26,27,33,35,36,40,41,42,43,45],readili:[2,40,41,42],readthedoc:25,real:[1,2,3,5,8,11,12,13,14,24,26,34,36,37,39,40,41,42,43,44],real_loss:5,real_output:5,realist:9,realiti:30,realiz:[2,13,39,40,41,42],realli:[1,2,33,41,42],rearrang:[14,38,39,43],reason:[1,2,4,5,11,14,32,33,37,38,39,41,42,43,44,45],reassign:[2,41,42],reat:[24,42],reber:[24,42],recal:[6,7,10,11,12,13,26,30,33,34,35,36,37,38,40,44,45],recast:[4,43],receiv:[2,4,11,13,30,39,40,41,42,43,44,45],receiver_operating_characterist:44,recent:[1,3,4,5,7,10,11,14,16,22,27,32,33,35,36,37,38,39,42,43,44,45],recept:[4,13,39,40,43],receptive_field:[4,43],recip:[0,1,7,8,26,27,28,33,34,37],reciproc:[6,35],recogn:[1,5,6,11,33,35,36,44,45],recognit:[1,2,4,13,29,32,33,39,40,41,42,43],recommend:[0,1,3,4,5,6,7,9,14,16,19,22,23,25,26,27,28,32,35,36,40,41,42,43,44],reconsid:10,reconstruct:12,record:[0,11,21,27,28,29,31,33,38,39,45],rectangl:[10,14,37,38,45],rectangular:[6,34,43],rectifi:[2,4,13,39,40,41,42,43],recur:[1,25,33],recurr:[0,1,2,25,33,41,42],recurs:[10,25,26,33],red:[1,4,5,7,9,10,22,36,38,43,44,45],redefin:[1,11,33,34,45],redefinit:35,reduc:[2,4,6,7,10,11,12,14,22,33,35,36,37,38,39,40,41,42,43,45],reduct:[1,11,12,25,30,33,34,45],refer:[1,2,3,4,6,7,8,12,13,14,15,21,26,27,28,32,33,34,36,37,38,39,40,41,42,43,44],referenc:[3,42],refin:[13,39,40],refit:[7,36],reflect:[0,1,2,5,6,27,28,30,33,41,42,44],refrain:43,refresh:[25,33],refreshprogrammingskil:33,reg:[11,12],regard:[2,10,14,38,41,42,43,45],regardless:[13,39,40],region:[0,4,5,7,10,13,27,39,40,43,44,45],regist:[7,27,30],reglasso:[6,35],regr_1:[1,10,45],regr_2:[1,10,45],regr_3:[1,10,45],regress:[0,2,9,12,13,16,17,22,23,24,25,26,41,42,43,44],regressor:[1,8,11,24,33,37,42],regridg:[1,6,7,35,36,37,44],regular:[1,4,5,6,7,8,10,14,18,24,28,31,33,34,35,36,38,39,45],regularis:7,regularizi:43,reilli:[1,16,32,33],reinforc:[1,9,25,33,42],reiniti:[24,42],reiter:[2,41,42],reject:8,rel:[1,5,7,8,10,13,14,30,33,34,36,37,38,39,40,43,44,45],relat:[0,1,2,4,5,6,12,14,15,26,30,33,35,36,38,39,41,42,43,44],relationship:[1,5,10,33,43,44,45],relativeerror:[1,33,34],releas:[0,2,4,5,7,14,25,27,28,33,36,38,41,42,43,44],relev:[0,1,2,6,8,12,16,22,23,24,25,27,28,30,33,41,42,43,44],reli:[1,7,9,33],reliabilti:[0,27,28],reliabl:[8,30,37],relu:[0,4,5,24,28,40,43,44],remain:[2,3,5,7,13,26,30,34,35,36,37,39,40,41,42,43,44],remaind:30,reman:[3,42],remark:[2,41,42],rememb:[0,1,9,14,26,27,28,33,38,39,43,44],remind:[1,6,12,14,26,30,34,35,36,43],remov:[1,5,6,7,33,34,35,36,43,44],render:[1,33,34],reorder:[6,8,34,35,37],reorgan:[1,33],repeat:[1,2,4,5,6,7,10,11,12,14,15,22,23,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],repeated:33,repeatedli:[1,7,11,14,36,38,39,45],repet:[4,43],repetit:[7,33,34,36,37,38,44],rephras:[14,37,38],replac:[0,1,2,4,5,6,7,11,13,15,16,17,22,23,25,27,28,33,34,35,36,37,40,41,42,43,44,45],replica:[7,36],repo:[0,27,28],report:[21,33,38,39],reportexampl:[21,27],reportsampl:21,repositori:[0,1,5,27,28,33,34,43],repres:[1,2,3,4,5,6,7,8,9,10,11,13,14,28,30,33,34,35,36,37,38,39,43,44,45],represent:[1,2,4,7,30,33,36,37,40,41,42,43],representd:[4,43],reproduc:[1,6,7,10,13,16,17,24,25,27,30,33,34,40,42,45],repuls:[1,33],request:[1,14,22,33,38,39],requir:[0,1,2,4,5,6,7,9,10,12,13,14,18,26,33,34,35,36,37,38,39,40,41,43,44,45],rerun:[24,42],res1:[3,42],res2:[3,42],res3:[3,42],res_analyt:[3,42],res_analytical1:[3,42],res_analytical2:[3,42],res_analytical3:[3,42],resaml:[7,27],resampl:[1,8,11,20,24,25,33,34,37,38,42,43,44,45],rescal:[1,12,13,34,39,40],rescu:[6,35,36],reseach:[7,27],research:[0,1,5,14,22,25,32,33,38,39],resembl:[7,30,36],reserv:[2,6,7,30,35,36,40,41,42],reservoir:44,reset:[24,42,43],reset_weight:[24,42,43],reset_weights_independ:43,reshap:[1,2,3,4,5,7,9,10,11,16,17,24,26,33,34,36,40,41,42,43,44,45],residenti:[1,34],residu:[1,6,14,33,38],resiz:[6,34],resourc:[33,43],resourcewarn:[],respect:[0,1,2,3,4,6,7,8,9,11,12,13,14,15,17,18,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],respond:[13,39,40],respons:[1,8,10,13,33,34,37,39,40,43,45],rest:[1,6,34],restat:[1,13,33,40],restor:5,restored_discrimin:5,restored_gener:5,restrict:[1,4,10,13,33,39,40,43,45],result:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,23,24,25,26,27,28,30,33,36,37,38,39,40,41,42,43,45],result_ndim:3,retail:[1,34],retain:[6,7,34,36,37,43],rethink:36,retriev:44,return_data:15,return_sequ:[5,44],return_x_i:[10,45],reus:[2,4,7,19,20,21,27,28,41,42,43],reusabl:43,reveal:[1,13,33,39,40],revers:[2,24,26,41,42],reversed_lay:43,review:[25,26],revisit:[15,40],revolut:33,reward:[1,5,33],rewrit:[1,4,6,7,8,9,11,12,13,14,20,26,27,30,35,37,38,39,40,43,45],rewritten:[3,7,9,11,30,36,42,45],rewrot:[14,37,38],rf:[11,45],rfloor:43,rgb:[4,43],rgoj5yh7evk:25,rh:[7,36],rho2:[24,42,43],rho:[1,11,14,22,24,33,38,39,42,43],rho_1:11,rho_2:11,rho_m:11,rich:[1,33],ride:[10,45],rideclass:[10,45],ridedata:[10,45],ridg:[0,8,12,14,22,23,25,28,33,44],ridge_fit:36,ridge_fit_beta:36,ridge_sk:7,ridgebeta:[6,35],ridgecv:[37,44],right:[1,2,3,4,6,7,8,9,10,11,13,14,15,17,18,20,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],right_sid:[3,42],rightarrow:[1,2,6,7,9,12,13,14,30,33,34,36,37,38,39,40,41,42],rigor:[1,33],ring:7,rise:[1,33],risk:[1,14,16,17,33,37,38,39],rival:5,river:[1,34],rm:[1,24,30,34,42,43],rms_prop:[24,42,43],rmse:[1,34],rmsporp:[14,22,38,39],rmsprop:[2,4,5,14,23,28,41,42,43,44],rnd_clf:[11,45],rng:30,rnn1:[5,44],rnn2:[5,44],rnn:[5,13,39,40],rnn_2layer:[5,44],rnn_input:[5,44],rnn_output:[5,44],rnn_train:[5,44],rntrick1:30,rntrick2:30,rntrick3:30,rntrick4:30,ro:[1,14,22,33,37,38,39],robert:[19,27,32],robust:[1,33],robustscal:[1,34],roc:[0,8,11,45],rod:0,role:[1,3,6,7,9,25,33,34,35,36,37,42,43,45],roll:7,room:[1,31,33,34],root:[1,6,10,14,30,33,34,35,37,38,39,45],rot90:43,rot:33,rotat:[2,9,10,11,41,42,43,45],rotation_matrix:10,roughli:[2,4,41,42,43],round:[1,8,10,14,24,34,37,38,39,42,43,44,45],routin:[14,26,33,37,38],row:[1,2,3,6,7,8,10,12,24,26,33,34,35,36,37,40,41,42,43,45],rr:[6,34],rrr:[6,34],rug:[14,37,38,39],rule:[1,2,6,7,14,27,33,34,35,36,38,39,41,42],run:[0,1,2,3,4,5,6,7,9,10,12,14,16,22,24,25,27,28,33,34,35,36,37,38,39,41,42,44,45],runtim:[2,7,15,41,42],runtimewarn:[2,7,36,40,41,42],russel:33,rust:[1,16,25,26,33],rv_frozen:[37,44],rvert:[2,40,41,42],rvert_2:[2,40,41,42],s:[0,1,2,3,4,5,6,7,8,10,12,13,14,17,18,19,24,25,26,27,28,30,33,34,35,40,41,42,43,44],s_1:[7,43],s_2:43,s_:[4,7,43],s_i:[7,8,37],s_j:[7,43],s_k:7,saddl:[14,37,38,39],sadli:43,sai:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,26,27,30,33,34,35,36,37,40,41,42,43,44,45],said:[7,10,14,37,38,45],sake:[1,6,8,12,33,34,35,37],sale:[1,33],sam:33,same:[0,1,2,3,4,5,6,7,9,10,12,13,15,18,24,26,27,30,33,34,35,37,40,41,42,44,45],samm:[11,45],sampl:[1,2,3,4,5,6,7,8,9,10,11,14,15,16,17,20,22,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],sample_vari:15,sample_weight:[4,5,43,44],sampleexptvari:30,samwis:33,sastri:12,satisfactori:[1,33],satisfi:[2,3,4,7,9,14,18,26,30,36,37,38,40,41,42,43],satur:[2,7,36,41,42],save:[1,5,7,8,10,14,22,33,34,36,37,38,39,43,44,45],save_fig:[1,7,8,10,11,33,34,36,37,45],savefig:[1,5,7,8,10,30,33,34,36,37,45],savetxt:[5,44],saw:[6,34],scalabl:11,scalar:[3,6,7,11,14,34,35,36,39,42],scale:[0,1,2,4,6,7,8,9,10,11,12,13,14,16,17,18,22,24,25,26,27,28,31,33,35,37,38,39,40,41,42,44,45],scale_mean:5,scale_std:5,scaler:[1,8,9,10,11,12,24,34,36,42,45],scan:[6,8,35,36,37],scari:[6,35,36],scatter:[1,2,7,8,9,10,15,22,33,34,35,36,37,41,42,45],scenario:[7,14,37,38,39],schedul:[14,31,38,39],scheduler_arg:[24,42],scheduler_bia:43,scheduler_weight:43,schedulers_bia:[24,42,43],schedulers_weight:[24,42,43],scheme:[0,2,14,37,38,39,41],schmidhub:44,schrage:30,scienc:[1,2,11,13,14,25,29,30,31,32,34,37,38,39,40,41,42,43],scientif:[0,1,16,25,27,28,33,38,39,43],scientist:[1,33],scikit:[0,4,6,7,8,9,10,11,14,22,25,26,27,28,29,32,39,43,44],scikit_learn:[1,17],scikitlearn:33,scikitplot:[8,11,37,44,45],scipi:[0,1,4,6,7,14,16,25,26,27,33,34,35,36,37,38,43,44],scl:7,score:[0,1,2,4,7,8,10,11,12,16,17,23,24,27,28,31,33,34,36,37,38,39,40,41,42,43,45],scores_kfold:[7,36,37],scratch:[2,14,39,40,41,42],sdg:[14,22,38,39],seaborn:[1,2,4,7,8,22,24,28,33,34,37,40,41,42,43,44],seamless:[0,1,16,25,27,33,43],seamlessli:[24,42,43],search:[1,2,4,6,10,14,33,35,38,39,40,41,42,43,45],sec:7,second:[1,3,4,5,6,7,8,9,10,12,13,15,16,17,24,25,26,27,28,30,31,33,34,36,37,40,42,43,44,45],second_correct:[24,42,43],second_mo:[22,38,39],second_term:[22,38,39],secondeigvector:12,secondli:[13,40,41],section:[5,12,18,26,30,34,35,37,38,39,43,44],sector:[1,33],see:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,16,17,18,19,20,22,24,25,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],seed:[1,2,3,4,5,6,7,9,10,12,14,15,16,17,22,24,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],seed_imag:5,seek:[2,3,9,41,42,43],seem:[2,4,5,38,39,40,41,42,43],seemingli:[1,33],seen:[1,2,4,6,11,13,18,30,33,40,41,42,43,45],segment:[14,24,37,38,42,43],seismic:7,seldomli:[1,33],select:[0,2,6,7,9,10,11,12,18,27,28,29,30,31,32,33,34,35,36,40,41,42,43,44,45],self:[2,3,4,5,6,22,24,34,35,40,41,42,43,44],sell:[5,44],semest:[8,29,37,44,45],semi:[9,14,37,38],semilogx:7,send:[6,13,14,31,33,38,39,40,43],senior:[29,31],sens:[1,5,7,9,27,33,36,43],sensibl:[4,43],sensit:[1,6,7,10,14,33,34,35,36,39,44,45],sent:[3,36,42],sentdex:[],sentenc:[5,13,39,40,44],sep:[34,36],separ:[0,1,2,3,5,7,9,10,13,15,16,25,27,30,33,36,39,40,41,42,44],seper:43,septemb:[17,18,19,20,21,27,33,34,38],sequenc:[3,4,5,8,10,11,13,14,25,26,30,33,37,38,39,40,43,44,45],sequenti:[2,4,5,11,13,30,39,40,41,42,43,44,45],sequential_49:43,seri:[1,2,3,4,5,6,7,11,12,13,14,26,33,34,35,36,37,38,39,40,41,42,43,44,45],serif:[1,8,30,33,37],serv:[1,2,3,4,6,8,14,22,27,32,33,34,35,36,37,38,39,41,42,43,45],servic:[0,27,28],session:[2,21,27,29,31,33,36,37,38,39,40,41,42,43,45],set:[2,5,6,7,8,9,11,12,14,15,17,18,22,25,26,27,28,30,31,35,36,38,39,44],set_major_formatt:[7,27],set_major_loc:[7,27],set_tick:[2,9,41,42],set_ticklabel:[2,41,42],set_titl:[1,2,3,4,8,13,15,24,33,37,39,40,41,42,43,44],set_xlabel:[1,2,3,4,8,13,24,33,37,39,40,41,42,43,44],set_xlim:[8,13,37,39,40],set_xticklabel:[2,41,42],set_ylabel:[1,2,3,4,8,24,33,37,40,41,42,43,44],set_ylim:[8,13,37,39,40],set_ytick:[8,37,44],set_yticklabel:[2,7,41,42],set_zlim:[7,27],seth:5,setminu:[7,37],setosa:[9,10],setosa_or_versicolor:9,setp:[7,36],setup:[2,5,7,9,22,24,25,28,33,34,40,41,43],sever:[1,4,6,7,8,9,10,12,13,14,22,25,26,28,30,33,34,35,36,37,38,39,40,43,45],sgd:[2,4,22,23,28,37,41,42,43],sgd_clf:9,sgdclassifi:9,sgdreg:[14,37,38],sgdregressor:[14,37,38],sgn:[6,34,35],shall:43,shallow:[14,38,39],shape:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,24,26,33,34,35,36,37,38,40,41,42,43,44,45],shape_bas:[],share:[2,4,24,33,41,42,43,44],she:[8,37],shell:22,shift:[2,7,13,30,35,39,40,41,42],ship:[4,43],shire:33,shortcom:[14,37,38,39],shorten:[5,44],shorter:30,shorthand:[33,36],shortli:[26,33],should:[0,1,3,4,6,7,9,10,12,13,14,16,17,22,23,24,26,27,28,30,33,34,35,36,38,39,40,43,44,45],should_sync:[4,5,43,44],show:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],show_shap:5,showcas:43,shown:[1,5,6,8,9,12,13,14,22,24,26,34,37,38,39,40,42,43,44],shrink:[4,6,7,9,12,27,34,35,43,44],shrinkag:[6,7,34,35],shrunk:12,shuffl:[1,2,4,5,7,14,22,34,36,37,38,39,40,41,42,43,44],sick:44,side:[1,3,6,9,13,14,26,28,33,35,36,37,38,39,40,42,43],sigh:[25,33],sigma0:30,sigma1:30,sigma2:30,sigma:[1,2,6,7,8,11,12,13,14,18,19,20,26,27,30,33,34,35,36,37,38,39,40,41,42,43,45],sigma_0:[6,34,35],sigma_1:[6,34,35],sigma_2:[6,34,35],sigma_:[6,26,33,34,35,36],sigma_fn:[8,13,37,39,40],sigma_i:[1,6,33,34,35],sigma_j:[6,18,34,35],sigma_m:[7,30,36],sigma_n:[12,30],sigma_t:[14,38,39],sigma_x:30,sigmoid:[2,3,5,8,9,11,13,24,28,37,38,39,40,43,44,45],sigmundson:[7,34,35],sign:[2,3,8,9,11,30,31,37,40,41,42,45],signal:[2,4,11,13,39,40,41,42,43],signatur:[4,5,43,44],signifi:5,signific:[2,41,42,43],significantli:[0,2,14,22,30,37,38,39,40,41,42,43],silli:43,sim:[5,6,7,14,19,27,30,35,36,38,39],similar:[0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,24,25,26,27,28,33,34,35,36,37,41,42,43,44,45],similarli:[0,1,2,4,6,9,11,14,21,30,33,34,35,41,42,43,45],similiar:[24,42,43],simpl:[2,3,4,6,7,8,9,11,12,13,15,16,17,18,20,22,23,24,25,26,27,28,30,36,40,41,42],simple_rnn:[5,44],simplefilt:[24,42,43],simplepredict:[11,45],simpler:[1,2,6,7,8,14,17,20,22,23,24,25,27,28,33,35,38,39,41,42],simplernn:[5,44],simplest:[1,2,4,5,10,11,13,15,33,39,40,41,42,43,45],simpletre:[11,45],simpli:[0,1,2,3,5,6,7,9,10,11,12,13,16,24,25,26,27,28,30,33,34,35,36,39,40,41,42,43,45],simplic:[3,6,7,8,9,10,11,12,13,15,34,35,36,37,39,40,42,45],simplicti:[6,34],simplifi:[0,1,7,10,16,25,27,33,34,35,36,43,45],simplist:[4,7,30,36,43],simul:[7,36,43],simultan:[7,36,43],sin:[0,1,2,3,4,5,10,13,14,22,26,33,38,39,40,41,42,43,44],sinc:[1,2,3,4,6,7,8,9,10,11,12,14,22,24,26,30,32,33,34,35,36,37,38,39,40,41,42,43,45],sine:[4,13,39,40,43],singl:[1,2,3,4,6,7,8,9,10,13,14,24,26,28,30,33,34,35,36,37,38,41,42,43],singular:[1,7,14,26,27,33,35,36,37,38],sinusoid:[4,43],site:[0,1,2,3,4,5,7,8,9,12,14,22,24,27,28,29,33,34,35,37,39,40,41,42,43,44],situat:[1,5,6,8,14,22,30,33,34,37,38,39],six:[4,30],size:[1,2,3,4,5,6,7,9,10,11,12,14,22,23,24,26,27,28,30,33,35,36,37,38,39,40,41,42,43,44,45],sketch:11,ski:[10,45],skill:[1,33],skip:[4,5,12,43,44],skiprow:34,skl:[1,7,33,34,35],sklearn:[1,2,4,6,7,8,9,10,11,12,14,15,24,33,34,35,36,37,38,39,40,41,42,43,44,45],skplt:[8,11,37,44,45],skrankefunct:[24,42],sl:[3,7,35,37,44],slack:9,sleep:45,slice:[3,26,33,42],slide:[0,1,4,16,17,27,28,30,33,34,36,38,40,41,42,43],slight:[7,14,36,38,39],slightli:[2,3,4,6,7,8,11,30,34,35,36,37,41,42,43,45],slope:[9,12,13,39,40,44],slow:[1,3,9,14,34,37,38,39,42,43],slower:[6,26,33,34,35],slowest:26,slowli:[13,40],slp:[2,40,41,42],small:[1,2,3,4,6,7,9,10,11,12,13,14,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],smaller:[1,2,3,6,7,9,10,12,14,30,33,34,35,36,37,38,39,41,42,43,44,45],smallest:[1,5,15,16,17,33,37,44],smallest_row_index:15,smooth:[0,1,4,7,10,14,27,33,37,38,43,45],sn:[1,2,4,7,8,24,33,34,37,40,41,42,43,44],sne:12,sneak:33,so:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],soar:7,sobel:43,sobel_kernel:43,social:[1,33],societ:33,socket:[],soft:[2,8,11,13,37,39,40,41,42,45],soften:9,softmax:[4,8,24,37,42,43],softwar:[1,9,16,25,26],sol:9,sole:[1,7,33],solid:[1,8,33,37],solut:[0,1,2,3,4,6,7,9,11,12,14,18,19,26,27,28,30,33,34,35,36,37,38,39,41,43,45],solution_ev:38,soluton:[3,42],solv:[1,2,4,6,7,9,11,12,13,14,26,27,28,33,34,39,40,41,43,44,45],solve_expdec:[3,42],solve_ode_deep_neural_network:[3,42],solve_ode_neural_network:[3,42],solve_pde_deep_neural_network:[3,42],solveod:[3,42],solveode_popul:[3,42],solver:[3,8,9,10,11,12,22,26,37,42,44,45],some:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,24,30,35,36,39,40,41,42,43,44,45],some_model:[7,34,35],somehow:[5,45],someth:[0,1,2,4,5,8,10,12,27,28,30,33,34,37,40,41,42,43,44,45],sometim:[1,2,12,13,14,15,33,34,38,39,40,41,42,43],somewhat:[39,40],soon:[26,31],sophist:[1,33],sopt:[14,38],sort:[6,7,10,12,30,34,36],sound:[4,6,35,36],sourc:[0,1,2,4,7,16,25,26,27,28,30,33,34,36,41,42,43],space:[0,1,2,5,6,9,10,12,13,14,15,22,30,34,35,36,37,38,39,40,41,42,43,44,45],span:[0,1,4,6,10,12,26,33,34,43,45],spare:[2,41,42],spars:[4,7,26,33,43],sparse_add:[],sparse_mtx:[26,33],sparsecategoricalcrossentropi:[4,43],sparseobject:[],sparsiti:11,spatial:[2,3,4,13,39,40,41,42,43],speak:30,special:[7,8,11,13,14,26,30,33,34,35,36,37,38,40,43,45],specif:[0,1,2,3,4,5,6,7,8,9,10,12,13,17,24,25,26,27,28,30,32,33,34,35,36,37,39,40,41,43,44,45],specifi:[1,4,6,7,8,10,12,14,15,22,24,27,30,33,35,36,37,38,39,43,45],specifici:[1,11,33,45],spectacular:[4,43],spectral:[2,41,42],speech:[1,2,4,5,13,33,39,40,41,42,43,44],speed:[2,3,5,14,38,39,40,41,42],speedup:43,spend:30,spent:[0,27,28],sphere:[1,34],spin:7,spite:[1,33],spline:9,split:[2,4,5,6,7,9,10,11,12,15,18,24,27,30,35,36,37,41,42,43,44],splite:1,splitter:[2,11,41,42,45],spontan:30,spot:[4,43],spread:[1,12,30,33,34],spring:[24,42],springer:[19,27,32,33,35],spuriou:[14,22,38,39],sqquar:35,sqrsignal:[4,43],sqrt:[1,4,5,6,7,9,11,12,14,18,22,24,30,34,35,36,38,39,42,43,45],squar:[2,3,4,5,8,9,10,12,14,15,16,17,18,20,22,23,25,26,28,30,36,37,38,39,40,41,42,43,44],squarederror:11,squaredeuclidean:15,squash:[13,39,40,44],srtm:[7,27],srtm_data_norway_1:[7,27],stabil:[0,6,27,28],stabl:[1,5,6,7,8,10,12,25,33,34,35,37,44],stack:[3,4,5,43,44],stacklevel:[1,33],stage:[0,6,14,22,24,27,28,38,39,42,43],stai:[1,3,5,6,12,18,24,33,34,42,44],stand:[1,6,10,13,33,34,35,39,40,45],standadscal:34,standard:[0,1,2,5,6,7,8,9,11,13,16,17,18,20,22,23,26,27,28,30,33,35,37,39,40,41,42,44],standard_basi:3,standardscal:[1,7,8,9,10,11,12,34,35,36,45],stanford:[14,37,42,43],start:[1,2,3,4,5,6,7,9,10,11,12,13,14,15,21,23,24,26,27,28,30,31,33,34,36,37,38,40,41,42,43,44,45],start_box:[3,14,39],start_nod:[3,14,39],start_tim:[15,43],starting_point:22,stat:[7,34,36,37,44],state:[0,2,3,5,6,7,8,9,11,12,13,14,25,28,30,34,35,36,37,38,39,40,41,42,43,45],statement:[1,8,26,37,44],stationari:[0,37,38],statist:[1,2,4,5,8,10,11,12,13,14,15,19,26,27,29,32,34,37,38,39,40,41,42,43,44,45],statu:[1,8,12,33,34,37,44],stavang:[7,27],std:[1,5,7,33,34,36],stdout:[24,42,43],steep:[14,22,37,38,39],steepest:39,step:[1,2,3,4,5,7,8,10,11,12,13,14,15,22,23,24,26,27,33,40,41,42,43,44],step_fn:[8,13,37,39,40],step_length:[14,38,39],step_num:[4,5,43,44],step_siz:38,steps_list:[10,45],steps_per_epoch:[4,5,43,44],stereo:[4,43],still:[0,1,3,4,6,7,12,14,18,30,36,37,38,39,42,43],stimuli:[13,39,40],stk2100:[32,33],stk3155:[0,16,27,28,29,31],stk4021:[32,33],stk4051:[32,33],stk4155:[29,31],stk5000:32,stk:[32,33,45],stochast:[0,1,2,6,7,9,12,13,16,17,23,24,27,33,35,36,37,40,41,42],stock:[5,44],stoke:[13,39,40],stone:[1,8,27,33,37],stop:[2,5,8,10,12,14,15,22,24,37,40,41,42,43,44,45],storag:[6,34],store:[1,2,3,4,7,12,14,24,27,30,33,38,39,40,41,42,43,44],storehaug:[31,33],str:[2,4,5,24,40,41,42,43,44],straight:[1,7,9,14,33,34,36,37,38],straightforward:[1,3,4,6,7,9,10,11,14,26,33,34,35,36,37,38,42,43,45],strategi:[1,2,10,33,40,41,42,45],stratifi:[7,36],strength:[1,6,15,34],stretch:12,strict:[9,14,37,38],strictli:[9,14,37,38,43],stride:[5,26],strided_height:43,strided_width:43,strike:7,string:[2,40,41,42],stroke:[8,37],strong:[4,7,10,11,13,26,30,36,39,40,45],strongli:[1,9,24,25,26,28,34,42,43],stronli:[1,34],structur:[1,2,3,4,7,10,11,13,25,33,36,37,38,39,40,41,42,43,45],stuck:[2,14,37,38,39,40,41,42],student:[0,1,27,28,29,31,32,33,42,43,45],studi:[0,1,4,5,6,7,8,9,12,13,14,18,20,22,24,25,27,28,32,33,34,35,38,39,40,42,43],studier:32,style:[1,8,10,26,33,37,45],sub:[10,13,39,40,45],subarg:[3,14,39],subdivid:[1,26,33],subfield:[1,33],subject:[7,9,30],submatric:43,submit:33,subplot:[1,2,4,5,7,8,9,10,11,14,15,24,27,33,34,36,37,38,40,41,42,43,44,45],subplots_adjust:[9,30],subprogram:[26,33],subract:[1,34],subregion:43,subroutin:[1,33],subsampl:43,subscript:[2,40,41,42],subsequ:[2,5,6,7,13,26,30,34,36,39,40,41,42,43],subset:[2,7,10,13,14,25,33,36,37,38,39,40,41,42,44,45],subspac:[1,9,12,34],substanti:[10,11,43,45],substep:12,substitut:[4,7,13,26,36,39,40,43],subsubset:[10,45],subtask:7,subtl:[2,41,42],subtract:[1,5,6,7,12,14,18,22,24,26,27,30,35,36,38,39,42,43,44],subtre:[10,45],subval:[3,14,39],succeed:[1,5,33],success:[4,8,10,14,30,37,38,43,45],successfulli:[5,10,45],sudo:[0,1,16,25,27,33],suffer:[1,2,3,6,11,33,34,35,41,42,45],suffici:[2,7,9,12,14,36,37,38,40,41,42],sugar:[],suggest:[2,14,28,32,38,39,41,42,43,44],suit:[9,13,39,40],suitabl:[1,30,34],sum:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,22,24,26,27,30,33,34,35,37,38,39,40,41,42,43,44,45],sum_:[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],sum_i:[1,3,6,7,9,14,18,20,27,34,35,36,38,39,42],sum_j:7,sum_ja_:1,sum_k:[7,9,13,26,40,41],sum_logist:[14,38,39],sum_m:[4,43],sum_n:[4,43],sum_nx_:[4,43],summar:[6,7,10,24,28,35,36,37,38,40,41,42,43,44,45],summari:[2,4,5,11,22,28,29,35,40,41,42,43,44,45],summat:[1,4,17,34,43],sundai:[18,19,20,21,22,23,24],sunni:[10,45],superconduct:[34,35,43,44,45],superfici:4,superimposit:43,superscript:[2,13,39,40,41],supervis:[0,1,6,7,8,10,13,25,33,34,36,37,39,40,45],supplement:[8,37],support:[0,1,2,10,11,12,14,25,33,34,38,39,41,42,45],suppos:[1,6,7,8,9,11,12,13,14,26,33,34,35,36,37,38,39,40,43,45],suppress:[6,14,35,38,39],sure:[1,2,5,7,24,27,41,42,44],surf:[7,27],surfac:[1,7,27,33],surpass:7,surpris:[1,33,43],surround:[4,25,43],survei:[1,6,7,33,34,35,36],svc:[9,10,11,45],svd:[1,7,12,18,33,36],svdinv:[6,35],svm:[9,10,11,12,45],svm_clf:[9,11,45],swap:43,swath:[6,34],sy:[14,24,37,38,42,43],symbol:[2,6,12,14,25,30,33,34,35,38,39,40,41,42],symmeteri:[2,41,42],symmetr:[0,1,6,9,12,13,14,26,33,34,38,39,40,43,44],symmetri:[7,10,45],sympi:[0,1,16,25,27,33],synonim:30,syntax:[2,14,41],syntaxerror:[2,9,41],system:[0,1,2,4,5,7,8,10,11,13,14,16,24,25,26,27,33,37,38,39,40,41,42,43,44,45],systemat:[5,7,36],t0:[4,7,14,22,38,39,43],t1:[3,14,22,38,39,42],t2:[3,42],t3:[3,42],t:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,33,36,37,38,39,40,41,42,44,45],t_0:[3,10,14,38,39,42,45],t_1:[0,14,38,39],t_2:0,t_:[3,42],t_b:[11,45],t_batch:[24,42,43],t_i:[2,3,6,13,28,34,40,41,42],t_j:[0,13,40],t_k:[10,45],t_test:[24,42],t_train:[24,42],t_val:[24,42,43],tabl:[0,10,24,27,28,30,31,33,39,40,41,42],tabul:[1,33],tabular:33,tackl:5,tag:[3,4,5,6,7,8,13,14,15,22,26,30,34,37,38,39,40,42,43],taht:[1,33],tail:30,tailor:[3,9,12,33,42],taiwan:[1,33],take:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,22,24,25,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],taken:[1,2,4,7,11,14,26,33,36,38,39,40,41,42,43,45],tan:[4,43],tangent:[2,5,13,14,37,38,39,40,41,42,44],tanh:[0,2,5,8,9,13,37,38,39,40,41,42,43,44],tape:[4,5,43,44],target:[1,2,4,5,6,7,8,9,10,11,12,13,24,28,33,34,35,36,37,38,39,40,41,42,43,45],target_nam:[10,45],task:[1,2,4,7,10,12,13,15,21,24,27,33,36,39,40,41,42,43,45],tau:[4,6,30,35,36,43],taught:[33,43],tax:[1,34],taylor:[3,14,37,38,42],taylornr:[14,37,38],tba:38,tc:9,td:[2,7,14,27,33,36,38,40,41],teach:33,team:[2,41,42],teaser:1,techinc:43,technic:[1,6,7,14,16,33,34,38,39],techniqu:[1,2,9,11,14,25,30,32,33,34,36,37,38,39,41,42,43],technolog:[1,2,33,40,41,42,43],tell:[1,5,7,11,12,14,30,36,38,39,44,45],temp1:[2,41,42],temp2:[2,41,42],temp:[2,41,42],temperatur:[0,1,10,33,45],temporarili:[2,41,42],ten:[4,18,33,43,45],tend:[4,6,7,9,10,11,13,14,15,22,34,35,36,38,39,40,43,45],tendenc:[1,33],tension:[7,36],tensor:[4,5,43,44],tensorflow:[0,1,3,5,9,15,16,24,25,26,27,28,29,32,33,34,44],term1:[6,7,12,27,34],term2:[6,7,12,27,34],term3:[6,7,12,27,34],term4:[6,7,12,27,34],term:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,24,27,30,33,34,35,37,38,39,41,42,43,45],termin:[1,5,6,10,11,14,16,22,33,34,38,39,45],terrain1:[7,27],terrain:[7,22,23,27,28],test:[0,4,5,6,7,8,9,10,11,14,18,20,22,23,26,27,30,36,37,38,39,43,44,45],test_acc:[4,43],test_accuraci:[2,4,24,40,41,42,43],test_error:7,test_imag:[4,5,43],test_ind:[7,36,37],test_input:5,test_label:[4,5,43],test_loss:[4,43],test_pr:[2,24,40,41,42],test_predict:[2,40,41,42],test_rnn:[5,44],test_scor:[8,11,37,44,45],test_siz:[1,2,4,6,7,11,33,34,35,36,37,40,41,42,43,44,45],test_split:[10,45],tester:35,testerror:[1,7,34,36],testi:[5,44],testpredict:[5,44],testx:[5,44],text:[1,2,3,5,6,9,10,12,14,16,22,26,28,30,32,33,34,36,37,38,39,40,41,42,43,44],textbf:43,textbook:[0,18,22,23,27,28,34,36,43],textual:[10,45],textur:[2,10,41,42,45],tf:[2,4,5,14,15,37,38,41,42,43,44],tfe_py_execut:[4,5,43,44],th:[1,2,3,6,7,8,10,13,14,15,16,17,26,27,30,33,34,35,36,37,38,39,40,41,42,45],than:[1,2,3,4,5,6,7,8,10,11,12,13,14,18,25,28,30,33,34,35,36,39,40,41,42,43,44,45],thank:[5,7,34,35,42],thats:[24,42,43],theano:[2,25,33,41,42],thei:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,26,27,30,34,35,36,37,38,39,40,41,42,43,44,45],them:[0,1,2,4,5,7,9,10,11,12,13,14,24,26,27,28,33,34,35,36,38,39,40,41,42,43,44,45],theme:[1,33],themselv:[1,30,33,43],thenc:[7,36],theorem:[3,7,8,34,37,39,41,42,44],theoret:[1,5,11,33],theori:[0,1,2,4,9,10,13,14,19,25,27,32,33,35,38,39,40,41,42,43,45],thereaft:[1,6,7,12,13,16,17,18,26,27,28,33,36,40,41],therebi:[1,6,8,12,33,34,35,37,43],therefor:[1,2,3,4,5,7,8,9,12,14,30,33,34,36,37,38,39,40,41,42,43],therein:12,thereof:[0,1,7,14,33,36,38,39],thesi:42,theta:[2,5,14,22,30,38,39,40,41,42],theta_:[2,14,38,39,40,41,42],theta_i:[2,40,41,42],theta_linreg:[14,22,38,39],theta_t:[14,38,39],thetaand:[39,40],thetaor:[39,40],thetaxor:[39,40],thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,24,25,26,27,28,29,30,32,34,35,36,37,38,39,40,41,42,43,44,45],thing:[1,2,3,5,6,8,10,30,33,35,36,37,41,42,45],think:[1,2,4,5,7,10,13,14,15,24,30,33,36,37,38,39,40,41,42,43,44,45],third:[1,4,7,14,22,31,33,36,37,38,39,43],thirti:[8,37,44],thorughout:33,those:[1,4,6,7,9,10,11,12,22,26,27,28,29,33,34,36,43,44,45],though:[2,3,4,5,14,26,30,38,39,40,41,42,43],thought:[0,7,15,27,28,30,36],thousand:[0,1,2,27,33,34,38,39,41,42,45],thread:[4,5,43,44],three:[1,2,4,6,7,9,10,13,16,24,26,27,29,30,31,33,34,35,36,37,39,40,41,42,43,45],threshold:[2,4,10,11,12,13,14,24,38,39,40,41,42,43,44,45],through:[1,2,3,4,5,6,7,9,12,13,14,15,25,26,30,33,34,35,36,37,38,39,40,41,42,43],throughout:[1,5,6,15,24,25,26,30,33,42],thu:[1,2,3,6,7,8,9,11,12,13,14,22,27,31,33,34,35,36,37,38,39,40,41,42,43,44,45],thumb:[1,7,27,33,34],thursdai:[31,33,38,39,45],tibshirani:[7,19,27,29,32,33,34,36],tick_param:7,ticker:[7,14,27,30,37,38],tif:[7,27],tight_layout:[2,8,37,41,42,44],tightli:12,tild:[1,6,7,8,12,16,17,18,19,20,27,30,33,34,35,36,40,41,42],till:[1,5,8,9,10,11,13,26,33,34,37,38,40,41,44,45],time:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,22,24,25,26,27,28,30,33,34,35,36,37,40,41,42,43,45],timeit:[5,44],timer:[5,44],tini:[2,41,42,44],tip:[4,43],titl:[1,2,3,4,5,7,8,9,10,11,14,22,27,30,33,34,36,37,38,39,40,41,42,43,44,45],tmp:[14,38,39],tmp_log:[4,5,43,44],tn:[3,4,8,42,43,44],tnr:44,to_categor:[2,4,5,40,41,42,43,44],to_categorical_numpi:[2,40,41,42],to_numer:[1,7,33,36],to_numpi:43,todai:[4,43],toeplitz:43,togeth:[1,4,7,9,12,14,22,24,25,33,34,38,39,42,43,44],toi:[15,38,39],told:[14,38,39],toler:[3,7,15,42],tolist:[5,44],tomographi:[13,39,40],too:[1,3,5,6,7,10,12,14,16,30,32,33,34,36,37,38,39,42,45],took:[9,33],tool:[1,2,4,7,14,25,34,36,38,39,41,42,43],toolbox:9,top:[1,4,6,7,10,11,19,25,33,35,36],topic:[0,1,6,7,8,9,25,27,28,34,35,37,42],topograph:27,topolog:[2,4,13,39,40,41,42,43],toposort:[],torkjellsdatt:[31,33],toss:[11,30],total:[1,2,3,4,5,7,8,9,11,12,13,14,15,16,17,23,24,26,28,30,31,33,34,36,37,38,40,41,42,43,44,45],total_loss:5,totalclustervari:15,totalscatt:15,toward:[2,3,8,13,14,27,37,38,40,41,42],towardsdatasci:[38,39],town:[1,34],tp:[5,8,44],tpng:[10,45],tpr:44,tpu:[14,22,25,33,38,39],tqdm:7,tr:34,trace:[3,4,5,14,39,43,44],trace_stack:[3,14,39],traceback:[1,3,4,5,7,10,11,14,16,27,33,35,36,37,38,39,42,43,44,45],traceback_util:[4,5,43,44],tracer:[3,14,39],tracing_count:[4,5,43,44],track:[4,14,15,26,37,38,39,43],tract:[1,34],tractabl:[1,33,34],trade:[6,10,20,35,36,45],tradeoff:[1,6,20,27,33,34,35,37],tradit:[1,2,5,7,33,36,40,41,42,44],train:[3,4,6,7,9,10,11,12,13,14,18,20,22,24,27,28,35,36,37,38,39,45],train_acc:[24,42,43],train_accuraci:[1,2,4,33,40,41,42,43],train_dataset:5,train_end:[1,2,34,40,41,42],train_error:[7,24,42,43],train_funct:[4,5,43,44],train_imag:[4,5,43],train_ind:[7,36,37],train_label:[4,5,43],train_pr:[2,40,41,42],train_siz:[1,2,4,34,40,41,42,43],train_step:5,train_test_split:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],train_test_split_numpi:[1,2,34,40,41,42],trainabl:[5,43,44],trainable_vari:5,trained_model:[7,34,35],trainerror:[1,34],traini:[5,44],training_checkpoint:5,training_dataset:5,training_gradi:[14,22,38,39],training_gradient_fun:[38,39],training_loss:[38,39],trainingerror:[7,36],trainpredict:[5,44],trainscor:[5,44],trainx:[5,44],trait:[1,33],trajectori:[5,44],trajectory_i:22,trajectory_x:22,transfer:[10,43,45],transform:[1,6,7,8,9,10,11,12,13,14,22,24,25,26,33,34,35,36,37,38,39,40,42,45],transit:[7,13,39,40],translat:[2,5,7,11,34,35,40,41,42,43,44,45],translate_vjp:3,transpos:[2,6,12,26,34,35,40,41,42,43],travers:[1,6],treat:[1,2,4,7,13,14,30,33,34,35,36,37,38,39,40,41,42,43,44],tree:[0,1,2,7,25,27,33,40,41,42],tree_clf:[10,11,45],tree_clf_:10,tree_clf_sr:10,tree_reg1:[10,45],tree_reg2:[10,45],tree_reg:[10,45],trend:[30,45],treue:8,trevor:[19,27,32],tri:[3,4,5,10,14,37,38,39,42,43,44,45],triain:1,trial:[1,3,5,7,14,30,33,36,37,38],triangl:[14,37,38],triangular:26,trick:[4,5,9,12,14,22,30,38,39,43],trickier:30,tridiagon:26,trigonometr:43,trillion:25,trivial:[1,2,6,12,30,33,35,41,42],troubl:[1,9,13,34,40],truck:[4,43],true_beta:[7,34,35],true_divid:[2,40,41],true_fun:[7,36],truli:[33,44],truncat:22,tucker:9,tuesdai:[31,33,36,37,38,39,40,41,42,43,44,45],tumor:[8,10,28,37,44,45],tumour:[8,37,44],tunabl:[2,22,23,28,41,42],tune:[5,10,14,22,23,26,28,33,37,38,39,43,44,45],tupl:[3,14,24,39,42,43],turbul:0,turn:[1,2,6,7,8,9,10,11,12,13,14,20,26,27,30,33,34,36,37,38,39,40,41,42,43,44,45],tutori:[2,5,41,42],tv:[3,42],tveito:[3,42],tweak:[2,5,11,30,41,42,45],twice:[14,37,38],twist:[0,12],two:[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,23,24,26,29,30,32,33,35,36,38,39,40,41,42,44,45],tx:[14,37,38,39,40],tx_1:[14,37,38],txt:5,ty:[14,37,38],type:[1,2,4,7,9,11,14,17,24,26,27,30,34,35,36,37,38,41,43,45],typeerror:[3,14,39],typic:[1,2,3,4,5,6,8,10,11,13,14,22,28,30,33,34,35,36,37,38,39,40,41,42,43,44],typo:[0,27,28],u:[0,1,3,6,7,9,11,12,13,18,26,33,34,35,39,40,42],u_:[0,26],u_i:[13,39,40],u_m:11,u_t:0,ua:[1,33],ubuntu:[0,1,16,25,27,33],uci:[0,1,28,34],uio:[0,27,28,31,32],uis:45,un:15,unari:[26,33],unary_f:[3,14,39],unary_oper:[3,14,39],unary_to_nari:[3,14,39],unbalanc:[7,10,36,37,45],unbias:[1,6,7,33,35,36],uncent:[7,35],uncertainti:[1,6,33,35,36],uncertitud:30,unchang:[2,4,41,42,43],unclos:[],uncorrel:[11,30,45],undefin:[6,34],under:[0,1,2,6,7,11,14,16,17,25,27,28,33,34,35,36,37,38,41,42,44],underdetermin:[1,33],underfit:[2,7,36,41,42],underflowproblem:[6,35,36],undergo:[6,35,36],undergradu:[29,31],underli:[1,2,10,14,30,33,38,39,41,42,45],underset:[5,15],understand:[1,2,4,6,7,11,14,15,22,24,25,33,34,35,37,38,39,41,42,43,45],understood:[9,14,38,39],undesir:9,undetermin:[6,9,35,36],undo:5,unexpect:[7,36],unexpected:30,unfair:[7,34,35],unfortun:[2,9,10,11,41,42,45],unicode_liter:[9,10],uniform:[1,2,6,7,12,14,16,17,27,30,33,34,37,38,40,41,42,44],uniformli:[14,30,37,38,39],unifrompdf:30,unimport:[14,37,38],union:[6,7,35,36,37],uniqu:[1,3,7,14,15,26,33,36,37,38,42],unique_cluster_label:15,unit:[1,2,4,5,6,11,13,30,33,34,35,39,40,41,42,45],unitari:[6,7,26,34],unitarili:[26,33],uniti:30,univari:30,univers:[0,1,2,3,14,16,25,27,28,29,31,33,34,35,36,37,38,39,41,42,43,44,45],unix:[2,41,42],unknow:[1,26,33],unknown:[1,2,4,5,6,7,9,11,14,17,22,26,33,34,35,36,38,39,40,41,43,44,45],unknowwn:[13,40],unlabel:[2,41,42],unless:[0,1,4,7,12,14,27,28,33,34,36,37,38,43],unlik:[2,3,4,9,14,37,38,39,41,42,43],unnecessarili:[10,45],unoptim:43,unord:[4,43],unravel:[2,40,41,42],unravel_index:43,unreason:43,unrol:[4,12,43],unsampl:43,unseen:[1,8,10,37,45],unstabl:[2,41,42],unsupervis:[0,1,2,5,13,25,33,39,40,41,42],unsymmetr:[26,33],untak:[],until:[2,3,5,10,13,14,15,24,37,38,39,40,41,42,44,45],untouch:1,untradit:43,unusu:[13,39,40],up:[2,4,5,6,7,9,11,12,14,15,17,19,25,26,27,28,30,31,35,38,39,44],updat:[2,3,11,13,14,15,22,24,38,39,40,41,42,43,44,45],update_chang:[24,42,43],update_matrix:[24,42,43],uploa:33,upload:[0,25,27,28,32],upon:[1,2,7,8,12,24,26,27,41,42,43],upper:[1,9,10,17,26,34,43,45],uppercas:[26,33],upsampl:[5,43],upsampled_height:43,upsampled_width:43,upscal:5,url:42,us:[0,5,6,7,9,10,11,12,13,15,16,17,18,19,20,23,26,27,29,30,32,35,36],usa:[33,39],usag:[1,9,25,33,34],usd10000:[1,34],usd:[1,34],use_bia:[5,44],use_multiprocess:[4,5,43,44],usecol:[1,33],useless:[2,40,41,42],user:[0,1,2,3,4,5,7,8,9,12,16,22,24,25,26,27,33,34,35,37,40,41,42,43,44],usernam:[0,27,28],userwarn:[4,7,22,43],usetex:30,usg:[7,27],usr:30,usual:[1,4,5,8,13,14,15,33,37,38,39,40,43,44],ut:[6,35],util:[1,2,4,5,7,8,11,15,24,28,33,34,36,37,41,42,43,44,45],ux:26,v0:30,v1:30,v2:30,v3:43,v:[3,5,6,7,12,14,18,22,24,25,34,35,38,39,42,43],v_0:12,v_ind:43,v_stride:43,va:[2,41,42],val:[14,38,39],val_acc:[24,42,43],val_accuraci:[4,43],val_error:[24,42,43],val_loss:[5,43,44],val_set:[24,42],vale:[3,42],valid:[0,1,2,5,8,10,11,14,22,24,25,28,30,33,34,38,39,41,42,43,44,45],validation_batch_s:[4,5,43,44],validation_data:[4,5,43,44],validation_freq:[4,5,43,44],validation_split:[4,5,43,44],validation_step:[4,5,43,44],valu:[1,2,3,4,5,7,8,9,10,11,13,14,15,16,17,20,22,24,25,26,27,33,38,39,40,41,42,43,45],valuat:[10,45],valued_at_a:[24,42,43],valued_at_z:[24,42,43],valueerror:[1,33],valy:[5,44],van:[1,19,27,33,34,35,36],vandenbergh:[9,14,37,38],vandermond:[1,33],vanilla:[1,7,12,15,34,35],vanish:[2,5,14,30,37,38,41,42],var_x:30,varabl:9,varepsilon:[6,7,19,27,35,36],varepsilon_:[6,7,35,36],varepsilon_i:[6,7,35,36],vari:[1,2,4,6,7,11,16,17,33,36,40,41,42,43,44,45],variabl:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,22,24,26,33,34,35,36,39,40,41,42,43,44,45],varianc:[1,2,6,8,10,11,12,14,15,19,20,22,25,26,28,30,33,34,37,38,39,41,42,45],variance_i:[6,12,34],variance_x:[6,12,34],variant:[0,1,2,7,9,13,14,33,34,37,38,39,40,41,42,43],variat:[0,4,5,12,33,43],varieti:[0,1,4,13,16,25,27,33,39,40,43],variou:[0,2,4,6,7,8,9,10,12,13,14,17,19,22,23,24,25,26,27,30,34,35,38,39,40,41,42,43,44],varydimens:[5,44],vastli:[4,43],vaue:[2,41,42],vault:1,vdot:[3,14,37,38,42],ve:[0,27,28,43],vec:[7,36],vector:[0,1,2,3,4,5,6,7,8,10,11,12,14,15,17,18,22,24,25,35,36,37,38,41,42,43,44,45],vector_mean:15,veloc:0,ventur:[0,1,9,16,25,33],verbos:[2,4,5,41,42,43,44],veri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,27,28,30,32,33,34,35,36,37,38,39,40,43,44,45],verifi:[4,12,26,33],versatil:[9,33],versicolor:[9,10],version:[0,1,4,5,11,14,15,16,25,26,27,28,30,33,34,38,39,43,44,45],versu:[2,41,42],vert:[1,2,6,7,8,9,10,12,14,18,33,34,35,36,37,38,40,41,45],vert_1:[6,7,34,35,36],vert_2:[6,7,12,18,34,35,36],vertic:43,vi:[24,42,43],via:[0,1,6,7,8,9,10,11,12,13,16,20,24,25,26,27,29,30,31,33,34,35,36,37,39,40,42,43,44,45],vidal:12,video:[1,2,13,25,29,31,33,34,35,36,37,40,41,42,43,44,45],view:[2,4,6,7,13,14,22,30,32,33,35,36,38,39,40,41,42,43],vii:[24,42,43],viii:[24,42,43],violat:9,virginica:10,viridi:[1,2,3,4,24,33,40,41,42,43],virtual:[2,41,42],viscos:[14,38,39],viscou:[14,38,39],visibledeprecationwarn:3,visin:43,vision:[1,4,33,43],visual:[1,4,12,13,16,24,25,33,34,39],visualis:[2,41,42],viz:[7,9,30],vjp:[3,14,39],vjp_argnum:3,vjpfun:[],vjpmaker:3,vjpnode:[3,14,39],vjps_dict:3,vmap:[14,38,39],vmax:[2,7,41,42,43],vmin:[2,7,41,42,43],voic:[4,43],volum:[1,4,33],volume18:42,vote:[0,11],voting_clf:[11,45],votingclassifi:[11,45],votingsimpl:[11,45],vs:[1,5,7,34,36,38,44],vspace:[3,14,39],vstack:[6,12,24,26,30,33,34,42,43],vt:[6,34,35],w1:9,w2:[9,12],w3:9,w:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,24,26,30,33,34,36,37,38,39,40,41,42,43,44,45],w_1:[9,26],w_1x_1:9,w_1x_:9,w_2:[9,26],w_2x_2:9,w_2x_:9,w_3:26,w_4:26,w_:[2,13,39,40,41,42,43],w_h:[24,42],w_hidden:[3,42],w_i:[2,3,11,40,41,42,45],w_ix_i:[13,39,40],w_j:26,w_m:26,w_output:[3,42],w_px_:9,w_px_p:9,wa:[1,2,4,5,6,7,8,11,12,13,14,15,18,24,26,27,33,34,35,36,37,38,39,40,41,42,43,44,45],wai:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,18,26,28,30,33,34,35,37,38,39,40,41,42],walk:[10,45],walker:30,wang:[1,33],want:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,24,25,27,28,30,33,34,35,36,37,38,39,40,41,42,43,44,45],warn:[1,2,5,9,24,33,34,40,41,42,43],warrant:[7,36,37],wast:[4,38,39,43],watch:[4,5,25,43,44],wave:[4,43],wavelet:9,we:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,34,35,36,37,40,43],weak:[10,11,15,45],weakli:44,weather:[2,13,39,40,41,42],web:[25,29,31,33,34],weblink:28,webpag:33,websit:[7,26,27,29,33],wedg:[9,30],wednesdai:[31,33,36,37,38,39,40,41,42,43,44,45],wee:12,week:[0,1,6,7,8,27,28,29,31],weekli:[25,27,31,32,33,39],weight:[1,2,3,4,7,8,10,11,13,14,24,27,28,30,34,37,38,39,43,44,45],weight_arrai:[24,42],weights_next:43,weigth:[3,42],welcom:[0,9,25],well:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,16,17,20,21,22,24,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,44,45],went:9,were:[1,2,4,5,6,7,8,9,11,12,13,15,24,30,33,34,36,37,39,40,41,42,43,45],wessel:[1,19,27,33,34,35,36],what:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,20,24,25,26,27,28,30,37,38,39,40,41,42,44],whatev:[4,43],when:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,24,26,27,28,30,33,34,35,36,37,40,41,42,43,44,45],whenev:[14,22,30,38,39,44],where:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45],wherea:[7,30,36],wherein:[2,13,39,40,41,42],whether:[0,1,4,6,8,10,27,28,30,33,35,37,43,44,45],which:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,24,25,26,27,28,29,30,31,33,34,35,36,37,40,43,44,45],whichev:[2,4,41,42,43],whilst:43,white:[10,45],whiteboard:[20,34,35,36,37,38,40,41,43,44],who:[1,29,33,44],whole:[2,4,5,6,10,12,14,35,36,38,39,40,41,42,43,44,45],whose:[1,7,11,30,34,36,45],whow:[12,34],whrn:36,why:[1,2,4,7,14,22,27,35,37,38,41],wide:[0,1,2,4,7,8,13,16,25,26,27,33,36,37,39,40,41,42,43],widehat:[7,36],width:[1,4,9,10,33,43,45],width_index:43,wieringen:[1,19,27,33,34,35,36],wiki:44,wikipedia:44,win:[11,45],wind:[10,45],window:43,windows_out:43,wing:[31,33],winther:[3,42],wiothout:[7,34,35],wiscons:[8,37,44],wisconsin:[11,24,28,42,45],wisdom:[7,35],wise:[1,2,6,13,14,34,38,39,40,41,42,43],wish:[0,1,3,6,8,9,12,14,15,24,26,27,28,33,34,37,38,42,43,44,45],with_std:[1,34,36],wither:7,within:[1,3,4,5,8,10,13,14,15,30,32,33,37,38,40,42,43,44,45],withinclust:15,without:[1,2,6,7,9,10,12,13,14,22,23,28,33,34,35,36,38,39,40,41,42,43,45],without_trac:[4,5,43,44],wo5dmep_bbi:[],won:[1,33],wonder:9,woodi:33,word:[1,2,4,5,6,7,8,15,24,30,33,34,35,36,41,42],work:[0,1,2,5,7,8,9,10,14,16,22,25,27,28,29,30,31,33,34,36,37,38,39,40,41,42,43,44,45],worker:[4,5,43,44],workshop:33,world:[1,9,33,34,43],worldwid:[1,33],wors:[1,2,4,5,7,33,36,41,42,43],worst:[10,43,45],worth:[10,43],worthi:[0,27,28],would:[0,1,2,4,6,7,8,9,10,11,12,13,14,26,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],wrap:[7,26,33],wrap_util:[3,14,39],wrapper:[1,33],write:[0,1,2,3,4,6,7,8,9,13,14,16,17,18,21,22,24,26,27,33,34,36,37,38,39,40,41,43,44],written:[0,1,3,4,6,12,13,14,17,25,26,27,28,30,33,34,35,36,37,38,39,40,42,43],wrong:[2,9,40,41,42],wrongli:[11,44,45],wrote:[6,12,34],wrt:[3,11,14,22,38,39,45],wth:[11,14,22,38,39,45],www:[0,25,26,27,28,32,33,42],wx_1:9,x0:9,x1:[5,9,10,11,14,38,39,44,45],x1_exampl:9,x1d:9,x2:[9,10,11,14,38,39],x2d:[9,12],x2d_train:12,x2dsl:12,x3:9,x:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,26,27,28,30,33,36,37,38,39,40,41,42,43,44,45],x_0:[1,6,12,26,33,34,35,36],x_1:[1,3,6,7,8,9,10,11,12,14,24,26,30,33,34,35,36,37,38,39,40,41,42,45],x_2:[1,3,6,7,8,9,10,11,12,14,24,26,30,33,34,36,37,38,39,40,41,42,45],x_3:[9,26,30],x_4:26,x_:[1,3,4,6,7,9,11,12,14,15,19,26,27,30,33,34,35,36,37,38,42,43,45],x_batch:[24,42,43],x_batch_feedforward:43,x_batch_feedforward_shap:43,x_batch_pad:43,x_center:12,x_data:[2,40,41,42],x_data_ful:[2,40,41,42],x_hidden:[3,42],x_i:[0,1,2,3,6,7,8,9,10,11,12,13,14,15,18,26,30,33,34,35,36,37,38,39,40,41,42,45],x_input:[3,42],x_ix_:[1,33],x_iy_i:9,x_j:[1,3,9,10,13,17,30,34,39,40,42,45],x_jy_j:9,x_k:[13,15,26,30,34,39,40],x_l:30,x_m:[7,13,26,30,36,39,40],x_n:[1,3,4,7,9,12,13,14,26,30,33,36,37,38,39,40,42],x_new:[10,11],x_offset:[7,34,35],x_output:[3,42],x_p:[4,8,10,37,43,45],x_poli:[10,45],x_poly10:[10,45],x_pred:[5,44],x_prev:[3,42],x_reduc:12,x_scale:9,x_small:[14,38,39],x_test:[1,2,4,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],x_test_own:7,x_test_scal:[1,7,8,10,11,12,34,35,36,45],x_tot:[5,44],x_train:[1,2,4,5,6,7,8,10,11,12,24,33,34,35,36,37,40,41,42,43,44,45],x_train_mean:[7,34,35,36],x_train_own:7,x_train_scal:[1,7,8,10,11,12,34,35,36,45],x_val:[2,24,41,42,43],xarrai:[25,33],xavier:[2,41,42],xbnew:[14,37,38],xcode:[0,1,16,25,27,33],xdclassiffierconfus:11,xdclassiffierroc:11,xg_clf:11,xgb:11,xgbclassifi:11,xgboost:[0,10,45],xgboot:11,xgbregressor:11,xgparam:11,xgtree:11,xi:[9,14,22,38,39],xi_1:9,xi_:9,xi_i:9,xinv:[35,39,40],xk:9,xla:[4,5,14,22,25,33,38,39,43,44],xlabel:[1,2,3,4,5,6,7,8,9,10,11,14,22,27,30,33,34,35,36,37,38,39,41,42,43,44,45],xlim:[7,11,36,45],xm:10,xmesh:[14,38],xnew:[1,14,22,33,37,38,39],xor:43,xp:30,xpanda:[1,34],xpd:[6,12,34],xplot:1,xs:10,xscale:[1,34],xsr:10,xt_x:[14,22,37,38,39],xtest:[7,36,37],xtick:[4,7,9,10,36,43,45],xtrain:[7,36,37],xu:[1,33],xx:[0,1,26,33],xy:[1,7,9,26,27,33],xytext:9,xz:[26,33],y1:[5,44],y2:[5,44],y3:[5,44],y:[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,43,44,45],y_0:[1,6,12,26,33,34,35,36],y_1:[1,6,9,10,12,14,26,33,34,35,36,37,38,45],y_1y_1:9,y_1y_1k:9,y_1y_2:9,y_1y_2k:9,y_1y_n:9,y_1y_nk:9,y_2:[1,6,9,10,12,26,33,34,45],y_2y_1:9,y_2y_1k:9,y_2y_2:9,y_2y_2k:9,y_3:[1,10,26,45],y_4:26,y_:[1,2,6,7,11,12,26,33,34,35,36,40,41,42,45],y_data:[1,2,6,7,33,34,35,36,37,40,41,42,44],y_data_ful:[2,40,41,42],y_decis:9,y_fit:[1,34],y_i:[1,2,6,7,8,9,10,11,12,13,14,16,17,18,19,20,26,27,28,33,34,35,36,37,38,39,40,41,42,45],y_if_:[11,45],y_ix_:[1,33],y_ix_i:[8,9,14,34,37,38],y_iy_jk:9,y_j:[7,9,13,20,27,36,39,40],y_k:[13,39,40],y_m:26,y_model:[1,5,6,7,33,34,35,36,37,44],y_n:[9,14,37,38],y_ny_1:9,y_ny_1k:9,y_ny_2:9,y_ny_2k:9,y_ny_n:9,y_ny_nk:9,y_offset:[7,34,35],y_plot:[10,45],y_pred1:[10,45],y_pred2:[10,45],y_pred:[1,2,5,7,8,9,10,11,34,35,36,37,40,41,42,44,45],y_pred_rf:[11,45],y_pred_tre:11,y_proba:[8,11,37,44,45],y_scaler:[7,35,36],y_test:[1,2,4,5,6,7,8,10,11,12,33,34,35,36,37,40,41,42,43,44,45],y_test_onehot:[2,40,41,42],y_test_predict:[1,34],y_test_scal:36,y_tot:[5,44],y_train:[1,2,4,5,6,7,8,10,11,12,33,34,35,36,37,40,41,42,43,44,45],y_train_mean:[7,34,35],y_train_onehot:[2,40,41,42],y_train_predict:[1,34],y_train_scal:[7,35,36],y_val:[2,41,42,43],yadav:[0,42],yand:[24,39,40,41,42],ye:[4,7,8,36,37,43],year:[1,25,33,41],yet:[1,2,7,9,12,14,24,33,37,38,39,40,41,42,43],yi:[14,22,38,39],yield:[1,3,6,7,9,11,13,14,15,26,30,33,35,36,37,38,39,40,42,43,44,45],yk:9,ylabel:[1,2,3,4,5,6,7,8,9,10,11,14,22,27,30,33,34,35,36,37,38,39,41,42,43,44,45],ylim:[4,7,36,43],ym:10,ymesh:[14,38],yn:1,yo:[9,10,11],yor:[24,39,40,41,42],yoshua:[2,32,41,42],you:[0,1,2,3,4,5,6,7,9,10,11,12,14,16,17,18,20,21,22,23,24,25,26,27,28,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45],young:[1,33],your:[2,3,5,6,7,9,12,14,18,20,21,22,23,24,25,26,27,35,36,37,38,39,40,41,42,43,44],yourself:[12,14,33,38,45],youtub:25,ypred:[7,36,37],ypredict2:[14,22,37,38,39],ypredict:[1,14,22,33,34,37,38,39],ypredictlasso:[6,35],ypredictol:[1,6,35,36],ypredictown:[7,34,35],ypredictownridg:[7,35],ypredictridg:[1,6,7,35,36,37,44],ypredictskl:[7,34,35],yridg:33,ys:10,ytest:[7,36,37],ytick:[4,7,9,10,36,43,45],ytild:[1,7,33,34,36],ytilde_test_ol:36,ytilde_test_ridg:36,ytildelasso:[6,35],ytildenp:[1,33,34],ytildeol:[1,6,35],ytildeownridg:[7,35],ytilderidg:[6,7,35],ytrain:[7,36,37],yx:[26,33],yxor:[24,39,40,41,42],yy:[26,33],yz:[26,33],z:[1,2,3,4,5,6,7,8,9,10,12,13,14,24,26,27,30,33,34,36,37,38,39,40,41,42,43,45],z_0:[26,33],z_1:[26,33],z_2:[26,33],z_:[2,3,13,26,33,40,41,42],z_c:[2,40,41,42],z_h:[2,24,40,41,42],z_hidden:[3,42],z_i:[2,13,39,40,41],z_j:[2,13,41,42],z_k:[13,34,40],z_m:[2,40,41],z_matric:[24,42],z_matrix:43,z_mod:[10,45],z_o:[2,24,40,41,42],z_output:[3,42],zaman:30,zaxi:[7,27],zero:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,22,24,26,27,30,33,34,35,36,37,38,39,40,41,42,44,45],zeros_lik:5,zeroth:34,zfill:5,zip:[3,5,7,14,39],zm_h:[1,33],zmq:[],zn:[1,34],zone:[1,34],zoom:33,zx:[26,33],zy:[26,33],zz:[26,33]},titles:["Project 3 on Machine Learning, deadline December 18 (midnight), 2023","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 17 (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","Week 44, Convolutional Neural Networks (CNN)","Week 45, Recurrent Neural Networks","Week 46: Decision Trees, Ensemble methods and Random Forests"],titleterms:{"1":[1,16,17,18,19,27,33,34],"12":40,"13":[],"14":36,"17":28,"18":0,"19":41,"2":[1,16,17,18,19,28,33,34,43],"2023":[0,27,31],"21":37,"23":37,"26":42,"3":[0,1,16,17,33,34],"31":34,"34":[16,33],"35":[17,34],"36":[18,35],"37":[19,36],"38":[20,37],"39":[21,22,38],"3d":43,"4":[1,34],"40":[22,39],"41":[22,40],"42":[23,41],"43":[24,42],"44":[24,42,43],"45":44,"46":45,"5":1,"7":35,"9":[27,44],"case":[9,11,30,34,35,37,38],"class":37,"do":[2,33,35,36,38,39,40,41,42,45],"final":[13,22,28,34,35,38,39,40,42,43,45],"function":[1,2,7,8,9,11,12,13,14,22,24,27,28,30,33,34,35,36,37,38,39,40,41,42,43,45],"import":[6,22,26,33,34,35,43,45],"long":44,"new":[5,35,36,44],"short":44,"try":44,A:[1,2,5,9,10,22,33,35,36,37,41,42,43,44,45],AND:[24,39,40,41,42],And:[22,33,34,35,37,38,39],But:[22,38,39],In:31,Is:[41,42],Ising:7,No:43,OR:[39,40,41,42],The:[0,1,2,3,4,6,7,8,9,10,12,13,18,24,25,33,34,35,36,37,38,39,40,41,42,43,44,45],To:[33,34],With:[5,35,44],about:[33,34],abov:[24,35,42,43],activ:[2,13,24,28,35,39,40,41,42,43,44],ad:[1,7,18,27,33,34,39,40],adaboost:[11,45],adagrad:[14,22,38,39],adam:[14,22,38,39],adapt:[11,22,38,39,45],add:43,addit:[43,44,45],adjust:[2,40,41,42],advanc:22,adversari:5,again:[4,10,37,43,44],ai:33,aim:[9,10,18,19,20,21,22,23,24,33,45],aka:[33,34],al:22,algebra:[26,33],algorithm:[10,11,12,13,22,28,34,38,39,40,41,45],algortithm:[14,37,38],all:[9,44],altern:0,an:[1,5,11,33,44,45],analys:[6,34],analysi:[1,6,7,12,25,27,28,30,33,34,35,36],analyt:[1,17,18,22,42],analyz:0,ani:[14,37,38],anoth:[10,35,36],appli:25,approach:[1,9,15,33,36,38,39,45],approxim:[13,40],architectur:[2,40,41,42],argument:[38,39],arithmet:43,arrai:[26,33],artifici:[39,40],assist:31,assumpt:[35,36],august:34,autocorrel:30,autograd:[3,14,22,38,39,42],automat:[14,22,38,39,42],avoid:[38,39],b:[0,18,27,28,38,39],back:[2,12,13,40,41,42],background:[25,27,28,36],backpropag:[43,44],backward:44,bag:[11,45],base:[14,22,36,38,39],basic:[0,1,6,8,10,11,12,26,34,35,36,37,44,45],batch:[2,38,39,41,42],bay:[6,35,36],befor:12,beta:[35,36],better:[9,39,40],bia:[7,27,36],bias:[40,41,42],binari:[2,40,41,45],bind:33,bird:[11,45],boldsymbol:[34,35,36],boost:[11,45],bootstrap:[7,11,36,45],boston:[1,34],breast:[2,41,42],brief:[33,36,37,38,43],bring:[13,40],build:[2,4,10,24,41,42,43,45],c:[0,27,28,33],calcul:34,can:[22,33,36,38,39,44],cancer:[2,8,10,12,37,41,42,44,45],cart:[10,45],cell:44,center:34,central:[14,25,30,36,37,38],chain:[13,40],challeng:37,chang:[11,45],channel:33,chi:[1,33],choic:[41,42],choos:[2,40,41,42],cifar01:[4,43],classic:12,classif:[2,10,11,24,28,37,40,41,42,44,45],classifi:[9,37,45],clip:[2,41,42],cluster:15,cnn:[4,43],code:[1,2,3,6,10,12,13,14,15,22,24,28,33,34,35,36,37,38,39,40,41,42,43,45],coeffici:43,coin:45,collect:[2,4,40,41,42,43],combin:44,come:37,commun:33,compact:37,compar:[3,11,42,45],comparison:35,compet:[22,38,39],compil:43,complet:34,complex:[0,1,7,27,34,45],complic:[7,38,39],compon:12,comput:[10,38,39,45],computation:36,computerlab:33,con:[10,45],concept:30,condit:[35,36,37,38],confid:36,conjug:[14,38],connect:43,construct:[40,41,42],content:43,continu:39,contn:33,convex:[9,14,37,38],convolut:[4,13,39,40,43],convolution2dlay:43,correctli:[35,36],correl:[12,34,37,43,44],correspond:[37,38],cost:[2,11,24,34,35,36,37,38,40,41,42,43,45],cours:[25,32,33],covari:[6,12,30,34],cover:33,critic:28,cross:[7,27,36,37],ct:43,cumul:44,curv:44,cython:33,d:[0,27,28],data:[0,1,2,4,7,8,10,12,16,17,24,25,27,30,33,34,35,37,40,41,42,43,44,45],dataset:[2,4,40,41,42,43],deadlin:[0,27,28,33],decai:[3,38,39,42],decemb:0,decis:[10,11,45],decomposit:[6,12,18,26,34],deep:[2,3,37,41,42],defin:[0,2,33,40,41,42],definit:40,degre:[1,34],deliveri:[0,27,28],delta:36,demonstr:43,dens:[1,33,43],deriv:[6,13,34,35,36,37,38,40,41,42],descent:[3,11,14,22,28,37,38,39,42],descript:27,design:34,detail:[4,33,42,43],develop:[2,40,41,42],diagon:12,differ:[9,28,38,39,43],different:22,differenti:[0,3,14,38,39,42],diffus:[3,42],dimension:[3,4,9,24,27,34,42,43],directli:[38,39],disadvantag:[10,45],discret:30,discuss:[37,44],distribut:[6,30,35,36],distrubut:[35,36],doe:[34,35,39,40],domain:[30,43],don:43,dot:[38,39],down:[2,41,42,45],dropout:[2,41,42],e:[0,27,28],each:37,economi:34,effect:44,effici:43,electron:[0,27,28],element:[1,30,33,38,39],elimin:26,energi:33,ensembl:[11,45],entropi:[10,37],environ:[1,16,33],equat:[0,1,3,13,33,34,35,37,38,40,42],error:[1,11,33,34,36,45],essenti:33,estim:[35,36],et:22,etc:[33,43],euler:[3,42],evalu:[2,28,40,41,42,43],exampl:[1,2,3,4,5,7,8,9,10,11,22,33,34,35,36,37,38,39,40,41,42,43,44,45],exercis:[1,7,16,17,18,19,20,21,22,23,24,33,34,36,42],expect:[19,30,35,36],expens:36,experi:30,explod:44,explor:[1,16,17,33],exponenti:[3,42],express:[18,19,33,34,37,38],extend:[37,38],extrapol:[5,44],extrem:[11,33,45],ey:[11,45],f:[27,28],f_1:44,factor:45,fall:31,famili:[2,33,34,41,42],famou:26,fantast:34,featur:[10,26,34,45],feed:[2,13,39,40,41,42],file:43,find:[36,38,39,43],fine:[2,41,42],first:[5,13,28,33,34,35,37,38,40,42,45],fit:[1,11,33,35,45],fix:34,flatten:43,flow:41,fold:[36,37],forc:[4,43],forest:[11,45],format:[0,27,28,33,44],forward:[2,3,13,39,40,41,42],four:44,fourier:[4,43],frank:[7,27,34],freedom:[1,34],frequent:34,frequentist:[1,33],fridai:37,from:[6,11,13,22,28,34,35,36,37,38,39,40,43,45],full:[3,40,41,42,43],fulli:43,funtion:[41,42],further:[4,6,34,43,45],g:27,gain:44,gan:5,gate:[24,39,40,41,42],gaussian:26,gd:[14,22,38,39],gener:[5,10,33,45],geometr:[12,37,38],get:22,gini:[10,45],good:[1,33],goodfellow:22,grade:[31,33],gradient:[2,3,11,14,22,28,37,38,39,41,42,44],grid:[37,44],group:37,grow:45,growth:[3,42],ha:25,half:43,hand:[24,42],handl:[26,33,34],happen:[35,36],have:33,head:45,heard:33,hessian:[34,37,38],hidden:[3,41,42,43,44],histogram:36,homework:[37,38],hour:45,hous:[1,34],how:[37,45],hyperbol:[39,40],hyperparamet:[2,40,41,42],hyperplan:9,i:[2,41,42],id3:10,idea:[12,43],ideal:[37,38],ident:[35,36],identifi:36,ii:[33,42],iid:[35,36],iii:42,illustr:[35,39,40],imag:43,implement:[2,40,41,42,44],implic:[6,34],improv:[2,38,40,41,42],includ:[14,22,37,38,39],increment:12,independ:[35,36],index:[10,45],indic:45,inform:31,initi:44,input:[3,42,44],instal:[0,25,27,33],instructor:31,intercept:34,interpret:[6,12,33,34,35,36,37,38],interv:36,introduc:[12,14,22,34,38,39],introduct:[0,1,7,25,26,27,28,33,39,40,41],invers:[6,26,35],invert:34,iter:[11,38,45],its:[34,45],iv:42,jacobian:[34,42],jargon:45,jax:[14,22,38,39],job:[39,40],julia:33,jungl:[11,45],k:[36,37],kei:43,kera:[2,4,41,42,43],kernel:[9,12,43],l:40,lab:44,lagrangian:9,lambda:[37,44],lasso:[6,7,27,34,35,36,37],last:[34,36,37,39],later:[6,34],layer:[2,3,4,13,40,41,42,43],layout:44,learn:[0,1,2,3,12,14,15,16,17,22,24,25,27,28,33,34,35,36,37,38,39,40,41,42,44,45],least:[6,7,19,27,33,34,35],lectur:[33,34,35,36,37,40,41,42,43,44],level:[11,45],librari:[25,33],likelihood:[8,35,36,37],limit:[2,14,30,36,37,38,39,41,42],linear:[1,9,14,26,28,33,34,35,37,44],link:[6,12,29,32,34,35,36],list:43,literatur:[27,28],logist:[8,28,33,37,38,39,40,41,42],loop:[38,39],loss:[34,37,38],lstm:44,lu:26,machin:[0,1,9,14,25,27,28,33,37,38],made:[35,36],mai:33,main:30,make:[1,10,11,16,17,33,34,45],mani:[11,13,40,45],manipul:34,margin:[35,36],mass:33,materi:[29,33,34,35,36,37,42,43,44],math:[6,34],mathemat:[4,6,9,34,38,39,40,43],matric:[6,26,33,35],matrix:[2,6,12,13,26,33,34,35,37,38,39,40,41,42,44],matter:[1,33],max:34,maximum:[35,36,37],mean:[1,33,34,35,37],measur:[37,44],medic:43,meet:[6,11,30,33,34,45],memori:44,mercer:9,method:[7,10,11,14,22,24,27,36,37,38,39,42,45],midnight:[0,27,28],min:34,mini:[38,39],minibatch:[22,38,39],minim:[33,37,42],ml:33,mle:[35,36],mlp:[13,40],mnist:[4,5,43],model:[1,2,5,7,13,33,39,40,41,42,43,45],moment:[38,39],momentum:[14,22,38,39],moon:[9,10,45],more:[4,7,22,26,27,33,34,35,36,37,38,39,41,42,43,45],multi:[39,40,41],multiclass:[24,42],multilay:[13,39,40],multipl:[2,4,40,41,42,43],multipli:9,need:[0,27,33,44],neg:44,network:[0,2,3,4,5,8,13,24,28,33,37,39,40,41,42,43,44],neural:[0,2,3,4,5,8,13,24,28,33,39,40,41,42,43,44],neuron:[39,40,43],newton:[22,37,38,39],nice:[41,42],nn:43,node:45,noen:[22,38,39],non:9,normal:[1,2,36,41,42],notat:[13,39,40],note:[22,34,35,36],novemb:[28,43,44],now:[2,10,14,22,35,36,38,39,41,42],nuclear:[1,33],nueral:37,numba:33,number:[1,3,22,30,34,38,39,42],numer:[0,3,27,28,30,42],numpi:[22,26,33,38,39],object:[4,40,41,42,43],obtain:12,octob:[27,40,41,42],od:[3,42],off:[7,27],ol:[6,7,22,27,35,36,38,39],one:[3,13,37,38,40,42],ones:[39,40],oper:26,optim:[2,9,14,25,33,34,37,38,39,40,41,42,43,44],order:[14,22,38,39],ordinari:[6,7,19,27,33,34,35,42],organ:[1,33],orient:[40,41,42],oslo:32,other:[5,10,12,13,24,26,33,34,37,39,40,42,44,45],our:[1,5,6,12,14,33,34,37,38,40,41,42,43],out:45,outcom:[25,33],output:[3,41,42,44],overarch:[1,5,9,10,18,19,20,21,22,23,24,33,34,44,45],overview:[11,33,38,39,45],own:[1,11,12,16,17,28,33,34,43,45],packag:[26,33],pad:43,panda:[33,34],paper:27,paramet:[33,34,37,38,39,44],part:[0,14,25,27,28,34,37,38,43],partial:[0,3,42],pass:[2,40,41,42,44],path:0,pca:12,pdf:30,pencil:27,perceptron:[13,39,40,41],perform:[2,10,40,41,42,45],period:[4,43],perspect:[2,41,42],pertin:45,plan:[34,35,36,37,38,39,40,41,42,43,44,45],plot:[36,37],point:[5,44],poisson:[3,42],polynomi:[4,35,43],pool:43,popul:[3,42],posit:44,possibl:[42,45],practic:[14,22,31,33,38,39,44],pre:[2,4,40,41,42,43],predict:[5,44],predictor:37,preprocess:34,prerequisit:[4,25,33,43],present:44,princip:12,principl:[4,43],print:45,pro:[10,45],probabl:[6,30,35,36],problem:[0,2,3,14,22,33,34,35,37,38,39,40,41,42,44,45],procedur:[10,33,45],process:[2,4,40,41,42,43],product:[38,39],program:[0,3,14,27,28,37,38,42],project:[0,7,27,28,33,37],prop:[14,38,39],propag:[2,13,40,41,42],properti:[6,30,34,37],prune:45,python:[1,10,16,25,26,33,45],quantiti:44,quick:9,r:33,random:[11,12,30,37,44,45],raphson:[37,38],rate:[22,24,38,39,42],read:[10,33,34,36,45],real:[7,27,33],recogn:43,recommend:[33,34,38,39],rectangular:35,recurr:[5,13,39,40,44],recurs:[38,39,45],reduc:[1,34],reduct:[4,43],reformul:[3,42],regress:[1,6,7,8,10,11,14,18,19,27,28,33,34,35,36,37,38,39,40,45],regressor:45,regular:[2,37,40,41,42,43,44],relat:34,relev:[32,34,36,37,39,40],relu:[2,41,42],remark:[4,43],remind:[7,9,33,37,38],repeat:34,replac:[14,38,39],report:[0,27,28],repositori:36,repres:[24,40,41,42],requir:[3,25,42],resampl:[7,27,35,36],rescal:[7,35],residu:34,resourc:[3,42],result:[34,35,44],review:41,revisit:[14,37,38],rewrit:[33,34,36],rewritten:37,ridg:[1,6,7,18,19,27,34,35,36,37,38],rm:[14,38,39],rmsprop:[22,38,39],rnn:44,roc:44,rule:[13,40],run:43,s:[9,11,22,36,37,38,39,45],same:[14,22,36,38,39,43],sampl:12,scale:[34,36,43],scan:43,schedul:[24,29,33,42,43],schemat:[10,45],scheme:[3,42],scienc:33,scikit:[1,2,12,16,17,24,33,34,35,36,37,38,40,41,42,45],score:44,search:[37,44],second:[14,22,38,39],select:37,semest:31,sensit:[37,38],separ:43,septemb:[35,36,37],session:[35,44],set:[0,1,3,4,10,13,16,24,33,34,37,40,41,42,43,45],setup:42,sever:44,sgd:[14,38,39],should:[2,41,42],sigmoid:[41,42],similar:[14,22,38,39],simpl:[1,5,10,14,33,34,35,37,38,39,43,44,45],singl:[11,39,40,45],singular:[6,12,18,34],size:34,sketch:45,slept:45,slightli:[38,39],soft:9,softmax:[2,40,41],softwar:[0,27,33],solut:42,solv:[0,3,35,37,38,42],solver:14,some:[14,26,33,34,37,38],sound:43,specif:42,specifi:[3,42,44],speed:43,split:[1,16,17,33,34,45],squar:[1,6,7,11,19,27,33,34,35,45],standard:[14,34,36,38,45],start:[22,39],state:[1,33,44],statement:33,statist:[6,7,25,30,33,35,36],steepest:[11,14,37,38],step:[28,36,37,38,39,45],still:34,stochast:[14,22,28,30,38,39],stop:[38,39],stride:43,strong:43,strongli:33,structur:0,studi:[37,44,45],subtract:34,suggest:33,sum:36,summari:[31,33,39],superposit:[4,43],supervis:[2,41,42],support:9,svd:[6,34,35],syntax:[38,39],systemat:[4,43],t:[34,35,43],tabl:45,tail:45,taken:22,target:44,teach:[29,31],teacher:[31,33],technic:[35,42],techniqu:[7,12,27,35],technolog:25,tensor:41,tensorflow:[2,4,41,42,43],tent:33,term:[36,40,44],test:[1,2,16,17,24,28,33,34,35,40,41,42],text:45,textbook:[32,33],than:[37,38],thei:33,theorem:[6,9,12,13,30,35,36,40],theori:30,thi:[18,19,20,21,22,23,33],thing:44,think:34,through:44,thursdai:[34,35,36,37,40,41,42,43,44],time:[38,39,44],tip:[14,22,38,39],togeth:[13,40],tool:33,top:[2,41,42,43,45],topic:33,toss:45,toward:12,trade:[7,27],tradeoff:[7,36],train:[1,2,5,16,17,33,34,40,41,42,43,44],transform:[4,43],tree:[10,11,45],trial:42,tuesdai:35,tune:[2,41,42],two:[4,9,25,27,34,37,43],type:[3,5,13,33,39,40,42,44],typic:45,uio:33,understand:36,unit:[43,44],univers:[13,32,40],unsupervis:15,unsupport:[38,39],up:[0,1,3,10,13,16,22,24,33,34,36,37,40,41,42,43,45],us:[1,2,3,4,8,14,22,24,25,28,33,34,37,38,39,40,41,42,43,44,45],usag:[24,35,36,42,43],valid:[7,27,36,37],valu:[6,12,18,19,30,34,35,36,37,44],vanish:44,vari:[22,38,39],variabl:[30,37,38],varianc:[7,27,35,36],variou:[1,16,28,33,36,37,45],vector:[9,13,26,33,34,39,40],veri:[41,42],verifi:43,video:[38,39],view:[1,5,11,34,44,45],visual:[2,10,40,41,42,43,45],volum:43,vote:45,vs:[4,43],wai:[10,22,36,43,44,45],warm:22,wave:[3,42],we:[22,33,38,39,41,42,44,45],websit:[41,42],wednesdai:35,week:[16,17,18,19,20,21,22,23,24,33,34,35,36,37,38,39,40,41,42,43,44,45],weekend:37,weekli:[29,36],weight:[40,41,42],well:43,what:[1,33,34,35,36,43,45],when:[38,39],which:[2,22,38,39,41,42],why:[33,34,36,39,40,42,43,45],wisconsin:[8,37,44],word:43,wrap:[34,36,43],write:[5,12,28,35,42],x:[34,35],xgboost:11,xor:[24,39,40,41,42],yet:35,you:33,your:[0,1,11,16,17,28,33,34,45],yourself:[0,37],z_j:40,zero:43}}) \ No newline at end of file diff --git a/doc/LectureNotes/_build/jupyter_execute/Project3.ipynb b/doc/LectureNotes/_build/jupyter_execute/Project3.ipynb index 7fec35ceb..93386990f 100644 --- a/doc/LectureNotes/_build/jupyter_execute/Project3.ipynb +++ b/doc/LectureNotes/_build/jupyter_execute/Project3.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "5831c36a", + "id": "32bbc99a", "metadata": { "editable": true }, @@ -14,7 +14,7 @@ }, { "cell_type": "markdown", - "id": "2d774c8b", + "id": "21397747", "metadata": { "editable": true }, @@ -22,14 +22,14 @@ "# Project 3 on Machine Learning, deadline December 18 (midnight), 2023\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Nov 12, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "5cbde03b", + "id": "a13debcc", "metadata": { "editable": true }, @@ -39,7 +39,7 @@ }, { "cell_type": "markdown", - "id": "5170403b", + "id": "9d1f1220", "metadata": { "editable": true }, @@ -54,11 +54,15 @@ "3. Or other sources.\n", "\n", "The approach to the analysis of these new data sets should follow to a large extent what you did in projects 1 and 2. That is:\n", - "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**. You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", + "1. Whether you end up with a regression or a classification problem, you should employ at least two of the methods we have discussed among **linear regression (including Ridge and Lasso)**, **Logistic Regression**, **Neural Networks**, **Convolution Neural Networks**, **Recurrent Neural Networks**, and **Decision Trees, Random Forests, Bagging and Boosting**.\n", + "\n", + "Feel also free to use support vector machines, $k$-means and principal components analysis, although the latter have not been covered during the lectures. This material can be found in the lecture notes.\n", + "\n", + "You could for example explore all of the approaches from decision trees, via bagging and voting classifiers, to random forests, boosting and finally XGboost. If you wish to venture into **convolutional neural networks** or **recurrent neural networks**, or extensions of neural networkds, feel free to do so. You can also study unsupervised methods, although we in this course have mainly paid attention to supervised learning. \n", "\n", "For Boosting, feel also free to write your own codes.\n", "\n", - "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, etc. \n", + "1. For project 3, you should feel free to use your own codes from projects 1 and 2, eventually write your own for Decision trees/random forests/bagging/boosting' or use the available functionality of **Scikit-Learn**, **Tensorflow**, PyTorch etc. \n", "\n", "2. The estimates you used and tested in projects 1 and 2 should also be included, that is the $R2$-score, **MSE**, confusion matrix, accuracy score, information gain, ROC and Cumulative gains curves and other, cross-validation and/or bootstrap if these are relevant.\n", "\n", @@ -72,12 +76,12 @@ "\n", "We propose also an alternative to the above. This is a project on using machine learning methods (neural networks mainly) to the solution of ordinary differential equations and partial differential equations, with a final twist on how to diagonalize a symmetric matrix with neural networks.\n", "\n", - "This is a field with a large interest recently, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." + "This is a field with large scientific interest, spanning from studies of turbulence in fluid mechanics and meteorology to the solution of quantum mechanical systems. As reading background you can use the slides [from week 43](https://compphysics.github.io/MachineLearning/doc/pub/week43/html/week42.html) and/or the textbook by [Yadav et al](https://www.springer.com/gp/book/9789401798150)." ] }, { "cell_type": "markdown", - "id": "e9fc8e8e", + "id": "6416060c", "metadata": { "editable": true }, @@ -89,7 +93,7 @@ }, { "cell_type": "markdown", - "id": "ce8b52a3", + "id": "18827262", "metadata": { "editable": true }, @@ -101,7 +105,7 @@ }, { "cell_type": "markdown", - "id": "eb943f7a", + "id": "bcee53f4", "metadata": { "editable": true }, @@ -113,7 +117,7 @@ }, { "cell_type": "markdown", - "id": "17447dcc", + "id": "83ec8275", "metadata": { "editable": true }, @@ -125,7 +129,7 @@ }, { "cell_type": "markdown", - "id": "d9bea856", + "id": "2be62c8e", "metadata": { "editable": true }, @@ -137,7 +141,7 @@ }, { "cell_type": "markdown", - "id": "5b74282b", + "id": "385e0b16", "metadata": { "editable": true }, @@ -149,7 +153,7 @@ }, { "cell_type": "markdown", - "id": "28f082d7", + "id": "fbf49165", "metadata": { "editable": true }, @@ -162,14 +166,27 @@ "equation in one dimension using a standard explicit scheme and neural\n", "networks to solve the same equations.\n", "\n", - "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources. For the solution of ordinary and partial differential equations using neural networks, the lectures by [Kristine Baluka Hein and included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", + "For the explicit scheme, you can study for example chapter 10 of the lecture notes in [Computational Physics, FYS3150/4150](https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Lectures/lectures2015.pdf) or alternative sources from courses like [MAT-MEK4270](https://www.uio.no/studier/emner/matnat/math/MAT-MEK4270/index.html). For the solution of ordinary and partial differential equations using neural networks, the lectures by [included in the lectures of week 43](https://compphysics.github.io/MachineLearning/doc/pub/week42/html/week43.html) at this course are highly recommended.\n", "\n", - "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**.." + "For the machine learning part you can use your own code from project 2 or the functionality of for example **Tensorflow/Keras**, **PyTorch** or other libraries such [Physics informed machine learning](https://maziarraissi.github.io/PINNs/)." ] }, { "cell_type": "markdown", - "id": "5e855e7f", + "id": "c97df4f9", + "metadata": { + "editable": true + }, + "source": [ + "### Alternative differential equations\n", + "\n", + "Note that you can replace the one-dimensional diffusion equation discussed below with other sets of either ordinary differential equations or partial differential equations.\n", + "Please discuss such a change with us at the lab." + ] + }, + { + "cell_type": "markdown", + "id": "ecde0a0e", "metadata": { "editable": true }, @@ -183,7 +200,7 @@ }, { "cell_type": "markdown", - "id": "bc4be75f", + "id": "56429d7e", "metadata": { "editable": true }, @@ -195,7 +212,7 @@ }, { "cell_type": "markdown", - "id": "caa1eca4", + "id": "c2e49662", "metadata": { "editable": true }, @@ -205,7 +222,7 @@ }, { "cell_type": "markdown", - "id": "98a2bd5b", + "id": "fd661d63", "metadata": { "editable": true }, @@ -217,7 +234,7 @@ }, { "cell_type": "markdown", - "id": "980b949d", + "id": "a1d77183", "metadata": { "editable": true }, @@ -227,7 +244,7 @@ }, { "cell_type": "markdown", - "id": "7401e9ec", + "id": "73d187ef", "metadata": { "editable": true }, @@ -239,7 +256,7 @@ }, { "cell_type": "markdown", - "id": "e953662e", + "id": "b9b49da0", "metadata": { "editable": true }, @@ -250,7 +267,7 @@ }, { "cell_type": "markdown", - "id": "52122eb7", + "id": "aee685e3", "metadata": { "editable": true }, @@ -262,7 +279,7 @@ }, { "cell_type": "markdown", - "id": "ab71a383", + "id": "96ec18ae", "metadata": { "editable": true }, @@ -272,7 +289,7 @@ }, { "cell_type": "markdown", - "id": "4f886681", + "id": "57c542b7", "metadata": { "editable": true }, @@ -284,7 +301,7 @@ }, { "cell_type": "markdown", - "id": "83f8d12e", + "id": "b6e8e863", "metadata": { "editable": true }, @@ -297,7 +314,7 @@ }, { "cell_type": "markdown", - "id": "4bcf494f", + "id": "76ae9476", "metadata": { "editable": true }, @@ -309,7 +326,7 @@ }, { "cell_type": "markdown", - "id": "7f95982b", + "id": "95e239a3", "metadata": { "editable": true }, @@ -319,7 +336,7 @@ }, { "cell_type": "markdown", - "id": "1ee81ac0", + "id": "63fb1417", "metadata": { "editable": true }, @@ -331,7 +348,7 @@ }, { "cell_type": "markdown", - "id": "bae7898a", + "id": "e1c77709", "metadata": { "editable": true }, @@ -341,7 +358,7 @@ }, { "cell_type": "markdown", - "id": "5de23ea9", + "id": "2631e4bd", "metadata": { "editable": true }, @@ -353,7 +370,7 @@ }, { "cell_type": "markdown", - "id": "4d5d56e3", + "id": "0fa54ca3", "metadata": { "editable": true }, @@ -364,7 +381,7 @@ }, { "cell_type": "markdown", - "id": "e52523ef", + "id": "7579152d", "metadata": { "editable": true }, @@ -380,7 +397,7 @@ }, { "cell_type": "markdown", - "id": "678607d0", + "id": "e8ceb962", "metadata": { "editable": true }, @@ -397,21 +414,34 @@ }, { "cell_type": "markdown", - "id": "61d51d93", + "id": "fe5c3f2f", "metadata": { "editable": true }, "source": [ - "### Part d)\n", + "### Part d) Neural network complexity\n", "\n", - "Finally, present a critical assessment of the methods you have studied\n", - "and discuss the potential for the solving differential equations and\n", - "eigenvalue problems with machine learning methods." + "Here we study the stability of the results of the results as functions of the number of hidden nodes, layers and activation functions for the hidden layers.\n", + "Increase the number of hidden nodes and layers in order to see if this improves your results. Try also different activation functions for the hidden layers, such as the **tanh**, **ReLU**, and other activation functions. \n", + "Discuss your results." ] }, { "cell_type": "markdown", - "id": "d2163034", + "id": "3b2adf3a", + "metadata": { + "editable": true + }, + "source": [ + "### Part e)\n", + "\n", + "Finally, present a critical assessment of the methods you have studied\n", + "and discuss the potential for the solving differential equations with machine learning methods." + ] + }, + { + "cell_type": "markdown", + "id": "c2ed7243", "metadata": { "editable": true }, @@ -442,7 +472,7 @@ }, { "cell_type": "markdown", - "id": "e31290fd", + "id": "e9f450e7", "metadata": { "editable": true }, @@ -464,7 +494,7 @@ }, { "cell_type": "markdown", - "id": "99e78b73", + "id": "4ec24e55", "metadata": { "editable": true }, diff --git a/doc/LectureNotes/_build/jupyter_execute/project2.ipynb b/doc/LectureNotes/_build/jupyter_execute/project2.ipynb index 21bbab7b1..cbefb5694 100644 --- a/doc/LectureNotes/_build/jupyter_execute/project2.ipynb +++ b/doc/LectureNotes/_build/jupyter_execute/project2.ipynb @@ -2,34 +2,34 @@ "cells": [ { "cell_type": "markdown", - "id": "6afd3fdb", + "id": "515c9474", "metadata": { "editable": true }, "source": [ "\n", - "" + "" ] }, { "cell_type": "markdown", - "id": "21a10baa", + "id": "890dcb04", "metadata": { "editable": true }, "source": [ - "# Project 2 on Machine Learning, deadline November 13 (Midnight)\n", + "# Project 2 on Machine Learning, deadline November 17 (Midnight)\n", "**[Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html)**, Department of Physics, University of Oslo, Norway\n", "\n", - "Date: **Oct 9, 2023**\n", + "Date: **Nov 13, 2023**\n", "\n", "Copyright 1999-2023, [Data Analysis and Machine Learning FYS-STK3155/FYS4155](http://www.uio.no/studier/emner/matnat/fys/FYS3155/index-eng.html). Released under CC Attribution-NonCommercial 4.0 license" ] }, { "cell_type": "markdown", - "id": "4f67ce6e", + "id": "8cbf512f", "metadata": { "editable": true }, @@ -75,7 +75,7 @@ }, { "cell_type": "markdown", - "id": "67c6916e", + "id": "696379a0", "metadata": { "editable": true }, @@ -127,7 +127,7 @@ }, { "cell_type": "markdown", - "id": "fff54502", + "id": "81d48303", "metadata": { "editable": true }, @@ -166,7 +166,7 @@ }, { "cell_type": "markdown", - "id": "6e0f9012", + "id": "db6aebb0", "metadata": { "editable": true }, @@ -178,7 +178,7 @@ }, { "cell_type": "markdown", - "id": "075046bf", + "id": "18314d90", "metadata": { "editable": true }, @@ -204,7 +204,7 @@ }, { "cell_type": "markdown", - "id": "080dadf2", + "id": "dc3021aa", "metadata": { "editable": true }, @@ -216,7 +216,7 @@ }, { "cell_type": "markdown", - "id": "e3418dd4", + "id": "3c3c5b42", "metadata": { "editable": true }, @@ -236,7 +236,7 @@ }, { "cell_type": "markdown", - "id": "828ad79f", + "id": "1a493d07", "metadata": { "editable": true }, @@ -258,7 +258,7 @@ }, { "cell_type": "markdown", - "id": "07059668", + "id": "649a5380", "metadata": { "editable": true }, @@ -274,7 +274,7 @@ }, { "cell_type": "markdown", - "id": "e88200db", + "id": "804df082", "metadata": { "editable": true }, @@ -290,7 +290,7 @@ }, { "cell_type": "markdown", - "id": "66733be9", + "id": "2661bc83", "metadata": { "editable": true }, @@ -321,7 +321,7 @@ }, { "cell_type": "markdown", - "id": "5c49a400", + "id": "e651a157", "metadata": { "editable": true },