diff --git a/doc/LectureNotes/_build/.doctrees/environment.pickle b/doc/LectureNotes/_build/.doctrees/environment.pickle
index d8d4e46c0..e00438c6d 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/exercisesweek41.doctree b/doc/LectureNotes/_build/.doctrees/exercisesweek41.doctree
new file mode 100644
index 000000000..73ab6a91e
Binary files /dev/null and b/doc/LectureNotes/_build/.doctrees/exercisesweek41.doctree differ
diff --git a/doc/LectureNotes/_build/.doctrees/intro.doctree b/doc/LectureNotes/_build/.doctrees/intro.doctree
index 98b8df521..0998fb5ae 100644
Binary files a/doc/LectureNotes/_build/.doctrees/intro.doctree and b/doc/LectureNotes/_build/.doctrees/intro.doctree differ
diff --git a/doc/LectureNotes/_build/html/_sources/exercisesweek41.ipynb b/doc/LectureNotes/_build/html/_sources/exercisesweek41.ipynb
new file mode 100644
index 000000000..fccc64f45
--- /dev/null
+++ b/doc/LectureNotes/_build/html/_sources/exercisesweek41.ipynb
@@ -0,0 +1,804 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "4b4c06bc",
+ "metadata": {},
+ "source": [
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bcb25e64",
+ "metadata": {},
+ "source": [
+ "# Exercises week 41\n",
+ "\n",
+ "**October 6-10, 2025**\n",
+ "\n",
+ "Date: **Deadline is Friday October 10 at midnight**\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bb01f126",
+ "metadata": {},
+ "source": [
+ "# Overarching aims of the exercises this week\n",
+ "\n",
+ "This week, you will implement the entire feed-forward pass of a neural network! Next week you will compute the gradient of the network by implementing back-propagation manually, and by using autograd which does back-propagation for you (much easier!). Next week, you will also use the gradient to optimize the network with a gradient method! However, there is an optional exercise this week to get started on training the network and getting good results!\n",
+ "\n",
+ "We recommend that you do the exercises this week by editing and running this notebook file, as it includes some checks along the way that you have implemented the pieces of the feed-forward pass correctly, and running small parts of the code at a time will be important for understanding the methods.\n",
+ "\n",
+ "If you have trouble running a notebook, you can run this notebook in google colab instead (https://colab.research.google.com/drive/1zKibVQf-iAYaAn2-GlKfgRjHtLnPlBX4#offline=true&sandboxMode=true), an updated link will be provided on the course discord (you can also send an email to k.h.fredly@fys.uio.no if you encounter any trouble), though we recommend that you set up VSCode and your python environment to run code like this locally.\n",
+ "\n",
+ "First, here are some functions you are going to need, don't change this cell. If you are unable to import autograd, just swap in normal numpy until you want to do the final optional exercise.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c6f61b09",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import autograd.numpy as np # We need to use this numpy wrapper to make automatic differentiation work later\n",
+ "from sklearn import datasets\n",
+ "import matplotlib.pyplot as plt\n",
+ "from sklearn.metrics import accuracy_score\n",
+ "\n",
+ "\n",
+ "# Defining some activation functions\n",
+ "def ReLU(z):\n",
+ " return np.where(z > 0, z, 0)\n",
+ "\n",
+ "\n",
+ "def sigmoid(z):\n",
+ " return 1 / (1 + np.exp(-z))\n",
+ "\n",
+ "\n",
+ "def softmax(z):\n",
+ " \"\"\"Compute softmax values for each set of scores in the rows of the matrix z.\n",
+ " Used with batched input data.\"\"\"\n",
+ " e_z = np.exp(z - np.max(z, axis=0))\n",
+ " return e_z / np.sum(e_z, axis=1)[:, np.newaxis]\n",
+ "\n",
+ "\n",
+ "def softmax_vec(z):\n",
+ " \"\"\"Compute softmax values for each set of scores in the vector z.\n",
+ " Use this function when you use the activation function on one vector at a time\"\"\"\n",
+ " e_z = np.exp(z - np.max(z))\n",
+ " return e_z / np.sum(e_z)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6248ec53",
+ "metadata": {},
+ "source": [
+ "# Exercise 1\n",
+ "\n",
+ "In this exercise you will compute the activation of the first layer. You only need to change the code in the cells right below an exercise, the rest works out of the box. Feel free to make changes and see how stuff works though!\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "37f30740",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(2024)\n",
+ "\n",
+ "x = np.random.randn(2) # network input. This is a single input with two features\n",
+ "W1 = np.random.randn(4, 2) # first layer weights"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4ed2cf3d",
+ "metadata": {},
+ "source": [
+ "**a)** Given the shape of the first layer weight matrix, what is the input shape of the neural network? What is the output shape of the first layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "edf7217b",
+ "metadata": {},
+ "source": [
+ "**b)** Define the bias of the first layer, `b1`with the correct shape. (Run the next cell right after the previous to get the random generated values to line up with the test solution below)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "2129c19f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "b1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "09e8d453",
+ "metadata": {},
+ "source": [
+ "**c)** Compute the intermediary `z1` for the first layer\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6837119b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "z1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6f71374e",
+ "metadata": {},
+ "source": [
+ "**d)** Compute the activation `a1` for the first layer using the ReLU activation function defined earlier.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "8d41ed19",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "a1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "088710c0",
+ "metadata": {},
+ "source": [
+ "Confirm that you got the correct activation with the test below. Make sure that you define `b1` with the randn function right after you define `W1`.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "4d2f54b4",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sol1 = np.array([0.60610368, 4.0076268, 0.0, 0.56469864])\n",
+ "\n",
+ "print(np.allclose(a1, sol1))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7fb0cf46",
+ "metadata": {},
+ "source": [
+ "# Exercise 2\n",
+ "\n",
+ "Now we will add a layer to the network with an output of length 8 and ReLU activation.\n",
+ "\n",
+ "**a)** What is the input of the second layer? What is its shape?\n",
+ "\n",
+ "**b)** Define the weight and bias of the second layer with the right shapes.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "00063acf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "W2 = ...\n",
+ "b2 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5bd7d84b",
+ "metadata": {},
+ "source": [
+ "**c)** Compute the intermediary `z2` and activation `a2` for the second layer.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "2fd0383d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "z2 = ...\n",
+ "a2 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1b5daae5",
+ "metadata": {},
+ "source": [
+ "Confirm that you got the correct activation shape with the test below.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f7f2f8a1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "print(\n",
+ " np.allclose(np.exp(len(a2)), 2980.9579870417283)\n",
+ ") # This should evaluate to True if a2 has the correct shape :)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3759620d",
+ "metadata": {},
+ "source": [
+ "# Exercise 3\n",
+ "\n",
+ "We often want our neural networks to have many layers of varying sizes. To avoid writing very long and error-prone code where we explicitly define and evaluate each layer we should keep all our layers in a single variable which is easy to create and use.\n",
+ "\n",
+ "**a)** Complete the function below so that it returns a list `layers` of weight and bias tuples `(W, b)` for each layer, in order, with the correct shapes that we can use later as our network parameters.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c58f10f9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def create_layers(network_input_size, layer_output_sizes):\n",
+ " layers = []\n",
+ "\n",
+ " i_size = network_input_size\n",
+ " for layer_output_size in layer_output_sizes:\n",
+ " W = ...\n",
+ " b = ...\n",
+ " layers.append((W, b))\n",
+ "\n",
+ " i_size = layer_output_size\n",
+ " return layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bdc0cda2",
+ "metadata": {},
+ "source": [
+ "**b)** Comple the function below so that it evaluates the intermediary `z` and activation `a` for each layer, with ReLU actication, and returns the final activation `a`. This is the complete feed-forward pass, a full neural network!\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5262df05",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def feed_forward_all_relu(layers, input):\n",
+ " a = input\n",
+ " for W, b in layers:\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "245adbcb",
+ "metadata": {},
+ "source": [
+ "**c)** Create a network with input size 8 and layers with output sizes 10, 16, 6, 2. Evaluate it and make sure that you get the correct size vectors along the way.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "89a8f70d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "\n",
+ "x = np.random.rand(input_size)\n",
+ "layers = ...\n",
+ "predict = ...\n",
+ "print(predict)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0da7fd52",
+ "metadata": {},
+ "source": [
+ "**d)** Why is a neural network with no activation functions always mathematically equivelent to a neural network with only one layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "306d8b7c",
+ "metadata": {},
+ "source": [
+ "# Exercise 4 - Custom activation for each layer\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "221c7b6c",
+ "metadata": {},
+ "source": [
+ "So far, every layer has used the same activation, ReLU. We often want to use other types of activation however, so we need to update our code to support multiple types of activation functions. Make sure that you have completed every previous exercise before trying this one.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10896d06",
+ "metadata": {},
+ "source": [
+ "**a)** Complete the `feed_forward` function which accepts a list of activation functions as an argument, and which evaluates these activation functions at each layer.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "de062369",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def feed_forward(input, layers, activation_funcs):\n",
+ " a = input\n",
+ " for (W, b), activation_func in zip(layers, activation_funcs):\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8f7df363",
+ "metadata": {},
+ "source": [
+ "**b)** You are now given a list with three activation functions, two ReLU and one sigmoid. (Don't call them yet! you can make a list with function names as elements, and then call these elements of the list later. If you add other functions than the ones defined at the start of the notebook, make sure everything is defined using autograd's numpy wrapper, like above, since we want to use automatic differentiation on all of these functions later.)\n",
+ "\n",
+ "Evaluate a network with three layers and these activation functions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "301b46dc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "network_input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "activation_funcs = [ReLU, ReLU, sigmoid]\n",
+ "layers = ...\n",
+ "\n",
+ "x = np.random.randn(network_input_size)\n",
+ "feed_forward(x, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9c914fd0",
+ "metadata": {},
+ "source": [
+ "**c)** How does the output of the network change if you use sigmoid in the hidden layers and ReLU in the output layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a8d6c425",
+ "metadata": {},
+ "source": [
+ "# Exercise 5 - Processing multiple inputs at once\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0f4330a4",
+ "metadata": {},
+ "source": [
+ "So far, the feed forward function has taken one input vector as an input. This vector then undergoes a linear transformation and then an element-wise non-linear operation for each layer. This approach of sending one vector in at a time is great for interpreting how the network transforms data with its linear and non-linear operations, but not the best for numerical efficiency. Now, we want to be able to send many inputs through the network at once. This will make the code a bit harder to understand, but it will make it faster, and more compact. It will be worth the trouble.\n",
+ "\n",
+ "To process multiple inputs at once, while still performing the same operations, you will only need to flip a couple things around.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "17023bb7",
+ "metadata": {},
+ "source": [
+ "**a)** Complete the function `create_layers_batch` so that the weight matrix is the transpose of what it was when you only sent in one input at a time.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "a241fd79",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def create_layers_batch(network_input_size, layer_output_sizes):\n",
+ " layers = []\n",
+ "\n",
+ " i_size = network_input_size\n",
+ " for layer_output_size in layer_output_sizes:\n",
+ " W = ...\n",
+ " b = ...\n",
+ " layers.append((W, b))\n",
+ "\n",
+ " i_size = layer_output_size\n",
+ " return layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a6349db6",
+ "metadata": {},
+ "source": [
+ "**b)** Make a matrix of inputs with the shape (number of features, number of inputs), you choose the number of inputs and features per input. Then complete the function `feed_forward_batch` so that you can process this matrix of inputs with only one matrix multiplication and one broadcasted vector addition per layer. (Hint: You will only need to swap two variable around from your previous implementation, but remember to test that you get the same results for equivelent inputs!)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "425f3bcc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "inputs = np.random.rand(1000, 4)\n",
+ "\n",
+ "\n",
+ "def feed_forward_batch(inputs, layers, activation_funcs):\n",
+ " a = inputs\n",
+ " for (W, b), activation_func in zip(layers, activation_funcs):\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "efd07b4e",
+ "metadata": {},
+ "source": [
+ "**c)** Create and evaluate a neural network with 4 inputs and layers with output sizes 12, 10, 3 and activations ReLU, ReLU, softmax.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ce6fcc2f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "network_input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "activation_funcs = [...]\n",
+ "layers = create_layers_batch(network_input_size, layer_output_sizes)\n",
+ "\n",
+ "x = np.random.randn(network_input_size)\n",
+ "feed_forward_batch(inputs, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "87999271",
+ "metadata": {},
+ "source": [
+ "You should use this batched approach moving forward, as it will lead to much more compact code. However, remember that each input is still treated separately, and that you will need to keep in mind the transposed weight matrix and other details when implementing backpropagation.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "237eb782",
+ "metadata": {},
+ "source": [
+ "# Exercise 6 - Predicting on real data\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "54d5fde7",
+ "metadata": {},
+ "source": [
+ "You will now evaluate your neural network on the iris data set (https://scikit-learn.org/1.5/auto_examples/datasets/plot_iris_dataset.html).\n",
+ "\n",
+ "This dataset contains data on 150 flowers of 3 different types which can be separated pretty well using the four features given for each flower, which includes the width and length of their leaves. You are will later train your network to actually make good predictions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6bd4c148",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "iris = datasets.load_iris()\n",
+ "\n",
+ "_, ax = plt.subplots()\n",
+ "scatter = ax.scatter(iris.data[:, 0], iris.data[:, 1], c=iris.target)\n",
+ "ax.set(xlabel=iris.feature_names[0], ylabel=iris.feature_names[1])\n",
+ "_ = ax.legend(\n",
+ " scatter.legend_elements()[0], iris.target_names, loc=\"lower right\", title=\"Classes\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ed3e2fc9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "inputs = iris.data\n",
+ "\n",
+ "# Since each prediction is a vector with a score for each of the three types of flowers,\n",
+ "# we need to make each target a vector with a 1 for the correct flower and a 0 for the others.\n",
+ "targets = np.zeros((len(iris.data), 3))\n",
+ "for i, t in enumerate(iris.target):\n",
+ " targets[i, t] = 1\n",
+ "\n",
+ "\n",
+ "def accuracy(predictions, targets):\n",
+ " one_hot_predictions = np.zeros(predictions.shape)\n",
+ "\n",
+ " for i, prediction in enumerate(predictions):\n",
+ " one_hot_predictions[i, np.argmax(prediction)] = 1\n",
+ " return accuracy_score(one_hot_predictions, targets)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0362c4a9",
+ "metadata": {},
+ "source": [
+ "**a)** What should the input size for the network be with this dataset? What should the output size of the last layer be?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bf62607e",
+ "metadata": {},
+ "source": [
+ "**b)** Create a network with two hidden layers, the first with sigmoid activation and the last with softmax, the first layer should have 8 \"nodes\", the second has the number of nodes you found in exercise a). Softmax returns a \"probability distribution\", in the sense that the numbers in the output are positive and add up to 1 and, their magnitude are in some sense relative to their magnitude before going through the softmax function. Remember to use the batched version of the create_layers and feed forward functions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5366d4ae",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "...\n",
+ "layers = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "c528846f",
+ "metadata": {},
+ "source": [
+ "**c)** Evaluate your model on the entire iris dataset! For later purposes, we will split the data into train and test sets, and compute gradients on smaller batches of the training data. But for now, evaluate the network on the whole thing at once.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6c783105",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "predictions = feed_forward_batch(inputs, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "01a3caa8",
+ "metadata": {},
+ "source": [
+ "**d)** Compute the accuracy of your model using the accuracy function defined above. Recreate your model a couple times and see how the accuracy changes.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "a2612b82",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "print(accuracy(predictions, targets))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "334560b6",
+ "metadata": {},
+ "source": [
+ "# Exercise 7 - Training on real data (Optional)\n",
+ "\n",
+ "To be able to actually do anything useful with your neural network, you need to train it. For this, we need a cost function and a way to take the gradient of the cost function wrt. the network parameters. The following exercises guide you through taking the gradient using autograd, and updating the network parameters using the gradient. Feel free to implement gradient methods like ADAM if you finish everything.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "700cabe4",
+ "metadata": {},
+ "source": [
+ "Since we are doing a classification task with multiple output classes, we use the cross-entropy loss function, which can evaluate performance on classification tasks. It sees if your prediction is \"most certain\" on the correct target.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f30e6e2c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def cross_entropy(predict, target):\n",
+ " return np.sum(-target * np.log(predict))\n",
+ "\n",
+ "\n",
+ "def cost(input, layers, activation_funcs, target):\n",
+ " predict = feed_forward_batch(input, layers, activation_funcs)\n",
+ " return cross_entropy(predict, target)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7ea9c1a4",
+ "metadata": {},
+ "source": [
+ "To improve our network on whatever prediction task we have given it, we need to use a sensible cost function, take the gradient of that cost function with respect to our network parameters, the weights and biases, and then update the weights and biases using these gradients. To clarify, we need to find and use these\n",
+ "\n",
+ "$$\n",
+ "\\frac{\\partial C}{\\partial W}, \\frac{\\partial C}{\\partial b}\n",
+ "$$\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6c753e3b",
+ "metadata": {},
+ "source": [
+ "Now we need to compute these gradients. This is pretty hard to do for a neural network, we will use most of next week to do this, but we can also use autograd to just do it for us, which is what we always do in practice. With the code cell below, we create a function which takes all of these gradients for us.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "56bef776",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from autograd import grad\n",
+ "\n",
+ "\n",
+ "gradient_func = grad(\n",
+ " cost, 1\n",
+ ") # Taking the gradient wrt. the second input to the cost function, i.e. the layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7b1b74bc",
+ "metadata": {},
+ "source": [
+ "**a)** What shape should the gradient of the cost function wrt. weights and biases be?\n",
+ "\n",
+ "**b)** Use the `gradient_func` function to take the gradient of the cross entropy wrt. the weights and biases of the network. Check the shapes of what's inside. What does the `grad` func from autograd actually do?\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "841c9e87",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "layers_grad = gradient_func(\n",
+ " inputs, layers, activation_funcs, targets\n",
+ ") # Don't change this"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "adc9e9be",
+ "metadata": {},
+ "source": [
+ "**c)** Finish the `train_network` function.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6e4d38d3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def train_network(\n",
+ " inputs, layers, activation_funcs, targets, learning_rate=0.001, epochs=100\n",
+ "):\n",
+ " for i in range(epochs):\n",
+ " layers_grad = gradient_func(inputs, layers, activation_funcs, targets)\n",
+ " for (W, b), (W_g, b_g) in zip(layers, layers_grad):\n",
+ " W -= ...\n",
+ " b -= ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2f65d663",
+ "metadata": {},
+ "source": [
+ "**e)** What do we call the gradient method used above?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7059dd8c",
+ "metadata": {},
+ "source": [
+ "**d)** Train your network and see how the accuracy changes! Make a plot if you want.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5027c7a5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3bc77016",
+ "metadata": {},
+ "source": [
+ "**e)** How high of an accuracy is it possible to acheive with a neural network on this dataset, if we use the whole thing as training data?\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/doc/LectureNotes/_build/html/chapter1.html b/doc/LectureNotes/_build/html/chapter1.html
index 0a1300589..41de41ded 100644
--- a/doc/LectureNotes/_build/html/chapter1.html
+++ b/doc/LectureNotes/_build/html/chapter1.html
@@ -237,6 +237,15 @@
Week 39: Resampling methods and logistic regression
Week 40: Gradient descent methods (continued) and start Neural networks
Week 41 Neural networks and constructing a neural network code
+Exercises week 41
+
+
+
+
+
+
+
+
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
diff --git a/doc/LectureNotes/_build/html/exercisesweek41.html b/doc/LectureNotes/_build/html/exercisesweek41.html
new file mode 100644
index 000000000..1aabb1657
--- /dev/null
+++ b/doc/LectureNotes/_build/html/exercisesweek41.html
@@ -0,0 +1,956 @@
+
+
+
+
+
+
+
+
+
+
+ Exercises week 41 — Applied Data Analysis and Machine Learning
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Back to top
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Exercises week 41
+
+
+
+
+
+
Contents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Exercises week 41
+October 6-10, 2025
+Date: Deadline is Friday October 10 at midnight
+
+
+Overarching aims of the exercises this week
+This week, you will implement the entire feed-forward pass of a neural network! Next week you will compute the gradient of the network by implementing back-propagation manually, and by using autograd which does back-propagation for you (much easier!). Next week, you will also use the gradient to optimize the network with a gradient method! However, there is an optional exercise this week to get started on training the network and getting good results!
+We recommend that you do the exercises this week by editing and running this notebook file, as it includes some checks along the way that you have implemented the pieces of the feed-forward pass correctly, and running small parts of the code at a time will be important for understanding the methods.
+If you have trouble running a notebook, you can run this notebook in google colab instead (https://colab.research.google.com/drive/1zKibVQf-iAYaAn2-GlKfgRjHtLnPlBX4#offline=true&sandboxMode=true ), an updated link will be provided on the course discord (you can also send an email to k. h. fredly@ fys. uio. no if you encounter any trouble), though we recommend that you set up VSCode and your python environment to run code like this locally.
+First, here are some functions you are going to need, don’t change this cell. If you are unable to import autograd, just swap in normal numpy until you want to do the final optional exercise.
+
+
+
+Exercise 1
+In this exercise you will compute the activation of the first layer. You only need to change the code in the cells right below an exercise, the rest works out of the box. Feel free to make changes and see how stuff works though!
+
+a) Given the shape of the first layer weight matrix, what is the input shape of the neural network? What is the output shape of the first layer?
+b) Define the bias of the first layer, b1 with the correct shape. (Run the next cell right after the previous to get the random generated values to line up with the test solution below)
+
+c) Compute the intermediary z1 for the first layer
+
+d) Compute the activation a1 for the first layer using the ReLU activation function defined earlier.
+
+Confirm that you got the correct activation with the test below. Make sure that you define b1 with the randn function right after you define W1 .
+
+
+
+Exercise 2
+Now we will add a layer to the network with an output of length 8 and ReLU activation.
+a) What is the input of the second layer? What is its shape?
+b) Define the weight and bias of the second layer with the right shapes.
+
+c) Compute the intermediary z2 and activation a2 for the second layer.
+
+Confirm that you got the correct activation shape with the test below.
+
+
+
+Exercise 3
+We often want our neural networks to have many layers of varying sizes. To avoid writing very long and error-prone code where we explicitly define and evaluate each layer we should keep all our layers in a single variable which is easy to create and use.
+a) Complete the function below so that it returns a list layers of weight and bias tuples (W, b) for each layer, in order, with the correct shapes that we can use later as our network parameters.
+
+b) Comple the function below so that it evaluates the intermediary z and activation a for each layer, with ReLU actication, and returns the final activation a . This is the complete feed-forward pass, a full neural network!
+
+c) Create a network with input size 8 and layers with output sizes 10, 16, 6, 2. Evaluate it and make sure that you get the correct size vectors along the way.
+
+d) Why is a neural network with no activation functions always mathematically equivelent to a neural network with only one layer?
+
+
+Exercise 4 - Custom activation for each layer
+So far, every layer has used the same activation, ReLU. We often want to use other types of activation however, so we need to update our code to support multiple types of activation functions. Make sure that you have completed every previous exercise before trying this one.
+a) Complete the feed_forward function which accepts a list of activation functions as an argument, and which evaluates these activation functions at each layer.
+
+b) You are now given a list with three activation functions, two ReLU and one sigmoid. (Don’t call them yet! you can make a list with function names as elements, and then call these elements of the list later. If you add other functions than the ones defined at the start of the notebook, make sure everything is defined using autograd’s numpy wrapper, like above, since we want to use automatic differentiation on all of these functions later.)
+Evaluate a network with three layers and these activation functions.
+
+c) How does the output of the network change if you use sigmoid in the hidden layers and ReLU in the output layer?
+
+
+
+Exercise 6 - Predicting on real data
+You will now evaluate your neural network on the iris data set (https://scikit-learn.org/1.5/auto_examples/datasets/plot_iris_dataset.html ).
+This dataset contains data on 150 flowers of 3 different types which can be separated pretty well using the four features given for each flower, which includes the width and length of their leaves. You are will later train your network to actually make good predictions.
+
+
+a) What should the input size for the network be with this dataset? What should the output size of the last layer be?
+b) Create a network with two hidden layers, the first with sigmoid activation and the last with softmax, the first layer should have 8 “nodes”, the second has the number of nodes you found in exercise a). Softmax returns a “probability distribution”, in the sense that the numbers in the output are positive and add up to 1 and, their magnitude are in some sense relative to their magnitude before going through the softmax function. Remember to use the batched version of the create_layers and feed forward functions.
+
+c) Evaluate your model on the entire iris dataset! For later purposes, we will split the data into train and test sets, and compute gradients on smaller batches of the training data. But for now, evaluate the network on the whole thing at once.
+
+d) Compute the accuracy of your model using the accuracy function defined above. Recreate your model a couple times and see how the accuracy changes.
+
+
+
+Exercise 7 - Training on real data (Optional)
+To be able to actually do anything useful with your neural network, you need to train it. For this, we need a cost function and a way to take the gradient of the cost function wrt. the network parameters. The following exercises guide you through taking the gradient using autograd, and updating the network parameters using the gradient. Feel free to implement gradient methods like ADAM if you finish everything.
+Since we are doing a classification task with multiple output classes, we use the cross-entropy loss function, which can evaluate performance on classification tasks. It sees if your prediction is “most certain” on the correct target.
+
+To improve our network on whatever prediction task we have given it, we need to use a sensible cost function, take the gradient of that cost function with respect to our network parameters, the weights and biases, and then update the weights and biases using these gradients. To clarify, we need to find and use these
+
+\[
+\frac{\partial C}{\partial W}, \frac{\partial C}{\partial b}
+\]
+Now we need to compute these gradients. This is pretty hard to do for a neural network, we will use most of next week to do this, but we can also use autograd to just do it for us, which is what we always do in practice. With the code cell below, we create a function which takes all of these gradients for us.
+
+a) What shape should the gradient of the cost function wrt. weights and biases be?
+b) Use the gradient_func function to take the gradient of the cross entropy wrt. the weights and biases of the network. Check the shapes of what’s inside. What does the grad func from autograd actually do?
+
+c) Finish the train_network function.
+
+e) What do we call the gradient method used above?
+d) Train your network and see how the accuracy changes! Make a plot if you want.
+
+e) How high of an accuracy is it possible to acheive with a neural network on this dataset, if we use the whole thing as training data?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/doc/LectureNotes/_build/html/genindex.html b/doc/LectureNotes/_build/html/genindex.html
index e995ff2d4..79cf126ed 100644
--- a/doc/LectureNotes/_build/html/genindex.html
+++ b/doc/LectureNotes/_build/html/genindex.html
@@ -234,6 +234,15 @@
Week 39: Resampling methods and logistic regression
Week 40: Gradient descent methods (continued) and start Neural networks
Week 41 Neural networks and constructing a neural network code
+Exercises week 41
+
+
+
+
+
+
+
+
Projects
Projects
Projects
Projects
Projects
Projects
diff --git a/doc/LectureNotes/_build/html/searchindex.js b/doc/LectureNotes/_build/html/searchindex.js
index 69277a0c8..d2fcce472 100644
--- a/doc/LectureNotes/_build/html/searchindex.js
+++ b/doc/LectureNotes/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"1a)": [[18, "a"]], "3a)": [[18, "id1"]], "3b)": [[18, "b"]], "4a)": [[18, "id2"]], "4b)": [[18, "id3"]], "A Classification Tree": [[9, "a-classification-tree"]], "A Frequentist approach to data analysis": [[0, "a-frequentist-approach-to-data-analysis"], [28, "a-frequentist-approach-to-data-analysis"]], "A better approach": [[8, "a-better-approach"]], "A first summary": [[28, "a-first-summary"]], "A more compact expression": [[33, "a-more-compact-expression"], [34, "a-more-compact-expression"]], "A new Cost Function": [[32, "a-new-cost-function"]], "A quick Reminder on Lagrangian Multipliers": [[8, "a-quick-reminder-on-lagrangian-multipliers"]], "A simple example": [[4, "a-simple-example"]], "A soft classifier": [[8, "a-soft-classifier"]], "A top-down perspective on Neural networks": [[1, "a-top-down-perspective-on-neural-networks"]], "A way to Read the Bias-Variance Tradeoff": [[32, "a-way-to-read-the-bias-variance-tradeoff"], [33, "a-way-to-read-the-bias-variance-tradeoff"]], "ADAM algorithm, taken from Goodfellow et al": [[31, "adam-algorithm-taken-from-goodfellow-et-al"]], "ADAM optimizer": [[13, "adam-optimizer"], [31, "id2"]], "Accuracy": [[31, "accuracy"]], "Activation functions": [[12, "activation-functions"], [34, "activation-functions"]], "Activation functions, Logistic and Hyperbolic ones": [[34, "activation-functions-logistic-and-hyperbolic-ones"]], "AdaGrad Properties": [[31, "adagrad-properties"]], "AdaGrad Update Rule Derivation": [[31, "adagrad-update-rule-derivation"]], "AdaGrad algorithm, taken from Goodfellow et al": [[31, "adagrad-algorithm-taken-from-goodfellow-et-al"]], "Adam Optimizer": [[31, "adam-optimizer"]], "Adam vs. AdaGrad and RMSProp": [[31, "adam-vs-adagrad-and-rmsprop"]], "Adam: Bias Correction": [[31, "adam-bias-correction"]], "Adam: Exponential Moving Averages (Moments)": [[31, "adam-exponential-moving-averages-moments"]], "Adam: Update Rule Derivation": [[31, "adam-update-rule-derivation"]], "Adaptive boosting: AdaBoost, Basic Algorithm": [[10, "adaptive-boosting-adaboost-basic-algorithm"]], "Adaptivity Across Dimensions": [[31, "adaptivity-across-dimensions"]], "Adding Neural Networks": [[34, "adding-neural-networks"]], "Adding a hidden layer": [[35, "adding-a-hidden-layer"]], "Adding error analysis and training set up": [[28, "adding-error-analysis-and-training-set-up"], [29, "adding-error-analysis-and-training-set-up"]], "Adjust hyperparameters": [[1, "adjust-hyperparameters"]], "Algorithms and codes for Adagrad, RMSprop and Adam": [[31, "algorithms-and-codes-for-adagrad-rmsprop-and-adam"]], "Algorithms for Setting up Decision Trees": [[9, "algorithms-for-setting-up-decision-trees"]], "An Overview of Ensemble Methods": [[10, "an-overview-of-ensemble-methods"]], "An extrapolation example": [[4, "an-extrapolation-example"]], "An optimization/minimization problem": [[28, "an-optimization-minimization-problem"]], "Analyzing the last results": [[35, "analyzing-the-last-results"]], "And finally \\boldsymbol{X}\\boldsymbol{X}^T": [[29, "and-finally-boldsymbol-x-boldsymbol-x-t"]], "And finally ADAM": [[31, "and-finally-adam"]], "And what about using neural networks?": [[28, "and-what-about-using-neural-networks"]], "Another Example from Scikit-Learn\u2019s Repository": [[32, "another-example-from-scikit-learn-s-repository"], [33, "another-example-from-scikit-learn-s-repository"]], "Another Example, now with a polynomial fit": [[30, "another-example-now-with-a-polynomial-fit"]], "Another example, the moons again": [[9, "another-example-the-moons-again"]], "Applied Data Analysis and Machine Learning": [[21, null]], "Artificial neurons": [[34, "artificial-neurons"], [35, "artificial-neurons"]], "Assumptions made": [[32, "assumptions-made"]], "Autocorrelation function": [[25, "autocorrelation-function"]], "Automatic differentiation": [[13, "automatic-differentiation"], [35, "automatic-differentiation"]], "Automatic differentiation through examples": [[35, "automatic-differentiation-through-examples"]], "Back to Ridge and LASSO Regression": [[29, "back-to-ridge-and-lasso-regression"], [30, "back-to-ridge-and-lasso-regression"]], "Back to the Cancer Data": [[11, "back-to-the-cancer-data"]], "Background literature": [[23, "background-literature"]], "Bagging": [[10, "bagging"]], "Bagging Examples": [[10, "bagging-examples"]], "Basic Matrix Features": [[22, "basic-matrix-features"]], "Basic ideas of the Principal Component Analysis (PCA)": [[11, null]], "Basic math of the SVD": [[5, "basic-math-of-the-svd"], [29, "basic-math-of-the-svd"], [30, "basic-math-of-the-svd"]], "Basics": [[7, "basics"], [33, "basics"], [34, "basics"]], "Basics of a tree": [[9, "basics-of-a-tree"]], "Basics of an NN": [[35, "basics-of-an-nn"]], "Batch Normalization": [[1, "batch-normalization"]], "Batches and mini-batches": [[31, "batches-and-mini-batches"]], "Bayes\u2019 Theorem and Ridge and Lasso Regression": [[5, "bayes-theorem-and-ridge-and-lasso-regression"]], "Boosting, a Bird\u2019s Eye View": [[10, "boosting-a-bird-s-eye-view"]], "Bootstrap": [[6, "bootstrap"]], "Bringing it together": [[35, "bringing-it-together"]], "Bringing it together, first back propagation equation": [[12, "bringing-it-together-first-back-propagation-equation"]], "Building a Feed Forward Neural Network": [[1, null]], "Building a tree, regression": [[9, "building-a-tree-regression"]], "Building neural networks in Tensorflow and Keras": [[1, "building-neural-networks-in-tensorflow-and-keras"]], "But none of these can compete with Newton\u2019s method": [[31, "but-none-of-these-can-compete-with-newton-s-method"]], "CNNs in more detail, building convolutional neural networks in Tensorflow and Keras": [[3, "cnns-in-more-detail-building-convolutional-neural-networks-in-tensorflow-and-keras"]], "Cancer Data again now with Decision Trees and other Methods": [[9, "cancer-data-again-now-with-decision-trees-and-other-methods"]], "Chain rule": [[35, "chain-rule"]], "Chain rule, forward and reverse modes": [[35, "chain-rule-forward-and-reverse-modes"]], "Challenge: Choosing a Fixed Learning Rate": [[31, "challenge-choosing-a-fixed-learning-rate"]], "Choose cost function and optimizer": [[1, "choose-cost-function-and-optimizer"]], "Class of functions we can approximate": [[35, "class-of-functions-we-can-approximate"]], "Classical PCA Theorem": [[11, "classical-pca-theorem"]], "Classification problems": [[33, "classification-problems"], [34, "classification-problems"]], "Clustering and Unsupervised Learning": [[14, null]], "Code Example for Cross-validation and k-fold Cross-validation": [[32, "code-example-for-cross-validation-and-k-fold-cross-validation"], [33, "code-example-for-cross-validation-and-k-fold-cross-validation"]], "Code example": [[35, "code-example"]], "Code example for the Bootstrap method": [[32, "code-example-for-the-bootstrap-method"]], "Code for SVD and Inversion of Matrices": [[5, "code-for-svd-and-inversion-of-matrices"]], "Code with a Number of Minibatches which varies": [[31, "code-with-a-number-of-minibatches-which-varies"]], "Codes and Approaches": [[14, "codes-and-approaches"]], "Codes for the SVD": [[5, "codes-for-the-svd"], [29, "codes-for-the-svd"], [30, "codes-for-the-svd"]], "Coding Setup and Linear Regression": [[15, "coding-setup-and-linear-regression"]], "Collect and pre-process data": [[1, "collect-and-pre-process-data"]], "Communication channels": [[28, "communication-channels"]], "Compact expressions": [[35, "compact-expressions"]], "Compare Bagging on Trees with Random Forests": [[10, "compare-bagging-on-trees-with-random-forests"]], "Comparing with a numerical scheme": [[2, "comparing-with-a-numerical-scheme"]], "Comparison with OLS": [[30, "comparison-with-ols"]], "Completing the list": [[35, "completing-the-list"]], "Computation of gradients": [[31, "computation-of-gradients"]], "Computing the Gini index": [[9, "computing-the-gini-index"]], "Conditions on convex functions": [[30, "conditions-on-convex-functions"]], "Confidence Intervals": [[32, "confidence-intervals"]], "Conjugate gradient method": [[13, "conjugate-gradient-method"]], "Convergence rates": [[31, "convergence-rates"]], "Convex function": [[30, "convex-function"]], "Convex functions": [[13, "convex-functions"], [30, "convex-functions"]], "Convolution Examples: Polynomial multiplication": [[3, "convolution-examples-polynomial-multiplication"]], "Convolution Examples: Principle of Superposition and Periodic Forces (Fourier Transforms)": [[3, "convolution-examples-principle-of-superposition-and-periodic-forces-fourier-transforms"]], "Convolutional Neural Network": [[12, "convolutional-neural-network"], [34, "convolutional-neural-network"], [35, "convolutional-neural-network"]], "Convolutional Neural Networks": [[3, null]], "Correlation Function and Design/Feature Matrix": [[29, "correlation-function-and-design-feature-matrix"]], "Correlation Matrix": [[11, "correlation-matrix"], [29, "correlation-matrix"]], "Correlation Matrix with Pandas": [[29, "correlation-matrix-with-pandas"]], "Counting the number of floating point operations": [[35, "counting-the-number-of-floating-point-operations"]], "Course Format": [[28, "course-format"]], "Course setting": [[24, null]], "Covariance Matrix Examples": [[29, "covariance-matrix-examples"]], "Covariance and Correlation Matrix": [[29, "covariance-and-correlation-matrix"]], "Cross-validation": [[6, "cross-validation"]], "Cross-validation in brief": [[32, "cross-validation-in-brief"], [33, "cross-validation-in-brief"]], "Deadlines for projects (tentative)": [[28, "deadlines-for-projects-tentative"]], "Decision trees, overarching aims": [[9, null]], "Deep Neural Networks": [[31, "deep-neural-networks"]], "Deep learning methods": [[28, "deep-learning-methods"]], "Define model and architecture": [[1, "define-model-and-architecture"]], "Defining intermediate operations": [[35, "defining-intermediate-operations"]], "Defining the cost function": [[1, "defining-the-cost-function"]], "Definitions": [[19, "definitions"], [35, "definitions"]], "Deliverables": [[15, "deliverables"], [16, "deliverables"], [19, "deliverables"], [20, "deliverables"], [23, "deliverables"]], "Derivation of the AdaGrad Algorithm": [[31, "derivation-of-the-adagrad-algorithm"]], "Derivative of the cost function": [[35, "derivative-of-the-cost-function"]], "Derivatives and the chain rule": [[12, "derivatives-and-the-chain-rule"], [35, "derivatives-and-the-chain-rule"]], "Derivatives in terms of z_j^L": [[35, "derivatives-in-terms-of-z-j-l"]], "Derivatives of the hidden layer": [[35, "derivatives-of-the-hidden-layer"]], "Derivatives, example 1": [[29, "derivatives-example-1"]], "Deriving OLS from a probability distribution": [[5, "deriving-ols-from-a-probability-distribution"], [32, "deriving-ols-from-a-probability-distribution"]], "Deriving and Implementing Ordinary Least Squares": [[16, "deriving-and-implementing-ordinary-least-squares"]], "Deriving and Implementing Ridge Regression": [[17, "deriving-and-implementing-ridge-regression"]], "Deriving the Lasso Regression Equations": [[29, "deriving-the-lasso-regression-equations"], [30, "deriving-the-lasso-regression-equations"], [30, "id6"]], "Deriving the Ridge Regression Equations": [[29, "deriving-the-ridge-regression-equations"], [30, "deriving-the-ridge-regression-equations"], [30, "id3"]], "Deriving the back propagation code for a multilayer perceptron model": [[12, "deriving-the-back-propagation-code-for-a-multilayer-perceptron-model"]], "Developing a code for doing neural networks with back propagation": [[1, "developing-a-code-for-doing-neural-networks-with-back-propagation"]], "Diagonalize the sample covariance matrix to obtain the principal components": [[11, "diagonalize-the-sample-covariance-matrix-to-obtain-the-principal-components"]], "Different kernels and Mercer\u2019s theorem": [[8, "different-kernels-and-mercer-s-theorem"]], "Disadvantages": [[9, "disadvantages"]], "Discriminative Modeling": [[28, "discriminative-modeling"]], "Discussing the correlation data": [[34, "discussing-the-correlation-data"]], "Does Logistic Regression do a better Job?": [[34, "does-logistic-regression-do-a-better-job"]], "Domains and probabilities": [[25, "domains-and-probabilities"]], "Dropout": [[1, "dropout"]], "Economy-size SVD": [[29, "economy-size-svd"], [30, "economy-size-svd"]], "Elements of Probability Theory and Statistical Data Analysis": [[25, null]], "Empirical Evidence: Convergence Time and Memory in Practice": [[31, "empirical-evidence-convergence-time-and-memory-in-practice"]], "Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods": [[10, null]], "Entropy and the ID3 algorithm": [[9, "entropy-and-the-id3-algorithm"]], "Essential elements of ML": [[28, "essential-elements-of-ml"]], "Evaluate model performance on test data": [[1, "evaluate-model-performance-on-test-data"]], "Example 2": [[29, "example-2"]], "Example 3": [[29, "example-3"]], "Example 4": [[29, "example-4"]], "Example Matrix": [[29, "example-matrix"], [30, "example-matrix"]], "Example code for Bias-Variance tradeoff": [[32, "example-code-for-bias-variance-tradeoff"]], "Example code for Logistic Regression": [[33, "example-code-for-logistic-regression"], [34, "example-code-for-logistic-regression"]], "Example of discriminative modeling, taken from Generative Deep Learning by David Foster": [[28, "example-of-discriminative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of generative modeling, taken from Generative Deep Learning by David Foster": [[28, "example-of-generative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of own Standard scaling": [[29, "example-of-own-standard-scaling"]], "Example relevant for the exercises": [[29, "example-relevant-for-the-exercises"]], "Example: Exponential decay": [[2, "example-exponential-decay"]], "Example: Population growth": [[2, "example-population-growth"]], "Example: The diffusion equation": [[2, "example-the-diffusion-equation"]], "Example: binary classification problem": [[1, "example-binary-classification-problem"]], "Examples": [[28, "examples"]], "Examples of XOR, OR and AND gates": [[34, "examples-of-xor-or-and-and-gates"]], "Examples of likelihood functions used in logistic regression and neural networks": [[7, "examples-of-likelihood-functions-used-in-logistic-regression-and-neural-networks"]], "Examples of likelihood functions used in logistic regression and nueral networks": [[33, "examples-of-likelihood-functions-used-in-logistic-regression-and-nueral-networks"]], "Exercise 1 - Choice of model and degrees of freedom": [[17, "exercise-1-choice-of-model-and-degrees-of-freedom"]], "Exercise 1 - Finding the derivative of Matrix-Vector expressions": [[16, "exercise-1-finding-the-derivative-of-matrix-vector-expressions"]], "Exercise 1 - Github Setup": [[15, "exercise-1-github-setup"]], "Exercise 1, scale your data": [[18, "exercise-1-scale-your-data"]], "Exercise 1: Creating the report document": [[20, "exercise-1-creating-the-report-document"]], "Exercise 1: Expectation values for ordinary least squares expressions": [[19, "exercise-1-expectation-values-for-ordinary-least-squares-expressions"]], "Exercise 1: Including more data": [[35, "exercise-1-including-more-data"]], "Exercise 1: Setting up various Python environments": [[0, "exercise-1-setting-up-various-python-environments"]], "Exercise 2 - Deriving the expression for OLS": [[16, "exercise-2-deriving-the-expression-for-ols"]], "Exercise 2 - Deriving the expression for Ridge Regression": [[17, "exercise-2-deriving-the-expression-for-ridge-regression"]], "Exercise 2 - Setting up a Github repository": [[15, "exercise-2-setting-up-a-github-repository"]], "Exercise 2, calculate the gradients": [[18, "exercise-2-calculate-the-gradients"]], "Exercise 2: Adding good figures": [[20, "exercise-2-adding-good-figures"]], "Exercise 2: Expectation values for Ridge regression": [[19, "exercise-2-expectation-values-for-ridge-regression"]], "Exercise 2: Extended program": [[35, "exercise-2-extended-program"]], "Exercise 2: making your own data and exploring scikit-learn": [[0, "exercise-2-making-your-own-data-and-exploring-scikit-learn"]], "Exercise 3 - Creating feature matrix and implementing OLS using the analytical expression": [[16, "exercise-3-creating-feature-matrix-and-implementing-ols-using-the-analytical-expression"]], "Exercise 3 - Fitting an OLS model to data": [[15, "exercise-3-fitting-an-ols-model-to-data"]], "Exercise 3 - Scaling data": [[17, "exercise-3-scaling-data"]], "Exercise 3 - Setting up a Python virtual environment": [[15, "exercise-3-setting-up-a-python-virtual-environment"]], "Exercise 3, using the analytical formulae for OLS and Ridge regression to find the optimal paramters \\boldsymbol{\\theta}": [[18, "exercise-3-using-the-analytical-formulae-for-ols-and-ridge-regression-to-find-the-optimal-paramters-boldsymbol-theta"]], "Exercise 3: Deriving the expression for the Bias-Variance Trade-off": [[19, "exercise-3-deriving-the-expression-for-the-bias-variance-trade-off"]], "Exercise 3: Normalizing our data": [[0, "exercise-3-normalizing-our-data"]], "Exercise 3: Writing an abstract and introduction": [[20, "exercise-3-writing-an-abstract-and-introduction"]], "Exercise 4 - Fitting a polynomial": [[16, "exercise-4-fitting-a-polynomial"]], "Exercise 4 - Implementing Ridge Regression": [[17, "exercise-4-implementing-ridge-regression"]], "Exercise 4 - Testing multiple hyperparameters": [[17, "exercise-4-testing-multiple-hyperparameters"]], "Exercise 4 - The train-test split": [[15, "exercise-4-the-train-test-split"]], "Exercise 4, Implementing the simplest form for gradient descent": [[18, "exercise-4-implementing-the-simplest-form-for-gradient-descent"]], "Exercise 4: Adding Ridge Regression": [[0, "exercise-4-adding-ridge-regression"]], "Exercise 4: Computing the Bias and Variance": [[19, "exercise-4-computing-the-bias-and-variance"]], "Exercise 4: Making the code available and presentable": [[20, "exercise-4-making-the-code-available-and-presentable"]], "Exercise 5 - Comparing your code with sklearn": [[16, "exercise-5-comparing-your-code-with-sklearn"]], "Exercise 5, Ridge regression and a new Synthetic Dataset": [[18, "exercise-5-ridge-regression-and-a-new-synthetic-dataset"]], "Exercise 5: Analytical exercises": [[0, "exercise-5-analytical-exercises"]], "Exercise 5: Interpretation of scaling and metrics": [[19, "exercise-5-interpretation-of-scaling-and-metrics"]], "Exercise 5: Referencing": [[20, "exercise-5-referencing"]], "Exercise: Cross-validation as resampling techniques, adding more complexity": [[6, "exercise-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Exercise: Analysis of real data": [[6, "exercise-analysis-of-real-data"]], "Exercise: Bias-variance trade-off and resampling techniques": [[6, "exercise-bias-variance-trade-off-and-resampling-techniques"]], "Exercise: Lasso Regression on the Franke function with resampling": [[6, "exercise-lasso-regression-on-the-franke-function-with-resampling"]], "Exercise: Ordinary Least Square (OLS) on the Franke function": [[6, "exercise-ordinary-least-square-ols-on-the-franke-function"]], "Exercise: Ridge Regression on the Franke function with resampling": [[6, "exercise-ridge-regression-on-the-franke-function-with-resampling"]], "Exercises": [[0, "exercises"]], "Exercises and Projects": [[6, "exercises-and-projects"]], "Exercises week 34": [[15, null]], "Exercises week 35": [[16, null]], "Exercises week 36": [[17, null]], "Exercises week 37": [[18, null]], "Exercises week 38": [[19, null]], "Exercises week 39": [[20, null]], "Expectation value and variance": [[32, "expectation-value-and-variance"]], "Expectation value and variance for \\boldsymbol{\\theta}": [[32, "expectation-value-and-variance-for-boldsymbol-theta"]], "Expectation values": [[25, "expectation-values"]], "Explicit derivatives": [[35, "explicit-derivatives"]], "Extending to more predictors": [[33, "extending-to-more-predictors"], [34, "extending-to-more-predictors"]], "Extending to more than one variable": [[30, "extending-to-more-than-one-variable"]], "Extremely useful tools, strongly recommended": [[28, "extremely-useful-tools-strongly-recommended"]], "Feed-forward neural networks": [[12, "feed-forward-neural-networks"], [34, "feed-forward-neural-networks"], [35, "feed-forward-neural-networks"]], "Feed-forward pass": [[1, "feed-forward-pass"]], "Final back propagating equation": [[12, "final-back-propagating-equation"], [35, "final-back-propagating-equation"]], "Final derivatives": [[35, "final-derivatives"]], "Final expression": [[35, "final-expression"]], "Final expressions for the biases of the hidden layer": [[35, "final-expressions-for-the-biases-of-the-hidden-layer"]], "Finding the Limit": [[32, "finding-the-limit"]], "Fine-tuning neural network hyperparameters": [[1, "fine-tuning-neural-network-hyperparameters"]], "First network example, simple percepetron with one input": [[35, "first-network-example-simple-percepetron-with-one-input"]], "Fitting an Equation of State for Dense Nuclear Matter": [[0, "fitting-an-equation-of-state-for-dense-nuclear-matter"]], "Fixing the singularity": [[29, "fixing-the-singularity"], [30, "fixing-the-singularity"]], "Format for electronic delivery of report and programs": [[23, "format-for-electronic-delivery-of-report-and-programs"]], "Forward and reverse modes": [[35, "forward-and-reverse-modes"]], "Frequently used scaling functions": [[29, "frequently-used-scaling-functions"], [31, "frequently-used-scaling-functions"]], "From OLS to Ridge and Lasso": [[30, "from-ols-to-ridge-and-lasso"]], "From one to many layers, the universal approximation theorem": [[12, "from-one-to-many-layers-the-universal-approximation-theorem"]], "Functionality in Scikit-Learn": [[29, "functionality-in-scikit-learn"], [31, "functionality-in-scikit-learn"]], "Further Dimensionality Remarks": [[3, "further-dimensionality-remarks"]], "Further properties (important for our analyses later)": [[5, "further-properties-important-for-our-analyses-later"], [29, "further-properties-important-for-our-analyses-later"], [30, "further-properties-important-for-our-analyses-later"]], "Gaussian Elimination": [[22, "gaussian-elimination"]], "General Features": [[9, "general-features"]], "General linear models and linear algebra": [[28, "general-linear-models-and-linear-algebra"]], "Generalizing the fitting procedure as a linear algebra problem": [[28, "generalizing-the-fitting-procedure-as-a-linear-algebra-problem"], [28, "id1"]], "Generative Adversarial Networks": [[4, "generative-adversarial-networks"]], "Generative Models": [[4, "generative-models"]], "Generative Versus Discriminative Modeling": [[28, "generative-versus-discriminative-modeling"]], "Geometric Interpretation and link with Singular Value Decomposition": [[11, "geometric-interpretation-and-link-with-singular-value-decomposition"]], "Getting serious, the back propagation equations for a neural network": [[35, "getting-serious-the-back-propagation-equations-for-a-neural-network"]], "Getting started with project 1": [[20, "getting-started-with-project-1"]], "Gradient Boosting, Classification Example": [[10, "gradient-boosting-classification-example"]], "Gradient Boosting, Examples of Regression": [[10, "gradient-boosting-examples-of-regression"]], "Gradient Clipping": [[1, "gradient-clipping"]], "Gradient Descent Example": [[30, "id1"], [31, "id1"]], "Gradient boosting: Basics with Steepest Descent/Functional Gradient Descent": [[10, "gradient-boosting-basics-with-steepest-descent-functional-gradient-descent"]], "Gradient descent": [[2, "gradient-descent"]], "Gradient descent and Ridge": [[30, "gradient-descent-and-ridge"], [31, "gradient-descent-and-ridge"]], "Gradient descent and revisiting Ordinary Least Squares from last week": [[31, "gradient-descent-and-revisiting-ordinary-least-squares-from-last-week"]], "Gradient descent example": [[30, "gradient-descent-example"], [31, "gradient-descent-example"]], "Gradient expressions": [[35, "gradient-expressions"]], "Grading": [[26, "grading"], [26, "id2"], [28, "grading"]], "How to take derivatives of Matrix-Vector expressions": [[16, "how-to-take-derivatives-of-matrix-vector-expressions"]], "Hyperplanes and all that": [[8, "hyperplanes-and-all-that"]], "Identifying Terms": [[32, "identifying-terms"]], "Illustration of a single perceptron model and a multi-perceptron model": [[34, "illustration-of-a-single-perceptron-model-and-a-multi-perceptron-model"], [35, "illustration-of-a-single-perceptron-model-and-a-multi-perceptron-model"]], "Important Matrix and vector handling packages": [[22, "important-matrix-and-vector-handling-packages"]], "Important observations": [[35, "important-observations"]], "Important technicalities: More on Rescaling data": [[29, "important-technicalities-more-on-rescaling-data"]], "Improving gradient descent with momentum": [[31, "improving-gradient-descent-with-momentum"]], "Improving performance": [[1, "improving-performance"]], "In general not this simple": [[35, "in-general-not-this-simple"]], "In summary": [[26, "in-summary"]], "Including Stochastic Gradient Descent with Autograd": [[13, "including-stochastic-gradient-descent-with-autograd"], [31, "including-stochastic-gradient-descent-with-autograd"]], "Including more classes": [[33, "including-more-classes"], [34, "including-more-classes"]], "Incremental PCA": [[11, "incremental-pca"]], "Independent and Identically Distributed (iid)": [[32, "independent-and-identically-distributed-iid"]], "Inputs to the activation function": [[35, "inputs-to-the-activation-function"]], "Installing R, C++, cython or Julia": [[28, "installing-r-c-cython-or-julia"]], "Installing R, C++, cython, Numba etc": [[28, "installing-r-c-cython-numba-etc"]], "Instructor information": [[26, "instructor-information"]], "Interpretations and optimizing our parameters": [[28, "interpretations-and-optimizing-our-parameters"], [28, "id2"], [28, "id3"], [29, "interpretations-and-optimizing-our-parameters"], [29, "id1"], [29, "id2"]], "Interpreting the Ridge results": [[29, "interpreting-the-ridge-results"], [30, "interpreting-the-ridge-results"], [30, "id4"]], "Introducing JAX": [[13, "introducing-jax"]], "Introducing the Covariance and Correlation functions": [[11, "introducing-the-covariance-and-correlation-functions"], [29, "introducing-the-covariance-and-correlation-functions"]], "Introduction": [[0, "introduction"], [6, "introduction"], [21, "introduction"], [22, "introduction"]], "Introduction to Neural networks": [[34, "introduction-to-neural-networks"], [35, "introduction-to-neural-networks"]], "Introduction to numerical projects": [[23, "introduction-to-numerical-projects"]], "Iterative Fitting, Classification and AdaBoost": [[10, "iterative-fitting-classification-and-adaboost"]], "Iterative Fitting, Regression and Squared-error Cost Function": [[10, "iterative-fitting-regression-and-squared-error-cost-function"]], "Kernel PCA": [[11, "kernel-pca"]], "Kernels and non-linearity": [[8, "kernels-and-non-linearity"]], "LU Decomposition, the inverse of a matrix": [[22, "lu-decomposition-the-inverse-of-a-matrix"]], "Lab sessions Tuesday and Wednesday": [[34, "lab-sessions-tuesday-and-wednesday"]], "Lab sessions on Tuesday and Wednesday": [[35, "lab-sessions-on-tuesday-and-wednesday"]], "Lab sessions week 39": [[33, "lab-sessions-week-39"]], "Lasso Regression": [[30, "lasso-regression"]], "Lasso case": [[30, "lasso-case"]], "Layers": [[1, "layers"]], "Layers used to build CNNs": [[3, "layers-used-to-build-cnns"]], "Layout of a neural network with three hidden layers": [[35, "layout-of-a-neural-network-with-three-hidden-layers"]], "Layout of a simple neural network with no hidden layer": [[35, "layout-of-a-simple-neural-network-with-no-hidden-layer"]], "Layout of a simple neural network with one hidden layer": [[35, "layout-of-a-simple-neural-network-with-one-hidden-layer"]], "Layout of a simple neural network with two input nodes, one hidden layer and one output node": [[35, "layout-of-a-simple-neural-network-with-two-input-nodes-one-hidden-layer-and-one-output-node"]], "Learning goals": [[15, "learning-goals"], [16, "learning-goals"], [17, "learning-goals"], [18, "learning-goals"], [19, "learning-goals"], [20, "learning-goals"]], "Learning outcomes": [[21, "learning-outcomes"], [28, "learning-outcomes"]], "Lecture Monday October 6": [[35, "lecture-monday-october-6"]], "Lecture Monday September 29, 2025": [[34, "lecture-monday-september-29-2025"]], "Lecture material": [[33, "lecture-material"]], "Lectures and ComputerLab": [[28, "lectures-and-computerlab"]], "Limitations of supervised learning with deep networks": [[1, "limitations-of-supervised-learning-with-deep-networks"]], "Linear Algebra, Handling of Arrays and more Python Features": [[22, null]], "Linear Regression": [[0, null]], "Linear Regression Problems": [[29, "linear-regression-problems"], [30, "linear-regression-problems"]], "Linear Regression and the SVD": [[30, "linear-regression-and-the-svd"]], "Linear Regression, basic elements": [[0, "linear-regression-basic-elements"]], "Linear classifier": [[33, "linear-classifier"]], "Linking Bayes\u2019 Theorem with Ridge and Lasso Regression": [[5, "linking-bayes-theorem-with-ridge-and-lasso-regression"]], "Linking the regression analysis with a statistical interpretation": [[5, "linking-the-regression-analysis-with-a-statistical-interpretation"], [32, "linking-the-regression-analysis-with-a-statistical-interpretation"]], "Linking with the SVD": [[5, "linking-with-the-svd"], [29, "linking-with-the-svd"]], "Links to relevant courses at the University of Oslo": [[27, "links-to-relevant-courses-at-the-university-of-oslo"]], "Logistic Regression": [[7, null], [7, "id1"], [33, "logistic-regression"]], "Logistic Regression, from last week": [[34, "logistic-regression-from-last-week"]], "MNIST and GANs": [[4, "mnist-and-gans"]], "Machine Learning": [[28, "machine-learning"]], "Machine learning": [[21, "machine-learning"]], "Main textbooks": [[28, "main-textbooks"]], "Making a tree": [[9, "making-a-tree"]], "Making your own Bootstrap: Changing the Level of the Decision Tree": [[10, "making-your-own-bootstrap-changing-the-level-of-the-decision-tree"]], "Making your own test-train splitting": [[29, "making-your-own-test-train-splitting"]], "Material for exercises week 35": [[29, "material-for-exercises-week-35"]], "Material for lab sessions sessions Tuesday and Wednesday": [[30, "material-for-lab-sessions-sessions-tuesday-and-wednesday"]], "Material for lecture Monday September 2": [[30, "material-for-lecture-monday-september-2"]], "Material for lecture Monday September 8": [[31, "material-for-lecture-monday-september-8"]], "Material for the lab sessions": [[31, "material-for-the-lab-sessions"], [32, "material-for-the-lab-sessions"]], "Material for the lecture on Monday October 6, 2025": [[35, "material-for-the-lecture-on-monday-october-6-2025"]], "Mathematical Interpretation of Ordinary Least Squares": [[5, "mathematical-interpretation-of-ordinary-least-squares"], [29, "mathematical-interpretation-of-ordinary-least-squares"], [30, "mathematical-interpretation-of-ordinary-least-squares"]], "Mathematical model": [[34, "mathematical-model"], [34, "id1"], [34, "id2"], [34, "id3"], [34, "id4"]], "Mathematical optimization of convex functions": [[8, "mathematical-optimization-of-convex-functions"]], "Mathematics of CNNs": [[3, "mathematics-of-cnns"]], "Mathematics of deep learning": [[35, "mathematics-of-deep-learning"]], "Mathematics of deep learning and neural networks": [[35, "mathematics-of-deep-learning-and-neural-networks"]], "Mathematics of the SVD and implications": [[5, "mathematics-of-the-svd-and-implications"], [29, "mathematics-of-the-svd-and-implications"], [30, "mathematics-of-the-svd-and-implications"]], "Matrices in Python": [[28, "matrices-in-python"]], "Matrix multiplication": [[1, "matrix-multiplication"]], "Matrix-vector notation": [[34, "matrix-vector-notation"]], "Matrix-vector notation and activation": [[12, "matrix-vector-notation-and-activation"], [34, "matrix-vector-notation-and-activation"]], "Maximum Likelihood Estimation (MLE)": [[32, "maximum-likelihood-estimation-mle"]], "Maximum likelihood": [[33, "maximum-likelihood"], [34, "maximum-likelihood"]], "Meet the covariance!": [[25, "meet-the-covariance"]], "Meet the Covariance Matrix": [[5, "meet-the-covariance-matrix"], [29, "meet-the-covariance-matrix"]], "Meet the Hessian Matrix": [[29, "meet-the-hessian-matrix"]], "Meet the Pandas": [[28, "meet-the-pandas"]], "Memory Usage and Scalability": [[31, "memory-usage-and-scalability"]], "Memory constraints": [[31, "memory-constraints"]], "Min-Max Scaling": [[29, "min-max-scaling"]], "Minimizing the cross entropy": [[33, "minimizing-the-cross-entropy"], [34, "minimizing-the-cross-entropy"]], "Momentum based GD": [[13, "momentum-based-gd"], [31, "momentum-based-gd"]], "More classes": [[33, "more-classes"], [34, "more-classes"]], "More complicated Example: The Ising model": [[6, "more-complicated-example-the-ising-model"]], "More complicated function": [[35, "more-complicated-function"]], "More considerations": [[35, "more-considerations"]], "More examples on bootstrap and cross-validation and errors": [[32, "more-examples-on-bootstrap-and-cross-validation-and-errors"], [33, "more-examples-on-bootstrap-and-cross-validation-and-errors"]], "More interpretations": [[29, "more-interpretations"], [30, "more-interpretations"], [30, "id5"]], "More on Dimensionalities": [[3, "more-on-dimensionalities"]], "More on Rescaling data": [[6, "more-on-rescaling-data"]], "More on Steepest descent": [[30, "more-on-steepest-descent"]], "More on convex functions": [[30, "more-on-convex-functions"]], "More on the general approximation theorem": [[35, "more-on-the-general-approximation-theorem"]], "More preprocessing": [[29, "more-preprocessing"], [31, "more-preprocessing"]], "Motivation for Adaptive Step Sizes": [[31, "motivation-for-adaptive-step-sizes"]], "Multilayer perceptrons": [[12, "multilayer-perceptrons"], [34, "multilayer-perceptrons"], [35, "multilayer-perceptrons"]], "Multivariable functions": [[35, "multivariable-functions"]], "Network requirements": [[2, "network-requirements"]], "Neural Networks vs CNNs": [[3, "neural-networks-vs-cnns"]], "Neural network types": [[34, "neural-network-types"], [35, "neural-network-types"]], "Neural networks": [[12, null]], "New expression for the derivative": [[35, "new-expression-for-the-derivative"]], "Non-Convex Problems": [[31, "non-convex-problems"]], "Note about SVD Calculations": [[29, "note-about-svd-calculations"], [30, "note-about-svd-calculations"]], "Note on Scikit-Learn": [[30, "note-on-scikit-learn"]], "Numerical experiments and the covariance, central limit theorem": [[25, "numerical-experiments-and-the-covariance-central-limit-theorem"]], "Numpy and arrays": [[22, "numpy-and-arrays"], [28, "numpy-and-arrays"]], "Numpy examples and Important Matrix and vector handling packages": [[28, "numpy-examples-and-important-matrix-and-vector-handling-packages"]], "Optimization and Deep learning": [[33, "optimization-and-deep-learning"], [34, "optimization-and-deep-learning"]], "Optimization and gradient descent, the central part of any Machine Learning algortithm": [[30, "optimization-and-gradient-descent-the-central-part-of-any-machine-learning-algortithm"]], "Optimization, the central part of any Machine Learning algortithm": [[13, null], [33, "optimization-the-central-part-of-any-machine-learning-algortithm"], [34, "optimization-the-central-part-of-any-machine-learning-algortithm"]], "Optimizing our parameters": [[28, "optimizing-our-parameters"]], "Optimizing our parameters, more details": [[28, "optimizing-our-parameters-more-details"]], "Optimizing the cost function": [[1, "optimizing-the-cost-function"]], "Optimizing the parameters": [[35, "optimizing-the-parameters"]], "Organizing our data": [[0, "organizing-our-data"], [28, "organizing-our-data"]], "Other Matrix and Vector Operations": [[22, "other-matrix-and-vector-operations"]], "Other Types of Recurrent Neural Networks": [[4, "other-types-of-recurrent-neural-networks"]], "Other courses on Data science and Machine Learning at UiO": [[28, "other-courses-on-data-science-and-machine-learning-at-uio"]], "Other courses on Data science and Machine Learning at UiO, contn": [[28, "other-courses-on-data-science-and-machine-learning-at-uio-contn"]], "Other ingredients of a neural network": [[35, "other-ingredients-of-a-neural-network"]], "Other measures in classification studies": [[34, "other-measures-in-classification-studies"]], "Other parameters": [[35, "other-parameters"]], "Other popular texts": [[28, "other-popular-texts"]], "Other techniques": [[11, "other-techniques"]], "Other types of networks": [[12, "other-types-of-networks"], [34, "other-types-of-networks"], [35, "other-types-of-networks"]], "Other ways of visualizing the trees": [[9, "other-ways-of-visualizing-the-trees"]], "Our model for the nuclear binding energies": [[28, "our-model-for-the-nuclear-binding-energies"]], "Output layer": [[35, "output-layer"]], "Overarching view of a neural network": [[35, "overarching-view-of-a-neural-network"]], "Overview of first week": [[28, "overview-of-first-week"]], "Overview video on Stochastic Gradient Descent (SGD)": [[31, "overview-video-on-stochastic-gradient-descent-sgd"]], "Own code for Ordinary Least Squares": [[28, "own-code-for-ordinary-least-squares"], [29, "own-code-for-ordinary-least-squares"]], "PCA and scikit-learn": [[11, "pca-and-scikit-learn"]], "Pandas AI": [[28, "pandas-ai"]], "Parameters of neural networks": [[35, "parameters-of-neural-networks"]], "Part a : Ordinary Least Square (OLS) for the Runge function": [[23, "part-a-ordinary-least-square-ols-for-the-runge-function"]], "Part b: Adding Ridge regression for the Runge function": [[23, "part-b-adding-ridge-regression-for-the-runge-function"]], "Part c: Writing your own gradient descent code": [[23, "part-c-writing-your-own-gradient-descent-code"]], "Part d: Including momentum and more advanced ways to update the learning the rate": [[23, "part-d-including-momentum-and-more-advanced-ways-to-update-the-learning-the-rate"]], "Part e: Writing our own code for Lasso regression": [[23, "part-e-writing-our-own-code-for-lasso-regression"]], "Part f: Stochastic gradient descent": [[23, "part-f-stochastic-gradient-descent"]], "Part g: Bias-variance trade-off and resampling techniques": [[23, "part-g-bias-variance-trade-off-and-resampling-techniques"]], "Part h): Cross-validation as resampling techniques, adding more complexity": [[23, "part-h-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Partial Differential Equations": [[2, "partial-differential-equations"]], "Plan for week 39, September 22-26, 2025": [[33, "plan-for-week-39-september-22-26-2025"]], "Plan for week 41, October 6-10": [[35, "plan-for-week-41-october-6-10"]], "Plans for week 35": [[29, "plans-for-week-35"]], "Plans for week 36": [[30, "plans-for-week-36"]], "Plans for week 37, lecture Monday": [[31, "plans-for-week-37-lecture-monday"]], "Plans for week 38, lecture Monday September 15": [[32, "plans-for-week-38-lecture-monday-september-15"]], "Plotting the Histogram": [[32, "plotting-the-histogram"]], "Plotting the mean value for each group": [[33, "plotting-the-mean-value-for-each-group"]], "Practical tips": [[13, "practical-tips"], [31, "practical-tips"]], "Practicalities": [[26, "practicalities"], [26, "id1"]], "Preamble: Note on writing reports, using reference material, AI and other tools": [[23, "preamble-note-on-writing-reports-using-reference-material-ai-and-other-tools"]], "Predicting New Points With A Trained Recurrent Neural Network": [[4, "predicting-new-points-with-a-trained-recurrent-neural-network"]], "Preprocessing our data": [[29, "preprocessing-our-data"]], "Prerequisites": [[28, "prerequisites"]], "Prerequisites and background": [[21, "prerequisites-and-background"]], "Prerequisites: Collect and pre-process data": [[3, "prerequisites-collect-and-pre-process-data"]], "Probability Distribution Functions": [[25, "probability-distribution-functions"]], "Program example for gradient descent with Ridge Regression": [[30, "program-example-for-gradient-descent-with-ridge-regression"], [31, "program-example-for-gradient-descent-with-ridge-regression"]], "Program for stochastic gradient": [[13, "program-for-stochastic-gradient"]], "Project 1 on Machine Learning, deadline October 6 (midnight), 2025": [[23, null]], "Properties of PDFs": [[25, "properties-of-pdfs"]], "Pros and cons": [[31, "pros-and-cons"]], "Pros and cons of trees, pros": [[9, "pros-and-cons-of-trees-pros"]], "Python installers": [[21, "python-installers"], [28, "python-installers"]], "RMS prop": [[13, "rms-prop"]], "RMSProp algorithm, taken from Goodfellow et al": [[31, "rmsprop-algorithm-taken-from-goodfellow-et-al"]], "RMSProp: Adaptive Learning Rates": [[31, "rmsprop-adaptive-learning-rates"]], "RMSprop for adaptive learning rate with Stochastic Gradient Descent": [[31, "rmsprop-for-adaptive-learning-rate-with-stochastic-gradient-descent"]], "Random Numbers": [[25, "random-numbers"]], "Random forests": [[10, "random-forests"]], "Randomized PCA": [[11, "randomized-pca"]], "Reading material": [[28, "reading-material"]], "Reading recommendations:": [[29, "reading-recommendations"]], "Reading suggestions week 34": [[28, "reading-suggestions-week-34"]], "Readings and Videos": [[32, "readings-and-videos"]], "Readings and Videos, logistic regression": [[33, "readings-and-videos-logistic-regression"]], "Readings and Videos, resampling methods": [[33, "readings-and-videos-resampling-methods"]], "Readings and Videos:": [[31, "readings-and-videos"], [35, "readings-and-videos"]], "Recurrent neural networks": [[12, "recurrent-neural-networks"], [34, "recurrent-neural-networks"], [35, "recurrent-neural-networks"]], "Recurrent neural networks: Overarching view": [[4, null]], "Reducing the number of degrees of freedom, overarching view": [[0, "reducing-the-number-of-degrees-of-freedom-overarching-view"], [29, "reducing-the-number-of-degrees-of-freedom-overarching-view"]], "Reducing the number of operations": [[35, "reducing-the-number-of-operations"]], "Reformulating the problem": [[2, "reformulating-the-problem"]], "Regression Case": [[10, "regression-case"]], "Regression analysis and resampling methods": [[23, "regression-analysis-and-resampling-methods"]], "Regression analysis, overarching aims": [[28, "regression-analysis-overarching-aims"]], "Regression analysis, overarching aims II": [[28, "regression-analysis-overarching-aims-ii"]], "Regularization": [[1, "regularization"]], "Relevance": [[34, "relevance"]], "Reminder from last week": [[29, "reminder-from-last-week"]], "Reminder on Newton-Raphson\u2019s method": [[30, "reminder-on-newton-raphson-s-method"]], "Reminder on Statistics": [[6, "reminder-on-statistics"]], "Reminder on books with hands-on material and codes": [[35, "reminder-on-books-with-hands-on-material-and-codes"]], "Reminder on different scaling methods": [[31, "reminder-on-different-scaling-methods"]], "Reminder on the chain rule and gradients": [[35, "reminder-on-the-chain-rule-and-gradients"]], "Replace or not": [[13, "replace-or-not"], [31, "replace-or-not"]], "Required Technologies": [[21, "required-technologies"]], "Resampling Methods": [[6, null]], "Resampling and the Bias-Variance Trade-off": [[19, "resampling-and-the-bias-variance-trade-off"]], "Resampling approaches can be computationally expensive": [[32, "resampling-approaches-can-be-computationally-expensive"], [33, "resampling-approaches-can-be-computationally-expensive"]], "Resampling methods": [[6, "id1"], [32, "resampling-methods"], [32, "id2"], [33, "resampling-methods"], [33, "id1"]], "Resampling methods: Bootstrap": [[32, "resampling-methods-bootstrap"], [33, "resampling-methods-bootstrap"]], "Resampling methods: Bootstrap approach": [[32, "resampling-methods-bootstrap-approach"]], "Resampling methods: Bootstrap background": [[32, "resampling-methods-bootstrap-background"]], "Resampling methods: Bootstrap steps": [[32, "resampling-methods-bootstrap-steps"]], "Resampling methods: More Bootstrap background": [[32, "resampling-methods-more-bootstrap-background"]], "Residual Error": [[29, "residual-error"], [30, "residual-error"]], "Resources on differential equations and deep learning": [[2, "resources-on-differential-equations-and-deep-learning"]], "Revisiting Ordinary Least Squares": [[30, "revisiting-ordinary-least-squares"]], "Revisiting our Linear Regression Solvers": [[13, "revisiting-our-linear-regression-solvers"]], "Revisiting our Logistic Regression case": [[33, "revisiting-our-logistic-regression-case"], [34, "revisiting-our-logistic-regression-case"]], "Rewriting the Covariance and/or Correlation Matrix": [[29, "rewriting-the-covariance-and-or-correlation-matrix"]], "Rewriting the \\delta-function": [[32, "rewriting-the-delta-function"]], "Rewriting the fitting procedure as a linear algebra problem": [[28, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem"]], "Rewriting the fitting procedure as a linear algebra problem, more details": [[28, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem-more-details"]], "Ridge Regression": [[30, "ridge-regression"]], "Ridge and LASSO Regression": [[29, "ridge-and-lasso-regression"], [30, "ridge-and-lasso-regression"], [30, "id2"]], "Ridge and Lasso Regression": [[5, null], [5, "id1"]], "SGD example": [[31, "sgd-example"]], "SGD vs Full-Batch GD: Convergence Speed and Memory Comparison": [[31, "sgd-vs-full-batch-gd-convergence-speed-and-memory-comparison"]], "SVD analysis": [[30, "svd-analysis"]], "Same code but now with momentum gradient descent": [[13, "same-code-but-now-with-momentum-gradient-descent"], [31, "same-code-but-now-with-momentum-gradient-descent"], [31, "id3"], [31, "id4"]], "Schedule first week": [[28, "schedule-first-week"]], "Schematic Regression Procedure": [[9, "schematic-regression-procedure"]], "Second moment of the gradient": [[31, "second-moment-of-the-gradient"]], "September 15-19": [[19, "september-15-19"]], "Setting up the Back propagation algorithm": [[12, "setting-up-the-back-propagation-algorithm"]], "Setting up the Back propagation algorithm, part 3": [[35, "setting-up-the-back-propagation-algorithm-part-3"]], "Setting up the Matrix to be inverted": [[29, "setting-up-the-matrix-to-be-inverted"], [30, "setting-up-the-matrix-to-be-inverted"]], "Setting up the back propagation algorithm": [[35, "setting-up-the-back-propagation-algorithm"]], "Setting up the back propagation algorithm, part 2": [[35, "setting-up-the-back-propagation-algorithm-part-2"]], "Setting up the equations for a neural network": [[35, "setting-up-the-equations-for-a-neural-network"]], "Setting up the network using Autograd; The full program": [[2, "setting-up-the-network-using-autograd-the-full-program"]], "Similar (second order function now) problem but now with AdaGrad": [[13, "similar-second-order-function-now-problem-but-now-with-adagrad"], [31, "similar-second-order-function-now-problem-but-now-with-adagrad"]], "Simple Python Code to read in Data and perform Classification": [[9, "simple-python-code-to-read-in-data-and-perform-classification"]], "Simple case": [[29, "simple-case"], [30, "simple-case"]], "Simple code for solving the above problem": [[30, "simple-code-for-solving-the-above-problem"]], "Simple example": [[33, "simple-example"], [35, "simple-example"]], "Simple example code": [[31, "simple-example-code"]], "Simple example to illustrate Ordinary Least Squares, Ridge and Lasso Regression": [[30, "simple-example-to-illustrate-ordinary-least-squares-ridge-and-lasso-regression"]], "Simple geometric interpretation": [[30, "simple-geometric-interpretation"]], "Simple linear regression model using scikit-learn": [[0, "simple-linear-regression-model-using-scikit-learn"], [28, "simple-linear-regression-model-using-scikit-learn"]], "Simple neural network and the back propagation equations": [[35, "simple-neural-network-and-the-back-propagation-equations"]], "Simple one-dimensional second-order polynomial": [[18, "simple-one-dimensional-second-order-polynomial"]], "Simple program": [[30, "simple-program"], [31, "simple-program"]], "Simpler examples first, and automatic differentiation": [[35, "simpler-examples-first-and-automatic-differentiation"]], "Slightly different approach": [[31, "slightly-different-approach"]], "Smarter way of evaluating the above function": [[35, "smarter-way-of-evaluating-the-above-function"]], "Sneaking in automatic differentiation using Autograd": [[31, "sneaking-in-automatic-differentiation-using-autograd"]], "Software and needed installations": [[23, "software-and-needed-installations"], [28, "software-and-needed-installations"]], "Solving Differential Equations with Deep Learning": [[2, null]], "Solving the one dimensional Poisson equation": [[2, "solving-the-one-dimensional-poisson-equation"]], "Solving the wave equation with Neural Networks": [[2, "solving-the-wave-equation-with-neural-networks"]], "Solving using Newton-Raphson\u2019s method": [[33, "solving-using-newton-raphson-s-method"], [34, "solving-using-newton-raphson-s-method"]], "Some famous Matrices": [[22, "some-famous-matrices"]], "Some parallels from real analysis": [[35, "some-parallels-from-real-analysis"]], "Some selected properties": [[33, "some-selected-properties"]], "Some simple problems": [[13, "some-simple-problems"], [30, "some-simple-problems"]], "Some useful matrix and vector expressions": [[29, "some-useful-matrix-and-vector-expressions"]], "Splitting our Data in Training and Test data": [[0, "splitting-our-data-in-training-and-test-data"], [29, "splitting-our-data-in-training-and-test-data"]], "Standard Approach based on the Normal Distribution": [[32, "standard-approach-based-on-the-normal-distribution"]], "Standard steepest descent": [[13, "standard-steepest-descent"]], "Statistical analysis": [[32, "statistical-analysis"], [33, "statistical-analysis"]], "Statistical analysis and optimization of data": [[21, "statistical-analysis-and-optimization-of-data"], [28, "statistical-analysis-and-optimization-of-data"]], "Steepest descent": [[13, "steepest-descent"], [30, "steepest-descent"]], "Stochastic Gradient Descent": [[31, "stochastic-gradient-descent"]], "Stochastic Gradient Descent (SGD)": [[13, "stochastic-gradient-descent-sgd"], [31, "stochastic-gradient-descent-sgd"]], "Stochastic variables and the main concepts, the discrete case": [[25, "stochastic-variables-and-the-main-concepts-the-discrete-case"]], "Strongly Convex Case": [[31, "strongly-convex-case"]], "Suggested readings and videos": [[34, "suggested-readings-and-videos"]], "Summing up": [[32, "summing-up"], [33, "summing-up"]], "Support Vector Machines, overarching aims": [[8, null]], "Synthetic data generation": [[33, "synthetic-data-generation"], [34, "synthetic-data-generation"]], "Systematic reduction": [[3, "systematic-reduction"]], "Teachers": [[28, "teachers"]], "Teachers and Grading": [[26, null]], "Teaching Assistants Fall semester 2023": [[26, "teaching-assistants-fall-semester-2023"]], "Tentative deadllines for projects": [[26, "tentative-deadllines-for-projects"]], "Testing the Means Squared Error as function of Complexity": [[0, "testing-the-means-squared-error-as-function-of-complexity"], [29, "testing-the-means-squared-error-as-function-of-complexity"]], "Textbooks": [[27, null]], "The Algorithm before theorem": [[11, "the-algorithm-before-theorem"]], "The Breast Cancer Data, now with Keras": [[1, "the-breast-cancer-data-now-with-keras"]], "The CART algorithm for Classification": [[9, "the-cart-algorithm-for-classification"]], "The CART algorithm for Regression": [[9, "the-cart-algorithm-for-regression"]], "The CIFAR01 data set": [[3, "the-cifar01-data-set"]], "The Central Limit Theorem": [[32, "the-central-limit-theorem"]], "The Hessian matrix": [[30, "the-hessian-matrix"], [31, "the-hessian-matrix"]], "The Hessian matrix for Ridge Regression": [[30, "the-hessian-matrix-for-ridge-regression"], [31, "the-hessian-matrix-for-ridge-regression"]], "The Jacobian": [[29, "the-jacobian"]], "The MNIST dataset again": [[3, "the-mnist-dataset-again"]], "The OLS case": [[30, "the-ols-case"]], "The RELU function family": [[1, "the-relu-function-family"]], "The Ridge case": [[30, "the-ridge-case"]], "The SVD, a Fantastic Algorithm": [[29, "the-svd-a-fantastic-algorithm"], [30, "the-svd-a-fantastic-algorithm"]], "The Softmax function": [[1, "the-softmax-function"]], "The \\chi^2 function": [[0, "the-chi-2-function"], [28, "the-chi-2-function"], [28, "id4"], [28, "id5"], [28, "id6"], [28, "id7"], [28, "id8"]], "The approximation theorem in words": [[35, "the-approximation-theorem-in-words"]], "The bias-variance tradeoff": [[6, "the-bias-variance-tradeoff"], [32, "the-bias-variance-tradeoff"], [33, "the-bias-variance-tradeoff"]], "The code for solving the ODE": [[2, "the-code-for-solving-the-ode"]], "The complete code with a simple data set": [[29, "the-complete-code-with-a-simple-data-set"]], "The cost function rewritten": [[33, "the-cost-function-rewritten"], [34, "the-cost-function-rewritten"]], "The cost/loss function": [[29, "the-cost-loss-function"]], "The course has two central parts": [[21, "the-course-has-two-central-parts"]], "The derivative of the cost/loss function": [[30, "the-derivative-of-the-cost-loss-function"], [31, "the-derivative-of-the-cost-loss-function"]], "The derivatives": [[35, "the-derivatives"]], "The equations": [[30, "the-equations"]], "The equations for ordinary least squares": [[29, "the-equations-for-ordinary-least-squares"]], "The equations to solve": [[33, "the-equations-to-solve"], [34, "the-equations-to-solve"]], "The first Case": [[30, "the-first-case"]], "The gradient step": [[31, "the-gradient-step"]], "The ideal": [[30, "the-ideal"]], "The logistic function": [[7, "the-logistic-function"], [33, "the-logistic-function"]], "The mean squared error and its derivative": [[29, "the-mean-squared-error-and-its-derivative"]], "The moons example": [[8, "the-moons-example"]], "The multilayer perceptron (MLP)": [[12, "the-multilayer-perceptron-mlp"]], "The network with one input layer, specified number of hidden layers, and one output layer": [[2, "the-network-with-one-input-layer-specified-number-of-hidden-layers-and-one-output-layer"]], "The optimization problem": [[35, "the-optimization-problem"]], "The ouput layer": [[35, "the-ouput-layer"]], "The plethora of machine learning algorithms/methods": [[28, "the-plethora-of-machine-learning-algorithms-methods"]], "The same example but now with cross-validation": [[32, "the-same-example-but-now-with-cross-validation"], [33, "the-same-example-but-now-with-cross-validation"]], "The sensitiveness of the gradient descent": [[30, "the-sensitiveness-of-the-gradient-descent"]], "The singular value decomposition": [[5, "the-singular-value-decomposition"], [29, "the-singular-value-decomposition"], [30, "the-singular-value-decomposition"]], "The training": [[35, "the-training"]], "The two-dimensional case": [[8, "the-two-dimensional-case"]], "Theoretical Convergence Speed and convex optimization": [[31, "theoretical-convergence-speed-and-convex-optimization"]], "Time decay rate": [[31, "time-decay-rate"]], "To our real data: nuclear binding energies. Brief reminder on masses and binding energies": [[28, "to-our-real-data-nuclear-binding-energies-brief-reminder-on-masses-and-binding-energies"]], "Topics covered in this course: Statistical analysis and optimization of data": [[28, "topics-covered-in-this-course-statistical-analysis-and-optimization-of-data"]], "Towards the PCA theorem": [[11, "towards-the-pca-theorem"]], "Train and test datasets": [[1, "train-and-test-datasets"]], "Two parameters": [[33, "two-parameters"], [34, "two-parameters"]], "Two-dimensional Objects": [[3, "two-dimensional-objects"]], "Type of problem": [[2, "type-of-problem"]], "Types of Machine Learning": [[28, "types-of-machine-learning"]], "Understanding what happens": [[32, "understanding-what-happens"], [33, "understanding-what-happens"]], "Universal approximation theorem": [[35, "universal-approximation-theorem"]], "Updating the gradients": [[35, "updating-the-gradients"]], "Use the books!": [[19, "use-the-books"]], "Useful Python libraries": [[21, "useful-python-libraries"], [28, "useful-python-libraries"]], "Using Autograd": [[13, "using-autograd"]], "Using Scikit-learn": [[34, "using-scikit-learn"]], "Using forward Euler to solve the ODE": [[2, "using-forward-euler-to-solve-the-ode"]], "Using gradient descent methods, limitations": [[13, "using-gradient-descent-methods-limitations"], [30, "using-gradient-descent-methods-limitations"], [31, "using-gradient-descent-methods-limitations"]], "Using the chain rule and summing over all k entries": [[35, "using-the-chain-rule-and-summing-over-all-k-entries"]], "Using the correlation matrix": [[34, "using-the-correlation-matrix"]], "Various steps in cross-validation": [[32, "various-steps-in-cross-validation"], [33, "various-steps-in-cross-validation"]], "Visualization": [[1, "visualization"], [1, "id1"]], "Visualizing the Tree, Classification": [[9, "visualizing-the-tree-classification"]], "Week 34: Introduction to the course, Logistics and Practicalities": [[28, null]], "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression": [[29, null]], "Week 36: Linear Regression and Gradient descent": [[30, null]], "Week 37: Gradient descent methods": [[31, null]], "Week 38: Statistical analysis, bias-variance tradeoff and resampling methods": [[32, null]], "Week 39: Resampling methods and logistic regression": [[33, null]], "Week 40: Gradient descent methods (continued) and start Neural networks": [[34, null]], "Week 41 Neural networks and constructing a neural network code": [[35, null]], "What Is Generative Modeling?": [[28, "what-is-generative-modeling"]], "What does it mean?": [[29, "what-does-it-mean"], [30, "what-does-it-mean"]], "What is Machine Learning?": [[0, "what-is-machine-learning"]], "What is a good model?": [[0, "what-is-a-good-model"], [28, "what-is-a-good-model"]], "What is a good model? Can we define it?": [[28, "what-is-a-good-model-can-we-define-it"]], "When do we stop?": [[31, "when-do-we-stop"]], "Which activation function should I use?": [[1, "which-activation-function-should-i-use"]], "Why Combine Momentum and RMSProp?": [[31, "why-combine-momentum-and-rmsprop"]], "Why Linear Regression (aka Ordinary Least Squares and family)": [[28, "why-linear-regression-aka-ordinary-least-squares-and-family"]], "Why multilayer perceptrons?": [[34, "why-multilayer-perceptrons"], [35, "why-multilayer-perceptrons"]], "Why resampling methods": [[32, "why-resampling-methods"]], "Why resampling methods ?": [[32, "id1"], [33, "why-resampling-methods"]], "Wisconsin Cancer Data": [[7, "wisconsin-cancer-data"]], "With Lasso Regression": [[30, "with-lasso-regression"]], "Wrapping it up": [[32, "wrapping-it-up"]], "Writing Our First Generative Adversarial Network": [[4, "writing-our-first-generative-adversarial-network"]], "Writing our own PCA code": [[11, "writing-our-own-pca-code"]], "Writing the Cost Function": [[30, "writing-the-cost-function"]], "XGBoost: Extreme Gradient Boosting": [[10, "xgboost-extreme-gradient-boosting"]], "Yet another Example": [[30, "yet-another-example"]], "a) Expression for Ridge regression": [[17, "a-expression-for-ridge-regression"]], "scikit-learn implementation": [[1, "scikit-learn-implementation"]]}, "docnames": ["chapter1", "chapter10", "chapter11", "chapter12", "chapter13", "chapter2", "chapter3", "chapter4", "chapter5", "chapter6", "chapter7", "chapter8", "chapter9", "chapteroptimization", "clustering", "exercisesweek34", "exercisesweek35", "exercisesweek36", "exercisesweek37", "exercisesweek38", "exercisesweek39", "intro", "linalg", "project1", "schedule", "statistics", "teachers", "textbooks", "week34", "week35", "week36", "week37", "week38", "week39", "week40", "week41"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["chapter1.ipynb", "chapter10.ipynb", "chapter11.ipynb", "chapter12.ipynb", "chapter13.ipynb", "chapter2.ipynb", "chapter3.ipynb", "chapter4.ipynb", "chapter5.ipynb", "chapter6.ipynb", "chapter7.ipynb", "chapter8.ipynb", "chapter9.ipynb", "chapteroptimization.ipynb", "clustering.ipynb", "exercisesweek34.ipynb", "exercisesweek35.ipynb", "exercisesweek36.ipynb", "exercisesweek37.ipynb", "exercisesweek38.ipynb", "exercisesweek39.ipynb", "intro.md", "linalg.ipynb", "project1.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"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 28, 29, 35], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "00": [0, 1, 5, 11, 28, 29, 35], "000": [1, 3], "000000": [], "00000000e": [], "001": [2, 8, 13, 30, 31], "004": 5, "004113634617443131": 29, "004113634617443139": 29, "00411363461744314": 29, "004113634617443147": 29, "005b82": [], "00622f": [], "00727646693": [0, 28], "0072b2": [], "00749c": [], "008561": [], "0086649156": [0, 28], "00e0e0": [], "01": [0, 1, 2, 5, 9, 11, 13, 17, 27, 28, 29, 31, 33, 34, 35], "010726": [], "0110": 25, "01719003e": [], "02": [0, 4, 7, 12, 28, 33, 34], "02334824": [], "023b95": [], "024c1a": [], "02857": 4, "02f": 6, "03077640549": 4, "03097597e": [], "031": 5, "04": 11, "0458": 9, "05": [4, 6], "0550ae": [], "05767": 35, "062292565": 4, "062435": [], "06730814": [], "07": [], "0713": [0, 28], "07285": 3, "08": 25, "08078025e": [], "080808": [], "08336233266": 4, "08376632": 29, "083766322923899": 29, "0837663229239043": 29, "0917": 9, "0969da4a": [], "0d1117": [], "0n": [0, 28], "0x113e21950": 17, "1": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34], "10": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34], "100": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "1000": [0, 1, 2, 4, 5, 8, 11, 13, 14, 18, 19, 21, 25, 28, 30, 31, 33, 34], "10000": [2, 5, 6, 10, 11, 13, 25, 32], "100000": 8, "10001": 10, "1001": 25, "1002": 25, "1003": 25, "1005": 25, "1007": [32, 33], "1009": 25, "101": 16, "1011": 25, "1013": 25, "1013904243": 25, "1015": 25, "102": 16, "1023": 25, "1024": 3, "1026": 25, "1027": 25, "103": 1, "1030": 25, "1037": 25, "1038": 25, "1040": 25, "1047": 25, "107": 16, "108": [], "10th": 9, "10x": [0, 28], "11": [0, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "110": [], "1100": 25, "1101": 25, "111": [1, 7, 12, 33, 34, 35], "112": 16, "11340253": [], "11590451": [], "116": 16, "116329": [], "116633": [], "117": 16, "118": 16, "12": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 18, 22, 23, 25, 27, 28, 29, 30, 31, 32, 34], "120": 3, "121": [8, 9, 10, 16], "1215pm": [26, 28], "122": [8, 9, 10], "124": [0, 28], "125": 16, "127": [4, 16], "128": [3, 4, 13, 31], "129": 16, "1298": 9, "12pm": [26, 28], "13": [0, 2, 9, 12, 22, 25, 28, 34], "131": 16, "133": [7, 33], "135": 16, "136": 16, "14": [0, 2, 4, 6, 8, 9, 10, 12, 22, 25, 27, 29, 32, 33], "141": 16, "1412": 31, "141414": [], "143": 16, "1446729567": 4, "149": 16, "14g": [6, 32], "15": [0, 2, 4, 6, 7, 8, 9, 12, 13, 23, 25, 28, 30, 31, 33, 34], "150": [4, 8, 33, 34], "1502": 35, "152": 16, "153760": [], "156": 16, "157": [], "158": [], "159": 16, "15g": [6, 32], "15pm": 28, "16": [1, 2, 3, 4, 5, 8, 9, 10, 25, 28, 30, 32], "160": 16, "1603": 3, "161": 16, "162": 16, "16231451": 4, "163": 16, "16384": 3, "164": 16, "167": 16, "17": [1, 2, 8, 25], "172": 16, "173": 16, "175": [32, 33], "176": 16, "178": 16, "179": 16, "1797": 1, "18": [2, 6, 7, 8, 9, 10, 25, 28, 32, 33], "1807": 4, "181036": [], "18392847": [], "18c1c4": [], "19": [2, 25, 28, 32], "192": [32, 33], "1940": [], "1943": [12, 34, 35], "19569961": 29, "19680801": [], "1970": [22, 28], "1973": 9, "1979": [6, 32], "1989": 35, "1991": 35, "1_1": [12, 34], "1_2": [12, 34], "1_3": [12, 34], "1cm": [0, 8, 10, 25, 28, 35], "1d": [1, 2, 3, 33, 34], "1e": [2, 4, 13, 14, 31, 33, 34], "1e10": 14, "1e1e1": [], "1e4": 6, "1f": 1, "1k": 22, "1n": [0, 28], "1x": [0, 28], "2": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 25, 27, 31, 32, 33, 34], "20": [0, 1, 2, 6, 7, 8, 16, 17, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "200": [0, 2, 3, 4, 8, 9, 10, 33, 34], "2000": [0, 29], "2001": [], "2004": [13, 30], "2006": 27, "2007": [], "20072279": [], "2008": [28, 31], "2009": [], "2010": 1, "2011": [1, 31], "2012": 31, "2013": [], "2014": [4, 31], "2015": 1, "2016": [0, 28], "2018": [0, 6, 29, 32, 33], "2019": [], "2020": [], "2021": [6, 14, 29, 31], "2022": [28, 35], "2024": 32, "2025": [18, 28, 29, 30, 31, 32], "21": [0, 1, 5, 7, 9, 12, 22, 28, 29, 30, 33, 34, 35], "2116753732": 4, "215pm": [26, 28], "2167072": [], "22": [0, 1, 5, 12, 13, 22, 28, 29, 30, 34], "221": 8, "225": 4, "22948497": [], "23": [1, 12, 22, 34], "24": [0, 1, 22, 28], "242424": [], "24292f": [], "25": [2, 3, 4, 5, 6, 8, 9, 11, 29], "250": [2, 4, 7, 9, 33], "25000": [], "250154": [], "252124": [], "253775": [], "255": 3, "256": [4, 31], "25x": 23, "26": [], "26303845": [], "264": [], "265": [], "265109911": 4, "266": [], "269": [], "27": 1, "270": [], "278": [30, 31], "27n_": 25, "28": [1, 3, 4], "283": [30, 31], "2830637392": 4, "2861": 25, "2873": 9, "2882": 25, "2886": 25, "2890": [0, 28], "2892": 25, "29": 29, "2915": 25, "2931": 28, "29364655": [], "294399745619595": [], "296247": [], "2968": 28, "2980": 28, "298273": [], "298375": [], "2990": 28, "2_": [12, 34], "2_1": [12, 34], "2_2": [12, 34], "2_3": [12, 34], "2_i": [12, 34], "2_m": [6, 25, 32], "2_t": 13, "2_x": 25, "2a": 17, "2a1968": [], "2b": 25, "2b2b2b": [], "2c8f433990d1": 31, "2cm": 8, "2d": [1, 3, 11, 12, 21, 28, 33, 34, 35], "2e": [6, 32, 33], "2f": [0, 7, 9, 10, 11, 12, 28, 33, 34], "2g": 2, "2g_i": 2, "2k": 3, "2m": [6, 32], "2mvizaqfst8": 29, "2n": [0, 2, 3, 28, 29], "2nd": 9, "2p": [25, 35], "2pt": 4, "2x": [0, 3, 8, 13, 28, 35], "2x_ix_jy_iy_j": 8, "2x_j": 8, "2xb": 35, "2y_i": 10, "2y_j": 8, "3": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 33, 34], "30": [0, 1, 4, 6, 7, 10, 13, 26, 31, 32, 33, 34], "300": [33, 34], "30000": [0, 28], "3072": 3, "31": [12, 22, 25, 34], "315": [6, 29, 31], "3155": [0, 5, 6, 29, 30, 31, 32, 33], "32": [3, 4, 6, 12, 13, 22, 25, 31, 34], "3200": 1, "3250": 1, "3297": [], "33": [12, 22, 26, 34], "3303": [], "3310": [], "332331": [], "333": [7, 33], "3331": [], "3337": [], "34": 22, "3436": [0, 28], "3437": [0, 28], "35": [0, 6, 23, 28, 30, 31], "3581341341": 4, "359": [5, 30], "36": [0, 5, 6, 18, 23, 25], "37": [23, 30, 32, 33], "370782966": 4, "38": [23, 25], "387": [32, 33], "39": [0, 23, 26, 28], "3d": [2, 3, 4, 6, 13, 16, 32, 33], "3d73a9": [], "3f": [1, 3, 9], "3n": 22, "3x": [2, 8], "3x_0x_1": 35, "3x_i": 2, "3y": 8, "4": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 23, 25, 28, 30, 31, 32, 33, 34, 35], "40": [1, 6, 26, 28, 32, 33], "400": 4, "4000": 28, "40008b9a5380fcacce3976bf7c08af5b": 31, "4050": [27, 28], "41": 22, "4155": [2, 15], "41589548": [], "42": [1, 4, 8, 9, 10, 22, 33, 34, 35], "43": [0, 7, 22], "4310": 28, "436462435": 4, "437a6b": [], "44": [0, 22, 30, 31], "45": [26, 28], "46": [26, 28], "462": [7, 33], "47": [26, 28], "473d18": [], "479465113": 4, "47958494": [], "48": [], "48257387": [26, 28], "49": [5, 6, 11], "49152": 3, "4940954": [0, 28], "4990": 25, "4992": 25, "4997": 25, "4c4b4be8": [], "4c4c7f": [9, 10], "4d": 3, "4f": [6, 33, 34], "4pm": [26, 28], "4y": 8, "4y_i": 10, "5": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "50": [1, 2, 3, 4, 6, 7, 8, 10, 13, 28, 29, 31, 32, 34, 35], "500": [1, 3, 4, 6, 9, 10, 13, 31, 32, 33], "5000": 23, "5018": 25, "506": [], "507d50": [9, 10], "50j": 13, "50x10": 1, "51": 10, "510": 1, "512132": [], "515151": [], "5177783846": 4, "52": 33, "53": [9, 33], "5391cf": [], "54": [6, 25], "5411205": [], "54894451": [], "55": 1, "56": 1, "56536": [0, 28], "569": 1, "57": [0, 8, 26, 28], "571": [5, 30], "576": 32, "58": [10, 26, 28], "58a6ff70": [], "591317992": 4, "5ca7e4": [], "5cm": 25, "5f": [8, 31], "5x": [8, 18], "5y": 8, "6": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 18, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34], "60": [1, 3], "60000": 4, "6019067271": 4, "606439": [], "622cbc": [], "625": [7, 33], "63": 1, "64": [1, 3, 4, 13, 22, 28, 31], "64x50": 1, "65": [1, 8, 9], "66666691": [], "66707b": [], "66ccee": [], "66e9ec": [], "6730c5": [], "6887363571": 4, "69": [16, 25], "69069n_": 25, "691": [], "6980": 31, "6e7681": [], "6e7781": [], "6f98b3": [], "6n_": 25, "7": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 22, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35], "70": [1, 7, 33], "702c00": [], "70653767": 4, "71": 1, "724": 3, "72f088": [], "73": [], "7304881": [], "737373": [], "75": [5, 6, 8, 11, 32], "76": [26, 28, 33], "765": [7, 33], "77": [26, 28], "7718": 9, "7782028952": 4, "77893972": [], "78": [], "797979": [], "7998f2": [], "79c0ff": [], "7d7d58": [9, 10], "7ee787": [], "7f4707": [], "8": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 19, 22, 25, 26, 28, 30, 33, 34], "80": [0, 1, 5, 8, 17, 29], "800": [4, 7, 33], "8045e5": [], "81": 1, "815am": [26, 28], "81b19b": [], "8250df": [], "84858": [32, 33], "85": 1, "8702784034": 4, "8786ac": [], "88": 28, "8a4600": [], "8b949e": [], "8c8c8c": [], "8f": [6, 32, 33], "8g": [6, 32], "8n": 22, "8x8": 1, "9": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 12, 13, 22, 25, 28, 31, 33, 34], "90": 1, "9040": 9, "91": [26, 28], "912583": [], "91cbff": [], "92": [26, 28], "93": 16, "931": [0, 28], "933": [5, 30], "937": 25, "938": 25, "939": [0, 25, 28], "94": 25, "95": [1, 11, 32], "953800": [], "954": 25, "955820c21e8b": 4, "96": [6, 32], "960": 25, "961": 25, "962": 25, "9649652536": 4, "96611194e": [], "974eb7": [], "978": [32, 33], "9780387310732": 27, "9780387848570": 27, "9781098134174": 28, "9781492032632": 27, "9781801819312": 28, "97898392": 29, "98": [0, 1, 16], "985": 25, "986": 25, "98661b": [], "989": 25, "9898ff": [9, 10], "99": [13, 16, 31, 32], "991": 25, "992": 25, "993": 25, "996": 5, "996b00": [], "999": [9, 25, 31], "999999": [], "9e86c8": [], "9e8741": [], "9f4e55": [], "9x": 6, "9y": 6, "A": [2, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 35], "AND": 2, "AS": [], "AT": [], "And": [0, 3, 4, 5, 6, 9, 13, 20, 21, 23, 25, 30], "As": [0, 1, 2, 3, 4, 5, 6, 8, 10, 12, 13, 15, 16, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "At": [0, 4, 6, 13, 20, 28, 31], "BE": [0, 28], "BUT": [], "BY": [], "Be": [2, 18, 21, 28], "Being": 13, "But": [0, 1, 2, 3, 5, 6, 9, 10, 16, 25, 29, 32, 33], "By": [0, 3, 5, 6, 12, 13, 17, 19, 22, 28, 29, 30, 31, 32, 34], "FOR": [], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "IF": [6, 29, 31], "IN": 27, "If": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "In": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34], "Ising": [5, 12, 29, 30, 34, 35], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "Its": [1, 2, 4, 11], "NO": [], "NOT": [], "No": [6, 9, 28, 29, 31, 34], "Not": [0, 1, 5, 6, 29, 30, 31, 32, 34], "OF": [], "ON": [], "OR": 25, "Of": 25, "On": [0, 3, 23, 25, 26, 27, 28, 31, 32], "One": [0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 13, 17, 25, 29, 30, 31, 32, 33, 34, 35], "Or": [0, 1, 6, 28], "SUCH": [], "Such": [0, 6, 12, 16, 25, 31, 32, 33, 34, 35], "THE": [], "TO": [], "That": [0, 5, 7, 10, 11, 12, 14, 23, 25, 28, 32, 33, 34, 35], "The": [4, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27], "Then": [0, 1, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 28, 30, 31, 32, 35], "There": [0, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 22, 23, 25, 26, 28, 29, 30, 31, 34, 35], "These": [0, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 17, 18, 22, 23, 25, 26, 28, 29, 30, 31, 35], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 20, 22, 25, 29, 30, 31, 32, 33, 34, 35], "WITH": [], "Will": [33, 34], "With": [0, 5, 6, 8, 9, 10, 11, 12, 14, 16, 19, 22, 23, 25, 28, 29, 32, 33, 34, 35], "_": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 22, 23, 28, 29, 30, 31, 32, 33, 34], "_0": [5, 8, 10, 11, 13, 29, 30], "_1": [2, 5, 6, 8, 10, 11, 12, 13, 14, 22, 29, 30, 31, 35], "_2": [2, 5, 8, 11, 12, 13, 22, 29, 31, 34], "_3": 22, "_4": 22, "_9": [13, 31], "__array_finalize__": [], "__class__": 10, "__doc__": [6, 32, 33], "__future__": [8, 9, 35], "__getattribute__": [], "__import__": [], "__init__": [1, 33, 34], "__main__": 2, "__name__": [2, 10], "__new__": [], "__path__": [], "_add_intercept": [33, 34], "_auto1": [2, 3, 4, 5, 6, 7, 12, 13, 22, 25, 29, 30, 33, 34, 35], "_auto10": [6, 12], "_auto11": 6, "_auto12": 6, "_auto2": [2, 3, 4, 5, 6, 12, 13, 22, 25, 34, 35], "_auto3": [3, 4, 5, 6, 12, 13, 22, 34, 35], "_auto4": [4, 6, 12, 13, 22, 34], "_auto5": [4, 6, 12, 13, 22, 34], "_auto6": [4, 6, 12, 22, 34], "_auto7": [4, 6, 12, 22, 34], "_auto8": [6, 12], "_auto9": [6, 12], "_build": [0, 21, 23, 27, 28], "_c": 1, "_center": [], "_compile_transl": [], "_compon": 11, "_data": [], "_depth": 9, "_export": [15, 16, 19], "_fraction": 9, "_i": [0, 1, 2, 5, 6, 7, 8, 11, 12, 13, 19, 23, 28, 29, 30, 31, 32, 33, 34, 35], "_j": [0, 1, 2, 3, 5, 6, 8, 13, 19, 23, 29, 30, 31, 32, 33], "_k": [13, 30, 31], "_l": [12, 34, 35], "_lambda": 6, "_leaf": 9, "_m": 10, "_mask": [], "_multilayer_perceptron": [], "_n": [2, 5, 8, 11, 13, 29, 30, 31], "_node": 9, "_norm": [], "_p": [5, 8, 29, 30], "_parse_numpydoc_see_also_sect": [], "_pydevd_bundl": [], "_ratio": 11, "_sampl": 9, "_sigmoid": [33, 34], "_softmax": [33, 34], "_split": [6, 9, 23], "_t": [13, 31], "_test": [6, 23], "_varianc": 11, "_weight": 9, "a0": 3, "a0111f": [], "a0faa0": [9, 10], "a1": [0, 28], "a11": [], "a12236": [], "a2": [0, 28], "a25e53": [], "a2bffc": [], "a3": [0, 28], "a4": [0, 28], "a5d6ff": [], "a_": [0, 1, 16, 22, 28, 29, 35], "a_0": [0, 28, 35], "a_1": 35, "a_1a": [0, 28], "a_2": 35, "a_2a": [0, 28], "a_3": [0, 28], "a_3a": [0, 28], "a_4": [0, 28], "a_4a": [0, 28], "a_h": 1, "a_i": [0, 1, 2, 12, 28, 35], "a_j": [1, 12, 35], "a_k": [0, 1, 12, 35], "aa": [], "aaa": [], "aaron": 27, "ab": [0, 2, 5, 13, 14, 28, 29, 31, 35], "ab6369": [], "ab_channel": [21, 34, 35], "abandon": 1, "abe338": [], "abid": 25, "abil": [0, 10], "abl": [0, 1, 4, 5, 6, 7, 10, 12, 13, 16, 18, 20, 23, 29, 30, 31, 33, 34, 35], "about": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 20, 21, 22, 23, 26, 31, 32, 33, 34], "abov": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 25, 27, 28, 29, 31, 32, 33, 34], "abovement": [6, 23, 28, 32, 33], "abscissa": [13, 30], "absent": 31, "absolut": [0, 2, 5, 6, 13, 28, 29, 30, 32, 33], "absorb": [29, 30], "abstract": [1, 31, 33], "abund": 31, "ac": [], "acc_bin": [33, 34], "acc_multi": [33, 34], "acceler": [13, 31], "accept": [0, 3, 6, 9, 23, 29, 31], "access": [3, 11, 25, 28, 31], "accid": [4, 6, 32, 33], "accompani": [0, 28, 29], "accomplish": [8, 9, 13, 31], "accord": [0, 1, 2, 5, 6, 9, 12, 13, 14, 25, 28, 30, 31, 32, 34, 35], "accordingli": 11, "account": [0, 3, 5, 13, 15, 16, 20, 25, 28, 31], "accumul": [12, 13, 25, 31, 34, 35], "accur": [0, 3, 4, 6, 10, 13, 31, 32, 33], "accuraci": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 30, 33, 34, 35], "accuracy_scor": [0, 1, 10, 28, 33, 34], "accuracy_score_numpi": 1, "achiev": [0, 1, 5, 6, 8, 12, 22, 28, 31, 32, 33, 34, 35], "aco": 25, "acquaint": 21, "acquir": [1, 21, 28], "acr": [], "across": [1, 3, 6, 9, 17, 21, 28, 32], "act": [1, 3, 22, 31], "action": 25, "activ": [0, 2, 3, 4, 9, 15, 24, 26, 28, 31], "activest": [], "actual": [0, 1, 4, 5, 6, 8, 11, 15, 16, 18, 22, 25, 28, 29, 30, 31, 32], "ad": [1, 3, 4, 5, 8, 13, 15, 16, 22, 30, 31, 32, 33], "ada_clf": 10, "adaboostclassifi": 10, "adadelta": [13, 31], "adagrad": [23, 32, 35], "adam": [1, 3, 4, 23, 28, 32, 35], "adap": 35, "adapt": [4, 6, 13, 17, 27, 30, 32, 33, 35], "add": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 15, 16, 17, 18, 20, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "add6ff": [], "add_": [], "add_subplot": [1, 7, 12, 14, 33, 34], "addendum": 5, "addeventlisten": [], "addit": [0, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 15, 21, 22, 23, 25, 26, 27, 28, 29, 32, 33, 34, 35], "addition": [12, 13, 30, 31, 34, 35], "address": [1, 9, 11, 13, 28, 31], "adjac": [3, 12, 34, 35], "adjoint": [5, 29], "adjust": [0, 5, 12, 13, 30, 31, 34], "admir": [0, 28], "advanc": [4, 6, 12, 27, 28, 31, 32, 33, 34, 35], "advantag": [1, 3, 5, 6, 10, 13, 19, 22, 30, 31, 32, 33], "adversari": 28, "advis": [], "afecionado": 28, "affect": [3, 15, 19], "affin": [0, 3, 8, 11, 29, 35], "afford": 3, "aficionado": 28, "aforement": 14, "african": [], "after": [0, 1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 35], "afterward": [0, 28], "ag": [0, 7, 28, 29, 33], "ag_0": 2, "again": [0, 1, 4, 5, 6, 7, 8, 10, 11, 12, 13, 23, 25, 28, 29, 30, 32, 33, 34, 35], "against": [1, 4, 7, 10, 33], "agegroup": [7, 33], "agegroupmean": [7, 33], "aggreg": [9, 10, 31], "agorithm": 10, "agre": [5, 6, 25, 29, 30, 31, 32], "agreement": [13, 31], "ahead": 9, "ai": [0, 27], "aid": [11, 20, 31], "aim": [0, 1, 4, 6, 7, 11, 14, 16, 17, 19, 20, 21, 22, 23, 29, 32, 33, 34, 35], "ainv": 5, "airplan": 3, "aka": 5, "al": [0, 2, 4, 16, 17, 20, 27, 28, 29, 30, 32, 33, 34, 35], "alarm": [5, 7], "aldo": 29, "algebra": [0, 3, 5, 13, 21, 29, 30, 32], "algorithm": [0, 1, 2, 4, 5, 6, 7, 8, 13, 14, 16, 21, 22, 23, 25, 27, 32, 33, 34], "align": [0, 2, 5, 6, 7, 8, 13, 25, 28, 29, 30, 32, 33, 34], "all": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "allevi": [1, 13, 30], "alloc": [3, 22], "allow": [0, 1, 2, 3, 5, 6, 8, 10, 13, 15, 21, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "almost": [0, 1, 6, 8, 11, 13, 25, 30, 31, 32, 33, 34], "alon": [2, 9, 31], "along": [2, 3, 4, 5, 6, 9, 10, 11, 15, 20, 21, 22, 28, 29, 30, 32, 33], "alpha": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 25, 28, 29, 30, 31, 32, 33, 34], "alpha_": [10, 31], "alpha_0": 3, "alpha_1": 3, "alpha_2": 3, "alpha_i": [3, 13], "alpha_k": 13, "alpha_m": 10, "alpha_n": 3, "alpha_opt": 13, "alreadi": [2, 3, 4, 5, 6, 10, 12, 15, 21, 22, 25, 28, 29, 30, 33, 34, 35], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "alter": 1, "altern": [0, 1, 4, 5, 6, 8, 9, 11, 13, 15, 18, 22, 23, 28, 29, 31, 32, 33], "although": [0, 1, 5, 6, 8, 10, 13, 16, 19, 20, 28, 31, 32, 33, 35], "alwai": [0, 3, 5, 6, 12, 13, 16, 19, 23, 25, 28, 29, 30, 31, 32, 34, 35], "am": 4, "ambit": 35, "ame2016": [0, 28], "american": [], "amjith": [], "among": [0, 3, 5, 9, 10, 12, 22, 28, 29, 34, 35], "amongst": [5, 32], "amount": [0, 1, 3, 4, 6, 8, 10, 14, 21, 32, 33, 35], "an": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34], "an_": 25, "anaconda": [0, 1, 21, 23, 28], "analogi": 13, "analys": [6, 32, 33], "analysi": [1, 3, 4, 7, 14, 19, 22, 27, 31, 34], "analyt": [2, 3, 5, 6, 7, 12, 13, 17, 21, 23, 28, 29, 30, 31, 32, 33, 34, 35], "analyz": [0, 1, 3, 4, 5, 6, 16, 23, 25, 29, 30, 31], "andrew": 1, "angl": [0, 3, 9, 29, 31], "anharmon": 3, "ani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 19, 25, 28, 29, 31, 32, 35], "anim": [4, 12, 34, 35], "ann": [12, 34, 35], "annot": [0, 1, 3, 7, 8, 28, 34], "announc": 28, "anom": [], "anomali": [], "anonym": 18, "anoth": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 22, 23, 25, 28, 29, 31, 35], "ansatz": [0, 18, 28], "answer": [0, 1, 3, 5, 6, 19, 22, 23, 26, 28, 32], "antialias": [2, 6], "anticip": 4, "anymor": [1, 8], "anyon": [4, 8, 15], "anyth": [1, 15, 16, 25], "anytim": [26, 28], "anywai": [], "apach": 1, "apart": [11, 13, 30, 31], "api": [1, 21, 28], "appar": 2, "appear": [0, 1, 3, 13, 22, 25, 35], "append": [1, 3, 4, 8, 9, 13, 19, 28, 31, 33, 34], "appendic": 23, "appendix": 23, "appli": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 18, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35], "applic": [0, 1, 3, 4, 5, 6, 7, 9, 12, 13, 16, 22, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "apply_gradi": 4, "approach": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 18, 21, 23, 25, 27, 29, 30, 35], "approch": 23, "appropri": [2, 6, 9, 12, 13, 17, 21, 25, 31, 32, 33, 34], "approv": 28, "approx": [0, 2, 3, 6, 10, 11, 13, 18, 23, 25, 28, 30, 31, 32], "approxim": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 19, 23, 25, 28, 29, 30, 31, 32, 33, 34], "apt": [0, 21, 23, 28], "aq": 25, "ar": [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, 29, 30, 31, 32, 33, 34, 35], "aragorn": 28, "arang": [1, 3, 4, 6, 7, 9, 10, 12, 13, 28, 31, 33, 34], "arbitrari": [1, 4, 6, 8, 12, 13, 25, 30, 32, 34, 35], "arbitrarili": [0, 1, 11, 28, 31], "arc": 6, "architectur": [3, 4, 12, 35], "archiv": 23, "area": [0, 3, 6, 27, 28], "argmax": [1, 11, 33, 34], "argmin": [4, 10, 14], "argsort": 11, "argu": [1, 13], "arguement": 19, "argument": [0, 2, 3, 5, 11, 12, 13, 17, 28, 29, 31, 32, 34, 35], "aris": [0, 6, 12, 13, 25, 28, 30, 32, 33], "arithmet": [0, 13, 22, 28], "arm": [6, 29, 31], "armadillo": 22, "armin": [], "arnulf": 35, "around": [0, 1, 4, 5, 6, 11, 18, 23, 25, 28, 32, 33, 34, 35], "arrai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 16, 18, 21, 23, 25, 29, 30, 31, 32, 33, 34, 35], "arrang": [3, 28], "array_equ": [33, 34], "arraybox": 13, "arriv": [0, 6, 9, 11, 19, 22, 25, 28, 32], "arrow": [12, 34, 35], "arrowprop": 8, "art": [0, 1, 21], "articl": [0, 3, 4, 6, 10, 19, 28, 29, 30, 31, 32, 33], "artifici": [0, 2, 7, 12, 27, 28, 33], "artificialneuron": [12, 34, 35], "arug": 13, "arxiv": [3, 4, 31, 35], "asarrai": [0, 6, 9, 29, 31], "asid": 29, "ask": [5, 6, 11, 12, 15, 19, 23, 32, 35], "aspect": [0, 6, 21, 28, 29, 35], "assembl": 3, "assembli": [0, 28], "assert": 4, "assess": [0, 6, 23, 28, 29, 32, 33], "asset": [], "assici": 4, "assign": [0, 7, 8, 9, 12, 13, 14, 15, 24, 26, 27, 28, 33, 34], "associ": [0, 6, 9, 12, 14, 25, 28, 32, 33, 34, 35], "assum": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "assumpt": [0, 3, 5, 6, 9, 11, 25, 28, 29, 33], "ast": [0, 5, 6, 28, 32], "astyp": [4, 9, 10, 33, 34], "asymmetri": [0, 28], "asymptot": [4, 6, 31, 32, 33], "atom": [0, 28], "attain": 31, "attempt": [0, 4, 6, 7, 8, 10, 28, 29, 31, 33, 35], "attend": 28, "attent": [0, 22, 28], "attract": [0, 10, 28], "attribut": [0, 9, 28], "audi": [0, 28], "audio": [3, 4], "august": [28, 29], "aurelien": [0, 27, 28], "austfjel": 6, "auth": 15, "authent": 15, "author": [0, 1, 10, 25], "authour": 28, "auto": [9, 10, 25], "auto_exampl": [23, 29], "autocor": 25, "autocorrelation_tim": 25, "autocorrelform": 25, "autocovari": 25, "autoencod": [4, 21, 28], "autoencond": 21, "autograd": [21, 28, 35], "autom": [0, 21, 27, 28], "automac": 22, "automag": 28, "automat": [0, 1, 2, 3, 4, 11, 16, 21, 22, 28, 34], "automobil": 3, "autonom": 4, "avail": [0, 1, 4, 6, 10, 11, 21, 22, 23, 24, 26, 27, 28, 32, 33], "avali": [20, 23], "averag": [0, 1, 3, 6, 9, 10, 13, 14, 25, 26, 28, 29, 32, 33], "avoid": [0, 4, 5, 6, 9, 11, 13, 18, 22, 29, 31, 32, 33], "awai": [2, 3, 6, 29, 31, 35], "awar": [2, 10], "award": [26, 28], "ax": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 22, 23, 28, 32, 33, 34], "axes3d": [2, 6, 13, 30, 31], "axes_grid1": 6, "axhlin": 8, "axi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "axiom": 5, "axvlin": [4, 8], "axvspan": 4, "b": [0, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 17, 19, 20, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "b1": 8, "b19db4": [], "b1bac4": [], "b2": 8, "b3": 8, "b35900": [], "b89784": [], "b_": [0, 1, 22, 35], "b_0": [0, 35], "b_1": [0, 2, 12, 13, 31, 34, 35], "b_2": [0, 13, 35], "b_5": [13, 31], "b_group": 9, "b_i": [0, 1, 2, 12, 28, 34, 35], "b_ia_": [0, 28], "b_ia_i": 0, "b_index": 9, "b_j": [1, 12, 34, 35], "b_k": [0, 1, 12, 13, 31, 34, 35], "b_m": [12, 34], "b_score": 9, "b_valu": 9, "ba": 31, "babcock": 28, "bach": 31, "bachelor": [24, 26], "back": [0, 3, 4, 5, 6, 8, 9, 10, 15, 16, 22, 25, 28, 31], "backbon": 22, "backend": [1, 4], "background": [27, 28], "backpropag": [1, 31, 35], "backslash": [], "backtrack": 9, "backup": 22, "backward": [1, 2, 4, 12, 22, 31, 35], "bad": [6, 17, 29], "badli": 25, "bag": [9, 21, 28], "bag_clf": 10, "baggin": 28, "baggingboot": 10, "baggingclassifi": 10, "baggingtre": 10, "bailei": [], "balanc": [6, 31, 32, 33], "ballpark": 18, "band": 22, "bandwidth": 22, "banner": [], "bar": [0, 6, 11, 23, 28], "barber": 27, "bare": [4, 10], "base": [0, 1, 3, 4, 5, 7, 8, 9, 10, 14, 15, 16, 17, 21, 25, 26, 27, 28, 29, 30, 33, 34, 35], "basi": [5, 7, 8, 10, 11, 12, 13, 22, 29, 30, 33, 34, 35], "basic": [6, 8, 12, 13, 14, 15, 21, 23, 25, 28, 32], "basin": 31, "batch": [3, 4, 11, 12, 13, 30, 33, 34], "batch_shap": 4, "batch_siz": [1, 3, 4], "batchnorm": 4, "bay": [7, 33, 34], "baydin": 35, "bayesian": [5, 21, 27, 28], "bbbbbb": [], "beauti": [], "becam": [], "becaus": [0, 1, 2, 3, 4, 5, 6, 8, 9, 12, 13, 14, 28, 29, 30, 31, 32, 33, 34], "becom": [0, 1, 2, 5, 6, 7, 9, 12, 13, 19, 25, 28, 29, 30, 31, 32, 33, 34, 35], "been": [0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 19, 20, 21, 22, 23, 28, 29, 31, 32, 34, 35], "befor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 28, 29, 31, 32, 33, 34, 35], "beforehand": [0, 25, 28], "began": [], "begin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "behav": [1, 6, 13, 30, 32, 33], "behavior": [0, 1, 13, 28, 30, 31], "behaviour": [12, 31, 34, 35], "behind": [0, 1, 6, 8, 13, 28, 30], "being": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 17, 20, 25, 28, 29, 30, 31, 33, 34, 35], "believ": [9, 22], "belong": [7, 8, 9, 13, 14, 30, 33, 34], "below": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "benchmark": 10, "benefici": [1, 13], "benefit": [0, 1, 4, 11, 13, 21, 28, 30, 31], "bengio": [1, 27, 28, 29, 31], "benign": [1, 7, 34], "benno": 35, "berner": 35, "besid": [4, 5, 30], "bessel": [5, 29, 32], "best": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 18, 26, 28, 29, 30, 31, 32, 33, 34], "beta": [1, 3, 10, 11, 13, 16, 17, 19, 28, 29, 30], "beta1": [], "beta2": [], "beta_": [3, 13, 17, 29], "beta_0": [1, 3, 13, 29], "beta_1": [1, 3, 10, 13, 29, 31], "beta_1m_": 31, "beta_1x_i": 13, "beta_2": [3, 13, 31], "beta_2v_": 31, "beta_3": 3, "beta_i": [3, 31], "beta_j": [13, 29], "beta_k": 13, "beta_linreg": 13, "beta_m": 10, "beta_mg_m": 10, "beta_n": 3, "better": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 19, 20, 28, 29, 31, 32], "between": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "beyond": [0, 1, 5, 6, 8, 13, 28, 29, 30, 31], "bf": [13, 14, 22, 25, 30], "bf5400": [], "bg": 28, "bgd": [13, 31], "bia": [0, 1, 2, 3, 5, 8, 9, 10, 12, 13, 20, 28, 29, 30, 34, 35], "bias": [1, 2, 3, 5, 6, 9, 12, 19, 31, 32, 34], "bib": [], "bibliographi": 23, "bibtex": [], "big": [0, 1, 2, 5, 6, 14, 19, 31, 32], "bigger": [1, 6, 29], "bigr": [12, 34], "bike": 9, "bilbo": 28, "billion": [3, 12, 21, 31, 34, 35], "bin": [7, 25, 34], "binari": [0, 3, 5, 7, 9, 10, 12, 28, 33, 34], "binary_cross_entropi": [33, 34], "binary_result": [33, 34], "binarycrossentropi": 4, "bind": 0, "binomi": [21, 25, 28], "binsboot": [6, 32], "bioinformat": 0, "biolog": [1, 12, 34, 35], "bios1100": [21, 28], "bird": [0, 3], "birth": 28, "bishop": [27, 28], "bit": [1, 4, 19, 22, 25, 28], "bitwis": 25, "bivari": 2, "bk": [13, 31], "bla": [22, 28], "black": [8, 9, 14], "blame": [], "block": [6, 10, 21, 22, 25, 28, 32, 33], "blockquot": [], "blog": 28, "blogpost": 4, "blue": [0, 3], "bm": [], "bmatrix": [0, 1, 3, 5, 7, 8, 11, 13, 22, 28, 29, 30, 31, 33, 34, 35], "bmi": 1, "bodi": [0, 1, 4, 12, 34, 35], "bold": 1, "boldfac": [0, 5, 16, 29, 30], "boldsymbol": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 23, 28, 30, 31, 33, 34, 35], "boltzmann": [12, 21, 28, 34, 35], "book": [17, 23, 27, 28, 29, 32, 33], "book1": 27, "bool": [], "boolean": [4, 17], "boost": [1, 9, 21, 28], "boostrap": 10, "bootstrap": [1, 13, 19, 21, 23, 28, 31], "born": 31, "borrow": 28, "boston_dataset": [], "bot": 8, "both": [0, 1, 4, 5, 6, 8, 9, 10, 13, 14, 15, 16, 17, 19, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34], "bottl": [7, 33, 34], "bottou": 31, "bound": [8, 12, 31, 34, 35], "boundari": [2, 4, 8, 11, 12], "bousquet": 31, "bower": [], "box": [4, 9], "boyd": [8, 13, 30], "bracket": [4, 25], "brain": [1, 7, 12, 33, 34, 35], "branch": [9, 28], "break": [0, 4, 6, 11, 14, 28, 31], "breast": [5, 7, 11, 34], "breviti": 13, "brew": [0, 21, 23, 28], "brg": 8, "brian": [], "brief": [23, 29], "briefli": [0, 16, 19, 28, 32], "bring": [0, 5, 6, 10, 29, 31], "britt": [26, 28], "broad": 0, "broadli": 28, "brought": [13, 21, 28], "brownle": 4, "browser": [15, 28], "brute": [3, 5, 11, 29, 35], "bsd": [], "budget": 31, "buffer_s": 4, "bug": [], "bugfix": [], "bui": 4, "build": [0, 4, 5, 6, 10, 16, 22, 25, 28, 32, 33, 34, 35], "built": [1, 3, 4, 6, 32, 33], "bunch": 11, "bundl": [], "busi": [], "bxe2t": [34, 35], "byte": [22, 28], "c": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35], "c1": [8, 11], "c2": [8, 11], "c4a2f5": [], "c5e478": [], "c9d1d9": [], "c_": [8, 9, 10, 13, 25, 30, 31], "c_0": 25, "c_1": [12, 34], "c_2": [12, 34], "c_3": [12, 34], "c_4": [12, 34], "c_i": [12, 13, 31, 34], "c_k": 25, "ca": [1, 28], "caab6d": [], "cach": 10, "cal": [0, 8, 10, 12, 13, 30, 31, 35], "calcul": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 22, 25, 28, 31, 32, 33, 34, 35], "california": 23, "call": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "calor": [0, 29], "caltech": [], "cambridg": [13, 27, 30, 35], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 34], "cancel": [0, 13, 28, 29], "cancer": [5, 10, 34], "cancerpd": [7, 34], "candid": [8, 9, 10, 31], "cannot": [0, 1, 4, 5, 6, 7, 8, 9, 23, 25, 29, 30, 31, 34], "canopi": [0, 21, 23, 28], "canva": [15, 16, 19, 20, 23, 28], "cap": 5, "capabl": [0, 1, 8, 13, 21, 28], "capac": [2, 26], "capita": [], "caption": [20, 23], "captur": [4, 11, 12, 28, 34, 35], "car": [3, 4], "card": [0, 7, 28, 33, 34], "cardin": 1, "care": [11, 15, 19, 31], "carefulli": [13, 31], "carlo": [0, 6, 21, 25, 27, 28, 32, 33], "carri": [2, 6, 7, 23, 32, 33, 34], "cart": 10, "case": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 16, 21, 22, 23, 28, 32, 35], "casella": 27, "cast": 1, "cat": [3, 4], "catch": 0, "categor": [0, 1, 3, 9, 11, 28, 33, 34], "categori": [0, 1, 3, 7, 10, 12, 14, 28, 33, 34, 35], "categorical_cross_entropi": [33, 34], "categorical_crossentropi": [1, 3], "caus": [0, 5, 6, 25, 28, 29, 30, 31, 32, 33], "causal": 0, "causat": [0, 28], "cax": 1, "cb": [6, 28], "cbar": 1, "cc": [0, 1, 5, 13, 28, 29, 30, 31, 35], "cc398b": [], "ccbb44": [], "ccc": [5, 12, 30, 34], "cdf": 25, "cdot": [0, 2, 6, 12, 13, 14, 22, 25, 28, 30, 31, 32, 34], "celebr": [13, 30], "cell": 4, "center": [0, 1, 6, 7, 8, 9, 11, 14, 18, 23, 25, 28, 29, 31, 32, 33, 34], "central": [0, 3, 5, 6, 8, 16, 20, 22, 28, 29, 35], "centroid": [14, 25], "centroid_differ": 14, "centuri": 3, "certain": [0, 3, 6, 7, 9, 25, 28, 29, 32, 33, 34], "certainti": 32, "cf": [], "cf222e": [], "cffi": [], "cg": 13, "cha": [], "chain": [0, 1, 13, 21, 25, 28], "challeng": [15, 35], "chanc": [1, 5, 13, 25, 31], "chang": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "changelog": [], "channel": 3, "chap4": 35, "chapter": [0, 6, 10, 11, 16, 17, 19, 22, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35], "chapter3": [0, 23], "charact": [0, 3, 5, 28, 29, 30], "character": [8, 9, 10, 12, 25, 34], "characterist": [0, 1, 3, 10, 13, 28], "charg": [0, 28], "charl": [], "charset": [], "chase": 4, "chatgpt": [15, 23], "chd": [7, 33], "chddata": [7, 33], "cheap": [5, 29, 30, 31], "cheaper": [1, 13, 31], "check": [1, 3, 4, 5, 11, 13, 15, 16, 19, 22, 28, 31, 33, 34], "checkmark": 3, "checkpoint": 4, "checkpoint_dir": 4, "checkpoint_prefix": 4, "chen": 10, "cheng": 29, "chiaramont": 2, "childcar": 16, "children": 16, "choic": [0, 1, 2, 3, 4, 6, 9, 12, 13, 14, 20, 22, 28, 29, 30, 31, 32, 33, 34], "choleski": [5, 22, 29, 30], "choos": [2, 3, 6, 9, 10, 11, 13, 14, 15, 18, 19, 23, 30, 32, 33, 34], "chosen": [0, 1, 2, 6, 8, 9, 10, 13, 16, 25, 28, 30, 31, 32, 33], "chosen_datapoint": 1, "christian": 27, "christoph": [27, 28], "chunk": 31, "cifar": 3, "cifar10": 3, "circ": [1, 12, 31, 35], "circl": [0, 8, 12, 29, 31, 34, 35], "circuit": 3, "circumfer": 9, "circumv": [1, 5, 13, 29, 30, 31], "citat": [], "cite": [20, 23], "ckpt": 4, "cl": [33, 34], "claim": [], "clariti": 25, "class": [0, 1, 3, 4, 6, 7, 8, 9, 11, 12, 13, 25, 28, 32], "class0": [33, 34], "class1": [33, 34], "class_nam": [3, 9], "class_to_index": [33, 34], "class_val": 9, "class_valu": 9, "classic": [7, 9, 13, 34], "classif": [0, 3, 5, 6, 7, 8, 11, 12, 21, 23, 27, 28, 29, 32], "classifi": [0, 1, 4, 7, 9, 10, 11, 28, 34], "classificaton": 1, "classifii": 10, "claus": [], "clean": 1, "clear": [1, 5, 10, 12, 13, 31], "clearli": [0, 3, 5, 6, 7, 8, 25, 29, 30, 32, 33, 34], "clever": [1, 10], "clf": [0, 6, 8, 9, 10, 28, 29], "clf3": 0, "clf_lasso": 6, "clf_ridg": 6, "cli": 15, "click": [], "clip": [3, 25, 31, 33, 34], "clock": 31, "clone": [15, 26], "close": [0, 1, 2, 4, 6, 8, 9, 11, 12, 13, 14, 18, 25, 27, 28, 30, 31, 32, 34, 35], "closer": [3, 5, 13, 29, 30, 31], "closest": [8, 11, 13, 14], "closur": [21, 28], "cloud": [21, 28], "cluster": [0, 1, 4, 6, 11, 21, 28, 32, 33, 34], "cluster_label": 14, "cm": [1, 2, 3, 6, 8, 13, 30, 31], "cmap": [0, 1, 2, 3, 4, 6, 8, 9, 10, 28], "cmap_arg": 6, "cmd": [9, 15], "cn_": 25, "cnn": [12, 34, 35], "cnn_kera": 3, "cntk": [21, 28], "co": [0, 2, 3, 6, 9, 13, 28, 32, 33], "code": [0, 3, 4, 6, 7, 8, 18, 19, 21, 22, 25, 27], "codec": [], "coef": [0, 28], "coef0": 8, "coef_": [0, 5, 6, 8, 9, 13, 16, 28, 29, 30, 31], "coeff": 5, "coeffici": [0, 3, 5, 6, 7, 8, 9, 13, 18, 22, 28, 29, 31, 32, 33, 34], "coerc": [0, 6, 28, 32, 33], "coin": [10, 25], "coin_toss": 10, "col": [0, 11, 28, 29], "colab": [21, 28], "cold": 9, "colinear": [], "collabor": [20, 23], "collaps": 8, "collect": [2, 6, 10, 11, 17, 21, 25, 27, 28, 32, 33, 35], "collinear": [5, 29, 30], "color": [0, 3, 4, 6, 8, 9, 10, 25, 31], "color_channel": 3, "color_cod": 6, "colorbar": [1, 6, 20], "colsample_bytre": 10, "colsaobject": 10, "column": [0, 1, 2, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 19, 22, 28, 29, 30, 31, 32, 33, 34, 35], "columntransform": 9, "com": [4, 6, 15, 16, 19, 20, 21, 23, 27, 28, 30, 31, 32, 33, 34, 35], "combin": [1, 2, 5, 6, 7, 10, 15, 18, 25, 32, 33], "come": [0, 1, 3, 4, 5, 12, 13, 14, 15, 28, 29, 30, 31, 34, 35], "comfort": [], "command": [0, 1, 15], "comment": [0, 4, 5, 6, 20, 23], "commerci": [0, 21, 23, 28], "commit": 15, "commod": [0, 28], "common": [0, 1, 3, 5, 6, 7, 9, 11, 13, 14, 16, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "commonli": [0, 1, 4, 6, 7, 9, 13, 14, 29, 31, 32, 33, 34], "commonmark": [], "commun": [0, 12, 15, 23, 34, 35], "commut": 3, "commutatitav": 3, "compact": [0, 1, 3, 5, 6, 7, 9, 11, 12, 13, 14, 28, 29, 32], "compair": 0, "compar": [0, 3, 4, 5, 6, 11, 13, 18, 22, 23, 28, 29, 30, 31, 32, 33, 35], "comparison": [2, 4, 13], "compat": [7, 33, 34], "compens": 31, "compet": 0, "competit": 10, "compil": [0, 1, 3, 4, 13, 21, 22, 28], "complet": [0, 2, 3, 4, 9, 12, 15, 16, 17, 18, 19, 20, 28, 34], "completenn": [12, 34], "complex": [1, 5, 8, 9, 11, 12, 13, 16, 19, 28, 30, 31, 32, 33], "complianc": [], "complic": [0, 1, 9, 13, 23, 28, 30, 31, 32, 33], "compoment": 29, "compon": [0, 1, 3, 4, 5, 6, 7, 9, 14, 16, 21, 28, 29, 30, 32, 34, 35], "components_": 11, "compos": [9, 12, 13, 14, 21, 28, 34, 35], "compphys": [0, 6, 16, 20, 21, 23, 24, 26, 27, 28, 29, 30, 33, 34], "compress": [0, 28, 29], "compris": 6, "compromis": [5, 29, 30], "compulsori": [21, 28], "comput": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 21, 22, 23, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35], "computation": [0, 3, 6, 9, 13, 25, 28, 30, 31, 35], "computationalscienceuio": 28, "computerlab": 23, "concaten": [2, 4, 6, 14, 33, 34], "concav": [1, 13, 29, 30], "concentr": 10, "concept": [0, 2, 21, 28, 29], "conceptu": [12, 13, 30, 34, 35], "concern": [0, 1, 4, 7, 28, 30, 33, 34], "concic": 28, "conclud": [0, 5, 13, 31], "conclus": 1, "cond": 2, "conda": [0, 1, 21, 23, 28], "condis": 29, "condit": [0, 2, 4, 5, 6, 8, 9, 11, 13, 25, 28, 29, 31, 32], "conduct": 21, "condwav": 2, "confid": [0, 5, 6, 7, 8, 19, 28, 29, 33, 34], "configur": 3, "confirm": [5, 12, 34], "conform": [], "confus": [5, 6, 7, 10, 22, 29, 32], "confusion_matrix": 9, "congruenti": 25, "conjug": [4, 8], "conjugaci": 13, "conjunct": 3, "connect": [0, 1, 3, 4, 9, 11, 12, 13, 22, 28, 29, 30, 34, 35], "consensu": 31, "consequ": [5, 6, 8, 10, 12, 13, 29, 30, 31, 32], "consequenti": [], "conserv": [5, 14, 29, 30], "consid": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 16, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "consider": [0, 1, 5, 13, 28, 29, 30, 32], "consist": [1, 2, 3, 4, 6, 12, 13, 23, 25, 29, 30, 32, 33, 34, 35], "consol": [], "const": [], "constant": [0, 2, 4, 5, 6, 8, 12, 13, 16, 18, 25, 28, 29, 30, 31, 34, 35], "constitu": [0, 28], "constitut": [2, 6, 32, 33], "constrain": [1, 3, 5, 7, 11, 30, 33], "constraint": [5, 6, 8, 13, 29, 30, 32], "construct": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 22, 25, 28, 29, 32, 34], "constructor": [], "consum": 31, "contact": [0, 28], "contain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 18, 19, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "contemporari": 28, "content": [1, 15, 20, 21, 22, 28, 30, 31], "context": [6, 10, 13, 23, 30, 31, 32, 33, 35], "contigu": 22, "contin": 19, "continu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "contour": [9, 10, 13], "contourf": [8, 9, 10], "contract": [], "contrast": [1, 4, 9, 10, 12, 28, 31, 34, 35], "contribut": [0, 3, 5, 13, 18, 25, 28, 29, 30, 31], "contributor": [0, 23], "control": [0, 1, 3, 9, 13, 15, 21, 28], "conv": [3, 4], "conv2d": [3, 4], "conv2dtranspos": 4, "convei": 28, "conveni": [5, 6, 12, 13, 22, 23, 28, 30, 31, 32, 34], "convent": [12, 29], "converg": [1, 2, 4, 5, 8, 13, 14, 18, 29, 30, 35], "convergencewarn": [], "convers": [20, 31], "convert": [0, 1, 4, 5, 9, 11, 13, 22, 28, 29, 30, 33, 34], "converttomatrix": 4, "convex": [4, 5, 7, 29, 33, 34], "convinc": [13, 30], "convolut": [1, 4, 21, 28], "cool": [4, 9], "coolwarm": 6, "coordin": [5, 12, 14, 29, 30, 31, 34], "coorel": [], "copi": [0, 1, 14, 15, 29, 33, 34], "copyright": [], "core": 10, "corel": 28, "coronari": [7, 33], "corr": [5, 7, 11, 29, 34], "correalt": [11, 21], "correct": [0, 1, 2, 3, 4, 5, 7, 13, 15, 19, 20, 22, 25, 28, 29, 30, 32, 33, 34], "correctli": [1, 2, 6, 7, 10, 18, 19, 23, 32, 33], "correl": [0, 1, 3, 5, 6, 7, 10, 12, 13, 21, 25, 28, 30, 31, 32, 35], "correlation_matrix": [5, 7, 11, 29, 34], "correspond": [0, 3, 5, 6, 8, 9, 11, 12, 21, 22, 23, 25, 28, 29, 30, 32, 34, 35], "cortex": [12, 34, 35], "cosin": [3, 6, 32, 33], "cost": [0, 2, 3, 5, 6, 7, 8, 9, 12, 13, 16, 17, 18, 19, 23, 28], "cost_deep_grad": 2, "cost_funct": 2, "cost_function_deep": 2, "cost_function_deep_grad": 2, "cost_function_grad": 2, "cost_grad": 2, "cost_histori": [], "cost_ol": [], "cost_ridg": [], "cost_sum": 2, "costli": 31, "costol": [13, 31], "could": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "coulomb": [0, 28], "count": [0, 9, 15, 23, 24, 25, 26, 28], "counter": 23, "counteract": 31, "counterpart": 28, "countor": 13, "coupl": [4, 5, 6, 32], "cours": [0, 1, 3, 5, 11, 15, 16, 17, 19, 20, 23, 26, 29, 32, 33], "coursework": 15, "courvil": [27, 28, 29, 31], "cov": [5, 6, 11, 22, 25, 28, 29, 32], "cov_xi": [5, 11, 29], "cov_xx": [5, 11, 29], "cov_yi": [5, 11, 29], "covari": [0, 7, 21, 22, 28, 30, 34], "covariance_matrix": [5, 11, 14], "cover": [0, 5, 21, 23, 26, 27, 29, 30, 32], "covert": [0, 28], "covxi": 25, "covxx": 25, "covxz": 25, "covyi": 25, "covyz": 25, "covzz": 25, "cpu": 1, "cqofi41lfdw": 35, "craft": 3, "crash": 31, "creat": [1, 3, 4, 5, 9, 10, 11, 12, 15, 18, 19, 21, 28, 31, 33, 34, 35], "create_biases_and_weight": 1, "create_convolutional_neural_network_kera": 3, "create_neural_network_kera": 1, "create_x": [5, 11], "creation": [], "credit": [0, 7, 26, 28, 33, 34], "crim": [], "crime": [], "criteria": [0, 4, 9, 10, 14, 25, 28], "criterion": [9, 10, 13, 18, 30, 31, 35], "critic": [6, 23, 29], "critiqu": 23, "cross": [0, 1, 3, 7, 9, 10, 13, 15, 21, 25, 28, 29, 30, 31], "cross_entropi": 4, "cross_val_scor": [6, 32, 33], "cross_valid": [7, 10, 34], "crossvalid": [6, 32, 33], "crucial": [1, 25, 31], "cs231": 3, "csr_matrix": [22, 28], "css": [], "csv": [0, 4, 6, 7, 9, 32, 33, 34], "ctnk": 1, "cube": 35, "cubic": 0, "culprit": [], "cumbersom": [5, 32], "cumprod": [], "cumsum": [10, 11, 28], "cumul": [7, 10, 25, 31], "cumulative_heads_ratio": 10, "cup": 5, "current": [1, 2, 3, 4, 13, 14, 15, 16, 27, 30, 31, 33, 34], "curs": [0, 29], "curv": [6, 7, 10, 12, 23, 33, 34], "curvatur": [13, 30, 31], "custom": [6, 14], "custom_cmap": [9, 10], "custom_cmap2": [9, 10], "custom_lin": [], "cutpoint": 9, "cv": [6, 7, 10, 32, 33, 34], "cvxbook": [13, 30], "cvxopt": [5, 8, 29], "cybenko": 35, "cycl": [1, 12, 34, 35], "cycler": [], "d": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "d1": [], "d166a3": [], "d2": [], "d2_g_t": 2, "d2a8ff": [], "d4d0ab": [], "d71835": [], "d9dee3": [], "d_f": [13, 30], "d_g_t": 2, "d_net_out": 2, "da": [3, 35], "dagger": [5, 22, 29, 30], "dai": [1, 9, 21], "damag": [], "damp": 3, "darget": 9, "darkr": 25, "dat": [0, 28], "dat_id": [0, 6, 7, 9, 28, 32, 33], "data": [2, 4, 5, 8, 10, 12, 13, 14, 16, 19, 20, 22, 23, 27, 30, 31, 32], "data1": 14, "data2": 14, "data3": 14, "data4": 14, "data_id": [0, 6, 7, 9, 28, 32, 33], "data_indic": 1, "data_panda": 28, "data_path": [0, 6, 7, 9, 28, 32, 33], "databas": 1, "datafil": [0, 6, 7, 9, 28, 32, 33], "datafram": [0, 4, 5, 7, 9, 11, 28, 29, 34], "datapoint": [1, 5, 6, 7, 11, 13, 16, 30, 31, 32, 33], "datasci": [15, 16, 19], "dataset": [0, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 23, 28, 30, 31, 32, 33, 34], "datatyp": 4, "date": [15, 18, 23, 28, 29, 30, 31, 32, 33, 34, 35], "daughter": 10, "davi": [], "david": 27, "davison": [32, 33], "db": 35, "dbb7ff": [], "dbh": 1, "dbo": 1, "dcc6e0": [], "dcomposit": 22, "ddot": 2, "de": 31, "dead": 1, "deadlin": [15, 20], "deal": [0, 1, 3, 5, 6, 8, 11, 13, 14, 19, 22, 25, 28, 29, 30, 31, 35], "dealt": 0, "debt": [7, 33, 34], "debug": [0, 5, 6, 29, 30, 31, 32, 33], "debugg": [], "decad": [0, 3, 31], "decai": [0, 13, 25, 28], "decemb": [26, 28], "decent": 10, "decid": [0, 2, 3, 5, 6, 9, 18, 29, 30, 31, 32, 33], "decim": [0, 28], "decis": [0, 1, 8, 11, 21, 27, 28], "decision_funct": 8, "decision_tre": 9, "decisiontreeclassifi": [9, 10], "decisiontreeregressor": [0, 9, 10], "declar": [0, 4, 20, 22, 28], "declare_namespac": [], "decompos": [5, 6, 22, 29, 30, 35], "decomposit": [0, 6, 12, 28, 34, 35], "decompost": [5, 29, 30], "deconvolut": 3, "decorrel": [10, 13, 31], "decreas": [1, 2, 4, 5, 6, 10, 11, 13, 19, 30, 31, 32, 33], "dedic": 20, "deduc": [0, 28], "deep": [3, 7, 12, 13, 21, 27, 29, 30], "deep_neural_network": 2, "deep_param": 2, "deep_tree_clf": [9, 10], "deep_tree_clf1": 9, "deep_tree_clf2": 9, "deepen": [5, 21, 28], "deeper": [0, 3, 4, 28], "deeplearningbook": [27, 28, 30, 31], "deer": 3, "def": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 25, 28, 29, 30, 31, 32, 33, 34, 35], "def_covari": 25, "default": [0, 1, 2, 4, 6, 7, 22, 28, 29, 33, 34], "default_tim": 4, "defect": [5, 29, 30], "defici": [5, 29, 30], "defin": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 22, 23, 25, 29, 30, 31, 32, 33, 34], "definit": [1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 22, 25, 29, 30, 31, 32, 33, 34], "defint": 25, "degre": [3, 5, 6, 8, 9, 10, 11, 15, 16, 19, 20, 23, 25, 28, 30, 31, 32, 33], "deisenroth": 29, "del": 1, "delet": [6, 15], "delimit": 4, "deliv": [15, 23, 24, 28], "delta": [0, 2, 3, 6, 8, 12, 13, 14, 28, 31, 35], "delta_": [1, 22, 35], "delta_0": [3, 35], "delta_1": [3, 35], "delta_2": [3, 35], "delta_2a_1": 35, "delta_3": 3, "delta_4": 3, "delta_5": 3, "delta_h": [0, 1, 28], "delta_i": 35, "delta_j": [3, 12, 35], "delta_k": [12, 35], "delta_l": [1, 3], "delta_momentum": [13, 31], "delta_n": [0, 3, 28], "delug": 21, "delv": 0, "demand": [13, 30], "demonstr": [0, 3, 5, 6, 7, 11, 12, 19, 21, 28, 29, 30, 31, 32, 33, 34], "demystifi": [34, 35], "den": 4, "denomin": [1, 5, 31], "denot": [1, 2, 6, 7, 13, 25, 30, 31, 33, 34], "dens": [1, 3, 4], "densiti": [0, 2, 6, 25, 32, 33], "depart": [26, 28, 29, 30, 31, 32, 33, 34, 35], "depend": [0, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 21, 22, 23, 25, 28, 29, 30, 31, 33, 34, 35], "depict": 25, "deploy": [0, 21, 23, 28], "depth": [0, 3, 9, 10, 22, 32], "der": [], "deriv": [0, 1, 2, 6, 7, 8, 10, 11, 13, 18, 21, 23, 28, 33, 34], "derivati": 13, "derivative_fn": 13, "derivb1": 35, "derivb2": 35, "derivw1": 35, "derivw2": 35, "descend": [5, 9, 11, 29, 30], "descent": [0, 1, 3, 7, 8, 12, 28, 29, 33, 35], "describ": [0, 2, 4, 5, 6, 8, 10, 11, 12, 13, 19, 20, 22, 23, 28, 31, 32, 34, 35], "descript": [0, 8, 9, 20, 23, 28], "design": [0, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 17, 18, 23, 28, 30, 31, 32, 33, 34, 35], "designmatrix": [0, 28], "desir": [0, 2, 4, 5, 13, 14, 28, 29, 30, 31], "desktop": 15, "despit": [1, 12, 31, 34], "destroi": 22, "det": [5, 22, 29, 30], "detail": [0, 6, 11, 13, 14, 18, 22, 23, 29, 30, 31], "detect": [3, 8, 12, 34, 35], "determin": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 18, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "determinist": [7, 13, 25, 30, 31, 33, 35], "deternin": 35, "dev": [1, 23], "develop": [0, 3, 5, 8, 10, 11, 12, 21, 22, 23, 28, 29, 34, 35], "deviat": [0, 1, 2, 4, 5, 6, 17, 18, 19, 23, 25, 28, 29, 31, 32, 33], "devis": [12, 34, 35], "df": [4, 8, 11, 13, 28, 35], "df1": 28, "di": [], "diag": [5, 8, 29, 30, 31], "diagnost": [1, 10], "diagon": [0, 5, 7, 13, 18, 19, 22, 25, 28, 29, 30, 31, 33, 34], "diagonaliz": [5, 29, 30], "diagram": 10, "diagsvd": 6, "dice": [6, 25, 32], "dict": [6, 8], "dictionari": [], "did": [0, 1, 5, 6, 7, 10, 11, 14, 16, 23, 28, 32, 33, 34], "die": 1, "diff": [2, 35], "diff1": 2, "diff2": 2, "diff_ag": 2, "diffeent": 8, "differ": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 27, 28, 29, 30, 32, 33, 34, 35], "different": 35, "differenti": [0, 3, 16, 21, 22, 28, 29, 30, 34], "difficult": [0, 1, 6, 10, 13, 25, 28, 31, 32, 33], "difficulti": [0, 1, 13, 28, 30, 31], "diffonedim": 2, "digit": [0, 1, 3, 4, 6, 26, 28], "digress": 35, "dilemma": [13, 31], "dilut": 1, "dim": [4, 11, 14, 22], "dimens": [0, 1, 2, 3, 4, 5, 8, 11, 14, 16, 22, 28, 29, 30, 35], "dimension": [0, 4, 5, 6, 9, 11, 13, 14, 19, 21, 22, 23, 28, 29, 30, 31, 32], "dimensionless": [0, 3, 28], "diment": 22, "diminish": 31, "dimnsion": 4, "diod": 3, "direct": [0, 1, 2, 4, 11, 12, 13, 14, 28, 29, 30, 31, 34, 35], "directli": [1, 4, 5, 6, 18, 25, 29, 30], "directori": [], "disadvantag": [0, 28, 31], "disappear": [3, 6, 32], "disc_loss": 4, "disc_tap": 4, "discard": [6, 11, 31, 32, 33], "disciplin": [0, 3, 12, 34, 35], "disclaim": 25, "discontinu": 35, "discord": 28, "discourag": [13, 15, 30], "discov": [0, 28], "discover": 5, "discret": [1, 3, 5, 7, 13, 33, 34], "discrimin": [4, 7, 10, 11, 33, 34], "discriminator_loss": 4, "discriminator_loss_list": 4, "discriminator_model": 4, "discriminator_optim": 4, "discuss": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 35], "diseas": [7, 33, 34], "disguis": [6, 29, 31], "disk": 31, "disord": [1, 7, 33, 34], "dispai": [34, 35], "displai": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 23, 25, 28, 29, 31, 32, 33, 34, 35], "displaystyl": [0, 5, 17, 28, 29, 30, 31], "disregard": [0, 28], "dissimilar": [11, 14], "dist": 14, "distanc": [8, 9, 11, 14, 25], "distance_list": 9, "distinct": [3, 7, 8, 9, 10, 14, 33, 34], "distinctli": 8, "distinguish": [0, 4, 7, 8, 25, 28, 34], "distplot": [], "distribut": [0, 1, 4, 6, 7, 10, 11, 13, 14, 18, 19, 21, 22, 23, 28, 29, 30, 31, 33], "distrubut": [0, 21, 23, 28], "div": [], "dive": [0, 8, 22, 28], "diverg": [1, 13, 30, 31], "divid": [0, 1, 3, 5, 6, 7, 8, 9, 11, 12, 18, 19, 25, 28, 29, 31, 32, 33, 34, 35], "divis": [6, 8, 9, 13, 18, 22, 25, 31, 32, 33, 35], "dl": [], "dm": [], "dna": [7, 33, 34], "dnn": [0, 1, 2, 4, 12, 28, 34, 35], "dnn1": 4, "dnn2_gru2": 4, "dnn_kera": 1, "dnn_model": 1, "dnn_numpi": 1, "dnn_scikit": [0, 1, 28], "do": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 28, 29, 30, 32, 33, 35], "doc": [0, 15, 16, 19, 21, 23, 24, 26, 27, 28], "document": [4, 13, 15], "docutil": [], "doe": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 22, 23, 25, 28, 31, 32, 33, 35], "doesn": [3, 9, 12, 28, 31, 35], "dog": [1, 3, 4], "dollar": [], "domain": [5, 8, 13, 23, 30, 32], "domcontentload": [], "domin": [0, 28], "don": [0, 1, 3, 5, 6, 8, 11, 13, 15, 16, 21, 23, 28, 29, 31], "done": [0, 2, 3, 4, 5, 6, 9, 10, 11, 13, 16, 20, 22, 23, 28, 29, 30, 31, 32, 33, 35], "dot": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "doubl": [3, 4, 16, 22, 28], "doubli": 1, "doubt": 23, "down": [0, 3, 6, 9, 11, 12, 13, 30, 31, 34], "download": [0, 1, 3, 5, 6, 15, 20, 22, 27, 28], "downsampl": 3, "dozen": 1, "dq": [6, 32], "draft": 20, "drag": 13, "dragon": [], "dramat": 11, "drastic": 4, "draw": [4, 6, 10, 13, 30, 32, 33], "drawback": [0, 1, 3, 13, 29, 30, 31], "drawn": [1, 4, 6, 7, 11, 25, 28, 32, 33, 34], "drive": [3, 4], "driven": 3, "drop": [0, 1, 5, 6, 11, 13, 25, 28, 29, 30, 32], "dropna": [0, 6, 28, 32, 33], "dropout": 4, "dt": [2, 3, 13, 25, 35], "dtype": [0, 1, 3, 4, 14, 22, 28, 33, 34, 35], "dual": [], "dub": [0, 28], "duboi": [], "due": [1, 2, 5, 6, 8, 10, 12, 13, 18, 26, 28, 29, 30, 31, 32, 33, 34, 35], "dugard": [], "dummi": [], "dure": [0, 1, 3, 4, 8, 9, 11, 20, 21, 23, 28, 31, 32, 33, 34], "dwell": [], "dwh": 1, "dwo": 1, "dx": [2, 3, 8, 25, 35], "dx_1": 25, "dx_1p": [6, 32], "dx_2p": [6, 32], "dx_mp": [6, 32], "dx_n": 25, "dxp": [6, 32], "dy": [1, 8, 25], "dynam": 4, "dz": 8, "e": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "e1e1e1": [], "e_": [0, 2, 28], "each": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 21, 22, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35], "eager": 32, "eapprox": [0, 28], "earli": [1, 13, 31], "earlier": [0, 5, 7, 8, 9, 11, 12, 13, 19, 20, 28, 29, 33, 34, 35], "earthexplor": 6, "eas": [6, 9, 14, 32], "easi": [0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 21, 22, 28, 29, 30, 31, 32, 33, 34, 35], "easier": [5, 6, 8, 9, 13, 15, 20, 23, 25, 28, 29, 30, 32, 33], "easiest": [13, 18, 33, 34], "easili": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "eastern": [26, 28], "ebind": [0, 28], "eblock": 9, "ec8e2c": [], "econom": [], "econometr": 28, "economi": 5, "ecosystem": [21, 28], "ect": 24, "edg": 3, "edgecolor": [6, 32, 33], "edit": [], "editor": [15, 20], "edu": [13, 23, 30], "educ": [0, 23, 28, 32], "ee6677": [], "eff": 25, "effect": [1, 4, 10, 13, 16, 17, 18, 25, 31], "effic": 1, "effici": [0, 3, 10, 13, 21, 22, 25, 28, 31, 33, 34, 35], "effort": 19, "efron": [6, 32, 33], "egrad": 13, "eig": [5, 11, 13, 22, 25, 28, 29, 30, 31], "eigen": 25, "eigenpair": [5, 11, 29, 30], "eigenvalu": [0, 5, 8, 11, 13, 22, 28, 29, 30, 31], "eigenvector": [5, 11, 13, 29, 30], "eight": [22, 28], "eigval": [22, 25, 28], "eigvalu": [11, 13, 30, 31], "eigvec": [22, 25, 28], "eigvector": [11, 13, 30, 31], "eir": [26, 28], "eispack": [22, 28], "either": [1, 5, 6, 7, 8, 9, 10, 11, 13, 18, 19, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "eivind": 26, "eivinsto": 26, "ekstr\u00f8m": 4, "elabor": 25, "elarn": 3, "electr": [0, 3, 12, 28, 34, 35], "electron": 28, "eleg": 11, "element": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 19, 20, 21, 22, 23, 27, 29, 31, 32, 33, 34, 35], "elementari": [10, 13, 22, 35], "elementwis": [3, 13], "elementwise_grad": [2, 13], "elessar": 28, "elif": 14, "elim": 22, "elimin": [3, 8], "elin": [26, 28], "ell_": [], "ellipsi": 16, "els": [1, 3, 4, 7, 9, 12, 13, 16, 22, 33, 34], "elu": 1, "elus": [0, 28], "em": [], "email": [20, 24, 26, 28], "emb": [], "embark": 35, "embed": [0, 11, 29], "embodi": [6, 23, 32, 33], "emit": 25, "emner": 27, "emph": 31, "emphas": [0, 10, 21, 28], "emphasi": [0, 21, 27, 28], "empir": [1, 11, 25], "emploi": [0, 1, 5, 6, 11, 13, 25, 28, 29, 30, 32], "employ": 0, "empti": [6, 10, 15, 32, 33], "emul": [12, 34, 35], "en": [21, 23, 27], "enabl": [11, 31], "enbodi": [6, 32], "encod": [0, 3, 5, 9, 11, 14, 28, 29, 30, 33, 34], "encompass": [0, 23, 25], "encount": [0, 1, 5, 7, 13, 15, 23, 25, 28, 29, 30, 31, 33, 34], "encourag": [15, 23], "end": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "endblock": [], "endfor": [], "endif": [], "endors": [], "endpoint": [3, 6], "energi": [0, 4, 6, 32, 33], "enforc": [12, 34, 35], "eng": 27, "engin": [0, 1, 3, 4, 21, 28], "english": 23, "enjoi": 31, "enocurag": 23, "enorm": 3, "enough": [0, 6, 13, 28, 30, 31, 32], "ensembl": [1, 9, 28], "ensur": [0, 1, 2, 3, 5, 6, 11, 13, 18, 25, 29, 30, 31, 32, 33, 35], "entail": 28, "enter": [5, 6, 29, 30, 31], "enthought": [0, 21, 23, 28], "entir": [1, 3, 7, 9, 21, 25, 28, 31, 33], "entireti": [], "entiti": [9, 12, 22, 28], "entri": [0, 5, 8, 11, 12, 22, 28, 29, 31, 32], "entropi": [1, 3, 7, 10, 13, 28, 30, 31], "enumer": [0, 1, 2, 3, 4, 6, 8, 28, 29, 31, 33, 34], "env": 25, "environ": [2, 21, 23, 28], "environemnt": 15, "eo": [0, 6, 32, 33], "eol": 0, "eosfit": 0, "epoch": [0, 1, 3, 4, 12, 13, 28, 31, 33, 34], "eppstein": [], "epsilon": [0, 5, 6, 7, 13, 23, 28, 29, 30, 31, 32, 33, 34, 35], "epsilon_": [0, 28], "epsilon_0": [0, 28], "epsilon_1": [0, 28], "epsilon_2": [0, 28], "epsilon_i": [0, 28, 29], "eq": [3, 13, 14, 22, 25, 30], "eqnarrai": [3, 5, 6, 32], "equal": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 16, 18, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "equat": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 19, 22, 25, 28, 31, 32], "equilibrium": [2, 12, 34, 35], "equiv": [3, 13, 22, 25, 30, 31], "equival": [0, 1, 5, 7, 8, 11, 13, 21, 22, 28, 29, 30, 31, 32], "equivel": 19, "eras": [], "erf": 25, "eriador": 28, "eric": [], "err": [0, 10], "err_": [6, 32, 33], "err_sqr": 2, "errat": [13, 30, 31], "erron": 2, "error": [1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 25, 31, 34, 35], "error_estimate_corr_tim": 25, "error_hidden": 1, "error_output": 1, "escap": [13, 30, 31], "escapehtml": [], "especi": [1, 3, 9, 12, 13, 15, 18, 23, 31, 34, 35], "essenti": [0, 5, 6, 9, 10, 12, 14, 15, 23, 25, 29, 30, 31, 34, 35], "establish": [0, 6, 10, 11, 16, 23], "estim": [0, 1, 5, 6, 7, 10, 11, 13, 21, 25, 28, 29, 30, 31, 33, 34], "estimated_mse_fold": [6, 32, 33], "estimated_mse_kfold": [6, 32, 33], "estimated_mse_sklearn": [6, 32, 33], "et": [0, 2, 4, 16, 17, 20, 27, 28, 29, 30, 32, 33, 34, 35], "eta": [0, 1, 3, 8, 12, 13, 18, 28, 30, 31, 35], "eta0": [8, 13], "eta_": 13, "eta_j": 31, "eta_t": [13, 31], "eta_v": [0, 1, 3, 28], "etc": [0, 1, 3, 5, 7, 8, 9, 11, 12, 13, 14, 21, 22, 23, 25, 29, 30, 31, 33, 34], "ethic": 21, "etsim": 32, "euclidean": [0, 14, 29, 31], "euler": [], "evalu": [0, 2, 3, 4, 5, 6, 9, 13, 15, 16, 17, 19, 23, 25, 28, 29, 30, 31, 32, 33, 34], "evalut": [13, 23], "even": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 21, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "evenli": 4, "event": [5, 7, 10, 25, 32, 33], "eventu": [0, 5, 6, 11, 12, 13, 23, 26, 29, 30, 31, 32, 33, 34, 35], "everi": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 21, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "everyth": [4, 12, 16, 18, 35], "everywher": [4, 13, 30], "evolv": 0, "exact": [0, 5, 11, 12, 13, 22, 25, 28, 29, 31, 35], "exactli": [0, 3, 4, 6, 12, 18, 21, 29, 31, 32, 34, 35], "exam": 28, "examin": [6, 32, 33], "exampl": [0, 5, 11, 12, 13, 15, 16, 18, 20, 21, 22, 23, 25, 27], "exce": [1, 12, 13, 31, 34, 35], "exceed": 31, "excel": [0, 1, 4, 5, 10, 20, 23, 28, 29], "except": [3, 4, 6, 8, 9, 22], "excess": [0, 28], "exchang": 31, "excit": 0, "exclud": [1, 6, 12, 23, 29, 31, 32, 33, 34], "exclus": [0, 1, 3, 6, 25, 28, 32, 33], "execut": [2, 5, 13, 15, 29, 30, 31], "exemplari": [], "exemplifi": [13, 31], "exercic": [26, 28], "exercis": [5, 21, 23, 24, 26, 28, 30, 31, 32, 33, 34], "exhaust": [6, 31, 32, 33], "exhibit": [0, 5, 6, 8, 28, 29, 32], "exist": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 19, 22, 23, 28, 30, 31, 32, 33], "exit": [5, 22, 29, 30], "exp": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 16, 17, 19, 25, 29, 30, 31, 32, 33, 34, 35], "exp_term": 1, "exp_z": [33, 34], "expand": [5, 7, 11, 13, 30, 33, 34], "expans": [0, 3, 5, 8, 10, 12, 13, 28, 29, 30, 35], "expect": [0, 1, 5, 6, 7, 11, 12, 13, 15, 18, 21, 23, 28, 29, 31, 33, 35], "expectation_value_of_h_wrt_p": 25, "expens": [6, 10, 13, 16, 30, 31], "experi": [0, 1, 6, 8, 13, 15, 21, 23, 28, 29, 30, 31, 32, 33], "experiment": [0, 4, 6, 9, 25, 28, 32, 33], "expert": [1, 9], "explain": [0, 6, 9, 10, 11, 13, 16, 19, 23, 28, 30, 33, 34], "explained_variance_ratio_": 11, "explan": [], "explanatori": [0, 28], "explicit": [0, 3, 6, 13, 22, 23, 28, 29, 30, 31], "explicitli": [0, 4], "explod": [1, 35], "exploit": [0, 3, 12, 13, 28, 31, 34, 35], "explor": [1, 4, 6, 8, 13, 18, 21, 23, 28, 30, 31], "expon": 1, "exponenti": [0, 1, 5, 6, 10, 13, 25, 28, 30, 35], "export": [9, 15, 16, 19, 20, 33, 34], "export_graphviz": 9, "export_text": 9, "exporttext": 9, "expos": 21, "expr": 35, "express": [0, 2, 3, 5, 6, 7, 10, 12, 13, 18, 22, 23, 25, 28, 30, 31, 32], "exptmean": 25, "exptvari": 25, "extend": [0, 2, 7, 11, 13, 21, 28, 31], "extend_path": [], "extens": [0, 12, 15, 21, 28, 34, 35], "extent": [0, 1, 6, 27, 32, 33], "extern": [3, 6, 9], "extra": [1, 3, 5, 15, 26, 28, 29, 30], "extract": [0, 3, 5, 6, 7, 8, 11, 13, 16, 17, 22, 28, 29, 33, 34, 35], "extrapol": [0, 28], "extrem": [0, 1, 4, 5, 6, 7, 8, 9, 13, 15, 16, 22, 29, 30, 31, 33], "extremum": [13, 30], "extrins": 11, "ey": [0, 5, 6, 13, 14, 18, 22, 28, 29, 30, 31], "f": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "f1": 13, "f11": [0, 28], "f12": [0, 28], "f13": [0, 28], "f1_grad": 13, "f1d": 13, "f2": 13, "f26196": [], "f2_grad_x1": 13, "f2_grad_x1_analyt": 13, "f2_grad_x2": 13, "f2_grad_x2_analyt": 13, "f2f2f2": [], "f3": 13, "f3_grad": 13, "f3_grad_analyt": 13, "f4": 13, "f4_grad": 13, "f4_grad_analyt": 13, "f5": 13, "f5_grad": 13, "f5a394": [], "f5ab35": [], "f5f5f5": [], "f6": 13, "f6_for": 13, "f6_for_grad": 13, "f6_grad_analyt": 13, "f6_while": 13, "f6_while_grad": 13, "f7": 13, "f78c6c": [], "f7_grad": 13, "f7_grad_analyt": 13, "f8": 13, "f8_grad": 13, "f8f8f2": [], "f9": [0, 13, 28], "f9_altern": 13, "f9_alternative_grad": 13, "f9_grad": 13, "f_": 10, "f_0": [3, 10], "f_1": [10, 13, 30], "f_2": [12, 13, 30, 34], "f_3": [12, 34], "f_d": 25, "f_grad": 13, "f_grad_analyt": 13, "f_i": [0, 6, 12, 16, 32, 33, 34], "f_m": [3, 10], "f_n": 3, "f_vec": 2, "face": [13, 28, 30], "facecolor": [6, 8, 25, 32], "facil": [0, 21], "facilit": [12, 34, 35], "fact": [0, 1, 3, 5, 9, 11, 12, 13, 28, 29, 30, 31], "facto": 31, "factor": [0, 1, 3, 5, 6, 9, 10, 11, 13, 22, 25, 28, 29, 30], "factori": 13, "fad000": [], "fade": 6, "fae4c2": [], "fafab0": [9, 10], "fail": [0, 6, 13, 26, 28, 30, 32, 33, 35], "failur": [7, 33, 34], "fairli": [1, 2, 18, 25, 31], "faisal": [16, 29], "fake": 4, "fake_loss": 4, "fake_output": 4, "fall": [8, 9, 24], "fals": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 16, 17, 22, 28, 29, 30, 31, 32, 33, 34], "famili": [0, 7, 8, 25, 29, 31, 33, 34, 35], "familiar": [0, 3, 5, 6, 8, 15, 21, 22, 23, 25, 28, 32, 35], "famou": [6, 12], "far": [0, 3, 4, 5, 6, 8, 11, 12, 13, 14, 16, 20, 28, 29, 30, 31, 34, 35], "fashion": [0, 9, 10, 28, 31], "fast": [1, 3, 6, 10, 12, 13, 21, 25, 28, 30, 31, 32, 33, 35], "faster": [1, 11, 13, 31], "fastest": [13, 22, 30], "fatal": [], "favor": [7, 31, 33], "favorit": 25, "fc": 3, "fcfcfc": [], "fdac54": [], "fdf2e2": [], "featur": [0, 1, 3, 5, 6, 7, 8, 10, 11, 12, 13, 15, 17, 18, 19, 21, 25, 28, 30, 31, 32, 33, 34, 35], "feature_nam": [1, 7, 9, 34], "feautur": 9, "fed": [1, 35], "feed": [0, 2, 3, 11, 21, 28], "feed_forward": 1, "feed_forward_out": 1, "feed_forward_train": 1, "feedback": [4, 20, 28], "feeddorward": 4, "feedforward": [1, 4, 12], "feel": [0, 5, 6, 11, 13, 15, 16, 18, 21, 23, 26, 28, 35], "feet": [], "fefef": [], "fefeff": [], "felt": 23, "fenc": [], "fernando": [], "fetch": [6, 15], "few": [1, 3, 4, 5, 9, 17, 18, 19, 25, 28, 35], "fewer": [0, 9, 11, 19, 28, 31], "ff7b72": [], "ff9492": [], "ffa07a": [], "ffa657": [], "ffb757": [], "ffd700": [], "ffd900": [], "ffd9002e": [], "ffffff": [], "ffnn": [1, 12, 34, 35], "fi": [], "field": [0, 3, 6, 12, 19, 21, 34, 35], "fieldmask": [], "fifteen": 35, "fifth": [0, 6, 28], "fig": [0, 1, 2, 3, 4, 6, 7, 12, 13, 14, 23, 28, 33, 34], "fig_id": [0, 6, 7, 9, 28, 32, 33], "figaxi": 25, "figsiz": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 28, 32, 33, 34], "figur": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 21, 23, 28, 29, 30, 31, 32, 33, 34, 35], "figure_id": [0, 6, 7, 9, 28, 32, 33], "figurefil": [0, 6, 7, 9, 28, 32, 33], "file": [0, 4, 5, 6, 7, 9, 15, 20, 23, 28, 32, 33], "file_prefix": 4, "filenam": 28, "fill": [5, 9, 18, 29, 30], "fill_valu": [], "filter": [3, 4], "final": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 20, 23, 24, 25, 26, 28, 30, 32, 33, 34], "financ": 0, "find": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 21, 23, 25, 28, 29, 30, 31, 33, 34, 35], "fine": [0, 14], "finish": [2, 20], "finit": [3, 5, 6, 12, 13, 17, 25, 29, 30, 32, 33, 34, 35], "finnicki": 15, "fire": [], "first": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 22, 23, 25, 26, 27, 29, 31, 32, 33, 34], "first_moment": 31, "first_term": 31, "firsteigvector": 11, "fit": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 17, 18, 19, 23, 25, 29, 31, 32, 33, 34, 35], "fit_beta": 29, "fit_intercept": [0, 5, 6, 16, 29, 30, 31, 32, 33, 34], "fit_mod": 9, "fit_theta": [6, 31], "fit_transform": [0, 6, 8, 9, 11, 15, 19, 32, 33], "fiti": [0, 28], "five": [0, 9, 28, 29, 35], "fix": [0, 3, 4, 6, 10, 11, 12, 13, 23, 28, 32, 33, 34], "flag": 4, "flat": [12, 13, 30, 31], "flatten": [1, 3, 4, 5, 22], "flavor": [], "flexibl": [1, 6, 8, 10, 12, 28, 31, 32, 33, 34], "flip": [26, 28], "float": [0, 3, 4, 5, 9, 11, 13, 14, 22, 28, 29, 30], "float32": [4, 9], "float64": [4, 22, 28, 34, 35], "flop": [5, 22, 29, 30], "flow": [1, 4, 12, 34, 35], "fluctuat": [5, 31], "fly": 11, "fm": 0, "fmax": 3, "fmesh": 13, "fn": 7, "focu": [0, 3, 4, 5, 6, 15, 21, 23, 27, 28, 29, 30, 31, 32, 33], "focus": [1, 6, 7, 22, 29, 31, 33, 34], "fold": [6, 9, 23], "folder": [0, 4, 6, 15, 20, 23, 28], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "font": [7, 20, 25, 28, 33], "fontdict": 25, "fontsiz": [1, 6, 8, 9, 10, 25], "fontweight": 1, "footprint": [3, 31], "foral": [8, 29, 35], "forc": [0, 5, 6, 10, 11, 29, 30, 31, 35], "forcast": 4, "forcier": [], "forecast": [4, 12, 34, 35], "forest": [0, 1, 9, 21, 28], "forget": [11, 31], "form": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "formal": [3, 4, 14, 18, 25, 35], "format": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 20, 21, 25, 27, 32, 33, 34], "format_data": 4, "formatstrformatt": [6, 13, 30, 31], "formatt": [], "formul": [4, 6, 11, 14], "formula": [3, 13, 25, 30, 35], "forth": [4, 12, 34], "fortran": [0, 21, 22, 28], "fortran2003": [21, 28], "fortran2008": 23, "fortran90": 25, "fortun": [0, 11, 29], "forward": [0, 3, 6, 21, 22, 28, 31, 32], "forwardpropag": 35, "found": [1, 2, 4, 5, 6, 12, 13, 19, 20, 23, 28, 29, 31, 32, 33, 34, 35], "foundat": [21, 28], "four": [4, 5, 6, 8, 12, 22, 24, 26, 28, 30, 34, 35], "fourier": [0, 28, 35], "fourierdef1": 3, "fourierdef2": 3, "fourierseriessign": 3, "fourth": [12, 28, 29], "fp": 7, "frac": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "fraction": [9, 33, 34], "frame": [7, 31, 34], "framework": [1, 8, 10, 25], "frank": [5, 11], "frankefunct": [5, 6, 11], "fredli": [26, 28], "free": [0, 6, 11, 13, 15, 16, 18, 21, 22, 23, 25, 26, 27, 28, 35], "freecodecamp": 21, "freedom": [5, 30], "freeli": [0, 23], "freez": 15, "frequenc": [3, 6, 7, 25, 32, 34], "frequent": [0, 8, 9, 13, 30], "frequentist": 21, "fresh": 10, "fridai": [15, 26, 28], "friedman": [6, 19, 23, 27, 28], "friendli": 4, "fro": 23, "frodo": 28, "frog": 3, "from": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27], "from_cod": 9, "from_logit": [3, 4], "from_tensor_slic": 4, "front": [0, 4, 5, 28, 29, 30], "frustrat": 15, "fulfil": [2, 5, 12, 29, 30, 34], "full": [1, 3, 5, 7, 9, 10, 13, 25, 28, 29, 30, 33], "full_matric": [5, 29, 30], "fulli": [3, 6, 12, 25, 32, 33, 34, 35], "fullnam": [], "fun": [21, 28], "func": 2, "function": [2, 3, 4, 5, 9, 14, 15, 16, 17, 18, 19, 20, 21, 22], "functionali": 11, "fundament": [0, 6, 21, 28, 32, 33], "funtion": 2, "furnish": [], "furthemor": 35, "further": [2, 7, 9, 19, 28, 35], "furthermor": [0, 3, 5, 6, 7, 11, 12, 13, 21, 23, 28, 29, 30, 31, 32, 33, 34], "futur": [0, 4, 8, 9, 28], "fy": [15, 23, 24, 26, 27, 28], "fys4155": 23, "fys5419": [27, 28], "fys5429": [27, 28], "f\u00f8470": [26, 28], "g": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 13, 15, 18, 19, 25, 28, 29, 30, 31, 32, 33, 34], "g0": 2, "g_": [2, 9, 10, 31], "g_0": 2, "g_1": [2, 10], "g_2": [2, 10], "g_3": 35, "g_analyt": 2, "g_dnn_ag": 2, "g_euler": 2, "g_i": [2, 35], "g_j": 35, "g_m": [3, 10], "g_n": 3, "g_re": 2, "g_t": [2, 31], "g_t_d2t": 2, "g_t_d2x": 2, "g_t_dt": 2, "g_t_hessian": 2, "g_t_hessian_func": 2, "g_t_jacobian": 2, "g_t_jacobian_func": 2, "g_trial": 2, "g_trial_deep": 2, "g_vec": 2, "gain": [1, 5, 7, 9, 10, 13, 29, 30], "galleri": [0, 28], "game": 4, "gamge": 28, "gamma": [0, 2, 8, 9, 10, 11, 13, 28, 30], "gamma1": 8, "gamma2": 8, "gamma_": [0, 28], "gamma_0": 10, "gamma_1": 10, "gamma_1x": 10, "gamma_i": [0, 8, 25, 28], "gamma_j": 13, "gamma_k": [13, 30], "gamma_m": 10, "gamma_x": [0, 28], "gap": [8, 31], "gate": [4, 12, 35], "gather": [0, 1, 12, 29, 34, 35], "gaug": [12, 34, 35], "gaussbacksub": 22, "gaussian": [4, 5, 6, 8, 14, 18, 25, 28, 32, 33, 34], "gaussian_point": 14, "gaussian_rbf": 8, "gave": [13, 31], "gavra": 28, "gbc": 28, "gca": [2, 6, 8, 13], "gd": [1, 30, 35], "gd_clf": 10, "gdclassiffiercgain": 10, "gdclassiffierconfus": 10, "gdclassiffierroc": 10, "gdm": 13, "gdregress": 10, "ge": [1, 5, 7, 25, 29, 30, 33], "gen_loss": 4, "gen_tap": 4, "gender": [0, 28], "genener": 4, "gener": [0, 1, 2, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 23, 25, 27, 29, 30, 31, 32], "generaliz": 16, "generallay": [12, 34], "generate_and_save_imag": 4, "generate_binary_data": [33, 34], "generate_imag": 4, "generate_latent_point": 4, "generate_multiclass_data": [33, 34], "generate_simple_clustering_dataset": 14, "generated_imag": 4, "generator_loss": 4, "generator_loss_list": 4, "generator_model": 4, "generator_optim": 4, "genom": 21, "geodes": 11, "geoff": 31, "geometr": [0, 13, 28, 31], "geometri": 5, "georg": 27, "geotif": 6, "geq": [2, 5, 8, 9, 13, 29, 30, 31], "gerard": [], "geron": [0, 27, 28], "get": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 19, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33], "get_dummi": 9, "get_paramet": 2, "get_split": 9, "get_yaxi": 8, "get_yticklabel": 6, "getmask": [], "gh": 15, "giant": 31, "gibb": [21, 28], "gif": 4, "gini": 10, "gini_index": 9, "ginvers": 13, "git": [0, 15, 21, 28], "gitcdn": [], "giter": [13, 31], "github": [0, 20, 21, 23, 24, 26, 27, 28, 29, 35], "gitignor": 15, "gitlab": [0, 15, 21, 23, 28], "gitta": 35, "give": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 19, 21, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "given": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "global": [6, 7, 13, 30, 31, 33, 34], "glorot": 1, "gmail": [], "gnew": 13, "go": [0, 1, 3, 5, 6, 8, 9, 11, 12, 13, 15, 16, 18, 28, 29, 30, 32, 35], "goal": [0, 7, 9, 28, 33, 34], "goe": [0, 1, 2, 5, 6, 13, 14, 15, 19, 22, 28, 29, 30, 31, 32], "goessner": [], "golden": 13, "gone": [5, 29, 30], "gong": 1, "good": [1, 3, 4, 5, 6, 9, 10, 11, 13, 15, 18, 21, 25, 27, 29, 30, 31, 33, 35], "goodfellow": [4, 27, 28, 29, 30, 33, 34, 35], "googl": [1, 4, 21, 28], "got": [1, 6, 23], "gotten": 28, "gov": 6, "govern": 28, "gp": 27, "gpu": [1, 13, 21, 28, 31], "grad": [2, 13, 31], "grad_analyt": 13, "grad_ol": 18, "grad_ridg": 18, "grade": [23, 24], "gradient": [0, 3, 4, 7, 8, 9, 12, 21, 28, 29, 33], "gradient_desc": 31, "gradientboostingclassifi": 10, "gradientboostingregressor": 10, "gradients_of_discrimin": 4, "gradients_of_gener": 4, "gradienttap": 4, "gradual": [1, 14], "grai": [4, 6], "granger": [], "grant": [], "graph": [1, 9, 11, 12, 13, 16, 20, 30, 31, 34, 35], "graph_from_dot_data": 9, "graphic": [0, 1, 9, 15, 28], "grasp": 0, "gray_r": [1, 3], "grayscal": 3, "great": [5, 13, 15, 30, 31, 35], "greater": [1, 7, 25, 29, 34], "greatli": 13, "greedi": 9, "green": [0, 3, 9, 25], "grei": 4, "grid": [1, 3, 6, 7, 8, 12, 25, 29, 31, 32, 33, 34], "groh": 35, "grossli": [13, 30], "ground": [0, 28], "group": [0, 6, 7, 9, 14, 15, 20, 21, 23, 24, 26, 28, 32], "groupbi": [0, 28], "grow": [1, 3, 9, 10, 31], "growth": [0, 28], "gru": 4, "guarante": [0, 4, 13, 25, 28, 29, 30, 31], "guess": [1, 4, 10, 13, 14, 30, 31], "guestrin": 10, "gui": 15, "guid": 1, "guidelin": [20, 23, 33, 34], "g\u00f6ssner": [], "h": [0, 1, 5, 6, 8, 13, 15, 19, 25, 26, 27, 28, 29, 30, 31], "h1": 2, "h_": [0, 13, 28, 30, 31], "h_0": 31, "h_1": [2, 13, 30], "h_2": [2, 13, 30], "h_m": 10, "h_t": 31, "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "haanen": [26, 28], "habit": [0, 29], "had": [0, 1, 6, 7, 13, 28, 30, 31, 32, 33], "hadamard": [1, 12, 13, 31, 35], "half": [1, 8, 9, 33, 34, 35], "halv": 10, "hand": [0, 1, 2, 3, 5, 11, 12, 13, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 33, 34], "handi": [3, 23], "handl": [0, 1, 2, 5, 9, 11, 15, 18, 21, 29, 30, 31], "handle_unknown": 9, "handsid": [12, 35], "handwrit": [12, 34, 35], "handwritten": [1, 5], "happen": [1, 2, 3, 4, 5, 6, 10, 13, 25, 29, 30, 31, 34], "hard": [1, 7, 8, 10, 13, 30, 31, 33, 35], "hardcopi": [21, 28], "harder": [0, 1, 19, 29], "harmon": 3, "hash": 31, "hasn": [], "hassl": [0, 21, 28], "hast": [21, 28], "hasti": [0, 6, 16, 17, 19, 20, 23, 27, 28, 29, 32, 33], "hat": [0, 1, 5, 6, 7, 9, 10, 11, 12, 13, 16, 17, 18, 19, 22, 29, 30, 31, 32, 34, 35], "hauser": [], "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "have_sys_un_h": [], "haven": 1, "he": [7, 33, 34], "head": [4, 10, 25], "header": [0, 28], "heads_proba": 10, "health": [0, 29], "hear": [0, 13, 28, 31], "heart": [0, 7, 28, 33], "heatmap": [0, 1, 3, 7, 17, 20, 28, 34], "heavi": 31, "heavili": 0, "heavisid": 1, "height": [1, 3, 6, 29], "held": [13, 31], "help": [0, 1, 4, 12, 13, 15, 16, 23, 28, 31, 32, 34, 35], "helper": [4, 14, 33, 34], "henc": [0, 5, 6, 8, 9, 10, 12, 13, 28, 29, 30, 31, 32, 33, 34], "henrik": [26, 28], "her": [7, 33, 34], "here": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "hereaft": [0, 8, 12, 28], "herebi": [], "hermitian": 22, "hessenberg": 22, "hessian": [0, 2, 5, 13, 33, 34], "heterogen": [9, 10], "hex": [], "hi": [7, 33, 34], "hidden": [1, 3, 4, 12, 34], "hidden_bia": 1, "hidden_bias_gradi": [1, 35], "hidden_layer_s": [0, 1, 28], "hidden_neuron": 4, "hidden_weight": 1, "hidden_weights_gradi": [1, 35], "hierarch": [5, 29, 30], "high": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 13, 14, 21, 22, 23, 28, 29, 30, 31, 32, 33], "higher": [0, 1, 3, 5, 6, 8, 13, 18, 23, 28, 29, 30, 31, 32, 33], "highest": [1, 2, 33, 34], "highli": [0, 3, 4, 10, 19, 21, 22, 27, 28, 29, 30, 31], "highlight": [], "highwai": [], "hing": 8, "hint": [13, 15, 16, 29, 30], "hinton": 31, "hip": 21, "hire": 0, "hist": [4, 6, 7, 25, 32, 34], "histogram": [6, 7, 25, 34], "histor": [7, 11, 33], "histori": [3, 4, 12, 15, 31, 34, 35], "hitherto": 5, "hjorth": [26, 28, 29, 30, 31, 32, 33, 34, 35], "hobbi": 25, "hoc": [5, 29, 30], "hoff": 27, "hold": [1, 3, 6, 13, 14, 30, 31, 32], "holder": [0, 28], "holdgraf_evidence_2014": [], "home": [], "homepag": [23, 28], "homework": [6, 13, 30, 31], "homogen": [1, 3, 9, 10, 13, 31], "honchar": 2, "hopefulli": [0, 11, 15, 19, 25, 28, 31], "horizont": 11, "horlyk": [26, 28], "hornik": 35, "hors": [3, 7, 28, 33, 34], "hot": [1, 9, 33, 34], "hour": [1, 21, 24, 25, 26, 28, 31, 32], "how": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "howev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "href": [], "hspace": [0, 4, 8, 10, 25, 28, 35], "hstack": 1, "htf": 28, "html": [0, 16, 20, 21, 23, 24, 26, 27, 28, 29, 30, 31, 35], "http": [0, 3, 4, 6, 13, 15, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "huang": [0, 28], "huber": [0, 28], "huge": [1, 3, 4, 21, 31], "human": [0, 1, 3, 6, 9, 12, 29, 34, 35], "humid": 9, "hundr": 1, "hungri": 1, "hybrid": 24, "hydrogen": [0, 28], "hyperbol": [1, 4, 12], "hyperparam": 8, "hyperparamat": 35, "hyperparamet": [3, 4, 5, 6, 9, 13, 18, 23, 29, 30, 31, 35], "hyperplan": 11, "h\u00f8rlyk": [26, 28], "i": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35], "i0": [0, 28], "i1": [0, 6, 8, 12, 28, 29, 31, 34], "i2": [0, 8, 12, 28, 34], "i3": [0, 12, 28, 34], "i5": [0, 28], "i_": [13, 30, 31], "i_1": [5, 6, 32], "i_2": [5, 6, 32], "i_t": 31, "ian": 27, "ic": [1, 23], "id": [7, 13, 30, 31, 33], "ida": [26, 28], "idea": [0, 1, 2, 3, 4, 6, 9, 10, 12, 13, 20, 22, 23, 29, 30, 31, 32, 33, 34, 35], "ideal": [0, 2, 6, 8, 13, 25, 28, 31, 32, 33, 34], "idem": [6, 32, 33], "ident": [5, 6, 12, 13, 17, 18, 22, 29, 30, 34], "identical": 32, "identifi": [0, 1, 7, 9, 11, 12, 13, 14, 28, 29, 33, 34], "idx": [33, 34], "ieor": 25, "ifi": 27, "ifs": [21, 28], "ignor": [0, 1, 3, 9, 15, 29, 31], "ii": [22, 25], "iii": [22, 28], "ij": [0, 1, 3, 6, 8, 12, 14, 16, 22, 25, 28, 29, 31, 34, 35], "ik": [0, 22, 28, 29], "iki": [], "ilg3ggewq5u": 35, "ill": 31, "illinoi": [], "illustr": [5, 7, 10, 12, 13, 14, 20, 21, 28, 33], "ilsvrc": 31, "im": 6, "imag": [1, 3, 4, 6, 9, 11, 12, 14, 27, 28, 34, 35], "image_at_epoch_": 4, "image_batch": 4, "image_height": 3, "image_path": [0, 6, 7, 9, 28, 32, 33], "image_width": 3, "imageio": 6, "imagenet": 31, "images_from_seed_imag": 4, "imagin": 1, "immedi": [0, 3, 4, 6, 21, 28, 31], "implement": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 19, 20, 23, 25, 28, 29, 30, 31, 33, 34, 35], "impli": [3, 5, 6, 7, 13, 22, 29, 30, 31, 32, 33], "implicit": [3, 31], "implicitli": [11, 25], "import": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 31, 32, 33, 34], "importantli": 3, "importerror": [], "impos": [0, 6, 11, 12, 28, 34], "imposs": [0, 5, 28, 29, 30], "impract": 31, "impress": [0, 12, 28, 34, 35], "improv": [0, 4, 5, 9, 10, 11, 13, 15, 23, 29, 30], "impur": 9, "imread": 6, "imshow": [1, 3, 4, 6], "in3050": [27, 28], "in3310": 28, "in4080": [27, 28], "in4300": [27, 28], "in4310": 27, "in5400": 3, "in5550": 27, "in_out_neuron": 4, "inaccur": [13, 30], "inact": [12, 34, 35], "inadequ": [0, 28], "inappropri": 31, "inch": [6, 29], "incident": [], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 15, 16, 17, 18, 19, 20, 21, 25, 26, 27, 28, 29, 30, 32], "include_bia": [6, 9, 32, 33], "incom": [12, 16, 34, 35], "incorrect": 1, "incoveni": 8, "increas": [0, 1, 3, 4, 5, 6, 9, 12, 13, 19, 23, 25, 28, 29, 31, 32, 33, 34, 35], "increasingli": 25, "increment": 31, "ind": 6, "inde": [0, 2, 4, 5, 6, 13, 28, 29, 30, 35], "indefinit": 4, "independ": [0, 5, 6, 7, 8, 12, 13, 25, 28, 29, 30, 31, 33, 34], "index": [0, 1, 3, 4, 10, 14, 21, 22, 23, 25, 27, 28], "index_col": [0, 28], "indic": [0, 1, 3, 4, 5, 6, 9, 10, 11, 13, 16, 23, 28, 29, 35], "indirect": [], "indispens": [6, 32, 33], "individu": [1, 6, 7, 10, 12, 25, 28, 29, 31, 32, 33, 34, 35], "indu": [], "indx": 22, "indx1": 2, "indx2": 2, "indx3": 2, "ineffici": [3, 13], "inequ": [8, 13], "inequaltii": 30, "inertia": 13, "inexperi": [], "inf": [], "inf1000": [21, 28], "inf1100": [21, 28], "inf1100l": [21, 28], "inf1110": [21, 28], "inf3000": 28, "infeas": [9, 31], "infer": [0, 1, 4, 6, 27, 28, 32, 33], "inferenc": 1, "infil": [0, 6, 7, 9, 28, 32, 33], "infin": [5, 6, 7, 11, 19, 29, 30, 32, 33, 35], "infinit": [3, 31], "infinitesim": 25, "influenc": [6, 10, 18, 32, 33], "influenti": 1, "info": 28, "inform": [0, 1, 3, 4, 6, 9, 11, 12, 13, 14, 22, 23, 27, 28, 30, 31, 32, 33, 34, 35], "inforom": 15, "infrequ": 31, "infti": [3, 6, 13, 25, 30, 32, 35], "ingeni": [13, 30, 31], "ingredi": [0, 9, 28], "inher": [6, 31, 32, 33], "inherit": [22, 28, 31], "init": [], "initi": [0, 1, 2, 6, 10, 13, 14, 18, 22, 25, 28, 30, 31, 32, 33, 34, 35], "inject": 14, "inlin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 25, 28, 29, 30, 31, 32, 33, 34], "inner": [0, 13, 29], "innerhtml": [], "inp": 4, "inplac": 13, "inpput": 35, "input": [0, 1, 3, 4, 5, 6, 7, 8, 12, 13, 14, 16, 23, 25, 28, 29, 30, 31, 32, 33, 34], "input_dim": 1, "input_shap": [3, 4], "inputs": 1, "inputs_shuffl": [0, 1, 29], "inquiri": 20, "insert": [3, 5, 6, 8, 10, 25, 29, 30, 32], "insid": [4, 7, 34], "insight": [0, 1, 5, 21, 28, 29, 30, 32, 33, 35], "insist": [6, 13, 29, 31], "inspir": [0, 1, 12, 23, 28, 34, 35], "instabl": 2, "instal": [0, 1, 5, 6, 9, 15, 20], "instanc": [0, 1, 2, 4, 6, 9, 11, 13, 16, 28, 29, 30, 31, 32, 33], "instanti": 10, "instead": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 17, 20, 22, 25, 28, 29, 31, 32], "institut": 1, "instruct": [0, 1, 15], "int": [0, 1, 2, 3, 4, 5, 6, 11, 13, 14, 22, 25, 29, 31, 32, 33, 34], "int32": 10, "int_": [3, 6, 25, 32, 35], "int_0": 25, "int_a": 25, "intak": [0, 29], "integ": [1, 2, 13, 14, 22, 25, 28, 33, 34], "integer_vector": 1, "integr": [3, 6, 25, 28, 32], "intellig": [0, 14, 27, 28], "intend": 10, "intens": [1, 18], "intention": 14, "interact": [0, 6, 9, 12, 21, 23, 28, 34, 35], "intercept": [0, 6, 8, 11, 13, 16, 17, 18, 19, 28, 29, 30, 31, 32, 33, 34], "intercept_": [0, 6, 8, 9, 13, 28, 29, 31], "interchang": [5, 12, 22, 34, 35], "interconnect": 1, "interesit": [], "interest": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 19, 21, 23, 25, 28, 29, 30, 32, 33, 34, 35], "interfac": [0, 1, 15, 22, 29], "interior": [0, 9, 28], "intermedi": [22, 29, 31], "intern": [1, 10, 12, 33, 34, 35], "internation": [], "interpol": [1, 3, 4, 6, 12, 34, 35], "interpr": [5, 29, 30], "interpret": [0, 1, 6, 9, 10, 12, 13, 15, 16, 22, 23, 25, 35], "interrupt": [], "interv": [0, 3, 5, 6, 7, 13, 19, 25, 28, 29, 30, 33, 34], "intial": [13, 30], "intract": [0, 4, 29], "intrins": [3, 11, 22, 25, 28], "intro": [21, 27, 28], "introduc": [0, 1, 5, 6, 8, 10, 12, 22, 23, 25, 28, 30, 31, 32, 34, 35], "introduct": [1, 2, 4, 13, 27, 29, 30, 31, 33], "introductori": [0, 4, 22, 27, 28, 29], "intuit": [0, 5, 6, 8, 12, 13, 23, 28, 31, 32, 33, 34, 35], "inv": [0, 5, 13, 17, 28, 29, 30, 31], "invalid": [], "invalu": [0, 13, 21, 28, 30], "invari": 1, "invd": 5, "inver": [8, 34], "invers": [0, 3, 6, 13, 28, 29, 30, 31], "inverse_transform": 8, "invert": [0, 5, 7, 10, 13, 16, 18, 28, 31, 33, 34], "investig": [], "invh": [13, 31], "invok": 8, "involv": [0, 2, 6, 7, 11, 12, 28, 29, 31, 32, 33, 34, 35], "io": [0, 21, 23, 24, 26, 27, 28, 29], "ion": [], "ip": [0, 8, 25, 28], "ipca": 11, "ipynb": [21, 28], "ipython": [0, 5, 7, 9, 11, 14, 21, 23, 28, 29, 33], "iq": [6, 32], "iri": [8, 9], "irreduc": [6, 32, 33], "irrelev": [5, 29, 30], "irrespect": [0, 28], "irvin": 23, "isaac": [], "isaacmus": [], "iseffici": [], "isn": 5, "isnul": [], "isomap": 11, "issu": [1, 9, 15, 22, 31], "it_arrai": 13, "item": [0, 13, 28], "items": [22, 28], "iter": [1, 2, 4, 6, 8, 13, 14, 18, 23, 25, 30, 31, 32, 33, 34, 35], "its": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 25, 28, 30, 31, 32, 33, 34, 35], "itself": [5, 6, 12, 23, 25, 28, 29, 32, 35], "j": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "j1": 22, "j_": 6, "j_41hld6ttu": 32, "j_lasso_sk": 6, "j_ridge_sk": 6, "j_sk": 6, "jackknif": [6, 21, 28, 32, 33], "jacobian": [2, 13, 30], "janko": [], "jason": 4, "javascript": [], "jax": [21, 28, 31, 35], "jeff": [], "jensen": [26, 28, 29, 30, 31, 32, 33, 34, 35], "jentzen": 35, "jerom": [19, 23, 27], "jhauser": [], "ji": [12, 22, 35], "jit": 13, "jj": [0, 5, 6, 28, 32], "jk": [0, 1, 6, 12, 22, 28, 34, 35], "jl": [0, 28], "jm": 22, "jnp": 13, "job": [2, 8, 10, 15], "join": [0, 4, 6, 7, 9, 23, 28, 32, 33], "joint": [4, 5], "jonathan": [], "json": [], "judg": [13, 30, 33, 34], "judgement": 6, "julia": [21, 22, 23], "juliu": 35, "jump": [25, 31], "junk": 4, "jupit": 28, "jupyt": [0, 15, 16, 19, 21, 23, 27, 28, 32, 35], "jupyterbook": [], "jupytext": [], "just": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 21, 25, 28, 29, 30, 31, 32, 33, 34, 35], "justif": 0, "justifi": [3, 10], "k": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 25, 26, 28, 29, 30, 31, 34], "k0": [7, 33, 34], "k1": [7, 33, 34], "kaggl": [6, 23], "kappa_d": 25, "karl": [26, 28], "karush": 8, "katex": [], "katrin": [26, 28], "keep": [0, 1, 4, 5, 6, 11, 13, 14, 15, 18, 22, 23, 28, 29, 30, 31, 32, 33], "keepdim": [1, 6, 10, 22, 32, 33, 34], "kei": [1, 3, 6, 12, 31, 34], "kellei": [], "kenneth": [], "kept": [4, 6, 14, 32, 33], "kera": [0, 4, 21, 23, 28], "kernel": [0, 1, 3, 21, 28, 29], "kernel_regular": [1, 3], "kernel_s": 4, "kernelpca": 11, "kev": [0, 28], "kevin": [27, 28], "kevinsheppard": [], "keyword": [18, 22, 28], "kfold": [6, 32, 33], "kg": 1, "ki": 22, "kick": [1, 13, 31], "kiener": 2, "kilomet": [6, 29], "kim": [], "kind": [0, 2, 3, 4, 8, 12, 13, 14, 28, 29, 34, 35], "kingma": 31, "kj": [6, 12, 22, 29, 31, 35], "kjm": [21, 28], "kkt": 8, "kl": 25, "km": [12, 28, 34], "kmean": 14, "kmeanspoint": 14, "kn_k": 14, "know": [0, 1, 2, 5, 6, 8, 13, 15, 16, 17, 19, 20, 21, 28, 29, 30], "knowledg": [0, 21, 28], "known": [1, 3, 4, 5, 6, 7, 8, 9, 12, 18, 22, 23, 25, 27, 29, 31, 32, 33, 34, 35], "kondev": [0, 28], "kp": 25, "kpca": 11, "kramdown": [], "kroneck": 14, "kt": [], "kuckuck": 35, "kuhn": 8, "kutyniok": 35, "kvalsund": [26, 28], "kwown": [0, 28], "l": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 22, 23, 25, 28, 30, 31, 33, 34], "l0": [7, 33, 34], "l1": [0, 1, 3, 7, 28, 33, 34], "l1_l2": [1, 3], "l1regl": 5, "l2": [1, 3], "l_": [22, 31], "l_1": [7, 33, 34, 35], "l_2": [7, 13, 30, 31, 33, 34, 35], "l_i": 31, "l_j": [12, 35], "la": 13, "la_": [], "la_i": [12, 35], "la_k": [12, 35], "lab": [20, 21, 23, 28], "label": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "labelencod": [7, 10, 34], "labels": [6, 8, 9], "labels_shuffl": [0, 1, 29], "laboratori": 24, "lack": [0, 28, 31], "lagari": 2, "lagrang": [8, 11], "lam": 18, "lambda": [0, 1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 17, 18, 19, 20, 23, 25, 28, 29, 30, 31, 32, 33, 34], "lambda_": 11, "lambda_0": 11, "lambda_1": [5, 8, 11, 29, 30], "lambda_2": [8, 11], "lambda_i": [8, 11], "lambda_iy_i": 8, "lambda_jy_iy_j": 8, "lambda_k": 8, "lambda_n": [5, 8, 29, 30], "lamda": 1, "land": 8, "landmark": 8, "landscap": [13, 18, 30, 31], "langl": [0, 6, 11, 25, 28, 29], "languag": [0, 1, 4, 8, 21, 22, 23, 27, 28], "lapack": [22, 28], "laplac": 5, "laptop": [15, 21], "larg": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 18, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 35], "larger": [0, 3, 5, 6, 8, 10, 11, 13, 17, 25, 28, 29, 30, 31, 32], "largest": [4, 8, 11], "lasso": [0, 7, 21, 28, 31, 32, 33, 34], "lasso_sk": 6, "last": [0, 1, 3, 4, 5, 6, 7, 8, 12, 16, 17, 19, 22, 23, 25, 26, 28, 30, 32, 33], "latent": 4, "latent_dim": 4, "latent_point": 4, "latent_space_value_rang": 4, "later": [0, 1, 4, 7, 8, 12, 13, 14, 15, 19, 21, 23, 28, 31, 33, 34, 35], "latest": [4, 15, 21], "latest_checkpoint": 4, "latex": [20, 28], "latexcodec": [], "latter": [0, 3, 6, 7, 8, 11, 13, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "lattic": [12, 34, 35], "law": 0, "layer": [0, 4, 13, 28, 31, 34], "lbfg": [7, 9, 10, 34], "lc_messag": [], "lcc": [5, 6, 32], "lda": 11, "ldot": [0, 6, 11, 23, 28, 32, 33], "le": [5, 7, 10, 13, 17, 25, 29, 30, 31, 33], "lead": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "leaf": 9, "leaki": 1, "leakyrelu": 4, "lear": [13, 30], "learn": [3, 4, 5, 6, 7, 8, 9, 10, 12, 22, 26, 27], "learnabl": 3, "learner": 10, "learnig": 28, "learning_r": [8, 10], "learning_rate_init": [0, 1, 28], "learning_schedul": [13, 31], "learnt": 23, "least": [0, 7, 8, 10, 11, 17, 18, 21, 22, 25, 32, 33, 34], "leat": [13, 31], "leav": [0, 1, 3, 5, 6, 9, 11, 28, 30, 32, 33], "lectur": [0, 1, 5, 10, 11, 12, 13, 21, 22, 23, 24, 26, 27, 29], "lecturenot": [0, 21, 23, 27, 28], "left": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "leftarrow": [8, 12, 35], "legend": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 28, 29, 30, 31, 32, 33, 34], "leinonen": 28, "len": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 16, 17, 22, 28, 29, 30, 31, 32, 33, 34], "length": [0, 1, 3, 4, 8, 9, 13, 16, 21, 28, 29, 30, 31], "length_of_sequ": 4, "leq": [0, 5, 7, 8, 13, 14, 25, 28, 29, 30, 31, 33], "less": [0, 1, 3, 4, 5, 6, 8, 9, 13, 21, 25, 28, 29, 30, 31, 32, 33], "lessen": 1, "let": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "letter": [0, 16, 22, 25, 28, 29], "level": [0, 1, 5, 6, 9, 21, 22, 23, 24, 26, 28, 31, 32, 33, 35], "leverag": 31, "lexer": [], "li": [8, 11], "liabil": [], "liabl": [], "lib": [], "liberti": 31, "liblinear": 10, "librari": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 22, 23, 25, 27, 29, 30, 31], "licenc": [], "licens": [0, 1, 21, 23, 28], "lie": [0, 6, 11, 25, 28, 29, 32, 33], "life": [0, 1, 8, 12, 28, 34, 35], "lifetim": 13, "light": [], "like": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "likelihood": [0, 1, 5, 9, 28, 29], "lim_": 25, "limit": [0, 5, 6, 8, 12, 22, 23, 28, 29, 33, 34, 35], "lin_clf": 8, "lin_model": [], "lin_reg": 9, "linalg": [0, 2, 5, 6, 8, 11, 13, 17, 22, 25, 28, 29, 30, 31, 34], "line": [0, 3, 6, 8, 11, 13, 15, 16, 20, 28, 30, 31, 32, 35], "line1": 8, "line2": 8, "line2d": [], "line3": 8, "line_model": 15, "line_ms": 15, "line_predict": 15, "linear": [1, 3, 5, 6, 7, 9, 10, 11, 12, 16, 17, 18, 19, 21, 23, 25, 31, 32, 34, 35], "linear_model": [0, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 28, 29, 30, 31, 32, 33, 34], "linear_regress": [6, 32, 33], "linearli": [5, 29, 30, 31], "linearloc": [6, 13, 30, 31], "linearregress": [0, 6, 7, 9, 15, 16, 19, 28, 29, 31, 32, 33], "linearsvc": 8, "lineat": 30, "liner": [1, 3], "linerar": 10, "linewidth": [0, 2, 4, 6, 8, 9, 10, 32], "link": [0, 4, 9, 12, 15, 20, 21, 23, 24, 26, 28, 33, 35], "linlag": 5, "linpack": [22, 28], "linreg": [0, 28], "linspac": [0, 2, 3, 4, 6, 8, 9, 10, 13, 16, 17, 19, 22, 25, 28, 29, 31, 32, 33], "linu": 4, "linux": [0, 1, 21, 23, 28], "liquid": [0, 28], "list": [1, 2, 3, 4, 9, 15, 21, 23, 28, 31, 34], "listedcolormap": [9, 10], "literatur": [1, 7, 14, 27, 32, 33], "littl": [1, 3, 9, 12, 31, 35], "live": [8, 16], "ll": [0, 18, 25, 28, 29], "lle": [0, 29], "llm": 20, "lloyd": [4, 14], "lmb": [0, 2, 5, 6, 29, 30, 31, 32, 33], "lmbd": [0, 1, 3, 28], "lmbd_val": [0, 1, 3, 28], "lmbda": [13, 30, 31], "ln": [1, 13, 30], "load": [1, 4, 6, 7, 9, 10, 31, 34], "load_boston": [], "load_breast_canc": [1, 7, 9, 10, 11, 34], "load_data": [3, 4], "load_digit": [1, 3], "load_iri": [8, 9], "loc": [3, 6, 7, 8, 9, 10, 28, 32, 33, 34], "local": [0, 1, 3, 7, 12, 13, 15, 29, 30, 31, 33, 34, 35], "locat": [2, 3, 8, 15], "log": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 13, 15, 20, 22, 23, 28, 31, 32, 33, 34], "log10": [0, 5, 6, 29, 30, 31, 32, 33], "log_": [0, 28], "log_clf": 10, "logarithm": [0, 5, 7, 17, 22, 28, 32, 33, 34], "logbook": 23, "logic": [0, 1, 9, 28], "logical_or": [], "login": 15, "logist": [0, 1, 2, 8, 9, 10, 11, 12, 13, 21, 29, 30, 31, 35], "logisticregress": [7, 9, 10, 11, 33, 34], "logit": [7, 33, 34], "logreg": [7, 9, 10, 11, 34], "logspac": [0, 1, 3, 5, 6, 28, 29, 30, 31, 32, 33], "long": [0, 1, 3, 4, 12, 13, 28, 30, 31, 34, 35], "longer": [2, 3, 8, 10, 14, 22, 25, 28, 31], "loocv": [6, 32, 33], "look": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33], "loop": [1, 4, 6, 10, 12, 14, 16, 17, 18, 21, 22, 28, 31, 32, 33], "lose": 1, "loss": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 18, 22, 23, 28, 32, 33, 34, 35], "loss_bin": [33, 34], "loss_fil": 4, "loss_multi": [33, 34], "loss_vec": [33, 34], "lossfil": 4, "lost": 4, "lot": [1, 4, 6, 16, 19, 20, 31, 32], "low": [0, 6, 9, 10, 11, 23, 28, 29, 32, 33], "lower": [0, 1, 3, 6, 9, 10, 16, 22, 29, 31], "lowercas": [22, 28], "lowest": [9, 13, 25, 31], "lr": [1, 3, 4, 10, 33, 34], "lstat": [], "lstm": 4, "lstm_2layer": 4, "lstsq": [0, 28, 29], "lt": [6, 32], "lu": [0, 5, 28, 29, 30], "lubksb": 22, "luckili": 2, "ludcmp": 22, "lux": 22, "lvert": 1, "lw": [0, 28], "m": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 15, 22, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35], "m_": [9, 12, 35], "m_0": 31, "m_1": 14, "m_h": [0, 28], "m_k": 14, "m_l": [12, 35], "m_n": [0, 28], "m_p": [0, 28], "m_t": [13, 31], "ma": 11, "machin": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 22, 27, 29, 31, 32, 35], "machinelearn": [0, 6, 16, 20, 21, 23, 24, 26, 27, 28, 29, 30, 33, 34], "machineri": [], "mackai": 27, "macro": [], "made": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 23, 28, 29, 31, 33, 34, 35], "mae": [0, 28], "magic": 4, "magnitud": [1, 6, 7, 13, 29, 31, 34, 35], "mai": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "mail": [24, 26], "main": [0, 1, 3, 4, 5, 6, 7, 9, 22, 23, 27, 29, 30, 31, 33, 34], "mainli": [0, 5, 6, 7, 9, 28, 29, 32, 33, 34], "maintain": [6, 31, 32], "major": [1, 6, 9, 10, 13, 22, 28, 30, 31, 32, 33], "make": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 18, 19, 21, 22, 23, 25, 27, 28, 30, 31, 32, 33, 34, 35], "make_axes_locat": 6, "make_classif": 34, "make_moon": [8, 9, 10], "make_pipelin": [0, 6, 10, 29, 32, 33], "makedir": [0, 6, 7, 9, 28, 32, 33], "malcondit": 22, "malign": [1, 7, 9, 34], "mammographi": 5, "manag": [0, 2, 3, 15, 21, 23, 28, 31], "mandatori": [26, 28], "mani": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "manifold": 11, "manner": 3, "manual": [6, 29, 31], "map": [0, 1, 2, 6, 7, 8, 11, 12, 14, 25, 28, 33, 34], "marc": 29, "marchant": [], "margin": [0, 5, 8], "marit": [0, 28], "mark": 28, "markdownfil": [], "markdownit": [], "markdownitdeflist": [], "markedli": [], "marker": [7, 22, 28, 33], "markov": [21, 28], "markup": [], "marsaglia": 25, "mask_or": [], "masked_arrai": [], "maskedrecord": [], "mass": [0, 1, 5, 13, 29, 30], "massag": [0, 28], "masses2016": [0, 28], "masses2016ol": [0, 28], "masses2016tre": 0, "masseval2016": [0, 28], "master": [24, 26], "mat": [21, 28], "mat1100": [21, 28], "mat1110": [21, 28], "mat1120": [21, 28], "match": [1, 4, 5, 13, 14, 15, 29, 30, 31], "materi": [4, 5, 7, 13, 15, 22, 24, 26, 34], "math": [3, 7, 12, 13, 22, 25, 27, 28, 31, 33, 34], "mathbb": [0, 4, 5, 6, 7, 8, 11, 12, 13, 14, 17, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "mathbf": [0, 5, 6, 7, 8, 13, 19, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "mathcal": [1, 5, 6, 7, 13, 23, 32, 33, 34], "matheemat": 3, "mathemat": [0, 6, 11, 12, 13, 21, 22, 25, 27, 28, 31], "mathemati": 28, "mathrm": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "matmul": [1, 2, 5, 35], "matnat": 27, "matplotlib": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34], "matplotlibrc": [], "matric": [0, 1, 3, 4, 6, 7, 8, 11, 13, 16, 17, 21, 29, 30, 33, 34, 35], "matrix": [0, 2, 3, 4, 6, 7, 8, 10, 13, 17, 18, 19, 23, 25, 32, 33, 35], "matshow": 1, "matter": [2, 3, 13, 29, 30, 31, 35], "matthia": [], "max": [0, 1, 2, 3, 4, 9, 10, 12, 13, 26, 28, 30, 31, 33, 34, 35], "max_depth": [0, 9, 10], "max_diff": 2, "max_diff1": 2, "max_diff2": 2, "max_it": [0, 1, 8, 13, 28, 34], "max_iter": 14, "max_leaf_nod": 10, "max_sampl": 10, "maxdegre": [0, 6, 10, 29, 32, 33], "maxdepth": 10, "maxim": [1, 4, 5, 7, 8, 11, 32, 33, 34], "maximum": [0, 2, 3, 5, 7, 8, 9, 10, 13, 14, 28, 29, 30, 31], "maxpolydegre": [5, 6, 29, 30, 31, 32, 33], "maxpooling2d": 3, "mbox": [5, 6, 29, 30, 32], "mcculloch": [12, 34, 35], "md": 11, "mdoel": 4, "me": [], "mean": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 25, 28, 31, 32, 34, 35], "mean0": [33, 34], "mean1": [33, 34], "mean_absolute_error": [0, 28], "mean_divisor": 14, "mean_i": 25, "mean_matrix": 14, "mean_squared_error": [0, 4, 6, 7, 10, 15, 19, 28, 29, 32, 33], "mean_squared_log_error": [0, 28], "mean_vector": 14, "mean_x": 25, "meaning": [0, 4, 7, 28, 33], "meansquarederror": [0, 28], "meant": [3, 7, 10, 13, 33, 35], "meanwhil": 31, "measur": [0, 1, 2, 5, 6, 9, 11, 12, 14, 16, 18, 23, 25, 28, 29, 31, 32, 33, 35], "mechan": [0, 4, 25, 28, 31], "median": [0, 28, 29, 31], "medicin": [12, 34, 35], "medium": [4, 8, 13, 31], "medv": [], "meet": [0, 26], "mehta": [0, 28, 29, 30], "member": [20, 23], "memori": [3, 4, 11, 12, 13, 18, 22, 34, 35], "mentat": [], "mention": [0, 12, 13, 23, 25, 28, 30, 31, 34, 35], "merchant": [], "mere": [0, 23], "merg": [], "meshgrid": [2, 5, 6, 8, 9, 10, 11], "mess": 15, "messag": [5, 13], "messi": 2, "met": [0, 3, 8, 29], "meta": [], "meteorolog": 9, "meter": [6, 29], "method": [0, 1, 2, 3, 4, 5, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 29, 35], "metion": 6, "metric": [0, 1, 3, 6, 7, 9, 10, 14, 15, 28, 29, 32, 33, 34], "metropoli": [21, 28], "mev": [0, 25, 28], "mgd": [13, 31], "mglearn": [21, 28], "mgrid": 13, "mhjensen": [], "mi": 10, "mia": [26, 28], "michael": 35, "microsoft": 27, "mid": 1, "midel": 4, "midnight": 15, "midpoint": 9, "might": [0, 1, 2, 4, 6, 9, 13, 15, 17, 18, 29, 30, 31], "migth": 17, "mild": 9, "millimet": [6, 29], "million": [0, 28, 29, 31], "mimic": [12, 34, 35], "min": [0, 2, 5, 8, 9, 30], "min_": [0, 2, 5, 14, 17, 28, 29, 30], "min_samples_leaf": 9, "mind": [0, 6, 13, 15, 18, 28, 29, 30, 31, 32], "mindboard": 4, "mine": [21, 28], "mini": [1, 11, 12, 13, 30], "minibatch": [1, 11, 13], "minibathc": [13, 31], "miniforge3": [], "minim": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 29, 30, 31, 32], "minima": [0, 1, 7, 13, 28, 30, 31, 33, 34], "minimum": [0, 1, 2, 6, 8, 9, 11, 13, 29, 30, 31, 32, 33, 34], "minmaxscal": [0, 29, 31], "minor": 25, "minst": 1, "minu": [7, 33], "mirjalili": 28, "mirror": 9, "misc": 6, "misclassif": [8, 9, 10], "misclassifi": [8, 10], "miser": 0, "mismatch": 1, "miss": [7, 10], "mistak": [4, 19], "mit": 27, "mitig": 31, "mix": [1, 2, 28], "mixtur": [13, 31], "mk": [9, 22], "mkdir": [0, 6, 7, 9, 28, 32, 33], "ml": [0, 1, 10, 13, 22, 23, 29, 30, 31], "mlab": 25, "mle": [5, 7, 33, 34], "mlp": [1, 34, 35], "mlpclassifi": [1, 34], "mlpregressor": [0, 28], "mm": 22, "mml": 29, "mn": [12, 25, 34], "mnist": [1, 11], "mo": [], "mod": 25, "mode": [24, 26, 28, 33, 34], "model": [2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 21, 23, 25, 27, 29, 30, 31, 32, 33], "model_bin": [33, 34], "model_multi": [33, 34], "model_select": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 28, 29, 30, 31, 32, 33, 34], "moder": [10, 31], "modern": [0, 6, 7, 21, 28, 31, 32, 33, 34, 35], "modest": 31, "modif": [2, 12, 13], "modifi": [0, 1, 3, 5, 7, 8, 10, 12, 13, 28, 29, 30, 31, 33, 34, 35], "modul": [0, 16, 22, 28], "modular": 25, "modulo": 25, "moe": [11, 29], "moment": [5, 6, 13, 25, 32], "momentum": 35, "mondai": [26, 28, 33], "monitor": [13, 31], "monoton": [5, 12, 25, 32, 34, 35], "mont": [0, 6, 21, 25, 27, 28, 32, 33], "montli": 16, "moor": [5, 6], "more": [0, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 25], "moreov": [0, 3], "morten": [26, 28, 29, 30, 31, 32, 33, 34, 35], "mortenhj": 28, "most": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "mostli": [1, 11, 18, 31], "motion": [0, 13], "motiv": [1, 4, 35], "moulin": 31, "move": [0, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 23, 25, 29, 30, 32, 33, 34, 35], "mpl": [7, 28, 33], "mpl_toolkit": [2, 6, 13, 30, 31], "mplot3d": [2, 6, 13, 30, 31], "mplregressor": 1, "mr_": [], "mrecord": [], "ms3tv8fvar": 34, "mse": [0, 4, 5, 6, 9, 10, 15, 16, 17, 19, 20, 23, 28, 29, 30, 31, 32, 33], "mse_simpletre": 10, "mselassopredict": [5, 30], "mselassotrain": [5, 30], "mseownridgepredict": [6, 29, 30, 31], "msepredict": [5, 30], "mseridgepredict": [0, 5, 6, 29, 30, 31], "msetrain": [5, 30], "msg": [], "msle": [0, 28], "mt": [7, 12, 33, 34], "mu": [0, 6, 11, 13, 25, 28, 31, 32], "mu0": 25, "mu1": 25, "mu2": 25, "mu_": [6, 25, 29, 31, 32], "mu_i": [6, 29, 31], "mu_n": 11, "mu_x": 25, "much": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "multi": [0, 1, 3, 7, 21, 28, 33], "multi_class": [33, 34], "multiclass": [1, 7, 33, 34], "multiclass_result": [33, 34], "multidimension": [11, 12, 28, 34, 35], "multilay": 1, "multinomi": [7, 33, 34], "multipl": [2, 4, 5, 6, 7, 12, 13, 15, 25, 29, 30, 31, 32, 33, 34, 35], "multipli": [3, 5, 6, 11, 13, 18, 22, 25, 29, 30, 31], "multiplum": 8, "multivari": [0, 2, 10, 11, 21, 25, 28], "multivariate_norm": [11, 14], "multpli": 16, "murphi": [11, 27, 28], "muse": [], "must": [1, 2, 5, 6, 8, 10, 12, 13, 14, 15, 20, 23, 25, 29, 30, 31, 32, 33, 34, 35], "mutat": [7, 33, 34], "mutual": [1, 3, 6, 13, 32, 33], "mx_": 25, "my": 28, "myenv": [], "myriad": [0, 21, 28], "myself": [], "mz1": 25, "mz2": 25, "m\u00f8svatn": 6, "n": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "n0": [33, 34], "n1": [22, 33, 34], "n2": 22, "n8grai": [], "n_": [1, 2, 3, 8, 12, 25, 34], "n_0": [12, 25, 34], "n_boostrap": [6, 10, 32, 33], "n_bootstrap": [6, 32], "n_categori": [1, 3], "n_class": [33, 34], "n_cluster": 14, "n_compon": 11, "n_epoch": [13, 31], "n_estim": 10, "n_examples_to_gener": 4, "n_featur": [1, 18, 33, 34, 35], "n_filter": 3, "n_hidden": 2, "n_hidden_neuron": [0, 1, 28, 35], "n_i": 25, "n_input": [0, 1, 3, 29, 35], "n_instanc": 9, "n_iter": 31, "n_job": 10, "n_k": 14, "n_l": [12, 25, 34], "n_layer": 1, "n_m": 9, "n_neuron": 1, "n_neurons_connect": 3, "n_neurons_layer1": 1, "n_neurons_layer2": 1, "n_output": 35, "n_point": 14, "n_sampl": [6, 8, 9, 10, 14, 18, 32, 33, 34], "n_split": [6, 32, 33], "n_step": 4, "n_t": 2, "n_x": 2, "nabla": [1, 13, 30, 31], "nabla_": [2, 13, 30, 31], "nabla_w": 13, "nag": 13, "naimi": [0, 28], "naiv": [7, 33, 34], "naive_kmean": 14, "name": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 34, 35], "namespac": [], "nan": [], "narrow": [13, 31], "nathaniel": [], "nation": [1, 5], "nativ": [21, 28], "natur": [0, 1, 4, 8, 9, 12, 13, 23, 25, 27, 28, 30, 31, 34, 35], "navier": [12, 34, 35], "navig": [15, 31], "nb": 25, "nb_": 22, "nbconvert": 28, "nd": 14, "ndarrai": 6, "ne": [9, 10, 22, 25, 29, 30], "nearest": [1, 3, 6, 11], "nearli": [13, 30], "neat": 28, "neccesari": [6, 32], "necess": 2, "necessari": [0, 1, 3, 4, 8, 14, 18, 28, 35], "necessarili": [0, 4, 11, 25, 28], "necesserali": 5, "neck": [7, 33, 34], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 25, 29, 30, 31, 32, 33, 34, 35], "neg": [0, 1, 3, 5, 6, 7, 10, 13, 22, 25, 28, 30, 32, 33, 34], "neg_mean_squared_error": [6, 32, 33], "neglect": [25, 31], "neglig": 25, "neighbor": [3, 6, 11], "neither": [4, 13, 31], "neq": [13, 14, 25, 30], "nervou": [12, 34, 35], "nest": [9, 12, 34], "nesterov": 13, "net": [2, 4, 12, 34, 35], "netlib": [22, 28], "network": [0, 9, 13, 21, 27, 29], "neural": [0, 13, 21, 27, 29, 33], "neural_network": [0, 1, 2, 28, 34], "neuralnetwork": 1, "neuralnetworksanddeeplearn": 35, "neuron": [1, 2, 3, 4, 12], "neutral": [0, 28], "neutron": [0, 28], "never": [1, 4, 6, 9, 25, 32, 33], "new": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 22, 28, 29, 30, 31, 33, 34], "new_chang": [13, 31], "new_hobbit": 28, "new_ma": [], "newaxi": [0, 3, 6, 9, 32, 33], "newli": [0, 28], "newlin": [33, 34], "newton": [1, 7, 8, 13, 25, 35], "next": [0, 1, 2, 3, 4, 5, 6, 8, 9, 13, 14, 15, 16, 28, 29, 30, 31, 32, 34, 35], "next_guess": 13, "next_input": 4, "ng": 1, "ni": 14, "nice": [0, 1, 5, 11, 28, 29, 30], "nicer": [18, 31], "nielsen": 35, "nine": 35, "nip": 31, "niter": [13, 30, 31], "nitric": [], "nlambda": [0, 5, 6, 29, 30, 31, 32, 33], "nlp": 27, "nm": 25, "nm_n": [0, 28], "nmse": [6, 32, 33], "nn": [2, 5, 6, 12, 22, 28, 32, 34], "nn_model": 1, "nnmin": 2, "node": [1, 3, 9, 10, 12, 34], "nois": [0, 4, 5, 6, 8, 9, 10, 13, 18, 19, 23, 28, 29, 30, 31, 32, 33], "noise_dimens": 4, "noisi": [1, 6, 23, 31, 32, 33], "nomask": [], "non": [0, 1, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 18, 22, 25, 28, 29, 30, 32, 33, 34, 35], "nondifferenti": 31, "none": [0, 1, 2, 4, 5, 9, 10, 13, 25, 28, 29, 33, 34, 35], "noninfring": [], "nonlinear": [3, 6, 8, 9, 11, 12, 32, 33, 34, 35], "nonneg": [6, 9, 13, 30, 32, 33], "nonparametr": 6, "nonsens": 25, "nonsingular": 22, "nonumb": [3, 7, 8, 13, 22, 33, 34], "nor": [1, 4, 13, 31, 35], "norm": [0, 1, 5, 6, 8, 11, 13, 18, 28, 29, 30, 31, 32, 35], "normal": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 21, 22, 23, 25, 28, 29, 30, 31, 33, 34, 35], "normali": [22, 28], "norwai": [6, 23, 28, 30, 31, 32, 34, 35], "notabl": [], "notat": [0, 2, 5, 6, 13, 14, 25, 28, 29, 30, 32, 33, 35], "note": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 18, 21, 22, 25, 27, 28, 31, 32, 33, 34, 35], "notebook": [0, 1, 3, 9, 15, 16, 19, 20, 21, 23, 28, 32, 35], "noteworthi": 31, "noth": [1, 2, 5, 8, 12, 14, 25, 29, 30, 34], "notic": [4, 5, 12, 13, 22, 25, 28, 35], "notion": 3, "novel": [3, 6, 10, 28], "novemb": [1, 26, 28], "now": [0, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 19, 21, 22, 23, 25, 28, 29, 34, 35], "nowadai": [0, 1, 3, 9, 21, 28], "nox": [], "np": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "npm": [], "npr": 2, "nsampl": [6, 32, 33], "nt": 2, "nu": 25, "nuclear": [5, 29, 30], "nuclei": [0, 25, 28], "nucleon": [0, 28], "nucleu": [0, 28], "num": 4, "num_coordin": 2, "num_hidden_neuron": 2, "num_it": [2, 18], "num_neuron": 2, "num_neurons_hidden": 2, "num_point": 2, "num_tre": 10, "num_valu": 2, "number": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 22, 23, 24, 26, 28, 30, 32, 33, 34], "numberid": [7, 33], "numberparamet": 3, "numer": [0, 5, 6, 9, 10, 11, 12, 13, 21, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35], "numpi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 29, 30, 31, 32, 33, 34, 35], "numpydocstr": [], "nunmpi": [5, 29], "nve_frngahw": 30, "nx": 2, "ny": 25, "o": [0, 1, 4, 5, 6, 7, 8, 9, 11, 22, 26, 27, 28, 29, 30, 31, 32, 33, 34], "obei": [6, 11, 13, 29, 31], "object": [0, 1, 4, 8, 10, 15, 19, 22, 28, 31, 35], "obliqu": [5, 29, 30], "observ": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 28, 30, 31, 32, 33, 34], "obtain": [0, 1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 17, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "obviou": [5, 6, 11, 25, 29, 30], "obviouli": 28, "obvious": [0, 4, 5, 6, 22, 28, 32], "oc": [29, 30], "occupi": [], "occur": [0, 6, 8, 9, 22, 25, 28], "octob": [26, 28, 34], "od": 0, "odd": [0, 3, 7, 28, 29, 31, 33, 34], "odenum": 2, "odesi": 2, "oen": 0, "off": [1, 3, 4, 5, 9, 13, 20, 25, 31, 32], "offer": [6, 11, 21, 22, 24, 26, 28, 32, 33], "offic": [26, 28], "offici": [24, 28], "often": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "ofter": [22, 28], "ol": [0, 13, 17, 19, 29, 31, 33], "old": [1, 5, 10, 13, 15, 18, 33, 34], "old_ma": [], "oliph": [], "ols_paramet": 16, "ols_sk": 6, "ols_svd": 6, "olsbeta": 30, "olstheta": [0, 5], "omega": [2, 3, 6], "omega_0": 3, "omit": [0, 5, 28, 29, 30, 32], "onc": [1, 6, 9, 11, 13, 20, 32, 33], "one": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 21, 22, 23, 25, 26, 28, 29, 31, 32, 33, 34], "one_hot": [33, 34], "onehot": 1, "onehot_vector": 1, "onehotencod": 9, "ones": [0, 2, 5, 6, 8, 9, 10, 11, 13, 16, 18, 22, 23, 28, 29, 30, 31, 32, 33, 35], "ones_lik": 4, "ong": 29, "onl": 3, "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "onlin": [11, 15, 20, 24, 31, 35], "onto": [5, 11, 29, 30], "open": [0, 1, 4, 6, 7, 9, 15, 21, 23, 24, 26, 28, 32, 33, 34], "oper": [0, 1, 3, 5, 6, 10, 11, 12, 13, 15, 16, 21, 25, 28, 29, 30, 31, 32, 34], "operation": 25, "oplu": 25, "opmiz": [13, 31], "opportun": 0, "oppos": [6, 13], "opposit": [1, 5, 8, 29, 30], "opt": [1, 5, 23, 28, 30], "optim": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 19, 23, 32], "optimis": [1, 3], "option": [0, 1, 3, 5, 6, 8, 11, 15, 18, 22, 29, 31, 32], "optmiz": [1, 8, 13, 29], "oral": 28, "orang": 0, "order": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 19, 22, 23, 25, 28, 29, 30, 32, 33, 34, 35], "ordinari": [0, 2, 3, 7, 11, 13, 17, 18, 21, 32, 33, 34], "oreilli": [27, 28], "org": [0, 3, 4, 16, 20, 21, 22, 23, 27, 28, 29, 30, 31, 35], "organ": [6, 7, 10, 22, 32, 33], "orgin": 35, "orient": [1, 5, 25, 29, 30], "origin": [0, 3, 5, 6, 8, 11, 12, 13, 15, 22, 28, 29, 30, 31, 32, 33, 34], "orthogn": [5, 29, 30], "orthogon": [0, 5, 6, 8, 11, 13, 22, 28, 29, 30], "orthonorm": [5, 29, 30], "os": [26, 28], "oscar": 1, "oscil": [3, 13, 31], "oskar": 28, "oskarlei": 28, "osl": 18, "oslo": [0, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35], "osx": [0, 21, 23, 28], "other": [0, 1, 2, 3, 5, 6, 7, 8, 10, 13, 14, 16, 19, 21, 24, 25, 26, 27, 29, 30, 31, 32, 33], "otherwis": [0, 1, 4, 7, 13, 22, 28, 31, 33, 34], "ouput": [5, 7, 12, 32, 33], "our": [1, 2, 3, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 21, 22, 25, 31, 32, 35], "ourmodel": 0, "ourselv": [0, 5, 6, 8, 11, 13, 28, 29, 30, 32], "out": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 21, 22, 23, 25, 28, 29, 31, 32, 33, 34, 35], "out_fil": 9, "outcom": [0, 7, 9, 10, 12, 25, 29, 33, 34], "outdoor": 9, "outer": [6, 12, 13], "outfil": 4, "outlier": [0, 8, 28, 29, 31], "outlin": [6, 10, 11, 32, 33], "outlook": 9, "outperform": [10, 31], "output": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34], "output_bia": 1, "output_bias_gradi": [1, 35], "output_shap": 4, "output_weight": 1, "output_weights_gradi": [1, 35], "outputlayer1": [12, 34], "outputlayer2": [12, 34], "outsid": 4, "over": [0, 1, 3, 4, 5, 6, 9, 10, 12, 13, 15, 16, 19, 22, 23, 28, 29, 30, 31, 32, 33], "over1": 13, "overal": [1, 10, 31], "overcast": 9, "overcom": [12, 13, 34, 35], "overdetermin": [0, 28], "overfit": [0, 1, 3, 6, 9, 10, 13, 31, 32, 33], "overflow": [5, 31, 32], "overhead": [12, 35], "overlap": [3, 7, 8, 9, 34], "overleaf": [20, 23], "overlin": [0, 5, 6, 9, 10, 11, 14, 22, 28, 29, 31], "overshoot": 31, "overst": 0, "overtrain": 4, "overview": [3, 20], "own": [4, 5, 6, 8, 12, 13, 16, 18, 21, 22, 30, 31, 32, 35], "owner": [], "ownmsepredict": 0, "ownmsetrain": 0, "ownridgebeta": 29, "ownridgetheta": [0, 6, 29, 30, 31], "ownypredictridg": 0, "ownytilderidg": 0, "ox": [], "oxid": [], "p": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34], "p0": 2, "p1": 2, "p_": [2, 4, 8, 9], "p_hidden": 2, "p_i": [5, 25], "p_j": 25, "p_n": 25, "p_output": 2, "p_x": 25, "pa": 35, "pack": [0, 28], "packag": [0, 1, 3, 4, 5, 8, 11, 13, 15, 20, 21, 23, 25, 29, 30, 31], "packtpub": 28, "packtpublish": 28, "pad": [3, 4], "page": [0, 21, 23, 28, 30, 31, 32, 33], "pai": [0, 1, 9, 13, 15, 31], "pair": [0, 2, 3, 9, 21, 25, 28], "paltform": 15, "panda": [0, 4, 5, 6, 7, 9, 11, 21, 23, 30, 31, 32, 33, 34], "pandoc": [], "panel": 28, "paper": [1, 31], "paper_fil": 31, "paradigm": [0, 28], "paragraph": 20, "parallel": [10, 13, 21, 22, 28], "param": 2, "paramat": 2, "paramet": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 17, 18, 19, 23, 25, 30, 31, 32], "parameter": [0, 6, 10, 28, 29], "parametr": [0, 6, 28, 29, 32, 33], "paramt": [3, 5, 32, 35], "parent": 35, "parser": [], "part": [0, 1, 3, 5, 6, 10, 17, 19, 20, 22, 24, 25, 26, 28, 29, 32], "partial": [0, 1, 5, 6, 7, 8, 10, 11, 12, 13, 16, 25, 28, 29, 30, 31, 33, 34, 35], "particip": [15, 21, 24, 26, 28], "particl": [0, 4, 13, 25, 28], "particular": [0, 1, 2, 3, 5, 6, 9, 10, 11, 12, 13, 16, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "particularli": [5, 6, 8, 11, 13, 25, 29, 30, 31, 32, 33], "partit": [1, 4, 9], "partli": [6, 28], "partner": [15, 23], "pass": [2, 3, 12, 14, 31, 35], "password": 23, "past": [10, 25, 31], "patch": [6, 25, 32], "path": [0, 4, 6, 7, 9, 21, 28, 31, 32, 33], "pathcollect": 17, "patholog": [], "patient": [7, 33, 34], "patter": 4, "pattern": [0, 3, 4, 12, 27, 28, 31, 34, 35], "paul": [], "pauli": [0, 28], "pav": [], "pc": [11, 15, 21], "pca": [0, 7, 21, 28, 29, 34], "pd": [0, 4, 5, 6, 7, 9, 11, 28, 29, 30, 31, 32, 33, 34], "pde": 2, "pdf": [0, 3, 4, 5, 6, 9, 15, 16, 19, 20, 23, 27, 28, 32], "pedagog": [0, 28, 29], "penal": [6, 18, 29, 31], "penalti": [6, 13, 18, 23, 29, 31], "penros": [5, 6], "pentagon": [13, 30], "peopl": [1, 9, 13, 21, 23, 31], "per": [0, 1, 6, 24, 26, 28, 31, 32, 33, 34], "percentag": [10, 11, 26], "perceptron": [0, 1, 7, 28, 33], "peregrin": 28, "perez": [], "perfect": [0, 1, 13, 28, 31], "perfectli": [4, 6, 32, 33], "perform": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 16, 18, 19, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "performac": 4, "perhap": [0, 5, 13, 28, 29, 30, 31], "perimet": 1, "period": [1, 4, 25], "permiss": 15, "permit": [], "permut": 11, "persist": 13, "person": [5, 6, 7, 16, 20, 24, 26, 28, 29, 33], "perspect": 27, "pertin": [12, 28, 35], "petal": [8, 9], "peter": [27, 29], "petersen": 35, "phantom": 25, "phase": [6, 12, 34, 35], "phenomena": 25, "phenomenon": 31, "phi": 8, "phi_k": 8, "philipp": 35, "philosophi": 13, "phone": [26, 28], "photo": [4, 28], "php": 23, "phrase": [0, 28], "physic": [0, 1, 4, 7, 12, 13, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "pi": [2, 3, 5, 6, 7, 9, 12, 13, 25, 32, 33, 34], "pick": [1, 9, 10, 11, 13, 14, 23, 31], "pickl": 1, "pictur": [0, 28], "pie": [21, 28], "piec": [11, 14], "pierr": [], "pillow": [0, 21, 23, 28], "pinv": [5, 6, 13, 23, 29, 30, 31, 34], "pip": [0, 1, 15, 21, 23, 28], "pip3": [0, 1, 23, 28], "pipelin": [0, 6, 8, 10, 29, 32, 33], "pippin": 28, "pit": 4, "pitfal": [6, 29], "pitt": [12, 34, 35], "pixel": [1, 3, 4, 28], "pixel_height": [1, 3], "pixel_width": [1, 3], "pkg_resourc": [], "pkgutil": [], "place": [0, 4, 6, 8, 13, 15, 22, 23, 28, 30, 32], "plai": [0, 3, 4, 5, 6, 8, 11, 18, 21, 23, 28, 29, 30, 32, 33, 35], "plain": [8, 10, 12, 13, 14, 23, 30, 31, 35], "plan": [6, 9, 26, 27, 28], "plane": [8, 9], "plateau": [5, 30, 31], "platform": [21, 28], "plausibl": [12, 34], "pleas": [13, 23, 26, 28], "plenti": 1, "plethora": [3, 12, 34, 35], "pliahhy2ibx9hdharr6b7xevztgzra1p": [34, 35], "plot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 25, 28, 29, 30, 31, 34], "plot_all_sc": [23, 29], "plot_confusion_matrix": [7, 10, 34], "plot_count": 6, "plot_cumulative_gain": [7, 10, 34], "plot_data": 1, "plot_dataset": 8, "plot_decision_boundari": [9, 10], "plot_import": 10, "plot_max": 4, "plot_min": 4, "plot_model": 4, "plot_numb": 4, "plot_predict": 8, "plot_regression_predict": 9, "plot_result": 4, "plot_roc": [7, 10, 34], "plot_surfac": [2, 6, 13], "plot_train": 9, "plot_tre": [9, 10], "plqvvvaa0qudcjd5baw2dxe6of2tius3v3": [34, 35], "plt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34], "plu": [0, 3, 5, 7, 18, 28, 29, 33], "plugin": [], "pm": [8, 32], "pmatrix": 2, "pml": 27, "pn": 3, "png": [0, 4, 6, 7, 9, 28, 32, 33], "point": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34], "point_1": 4, "point_2": 4, "poisson": [21, 25, 28], "poli": [6, 8, 32, 33], "poly100_kernel_svm_clf": 8, "poly3": 0, "poly3_plot": 0, "poly_featur": [8, 9, 15], "poly_features10": 9, "poly_fit": 9, "poly_fit10": 9, "poly_kernel_svm_clf": 8, "poly_model": 15, "poly_ms": 15, "poly_predict": 15, "polydegre": [0, 5, 6, 10, 29, 32, 33], "polygon": [13, 30], "polym": [12, 34, 35], "polymi": 23, "polynomi": [0, 5, 6, 7, 8, 9, 10, 11, 15, 17, 19, 20, 23, 28, 29, 31, 32, 33, 34, 35], "polynomial_featur": [6, 15, 16, 17, 32, 33], "polynomial_svm_clf": 8, "polynomialfeatur": [0, 6, 8, 9, 15, 16, 19, 29, 32, 33], "polytrop": [0, 6, 32, 33], "pool": 3, "pool_siz": 3, "poor": [1, 13, 30, 31], "poorli": [0, 29], "popul": [0, 5, 28, 29], "popular": [0, 1, 3, 6, 7, 8, 9, 11, 12, 15, 21, 22, 23, 25, 29, 33, 34], "popularli": [0, 28], "portabl": 10, "portion": [11, 13, 31], "pose": [0, 4, 5, 6, 11, 25, 28, 32], "posit": [0, 1, 2, 3, 5, 7, 8, 10, 11, 13, 14, 22, 25, 28, 29, 30, 31, 33, 34], "possibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "possibli": [6, 8, 13, 23], "post": [], "posterior": 5, "postpon": [0, 29], "postscript": 23, "postul": 5, "potenti": [0, 3, 5, 6, 12, 13, 29, 31, 32, 34, 35], "pott": [12, 34, 35], "power": [0, 1, 5, 6, 8, 9, 12, 13, 28, 29, 30, 31, 32, 33, 34, 35], "pp": [5, 6, 19, 32, 35], "practic": [0, 5, 6, 7, 8, 16, 18, 19, 23, 25, 29, 32, 33, 34], "practition": [0, 1, 3, 28, 31], "pre": 28, "preambl": [], "precalcul": 35, "preced": [1, 11, 12, 25, 34], "preceed": 4, "preceq": 8, "precis": [0, 2, 5, 11, 13, 22, 23, 25, 28, 29, 31, 32, 35], "pred": [6, 32, 33, 34], "predicit": 0, "predict": [0, 1, 5, 6, 7, 8, 9, 10, 15, 16, 17, 19, 21, 23, 27, 28, 29, 30, 31, 32, 33, 34], "predict_prob": [1, 33, 34], "predict_proba": [7, 10, 34], "predictedlabel": [33, 34], "predictor": [0, 5, 6, 7, 9, 10, 11, 28, 29, 31], "prefer": [0, 1, 6, 8, 9, 11, 13, 15, 20, 21, 23, 28], "prefil": [], "prepar": [0, 6, 22, 23, 28, 29], "preprocess": [0, 4, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 23, 32, 33, 34], "prerequisit": 0, "prescript": 23, "presenc": 13, "present": [0, 5, 6, 7, 9, 12, 13, 22, 23, 25, 28, 29, 30, 31, 34, 35], "preserv": [3, 11, 22], "press": [13, 15, 27, 30, 35], "pretrain": [1, 4], "pretti": [0, 4, 8, 9, 21, 23, 28], "prettier": [], "prev_centroid": 14, "prevent": [13, 25, 31], "previou": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 22, 23, 25, 29, 30, 31, 34, 35], "previous": [2, 3, 9, 10, 25], "price": [0, 4, 9, 13, 31], "primal": 8, "primari": [0, 7, 28, 33, 34], "prime": 25, "princip": [0, 5, 7, 21, 28, 29, 30, 34], "principl": [0, 6, 7, 8, 14, 28, 32, 33, 34], "print": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "print_funct": [8, 9], "printout": [0, 28], "prior": [0, 5, 6, 28], "privat": 0, "prob": [1, 25, 33, 34], "probabilist": [0, 27, 28, 29], "probabl": [0, 1, 3, 4, 6, 7, 10, 13, 21, 28, 29, 31, 33, 34], "problem": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 21, 22, 23, 25, 32], "probml": 27, "proce": [0, 5, 6, 7, 8, 9, 10, 11, 13, 22, 28, 29, 32, 35], "procedur": [2, 4, 5, 6, 8, 10, 11, 13, 29, 30, 31, 32, 33], "proceed": 22, "process": [0, 2, 4, 6, 9, 10, 12, 13, 21, 22, 23, 25, 27, 28, 30, 31, 32, 33, 34, 35], "procur": [], "prod": 27, "prod_": [1, 5, 7, 32, 33, 34], "produc": [0, 3, 4, 5, 6, 9, 10, 11, 12, 13, 18, 20, 21, 22, 23, 25, 28, 29, 32, 34, 35], "product": [0, 1, 3, 5, 6, 7, 8, 12, 13, 16, 17, 21, 22, 28, 29, 31, 32, 33, 34, 35], "profess": [0, 28], "profit": [], "program": [0, 1, 4, 5, 6, 8, 12, 14, 15, 21, 22, 24, 25, 26, 28, 29, 34], "programm": 22, "progress": [1, 4, 14, 31, 33, 34], "prohibit": [6, 32, 33], "project": [0, 1, 2, 3, 5, 11, 13, 15, 19, 21, 24, 29, 30, 31, 32, 33, 34], "project_root_dir": [0, 6, 7, 9, 28, 32, 33], "promin": [12, 34, 35], "promis": 8, "promot": [26, 28], "prompt": 20, "prone": [9, 15, 35], "pronounc": [13, 21, 28, 31], "proof": [0, 11, 12, 13, 28, 30, 32, 33, 35], "prop": 31, "prop_cycl": [], "propag": [2, 3, 13, 31], "proper": [0, 2, 6, 7, 20, 32, 33], "properli": [1, 6, 8, 10, 13, 18, 20, 23, 31], "properti": [0, 1, 3, 12, 13, 16, 22, 28, 32, 34], "propgag": 35, "proport": [0, 1, 5, 9, 11, 13, 25, 28, 29], "propos": [1, 4, 6, 10, 23, 28, 31], "propto": [5, 13, 30, 31], "proton": [0, 28], "prove": [3, 13, 30, 31], "provid": [0, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "proxi": [1, 13, 31], "prune": 9, "pseudo": [22, 25, 31], "pseudocod": 23, "pseudoinv": 5, "pseudoinvers": [5, 6, 23], "pseudorandom": [6, 25, 32], "psychologi": [0, 28], "pt": 13, "public": [0, 15, 21, 28], "publish": 35, "pull": 15, "punish": [0, 1, 28], "pure": [3, 9, 25], "purest": 9, "puriti": 9, "purpos": [0, 3, 10, 12, 14, 28, 34, 35], "push": 15, "put": [1, 20, 23, 31], "putmask": [], "py": 5, "pybtex": [], "pycod": 28, "pydata": 21, "pydevd_extension_api": [], "pydevd_plugin": [], "pydevd_plugin_plugin_nam": [], "pydot": 9, "pygment": [], "pyhton2": 28, "pylab": [7, 28, 33], "pypi": 21, "pyplot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34], "pythagora": 5, "python": [1, 2, 3, 5, 6, 8, 11, 12, 13, 14, 18, 20, 23, 25, 29, 31, 35], "python2": [0, 23], "python3": [0, 21, 23, 28], "pythonpath": [], "pytorch": [0, 21, 23, 28, 35], "pyzmq": [], "q": [5, 6, 8, 11, 25, 32], "qp": 8, "qquad": [2, 11, 13, 22, 31], "qr": [5, 6, 22, 29, 30], "quad": [1, 13, 22], "quadrat": [0, 8, 9, 13, 28], "qualit": [4, 9, 23, 25], "qualiti": [0, 9, 21, 28, 29, 35], "quantifi": 1, "quantil": 10, "quantit": [0, 6, 9, 23, 28, 32, 33], "quantiti": [0, 2, 5, 6, 7, 9, 10, 11, 12, 14, 16, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "quantum": [4, 12, 27, 28, 34, 35], "quartil": [0, 29, 31], "quasi": 35, "quench": 5, "queri": 9, "question": [0, 5, 6, 9, 11, 12, 13, 23, 26, 28, 29, 31, 32, 35], "qugan": 4, "quick": [4, 25], "quicker": 31, "quickli": [1, 3, 9, 11, 13, 30, 31], "quit": [1, 5, 6, 9, 10, 12, 15, 29, 30, 32, 33, 34], "quot": 4, "r": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 25, 29, 30, 31, 32, 33, 34, 35], "r2": [0, 5, 6, 19, 28, 29, 30], "r2_score": [0, 28], "r2score": [0, 28], "r_": 31, "r_0": 31, "r_1": 9, "r_2": 9, "r_j": 9, "r_m": 9, "r_t": 31, "rad": [], "rade": [], "radial": [8, 12, 34, 35], "radioact": 25, "radiu": [0, 1, 29, 31], "radziej": [], "ragan": [], "rain": 9, "rais": [], "ram": 31, "ramanujam": [], "ramp": 1, "ran0": 25, "ran1": 25, "ran2": 25, "ran3": 25, "rand": [0, 4, 5, 6, 9, 10, 13, 15, 19, 22, 28, 29, 30, 31, 32, 33], "randint": [6, 9, 13, 31, 32], "randn": [0, 1, 2, 5, 6, 9, 11, 13, 15, 18, 28, 29, 30, 31, 32, 33, 34, 35], "random": [0, 1, 2, 3, 4, 5, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "random_forest_model": 10, "random_index": [13, 31], "random_indic": [1, 3], "random_st": [7, 8, 9, 10, 11, 33, 34], "randomforestclassifi": 10, "randomli": [1, 6, 9, 13, 14, 18, 30, 31, 32, 33], "randomst": [33, 34], "rang": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 18, 19, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "rangl": [0, 6, 11, 25, 28, 29], "rangle_x": 25, "rank": [5, 29, 30], "rankdir": 4, "raphson": [1, 8, 13], "rapidli": [0, 31], "rare": [1, 13, 31], "raschka": [28, 29, 32, 33, 34], "rasckha": 28, "rashcka": [30, 31, 35], "rashkca": 35, "rate": [1, 2, 3, 4, 8, 9, 10, 12, 13, 18, 30, 32, 33, 34, 35], "rather": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 25, 28, 29, 30, 32, 33, 35], "ratio": [4, 7, 9, 10, 11, 33, 34], "rational": [0, 28], "ravel": [5, 6, 7, 8, 9, 10, 11, 13, 22, 32, 33, 34], "raw": [3, 31], "rbf": [8, 11, 12, 34, 35], "rbf_kernel_svm_clf": 8, "rbf_pca": 11, "rc": 25, "rcond": [0, 28, 29], "rcparam": [1, 3, 7, 8, 9, 10, 25, 28, 33], "re": [2, 4, 13, 15, 30], "reach": [1, 4, 5, 6, 9, 10, 12, 13, 14, 30, 31, 32, 33, 35], "react": [], "read": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 16, 17, 19, 20, 22, 23, 25, 27, 30], "read_csv": [0, 6, 7, 9, 32, 33], "read_fwf": [0, 28], "reader": [0, 6, 20, 22, 25, 28, 29, 31], "readi": [0, 1, 5, 6, 8, 10, 11, 12, 22, 28, 35], "readili": 1, "readm": [15, 20, 23], "readthedoc": 21, "real": [0, 1, 4, 7, 10, 11, 12, 16, 18, 19, 22, 29, 32, 33, 34], "real_loss": 4, "real_output": 4, "realist": [8, 28], "realiti": 25, "realiz": [1, 12, 34], "realli": [0, 1, 28], "rearrang": 13, "reason": [0, 1, 3, 4, 10, 13, 27, 28, 30, 31], "reassign": 1, "recal": [5, 6, 9, 10, 11, 12, 22, 25, 28, 29, 30, 31, 32, 33, 35], "recarrai": [], "recast": 3, "receiv": [1, 3, 10, 12, 25, 34, 35], "recent": [0, 6, 13, 27, 31, 32, 33, 35], "recept": [3, 12, 34, 35], "receptive_field": 3, "recip": [0, 6, 7, 22, 23, 28, 29, 33, 34], "reciproc": 5, "recogn": [0, 4, 5, 10, 28, 32], "recognit": [0, 1, 3, 12, 27, 28, 34, 35], "recommen": 28, "recommend": [0, 2, 3, 4, 5, 6, 8, 13, 15, 19, 20, 21, 22, 23, 27, 30, 31, 32, 33, 34, 35], "reconsid": 9, "reconstruct": 11, "record": [10, 23, 24, 26, 28, 33, 34], "recreat": 15, "rectangl": [9, 13, 30], "rectangular": [5, 29, 30], "rectifi": [1, 3, 12, 34], "recur": [0, 21, 28], "recurr": [0, 1, 21, 28], "recurs": [9, 21, 22, 28], "red": [0, 3, 4, 6, 8, 9, 31, 32], "redefin": [0, 10, 28, 29, 30], "redefinit": 30, "redistribut": [], "reduc": [1, 3, 5, 6, 9, 10, 11, 13, 28, 30, 31, 32], "reduct": [0, 10, 11, 21, 25, 28, 29], "reegress": 23, "ref": 20, "refer": [0, 1, 2, 3, 5, 6, 11, 12, 13, 14, 20, 22, 27, 28, 29, 30, 31, 32, 33, 34, 35], "referansestil": 20, "referenc": [2, 35], "refin": [12, 34, 35], "refit": [6, 32, 33], "reflect": [0, 1, 4, 5, 23, 25, 28], "refresh": [21, 28], "refreshprogrammingskil": 28, "reg": [10, 11], "regard": [1, 9, 13], "regardless": [12, 16, 34], "regexp": [], "reggi": [], "regim": 31, "region": [3, 4, 6, 9, 12, 23, 31, 34, 35], "regist": [6, 25], "reglasso": [5, 30], "regr_1": [0, 9], "regr_2": [0, 9], "regr_3": [0, 9], "regress": [1, 8, 11, 12, 16, 20, 21, 22, 35], "regressor": [0, 7, 10, 33], "regret": [], "regridg": [0, 5, 6, 29, 30, 31], "regular": [0, 3, 4, 5, 6, 7, 9, 13, 17, 18, 26, 28, 29, 30, 31, 32, 33, 34], "regularli": 15, "reilli": [0, 27, 28], "reinforc": [0, 8, 21, 28], "reiter": 1, "reitz": [], "reject": 7, "rel": [0, 4, 6, 7, 9, 12, 13, 25, 28, 29, 31, 32, 33, 34], "relat": [0, 1, 3, 4, 5, 11, 13, 14, 19, 22, 25, 28, 29, 30, 32, 35], "relationship": [0, 4, 9, 18, 28], "relativeerror": [0, 28, 29], "releas": [1, 21, 28], "relev": [0, 1, 5, 7, 11, 21, 23, 25, 28, 30, 31], "reli": [0, 6, 8, 31], "reliabilti": 23, "reliabl": [7, 25, 33, 34], "relu": [3, 4, 28], "remain": [1, 2, 4, 6, 12, 22, 25, 29, 31, 32, 33, 34, 35], "remaind": 25, "reman": 2, "remark": 1, "rememb": [0, 8, 13, 20, 22, 23, 28, 31], "remind": [0, 5, 11, 13, 19, 22, 25, 32], "remot": 15, "remov": [4, 5, 6, 18, 29, 30, 31], "renam": 15, "render": [0, 28, 29], "reorder": [5, 7, 29, 30, 33, 34], "reorgan": [0, 28], "repeat": [0, 1, 3, 4, 5, 6, 9, 10, 11, 13, 14, 22, 23, 25, 28, 29, 30, 31, 32, 33, 35], "repeated": 28, "repeatedli": [0, 6, 10, 13, 32, 33], "repet": 3, "repetit": [6, 28, 29, 32, 33], "rephras": [13, 30], "replac": [0, 1, 3, 4, 5, 6, 10, 12, 14, 21, 23, 28, 29, 30, 32, 33, 35], "replica": [6, 32], "repo": [15, 23], "report": [28, 31, 33, 34], "repositori": [4, 20, 23, 28], "reposotori": [], "repres": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "represent": [0, 1, 3, 6, 25, 28, 32, 33], "representd": 3, "reproduc": [0, 5, 6, 9, 12, 15, 16, 18, 20, 21, 23, 25, 28, 29, 35], "repuls": [0, 28], "request": [0, 13, 31], "requir": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 17, 18, 19, 20, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "res1": 2, "res2": 2, "res3": 2, "res_analyt": 2, "res_analytical1": 2, "res_analytical2": 2, "res_analytical3": 2, "resaml": 6, "resampl": [0, 7, 10, 21, 28, 29], "rescal": [0, 11, 12, 31, 34], "rescu": 5, "reseach": 6, "research": [0, 4, 13, 21, 27, 28, 31], "resembl": [6, 25, 32], "reserv": [1, 5, 6, 25, 32, 33], "reshap": [0, 1, 2, 3, 4, 6, 8, 9, 10, 22, 28, 29, 32, 33], "resid": 31, "residenti": [], "residu": [0, 5, 13, 28], "resiz": [5, 29, 30], "resnet": 31, "resort": 31, "resourc": [28, 31], "respect": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "respond": [12, 34, 35], "respons": [0, 7, 9, 12, 28, 29, 33, 34, 35], "rest": [0, 5, 18, 29, 30, 31], "restat": [0, 12, 28], "restor": 4, "restored_discrimin": 4, "restored_gener": 4, "restrict": [0, 3, 9, 12, 28, 34, 35], "result": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 28, 31, 32, 33, 34], "retail": [], "retain": [5, 6, 29, 30, 31, 32, 33], "rethink": 32, "return": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "return_data": 14, "return_sequ": 4, "return_x_i": 9, "reus": [1, 3, 6, 19, 20, 23, 35], "reveal": [0, 12, 28, 34, 35], "revers": [1, 22], "review": [21, 22], "revis": [], "revisit": 14, "revolut": 28, "reward": [0, 4, 28], "rewrit": [0, 3, 5, 6, 7, 8, 10, 11, 12, 13, 16, 19, 22, 23, 25, 30, 31, 33, 34, 35], "rewritten": [2, 6, 8, 10, 25, 32], "rewrot": [13, 33, 34], "rf": 10, "rgb": 3, "rgoj5yh7evk": 21, "rh": [6, 32], "rho": [0, 10, 13, 31], "rho_1": 10, "rho_2": 10, "rho_m": 10, "rich": [0, 28], "rid": [], "ride": 9, "rideclass": 9, "ridedata": 9, "ridg": [7, 11, 13, 20, 21, 28, 32, 33, 34], "ridge_paramet": 17, "ridge_sk": 6, "ridgebeta": 30, "ridgetheta": 5, "right": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "right_sid": 2, "rightarrow": [0, 1, 5, 6, 8, 11, 12, 13, 25, 28, 29, 30, 31, 32, 34, 35], "rigor": [0, 28, 29, 30], "ring": 6, "rise": [0, 28], "risk": [0, 13, 28, 30, 31], "rival": 4, "river": [], "rlm": 28, "rm": [25, 31], "rmse": [], "rmsporp": [13, 31], "rmsprop": [1, 3, 4, 13, 23, 32, 35], "rnd_clf": 10, "rng": [25, 33, 34], "rnn": [4, 12, 34, 35], "rnn1": 4, "rnn2": 4, "rnn_2layer": 4, "rnn_input": 4, "rnn_output": 4, "rnn_train": 4, "rntrick1": 25, "rntrick2": 25, "rntrick3": 25, "rntrick4": 25, "ro": [0, 13, 28, 30, 31], "robert": [19, 23, 27], "robust": [0, 28, 31], "robustscal": [0, 29, 31], "roc": [7, 10], "role": [0, 2, 5, 6, 8, 18, 21, 23, 28, 29, 30, 31, 32, 33, 35], "roll": 6, "ronach": [], "room": [0, 26, 28], "root": [0, 5, 9, 13, 15, 25, 29, 30, 31, 35], "root_directori": [], "rot": 28, "rotat": [1, 8, 9, 10], "rotation_matrix": 9, "roughli": [1, 3, 18], "round": [7, 9, 13, 34], "routin": [13, 22, 28, 30], "row": [0, 1, 2, 5, 6, 9, 11, 16, 22, 28, 29, 30, 32], "rr": [5, 29, 30], "rrr": [5, 29, 30], "rubric": [], "rudg": [], "rug": [13, 30, 31], "rule": [0, 1, 5, 6, 13, 23, 28, 29, 30, 34], "run": [0, 1, 2, 4, 5, 6, 8, 9, 11, 13, 15, 20, 21, 23, 28, 29, 30, 31, 32, 33], "runtim": [1, 6, 14, 15], "rust": [0, 21, 22, 28], "rvert": 1, "rvert_2": 1, "s_": [3, 6], "s_1": 6, "s_i": [6, 7, 33], "s_j": 6, "s_k": 6, "s_phenomenon": 23, "saddl": [13, 30, 31], "safeguard": [18, 31], "sai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "said": [6, 9, 13, 30], "sake": [0, 5, 7, 11, 28, 29, 30, 33, 34, 35], "sale": [0, 28], "sam": 28, "same": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 18, 20, 22, 23, 25, 28, 29, 30, 34, 35], "samm": 10, "sampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 18, 19, 21, 22, 23, 25, 28, 29, 31, 32, 33, 34], "sample_vari": 14, "sampleexptvari": 25, "samples_per_class": [33, 34], "samwis": 28, "sandbox": [], "sasha": [], "sastri": 11, "satisfactori": [0, 28], "satisfi": [1, 2, 3, 6, 8, 13, 22, 25, 30, 32], "satur": [1, 6, 32, 33], "save": [0, 4, 6, 7, 9, 13, 20, 28, 31, 32, 33], "save_fig": [0, 6, 7, 9, 10, 28, 32, 33], "savefig": [0, 4, 6, 7, 9, 25, 28, 32, 33], "savetxt": 4, "saw": [5, 29], "scalabl": 10, "scalar": [2, 5, 6, 10, 29, 32, 35], "scale": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 21, 22, 23, 26, 28, 30, 33, 34], "scale_mean": 4, "scale_std": 4, "scaler": [0, 7, 8, 9, 10, 11, 17, 23, 29], "scan": [5, 7, 33, 34], "scari": 5, "scatter": [0, 1, 6, 7, 8, 9, 14, 15, 17, 28, 29, 31, 32, 33], "scenario": [6, 13, 30, 31], "schedul": [13, 31], "scheme": [1, 13, 30, 31, 33, 34], "schrage": 25, "sch\u00f8yen": [6, 29, 31], "scienc": [0, 1, 10, 12, 13, 21, 24, 25, 26, 27, 30, 32, 33, 34, 35], "scientif": [0, 20, 21, 23, 28, 33, 34], "scientist": [0, 28], "scikit": [3, 5, 6, 8, 9, 10, 13, 15, 16, 20, 21, 22, 23, 27], "scikit_learn": [0, 34], "scikitlearn": 28, "scikitplot": [7, 10, 34], "scipi": [0, 3, 5, 6, 13, 21, 22, 23, 28, 29, 30, 32], "scl": 6, "scm": 15, "score": [0, 1, 3, 6, 7, 9, 10, 11, 15, 16, 19, 23, 26, 28, 29, 31, 32, 33, 34], "scores_kfold": [6, 32, 33], "scratch": [1, 13, 16, 34, 35], "script": [], "sdg": [13, 31], "sdv4f4s2sb8": [30, 31], "seaborn": [0, 1, 3, 6, 7, 28, 34], "seamless": [0, 21, 23, 28], "search": [0, 1, 3, 5, 9, 13, 15, 28, 30, 31], "sebastian": [28, 35], "sebastianraschka": 28, "sec": 6, "second": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 25, 26, 28, 29, 30, 32, 33, 34, 35], "second_mo": 31, "second_term": 31, "secondari": 31, "secondeigvector": 11, "secondli": [12, 35], "section": [4, 11, 16, 20, 22, 23, 25, 29, 31, 33], "sector": 0, "see": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "seed": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 18, 20, 23, 25, 28, 29, 30, 31, 32, 33, 35], "seed_imag": 4, "seek": [1, 2, 8], "seem": [1, 3, 4, 31], "seemingli": [0, 28], "seen": [0, 1, 3, 5, 10, 12, 25], "segment": [13, 30], "seismic": 6, "seldomli": [0, 28], "select": [1, 5, 6, 8, 9, 10, 11, 15, 20, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "selevet": 15, "self": [1, 5, 29, 33, 34], "sell": 4, "semest": [7, 24, 34], "semi": [8, 13, 30, 31], "semilogx": 6, "send": [5, 12, 13, 26, 28, 34, 35], "senior": [24, 26], "sens": [0, 4, 6, 8, 28, 32], "sensibl": 3, "sensit": [0, 5, 6, 9, 13, 28, 29, 31, 32, 33], "sent": [2, 35], "sentdex": [34, 35], "sentenc": [4, 12, 34, 35], "separ": [0, 1, 2, 4, 6, 8, 9, 12, 14, 18, 21, 23, 25, 28, 31, 32, 34, 35], "septemb": [18, 23, 28], "sequenc": [3, 4, 7, 9, 10, 12, 13, 21, 22, 25, 28, 30, 33, 34, 35], "sequenti": [1, 3, 4, 10, 12, 25, 34, 35], "seri": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 22, 28, 29, 30, 32, 34, 35], "serif": [7, 25, 28, 33], "serv": [0, 1, 2, 3, 5, 7, 13, 27, 28, 29, 30, 31, 33, 34], "servic": 23, "session": [1, 15, 20, 23, 24, 26, 28], "set": [1, 4, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 21, 22, 23, 25, 26, 31, 32, 33, 34], "set_major_formatt": 6, "set_major_loc": 6, "set_tick": [1, 8], "set_ticklabel": 1, "set_titl": [0, 1, 2, 3, 7, 12, 14, 28, 33, 34], "set_xlabel": [0, 1, 2, 3, 7, 12, 28, 33, 34], "set_xlim": [7, 12, 33, 34], "set_xticklabel": 1, "set_ylabel": [0, 1, 2, 3, 7, 28, 34], "set_ylim": [7, 12, 33, 34], "set_ytick": [7, 34], "set_yticklabel": [1, 6], "set_zlim": 6, "seth": 4, "setminu": 6, "setosa": [8, 9], "setosa_or_versicolor": 8, "setp": [6, 32, 33], "setup": [1, 4, 6, 8, 21, 28, 29, 30, 35], "sever": [0, 3, 5, 6, 7, 8, 9, 11, 12, 13, 16, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "sgd": [1, 3, 30], "sgd_clf": 8, "sgdclassifi": 8, "sgdreg": 13, "sgdregressor": 13, "sgn": [5, 29, 30], "shall": [], "shallow": [13, 31], "shape": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 22, 28, 29, 30, 31, 32, 33, 34, 35], "share": [1, 3, 15, 28], "share_mask": [], "shareabl": 15, "she": [7, 33, 34], "sheppard": [], "shibukawa": [], "shift": [1, 6, 12, 15, 18, 25, 29, 31, 34], "ship": 3, "shire": 28, "short": [4, 5, 20, 23], "shortcom": [13, 30, 31], "shorten": 4, "shorter": 25, "shorthand": [28, 32], "shortli": [22, 28], "should": [0, 2, 3, 5, 6, 8, 9, 11, 12, 15, 18, 19, 20, 22, 23, 25, 28, 29, 31, 32, 33, 35], "shouldn": [], "show": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "show_shap": 4, "shown": [0, 4, 5, 8, 12, 13, 22, 29, 30, 31, 34, 35], "shrink": [3, 5, 6, 8, 11, 29, 30, 31], "shrinkag": [5, 6, 29, 30], "shrunk": 11, "shuffl": [0, 1, 4, 6, 13, 29, 31, 32, 33], "sickit": 35, "side": [0, 2, 5, 8, 12, 13, 22, 23, 28, 30, 33, 34], "sigh": [21, 28], "sigma": [0, 1, 5, 6, 7, 10, 11, 12, 13, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "sigma0": 25, "sigma1": 25, "sigma2": 25, "sigma_": [5, 22, 28, 29, 30, 32], "sigma_0": [5, 29, 30], "sigma_1": [5, 29, 30, 35], "sigma_2": [5, 29, 30, 35], "sigma_fn": [7, 12, 33, 34], "sigma_i": [0, 5, 28, 29, 30], "sigma_j": [5, 29, 30], "sigma_m": [6, 25, 32], "sigma_n": [11, 25], "sigma_t": 13, "sigma_x": 25, "sigmoid": [1, 2, 4, 7, 8, 10, 12, 33, 34, 35], "sigmundson": [6, 29, 31], "sign": [1, 2, 7, 8, 10, 25, 26, 33], "signal": [1, 3, 10, 12, 31, 34, 35], "signifi": 4, "signific": [1, 31], "significantli": [1, 13, 18, 25, 30, 31], "sim": [4, 5, 6, 13, 19, 25, 32], "similar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 18, 21, 22, 23, 28, 30, 32, 33, 34, 35], "similarli": [0, 1, 3, 5, 8, 10, 13, 25, 28, 29, 30, 31, 35], "simpl": [1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 21, 22, 25, 32, 34], "simple_plot": [], "simplepredict": 10, "simpler": [0, 1, 5, 6, 7, 13, 16, 21, 23, 28, 30, 31], "simplernn": 4, "simplest": [0, 1, 3, 4, 9, 10, 12, 14, 23, 28, 34, 35], "simpletre": 10, "simpli": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 21, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "simplic": [2, 5, 6, 7, 8, 9, 10, 11, 12, 14, 29, 30, 31, 33, 34, 35], "simplicti": [5, 29, 30], "simplif": 35, "simplifi": [0, 6, 9, 18, 21, 23, 28, 29, 31, 32, 33, 35], "simplist": [3, 6, 25, 32], "simul": [6, 18, 31, 32, 33], "simultan": [6, 31, 32, 33], "sin": [0, 1, 2, 3, 4, 9, 12, 13, 22, 28, 34], "sinc": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "sine": [3, 12, 34], "singl": [0, 1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 18, 19, 22, 25, 28, 29, 30, 31, 32, 33], "singular": [0, 6, 13, 22, 28, 32], "sinusoid": 3, "site": [0, 23, 24, 29], "situat": [0, 4, 5, 7, 13, 25, 28, 29, 30, 31, 33, 34], "six": [3, 25, 35], "size": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 18, 20, 22, 23, 25, 28, 32, 33, 34, 35], "sizesp": 31, "sketch": 10, "ski": 9, "skill": 0, "skip": 11, "skl": [0, 6, 28, 29, 31], "sklearn": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 28, 29, 30, 31, 32, 33, 34], "skplt": [7, 10, 34], "sl": [6, 29, 31], "slack": 8, "slender": [], "slice": [2, 22, 28], "slide": [0, 3, 16, 23, 25, 28, 29, 30, 35], "slight": [6, 13, 32, 33], "slightli": [1, 2, 3, 5, 6, 7, 10, 25, 29, 30, 32, 33, 34, 35], "slope": [8, 11, 12, 34], "slow": [0, 2, 8, 13, 18, 29, 30, 31], "slower": [5, 22, 28, 29, 30, 31], "slowest": 22, "slowli": [12, 31], "slp": 1, "small": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 18, 21, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "smaller": [0, 1, 2, 5, 6, 8, 9, 11, 13, 25, 28, 29, 30, 31, 32, 33], "smallest": [0, 4, 14, 28], "smallest_row_index": 14, "smodin": [], "smooth": [0, 3, 6, 13, 23, 28, 30, 31], "smoother": 31, "sn": [0, 1, 3, 6, 7, 28, 34], "sne": 11, "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "soar": 6, "social": 0, "soft": [1, 7, 10, 12, 33, 34, 35], "soften": 8, "softmax": [3, 7, 33, 34], "softwar": [0, 8, 21, 22, 35], "sokogskriv": 20, "sol": 8, "sole": [0, 6, 28], "solid": [0, 7, 33, 34], "solut": [0, 1, 2, 3, 5, 6, 8, 10, 11, 13, 18, 22, 23, 25, 28, 29, 30, 31, 32], "solution_ev": 31, "soluton": 2, "solv": [0, 1, 3, 5, 6, 8, 10, 11, 12, 13, 16, 22, 23, 28, 29, 35], "solve_expdec": 2, "solve_ode_deep_neural_network": 2, "solve_ode_neural_network": 2, "solve_pde_deep_neural_network": 2, "solveod": 2, "solveode_popul": 2, "solver": [2, 7, 8, 9, 10, 22, 28, 34], "some": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 23, 25, 28, 31, 32, 34], "some_model": [6, 29, 31], "somehow": 4, "someon": 16, "someth": [0, 1, 3, 4, 7, 9, 11, 15, 19, 20, 23, 25, 28, 29, 34], "sometim": [0, 1, 11, 12, 13, 14, 19, 29, 31, 34, 35], "somewhat": 34, "soon": [22, 26, 29], "sophist": [0, 28], "sopt": 13, "sort": [5, 6, 9, 11, 25, 32, 33], "sound": [3, 5], "sourc": [0, 1, 3, 6, 21, 22, 23, 25, 28, 31, 32, 33], "space": [0, 1, 4, 5, 8, 9, 11, 12, 13, 14, 25, 29, 30, 31, 33, 34, 35], "span": [0, 3, 5, 9, 11, 22, 28, 29, 30], "spare": 1, "spars": [3, 6, 18, 22, 28, 31], "sparse_mtx": [22, 28], "sparsecategoricalcrossentropi": 3, "sparsiti": [10, 18], "spatial": [1, 2, 3, 12, 34, 35], "speak": 25, "special": [6, 7, 10, 12, 13, 22, 25, 28, 29, 30, 31, 33, 34, 35], "specif": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 21, 22, 23, 25, 27, 28, 29, 30, 32, 33, 34, 35], "specifi": [0, 3, 5, 6, 7, 9, 11, 13, 14, 25, 28, 30, 31, 32, 33, 34], "specifici": [0, 10, 28], "spectacular": 3, "spectral": 1, "speech": [0, 1, 3, 4, 12, 34, 35], "speed": [1, 2, 4, 13], "spend": [16, 25, 31], "spent": 23, "sphere": [0, 29, 31], "sphinx": [], "sphinx_book_them": [], "sphinxcontrib": [], "spike": 31, "spin": 6, "spite": 0, "spitzer": [], "spline": 8, "split": [1, 3, 4, 5, 6, 8, 9, 10, 11, 14, 16, 17, 20, 23, 25, 28, 30, 31, 32, 33], "splite": 0, "splitter": [1, 10], "spoiler": [], "spontan": 25, "spot": 3, "spread": [0, 11, 25, 28, 29, 33, 34], "springer": [19, 23, 27, 28, 32, 33], "spuriou": [13, 31], "sqquar": 30, "sqrsignal": 3, "sqrt": [3, 4, 5, 6, 8, 10, 11, 13, 25, 29, 30, 31, 32, 35], "squar": [1, 2, 3, 4, 7, 8, 9, 11, 13, 14, 15, 17, 18, 21, 22, 25, 32, 33, 34, 35], "squarederror": 10, "squaredeuclidean": 14, "squash": [12, 34], "src": [], "srtm": 6, "srtm_data_norway_1": 6, "sso": 20, "stabil": [5, 23, 31, 33, 34], "stabl": [0, 4, 5, 6, 9, 16, 20, 21, 23, 28, 29, 30, 31], "stack": [3, 4], "stage": [5, 13, 15, 23, 31, 35], "stagnat": 31, "stai": [0, 2, 4, 5, 11, 28, 29, 31], "stand": [0, 5, 9, 12, 28, 29, 30, 34], "standard": [0, 1, 4, 5, 6, 7, 8, 10, 12, 17, 18, 19, 22, 23, 25, 28, 30, 31, 33, 34, 35], "standardscal": [0, 6, 7, 8, 9, 10, 11, 17, 29, 31], "standpoint": 31, "stanford": [13, 30], "start": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 22, 25, 26, 28, 29, 30, 31, 32, 33, 35], "start_tim": 14, "starter": [], "stat": [6, 32], "state": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 13, 21, 25, 28, 29, 30, 32, 33, 34, 35], "statement": [0, 7, 22, 28, 34], "static": [], "stationari": [30, 31], "statist": [0, 1, 3, 4, 7, 9, 10, 11, 12, 13, 14, 19, 22, 23, 27, 29, 30, 31, 34, 35], "statu": [0, 7, 15, 28, 33, 34], "stavang": 6, "stb": [], "std": [0, 4, 6, 18, 28, 29, 31, 32, 33], "steep": [13, 30, 31], "steepest": 31, "stefan": [], "step": [0, 1, 2, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 22, 23, 28, 30, 34, 35], "step_fn": [7, 12, 33, 34], "step_length": [13, 31], "step_siz": 31, "steps_list": 9, "stereo": 3, "sticki": [], "still": [0, 2, 3, 5, 6, 11, 13, 25, 29, 30, 31, 32, 33, 35], "stimuli": [12, 34, 35], "stk": [27, 28], "stk2100": [27, 28], "stk3155": [15, 23, 24, 26], "stk4021": [27, 28], "stk4051": [27, 28], "stk4155": [24, 26], "stk5000": 27, "stochast": [0, 1, 5, 6, 8, 11, 12, 30, 32, 33, 35], "stock": 4, "stoke": [12, 34, 35], "stone": [0, 7, 33, 34, 35], "stop": [1, 4, 9, 13, 14, 18, 30, 35], "storag": [5, 29, 30], "store": [0, 1, 2, 3, 6, 11, 13, 25, 28, 31], "storehaug": [26, 28], "stori": [], "str": [1, 3, 4], "straight": [0, 6, 8, 13, 28, 30, 32], "straightforward": [0, 2, 3, 5, 6, 8, 9, 10, 13, 22, 28, 29, 30, 32], "strategi": [0, 1, 9, 28], "stratifi": [6, 32, 33], "stream": 31, "strength": [0, 5, 14, 29, 30], "stretch": 11, "strict": [8, 13, 30], "strictli": [8, 13, 30], "stride": [4, 22], "strike": 6, "string": 1, "stroke": [7, 33, 34], "strong": [3, 6, 9, 10, 12, 22, 25, 31, 32, 34, 35], "strongli": [0, 8, 15, 20, 21, 22], "stronli": [], "structur": [0, 1, 2, 3, 6, 9, 10, 12, 21, 28, 32, 33, 34], "stuck": [1, 13, 30, 31], "student": [0, 15, 23, 24, 26, 27, 28], "studi": [0, 3, 4, 5, 6, 7, 8, 11, 12, 13, 21, 23, 27, 28, 29, 30, 31, 33, 35], "studier": 27, "style": [7, 9, 20, 22, 28], "stylesheet": [], "st\u00f8land": 26, "sub": [9, 12, 31, 34, 35], "subarrai": [], "subclass": [], "subdivid": [0, 22, 28], "subfield": 0, "subgradi": 31, "subject": [6, 8, 25], "sublicens": [], "sublinear": 31, "submit": 28, "subplot": [0, 1, 3, 4, 6, 7, 8, 9, 10, 14, 28, 32, 33, 34], "subplots_adjust": [8, 25], "subprogram": [22, 28], "subproject": [], "subract": [0, 29], "subroutin": [0, 28], "subscript": 1, "subsequ": [1, 4, 5, 6, 12, 22, 25, 29, 30, 32, 34, 35], "subset": [1, 6, 9, 12, 13, 21, 28, 30, 31, 32, 33, 34, 35], "subspac": [0, 8, 11, 29], "substanti": [9, 10, 31], "substep": 11, "substitut": [3, 6, 12, 16, 22, 32, 33, 34], "subsubset": 9, "subtask": 6, "subtl": 1, "subtract": [0, 4, 5, 6, 11, 13, 18, 19, 22, 23, 25, 29, 31, 32, 33], "subtre": 9, "succeed": [0, 4, 28], "success": [3, 7, 9, 13, 25, 33, 34], "successfulli": [4, 9], "succinctli": 31, "sudo": [0, 21, 23, 28], "suffer": [0, 1, 2, 5, 10, 28, 29, 30], "suffici": [1, 6, 8, 11, 13, 30, 32, 33], "suggest": [1, 13, 23, 27, 30, 31], "suit": [8, 12, 34, 35], "suitabl": [0, 15, 19, 25, 29, 31], "sum": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 22, 25, 28, 29, 30, 31, 34], "sum_": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "sum_i": [0, 2, 5, 6, 8, 13, 19, 23, 29, 30, 31, 32, 33], "sum_j": [6, 18, 31], "sum_ja_": 0, "sum_k": [6, 8, 12, 22, 35], "sum_logist": 13, "sum_m": 3, "sum_n": 3, "sum_nx_": 3, "summar": [5, 6, 9, 32, 33], "summari": [1, 3, 4, 10, 24, 30, 31], "summat": [0, 3, 16, 29, 30], "sunni": 9, "super": [5, 29, 30, 31], "superfici": 3, "superscript": [1, 12, 34, 35], "supervis": [0, 5, 6, 7, 9, 12, 21, 28, 29, 30, 32, 33, 34, 35], "supplement": [7, 23, 33, 34], "suppli": [], "support": [0, 1, 9, 10, 11, 13, 20, 21, 28, 29, 31, 33, 34, 35], "suppos": [0, 5, 6, 7, 8, 10, 11, 12, 13, 22, 28, 29, 30, 31, 32, 33, 34, 35], "suppress": [5, 13, 30], "sure": [0, 1, 4, 6, 16, 20, 23], "surf": 6, "surfac": [0, 6, 28, 31], "surpass": 6, "surpris": [0, 28], "surround": [3, 21], "survei": [0, 5, 6, 28, 29], "svc": [8, 9, 10], "svd": [0, 6, 11, 28, 32], "svdinv": 5, "svm": [8, 9, 10, 11], "svm_clf": [8, 10], "svn": [], "swath": [5, 29, 30], "switch": 0, "sy": [13, 30, 31], "symbol": [1, 5, 11, 13, 21, 25, 28, 29, 30, 35], "symmeteri": 1, "symmetr": [0, 5, 8, 11, 12, 13, 22, 28, 29, 34, 35], "symmetri": 6, "sympi": [0, 21, 23, 28, 35], "synonim": 25, "syntax": 13, "system": [0, 1, 3, 4, 6, 7, 9, 10, 12, 13, 15, 21, 22, 23, 28, 30, 31, 33, 34, 35], "systemat": [4, 6, 32, 33], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 28, 30, 31, 32, 33, 34, 35], "t0": [3, 6, 13, 31], "t1": [2, 13, 31], "t2": 2, "t3": 2, "t9jjwsmsd1o": 32, "t_": 2, "t_0": [2, 9, 13, 31], "t_1": [13, 31], "t_b": 10, "t_i": [1, 2, 5, 12, 29, 30], "t_j": 12, "t_k": 9, "tabl": [9, 23, 25, 26, 28, 34], "tabul": [0, 28], "tabular": 28, "tackl": 4, "tag": [2, 3, 4, 5, 6, 7, 12, 13, 14, 22, 25, 29, 30, 33, 34, 35], "tagrget": 35, "taht": [0, 28], "tail": 25, "tailor": [2, 8, 11, 28, 35], "taiwan": [0, 28], "take": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 21, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "taken": [0, 1, 3, 6, 10, 13, 22, 32], "tan": 3, "tangent": [1, 4, 12, 13, 30, 34], "tanh": [1, 4, 7, 8, 12, 33, 34], "target": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 19, 28, 29, 30, 31, 32, 33, 34, 35], "target_nam": 9, "task": [0, 1, 3, 6, 9, 11, 12, 14, 23, 28, 31, 32, 33, 34, 35], "tau": [3, 5, 25], "taught": 28, "tax": [], "taylor": [2, 13, 30, 35], "taylornr": [13, 30], "tc": 8, "teach": [15, 24, 28, 32], "team": 1, "teaser": 0, "technic": [0, 5, 6, 13, 23, 30, 31, 32], "techniqu": [0, 1, 8, 10, 13, 21, 25, 27, 28, 29, 31, 32, 33], "technologi": [0, 1], "tell": [0, 4, 6, 10, 11, 13, 16, 25, 31, 32, 33], "temp": 1, "temp1": 1, "temp2": 1, "temperatur": [0, 9, 28], "templat": [18, 20], "temporari": [], "temporarili": 1, "ten": [3, 28, 35], "tend": [3, 5, 6, 8, 9, 10, 12, 13, 14, 29, 31, 32, 33], "tendenc": [0, 28], "tension": [6, 32, 33], "tensor": 3, "tensorflow": [0, 2, 4, 8, 14, 21, 22, 23, 27, 28, 29], "term": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 23, 25, 28, 29, 30, 31, 33, 34], "term1": [5, 6, 11], "term2": [5, 6, 11], "term3": [5, 6, 11], "term4": [5, 6, 11], "termin": [0, 4, 5, 9, 10, 13, 15, 29, 30, 31], "terminarl": 15, "terrain": 6, "terrain1": 6, "test": [3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 19, 20, 22, 23, 25, 28, 30, 31, 32, 33, 34], "test_acc": 3, "test_accuraci": [1, 3], "test_error": 6, "test_imag": [3, 4], "test_ind": [6, 32, 33], "test_input": 4, "test_label": [3, 4], "test_loss": 3, "test_pr": 1, "test_predict": 1, "test_rnn": 4, "test_scor": [7, 10, 34], "test_siz": [0, 1, 3, 5, 6, 10, 15, 17, 29, 30, 31, 32, 33], "test_split": 9, "testerror": [0, 6, 29, 32, 33], "testi": 4, "testpredict": 4, "testx": 4, "tex": [], "text": [0, 1, 2, 4, 5, 8, 9, 11, 13, 15, 18, 20, 22, 23, 25, 27, 29, 30, 31, 32, 33], "textbf": [], "textbook": [16, 23, 29, 30, 32, 33], "textual": 9, "textur": 1, "tf": [1, 3, 4, 13, 14, 30], "th": [0, 1, 2, 5, 6, 7, 9, 12, 13, 14, 22, 23, 25, 28, 29, 31, 32, 33, 34, 35], "than": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 17, 21, 25, 28, 29, 31, 32, 33, 34, 35], "thank": [4, 6, 29, 31], "theano": [1, 21, 28], "thei": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 18, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "them": [0, 1, 3, 4, 6, 8, 9, 10, 11, 12, 13, 18, 22, 23, 28, 29, 34, 35], "theme": [0, 15, 28], "themselv": [0, 23, 25, 28, 31], "thenc": [6, 32, 33], "theorem": [2, 6, 7, 29, 30, 33, 34], "theoret": [0, 4, 10], "theori": [0, 1, 3, 8, 9, 12, 13, 19, 21, 23, 27, 28, 31, 34, 35], "thereaft": [0, 5, 6, 11, 12, 22, 23, 28, 32, 33, 35], "therebi": [0, 5, 7, 11, 23, 28, 29, 30, 33, 34, 35], "therefor": [0, 1, 2, 3, 4, 6, 7, 8, 11, 13, 19, 25, 28, 29, 30, 31, 32, 33, 34], "therein": 11, "thereof": [0, 6, 13, 28, 31, 32], "theta": [0, 1, 4, 5, 6, 7, 13, 16, 23, 25, 28, 29, 30, 31, 33, 34, 35], "theta1": 31, "theta2": 31, "theta_": [0, 1, 6, 7, 13, 28, 29, 30, 31, 33, 34], "theta_0": [0, 5, 6, 7, 16, 28, 29, 30, 31, 33, 34], "theta_0x_": [0, 28, 29], "theta_1": [0, 5, 6, 7, 28, 29, 30, 31, 33, 34], "theta_1x_": [0, 28, 29], "theta_1x_0": [0, 28], "theta_1x_1": [0, 7, 28, 33, 34], "theta_1x_2": [0, 28], "theta_1x_i": [7, 29, 30, 31, 33, 34], "theta_2": [0, 28, 29], "theta_2x_": [0, 28, 29], "theta_2x_0": [0, 28], "theta_2x_1": [0, 28], "theta_2x_2": [0, 7, 28, 33, 34], "theta_2x_i": 29, "theta_3x_i": 29, "theta_4x_i": 29, "theta_closed_form": 18, "theta_closed_formol": 18, "theta_closed_formridg": 18, "theta_gdol": 18, "theta_gdridg": 18, "theta_i": [0, 1, 5, 28, 29, 30], "theta_j": [0, 5, 6, 18, 28, 29, 31], "theta_k": [30, 31], "theta_linreg": [13, 30, 31], "theta_ol": 18, "theta_p": [7, 33, 34], "theta_px_p": [7, 33, 34], "theta_ridg": 18, "theta_t": [13, 31], "theta_tru": 18, "thetaand": 34, "thetaith": 31, "thetaor": 34, "thetavalu": 5, "thetaxor": 34, "thi": [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, 27, 29, 30, 31, 32, 33, 34], "thing": [0, 1, 2, 4, 5, 7, 9, 15, 16, 18, 25, 28, 32, 34], "think": [0, 1, 3, 4, 6, 9, 12, 13, 14, 25, 28, 29, 30, 31, 32, 34], "third": [0, 3, 6, 13, 26, 28, 30, 31], "thirti": [7, 34], "thorughout": 28, "those": [0, 3, 5, 6, 8, 9, 10, 11, 22, 23, 28, 29, 30, 31, 32, 33, 35], "though": [1, 2, 3, 4, 13, 16, 17, 19, 22, 25, 31], "thought": [6, 14, 23, 25, 32, 33], "thousand": [0, 1, 23, 29, 31], "three": [0, 1, 3, 5, 6, 8, 9, 12, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34], "threshold": [1, 3, 9, 10, 11, 12, 13, 31, 33, 34, 35], "through": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 13, 14, 15, 21, 22, 23, 25, 28, 29, 30, 31, 32, 34], "throughout": [0, 4, 5, 14, 15, 21, 22, 25, 28], "throw": [3, 6, 25, 32], "thu": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 26, 28, 29, 30, 31, 32, 33, 34, 35], "thumb": [0, 6, 23, 29], "thursdai": [], "tibshirani": [6, 19, 23, 27, 28, 32, 33], "tick_param": 6, "ticker": [6, 13, 25, 30, 31], "tif": 6, "tight_layout": [1, 7, 34], "tightli": 11, "tild": [0, 5, 6, 7, 11, 19, 23, 25, 28, 29, 30, 31, 32, 33, 35], "till": [0, 4, 7, 8, 9, 10, 12, 22, 28, 29, 33, 34, 35], "time": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 28, 29, 30, 32, 33, 34, 35], "timeit": 4, "timer": 4, "timeseri": [], "tini": [1, 31], "tip": 3, "titl": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 15, 20, 25, 28, 30, 31, 32, 33], "tm": [], "tmp": 13, "tn": [2, 3, 7], "to_categor": [1, 3, 4], "to_categorical_numpi": 1, "to_numer": [0, 6, 28, 32, 33], "todai": 3, "togeth": [0, 3, 6, 8, 11, 13, 21, 28], "toi": 14, "token": [], "told": 13, "toler": [2, 14], "tolist": 4, "tomographi": [12, 34, 35], "too": [0, 2, 4, 5, 6, 9, 11, 13, 17, 18, 25, 27, 29, 30, 31, 32, 33], "took": [8, 28], "tool": [0, 1, 3, 6, 13, 15, 21, 29, 32, 33], "toolbox": 8, "top": [0, 3, 5, 6, 9, 10, 19, 21, 28, 32], "topic": [0, 5, 6, 7, 8, 21, 23, 29, 30, 32, 33, 34, 35], "topolog": [3, 12, 34, 35], "topologi": [1, 12], "torkjellsdatt": [26, 28], "tort": [], "toss": [10, 25], "total": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 22, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "total_loss": 4, "totalclustervari": 14, "totalscatt": 14, "toward": [1, 2, 7, 12, 13, 15, 30, 33, 34], "towardsdatasci": 31, "town": [], "tp": [4, 7], "tpng": 9, "tpu": [13, 21, 28], "tqdm": 6, "tr": [], "track": [3, 13, 14, 15, 22, 29, 30, 31], "tract": [], "tractabl": [0, 28, 29], "trade": [5, 9, 20, 31, 32], "tradeoff": [0, 5, 19, 23, 28, 29, 30], "tradit": [0, 1, 4, 6, 28, 32, 33], "train": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 16, 17, 20, 23, 30, 31, 32, 33, 34], "train_accuraci": [0, 1, 3, 28], "train_dataset": 4, "train_end": [0, 1, 29], "train_error": 6, "train_imag": [3, 4], "train_ind": [6, 32, 33], "train_label": [3, 4], "train_pr": 1, "train_siz": [0, 1, 3, 29], "train_step": 4, "train_test_split": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 28, 29, 30, 31, 32, 33, 34], "train_test_split_numpi": [0, 1, 29], "trainable_vari": 4, "trained_model": [6, 29, 31], "trainerror": [0, 29], "traini": 4, "training_checkpoint": 4, "training_dataset": 4, "training_gradi": [13, 31], "trainingerror": [6, 32, 33], "trainpredict": 4, "trainscor": 4, "trainx": 4, "trait": [0, 28], "trajectori": [4, 31], "transfer": [9, 28], "transform": [0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 21, 22, 28, 29, 30, 31, 32, 33, 34, 35], "transit": [6, 12, 34, 35], "translat": [1, 4, 6, 10, 28, 29, 31], "transpos": [1, 5, 11, 22, 29, 30], "travers": [0, 5], "travi": [], "treat": [0, 1, 3, 6, 12, 13, 18, 25, 28, 29, 30, 31, 32, 33, 34, 35], "tree": [0, 1, 21, 28], "tree_clf": [9, 10], "tree_clf_": 9, "tree_clf_sr": 9, "tree_reg": 9, "tree_reg1": 9, "tree_reg2": 9, "trend": 25, "treue": 7, "trevor": [19, 23, 27], "tri": [2, 3, 4, 9, 13, 16, 31], "triain": 0, "trial": [0, 2, 4, 6, 13, 25, 28, 30, 31, 32, 33], "triangl": [13, 30], "triangular": 22, "trick": [3, 4, 8, 11, 13, 25, 31], "trickier": 25, "tridiagon": 22, "trillion": 21, "trim": [], "trivial": [0, 1, 5, 11, 25, 28, 30], "troffa": [], "troubl": [0, 8, 12, 15, 29, 31, 35], "truck": 3, "true": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34], "true_beta": 29, "true_fun": [6, 32, 33], "true_theta": [6, 31], "truelabel": [33, 34], "truli": 28, "truncat": 35, "try": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 18, 21, 22, 23, 25, 28, 29, 30, 31, 33, 34, 35], "tr\u00f6ger": [], "tucker": 8, "tuesdai": [26, 28, 33], "tumor": [7, 9, 33, 34], "tumour": [7, 34], "tunabl": 1, "tune": [4, 9, 13, 22, 28, 31], "turn": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "tutori": [1, 4], "tv": 2, "tveito": 2, "tvw1zdmznwm": 34, "tweak": [1, 4, 10, 25], "twice": [13, 30], "twist": 11, "two": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32], "tx": [13, 30, 31, 34], "tx_1": [13, 30], "txt": [4, 15, 20, 23], "ty": [13, 30], "type": [0, 1, 3, 6, 8, 10, 13, 22, 25, 29, 30, 31, 32], "typeset": 20, "typic": [0, 1, 2, 3, 4, 5, 7, 9, 10, 12, 13, 15, 16, 20, 25, 28, 29, 30, 31, 32, 33, 34, 35], "typo": 23, "u": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "u_": 22, "u_i": [12, 34], "u_m": 10, "ua": [0, 28], "ubuntu": [0, 21, 23, 28], "uci": 23, "ufunc": [], "uio": [15, 20, 23, 26, 27], "uk": [], "un": 14, "unabl": 15, "unari": [22, 28], "unbalanc": [6, 9, 32, 33], "unbias": [0, 5, 6, 28, 32], "uncent": [6, 29, 31], "uncertainti": [0, 5, 28], "uncertitud": 25, "unchang": [1, 3], "uncom": [], "uncorrel": [10, 25], "undefin": [5, 29, 30], "under": [0, 1, 5, 6, 10, 13, 21, 23, 28, 29, 30, 31, 32], "underdetermin": [0, 28], "underfit": [1, 6, 32, 33], "underflowproblem": [5, 32], "undergo": 5, "undergradu": [24, 26], "underli": [0, 1, 9, 13, 18, 25, 28, 31], "underlin": [], "underscor": [], "underset": [4, 14], "understand": [0, 1, 3, 5, 6, 10, 13, 14, 15, 19, 20, 21, 28, 29, 30, 31, 35], "understood": [8, 13], "underwai": [], "undesir": 8, "undetermin": [5, 8, 32], "undo": 4, "unexpect": [6, 32], "unexpected": 25, "unexplain": 18, "unfair": [6, 29], "unfortun": [1, 8, 9, 10], "unicode_liter": [8, 9], "uniform": [0, 1, 5, 6, 11, 13, 23, 25, 28, 30, 31, 33, 34], "uniformli": [13, 25, 30, 31], "unifrompdf": 25, "unimport": [13, 30], "union": [5, 6, 32, 33], "uniqu": [0, 2, 6, 13, 14, 22, 28, 32, 33, 34], "unique_class": [33, 34], "unique_cluster_label": 14, "unit": [0, 1, 3, 4, 5, 10, 12, 18, 25, 28, 29, 30, 31, 34, 35], "unitari": [5, 6, 22, 29, 30], "unitarili": [22, 28], "uniti": 25, "univari": 25, "univers": [0, 1, 2, 13, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34], "unix": 1, "unknow": [0, 22, 28], "unknown": [0, 1, 3, 4, 5, 6, 8, 10, 13, 19, 22, 23, 28, 29, 30, 31, 32, 33, 35], "unknowwn": 12, "unlabel": 1, "unless": [0, 3, 6, 11, 13, 23, 28, 30, 32, 35], "unlik": [1, 3, 8, 13, 30, 31], "unnecessarili": 9, "unord": 3, "unpickl": [], "unpleas": [], "unpublish": 31, "unravel": 1, "unrol": [3, 11], "unscal": 19, "unseen": [0, 7, 9, 15, 33, 34], "unstabl": 1, "unsupervis": [0, 1, 4, 12, 21, 28, 34, 35], "unsymmetr": [22, 28], "until": [1, 2, 4, 9, 12, 13, 14, 30, 31, 34], "untouch": 0, "unusu": [12, 34, 35], "up": [1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 23, 25, 26, 31, 34], "updat": [1, 2, 10, 12, 13, 14, 15, 18, 19, 32, 33, 34], "uploa": 28, "upload": [15, 20, 21, 23, 27], "upon": [0, 1, 6, 7, 11, 22, 35], "upper": [0, 8, 9, 16, 22, 29], "uppercas": [22, 28], "upsampl": 4, "upscal": 4, "uptad": 35, "upward": [], "url": [28, 29, 34], "us": [4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 17, 20, 22, 25, 27, 32], "usag": [0, 8, 21, 28, 29, 35], "usd": [], "usd10000": [], "use_bia": 4, "usecol": [0, 28], "useless": 1, "user": [0, 1, 2, 4, 6, 7, 15, 21, 22, 23, 28, 29, 33, 34], "usernam": [15, 23], "usetex": 25, "usg": 6, "usr": 25, "usual": [0, 3, 4, 7, 12, 13, 14, 28, 31, 33, 34, 35], "ut": 5, "utf": [], "util": [1, 3, 4, 6, 7, 10, 14, 19, 28, 32, 33], "ux": 22, "v": [2, 4, 5, 6, 11, 13, 15, 21, 29, 30, 32, 33, 34, 35], "v0": 25, "v1": 25, "v2": 25, "v5": [], "v8xr": [34, 35], "v_": 31, "v_0": [11, 31], "v_t": 31, "va": 1, "vahid": 28, "val": 13, "val_accuraci": 3, "val_loss": 4, "vale": 2, "valid": [0, 1, 4, 7, 9, 10, 13, 21, 25, 28, 29, 31, 34], "validation_data": 3, "validation_split": 4, "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 28, 31, 34, 35], "valuat": 9, "valueerror": [], "valy": 4, "van": [0, 19, 23, 28, 29, 30, 31], "vandenbergh": [8, 13, 30], "vandermond": [0, 28], "vanilla": [0, 6, 11, 14, 29, 31], "vanish": [1, 4, 13, 25, 30, 35], "var": [5, 6, 10, 11, 19, 23, 25, 29, 32, 33], "var_x": 25, "varabl": 8, "varepsilon": [5, 6, 19, 32], "varepsilon_": [5, 6, 32], "varepsilon_i": [5, 6, 32], "vari": [0, 1, 3, 5, 6, 10, 28, 32, 33, 35], "variabl": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 14, 22, 28, 29, 31, 32, 33, 34, 35], "varianc": [0, 1, 5, 7, 9, 10, 11, 13, 14, 18, 20, 21, 22, 25, 28, 29, 30, 31, 34], "variance_i": [5, 11, 29], "variance_x": [5, 11, 29], "variant": [0, 1, 6, 8, 12, 13, 28, 29, 30, 31, 34, 35], "variat": [3, 4, 11, 28], "varieti": [0, 3, 12, 21, 23, 28, 34, 35], "variou": [1, 3, 5, 6, 7, 8, 9, 11, 12, 13, 16, 19, 20, 21, 22, 23, 25, 28, 29, 30, 31, 34, 35], "varydimens": 4, "vast": 31, "vastli": 3, "vaue": 1, "vault": 0, "vdot": [2, 13, 30, 31], "ve": [23, 31], "vec": [6, 32], "vector": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 17, 18, 21, 30, 31, 32, 33, 35], "vector_mean": 14, "ventur": [0, 8, 21, 28], "venv": 15, "verbos": [1, 3, 4, 33, 34], "veri": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 23, 25, 27, 28, 29, 30, 31, 32, 33], "verifi": [3, 11, 22, 28], "versatil": [8, 28], "versicolor": [8, 9], "version": [0, 3, 10, 13, 14, 15, 21, 22, 23, 25, 28], "versu": [1, 31], "vert": [0, 1, 5, 6, 7, 8, 9, 11, 13, 16, 17, 28, 29, 30, 31, 32, 33, 34, 35], "vert_1": [5, 6, 29, 30, 31], "vert_2": [5, 6, 11, 17, 29, 30, 31, 32], "via": [0, 5, 6, 7, 8, 9, 10, 11, 12, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "vidal": 11, "video": [0, 1, 12, 21, 24, 26, 28, 29, 30], "view": [1, 3, 5, 6, 12, 13, 25, 27, 28, 30, 31, 32, 34], "violat": 8, "virginica": 9, "viridi": [0, 1, 2, 3, 28], "virtanen": [], "virtual": [1, 31], "viscos": 13, "viscou": 13, "visibl": 15, "vision": [0, 3], "visit": 31, "visual": [0, 3, 11, 12, 18, 21, 28, 29, 34, 35], "visualis": 1, "visualstudio": [15, 16, 19], "viz": [6, 8, 25], "vmap": 13, "vmax": [1, 6], "vmh0zpt0tli": 31, "vmin": [1, 6], "voic": 3, "volatil": 31, "volum": [0, 3, 28], "von": 35, "vote": [10, 28], "voting_clf": 10, "votingclassifi": 10, "votingsimpl": 10, "vscode": [], "vstack": [5, 11, 22, 25, 28, 29, 33, 34], "vt": [5, 29, 30], "w": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "w1": 8, "w2": [8, 11], "w3": 8, "w_": [1, 12, 34, 35], "w_0": 35, "w_1": [8, 22, 35], "w_1a_0": 35, "w_1x": 35, "w_1x_": 8, "w_1x_1": 8, "w_2": [8, 22, 35], "w_2a_1": 35, "w_2x_": 8, "w_2x_2": 8, "w_3": 22, "w_4": 22, "w_hidden": 2, "w_i": [1, 2, 10, 35], "w_ix_i": [12, 34, 35], "w_j": 22, "w_m": 22, "w_output": 2, "w_px_": 8, "w_px_p": 8, "w_t": [], "wa": [1, 3, 4, 5, 6, 7, 10, 11, 12, 14, 17, 19, 22, 28, 29, 31, 32, 33, 34, 35], "wai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 18, 19, 22, 25, 28, 29, 30, 31, 34], "walk": 9, "walker": 25, "wall": 31, "walt": [], "wang": [0, 28], "want": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 23, 25, 28, 29, 30, 31, 32, 33, 35], "warn": 4, "warrant": [6, 32, 33], "warranti": [], "wast": [3, 31], "watch": [21, 30, 31, 32, 34, 35], "wave": 3, "wavelet": 8, "wcag": [], "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34], "weak": [9, 10, 14], "weaker": 31, "weather": [1, 12, 34, 35], "web": [21, 24, 26, 28], "webpag": 28, "websit": [6, 22, 23, 24, 28], "wedg": [8, 25, 35], "wednesdai": [26, 28, 33], "wee": 11, "week": [0, 5, 6, 7, 23, 24, 26], "weekli": [15, 16, 21, 23, 24, 26, 27, 28, 34], "weierstrass": 35, "weight": [1, 2, 3, 6, 7, 9, 10, 12, 13, 18, 25, 31, 33, 34, 35], "weigth": 2, "welchlab": [34, 35], "welcom": [8, 15, 21], "well": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35], "went": 8, "were": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 25, 28, 31, 32, 33, 34, 35], "wessel": [0, 19, 23, 28, 29, 30, 31], "wg_nf1awssi": 35, "what": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 25, 31, 34, 35], "whatev": 3, "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 22, 23, 25, 28, 29, 30, 32, 33, 34, 35], "whenev": [13, 15, 25, 31, 35], "where": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35], "wherea": [6, 25, 31, 32, 33], "wherefrom": 23, "wherein": [1, 12, 34, 35], "whether": [0, 3, 5, 7, 9, 23, 25, 28, 33, 34], "which": [0, 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, 28, 29, 30, 32, 33, 34, 35], "whichev": [1, 3], "while": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 19, 20, 25, 28, 29, 30, 31, 32, 33, 34, 35], "white": 9, "whiteboad": 31, "whiteboard": [29, 30, 31, 32, 33, 34, 35], "who": [0, 15], "whole": [1, 3, 4, 5, 9, 11, 13, 31], "whom": [], "whose": [0, 6, 10, 25, 29, 32, 33], "whow": [11, 29], "why": [0, 1, 3, 6, 13, 15, 16, 17, 19, 23, 29, 30], "wide": [0, 1, 3, 6, 7, 12, 21, 22, 23, 28, 32, 33, 34, 35], "widehat": [6, 32], "width": [0, 3, 8, 9, 28], "wieringen": [0, 19, 23, 28, 29, 30, 31], "wiki": 23, "wikipedia": 23, "win": [10, 31], "wind": 9, "window": [], "wing": [26, 28], "winther": 2, "wiothout": 6, "wiscons": 7, "wisconsin": [10, 34], "wisdom": [6, 29, 31], "wise": [1, 5, 12, 13, 29, 30, 31, 34], "wish": [0, 2, 5, 7, 8, 11, 13, 14, 18, 22, 23, 28, 29, 30, 31, 33, 34, 35], "with_std": [0, 29], "wither": 6, "within": [0, 2, 3, 4, 7, 9, 12, 13, 14, 25, 27, 28, 30, 33, 34], "withinclust": 14, "without": [0, 1, 5, 6, 8, 9, 11, 12, 13, 15, 18, 23, 28, 29, 30, 31, 32, 33, 34, 35], "wo5dmep_bbi": [34, 35], "won": [0, 15, 28, 35], "wonder": 8, "word": [0, 1, 3, 4, 5, 6, 7, 14, 19, 23, 25, 28, 29, 30, 31], "work": [0, 1, 4, 6, 7, 8, 9, 13, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 31, 32, 33, 34, 35], "workabl": 31, "workaround": [], "workhors": 31, "workload": 31, "workshop": 28, "world": [0, 8, 16, 29], "worldwid": [0, 28], "worri": 15, "wors": [0, 1, 3, 4, 6, 28, 31, 32, 33], "worth": [9, 19], "worthi": 23, "would": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 20, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "wouldn": [], "wrap": [6, 22, 28], "write": [0, 1, 2, 3, 5, 6, 7, 8, 12, 13, 15, 16, 18, 22, 28, 29, 31, 32, 33, 34, 35], "writer": [33, 34], "writerow": [33, 34], "written": [0, 2, 3, 5, 11, 12, 13, 16, 21, 22, 23, 25, 28, 29, 30, 31, 35], "wrong": [1, 8, 15, 19], "wrongli": 10, "wrote": [5, 11, 29], "wrt": [10, 13, 31, 35], "wth": [10, 13, 31], "wurstemberg": 35, "www": [20, 21, 22, 23, 27, 28, 30, 31, 32, 34, 35], "wx_1": 8, "x": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 28, 30, 31, 32, 33, 34, 35], "x0": [8, 33, 34], "x1": [4, 8, 9, 10, 13, 33, 34], "x1_exampl": 8, "x1d": 8, "x2": [8, 9, 10, 13], "x2d": [8, 11], "x2d_train": 11, "x2dsl": 11, "x3": 8, "x_": [0, 2, 3, 5, 6, 8, 10, 11, 13, 14, 22, 25, 28, 29, 30, 31, 32, 33, 35], "x_0": [0, 5, 11, 18, 22, 28, 29, 32, 35], "x_1": [0, 2, 5, 6, 7, 8, 9, 10, 11, 13, 18, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "x_2": [0, 2, 5, 6, 7, 8, 9, 10, 11, 13, 22, 25, 28, 29, 30, 32, 33, 34, 35], "x_3": [8, 22, 25, 35], "x_4": [22, 35], "x_5": 35, "x_6": 18, "x_bin": [33, 34], "x_center": 11, "x_data": 1, "x_data_ful": 1, "x_hidden": 2, "x_i": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 25, 28, 29, 30, 31, 32, 33, 34, 35], "x_input": 2, "x_ix_": [0, 28], "x_iy_i": 8, "x_j": [0, 2, 8, 9, 12, 16, 25, 29, 31, 34, 35], "x_jy_j": 8, "x_k": [12, 14, 22, 25, 29, 34], "x_l": [25, 35], "x_m": [6, 12, 22, 25, 32, 34], "x_mean": [18, 31], "x_multi": [33, 34], "x_n": [0, 2, 3, 6, 8, 11, 12, 13, 22, 25, 28, 30, 32, 34, 35], "x_new": [9, 10], "x_norm": [18, 31], "x_offset": [6, 29, 31], "x_output": 2, "x_p": [3, 7, 9, 33, 34], "x_poli": 9, "x_poly10": 9, "x_pred": 4, "x_prev": 2, "x_reduc": 11, "x_sampl": [], "x_scale": 8, "x_small": 13, "x_std": [18, 31], "x_t": 31, "x_test": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34], "x_test_": 17, "x_test_own": 6, "x_test_scal": [0, 6, 7, 9, 10, 11, 29, 31], "x_tot": 4, "x_train": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 28, 29, 30, 31, 32, 33, 34], "x_train_": 17, "x_train_mean": [6, 29, 31], "x_train_own": 6, "x_train_r": 19, "x_train_scal": [0, 6, 7, 9, 10, 11, 29, 31], "x_val": 1, "xarrai": [21, 28], "xavier": 1, "xbnew": [13, 30, 31], "xcode": [0, 21, 23, 28], "xdclassiffierconfus": 10, "xdclassiffierroc": 10, "xg_clf": 10, "xgb": 10, "xgbclassifi": 10, "xgboost": 9, "xgboot": 10, "xgbregressor": 10, "xgparam": 10, "xgtree": 10, "xi": [8, 13, 31, 33, 34], "xi_": 8, "xi_1": 8, "xi_i": 8, "xinv": 34, "xk": 8, "xla": [13, 21, 28], "xlabel": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 25, 28, 29, 30, 31, 32, 33], "xlim": [6, 10, 32, 33], "xm": 9, "xmesh": 13, "xnew": [0, 13, 28, 30, 31], "xp": 25, "xpanda": [0, 29], "xpd": [5, 11, 29], "xplot": 0, "xscale": [0, 29], "xsr": 9, "xt_x": [13, 30, 31], "xtest": [6, 32, 33], "xtick": [3, 6, 8, 9, 32, 33], "xtrain": [6, 32, 33], "xu": [0, 28], "xx": [0, 22, 28], "xy": [0, 6, 8, 22, 28], "xytext": 8, "xyz": [], "xz": [22, 28], "y": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "y1": 4, "y2": 4, "y3": 4, "y_": [0, 1, 5, 6, 10, 11, 22, 28, 29, 32, 33], "y_0": [0, 5, 11, 22, 28, 29, 32], "y_1": [0, 5, 8, 9, 11, 13, 22, 28, 29, 30, 31, 32], "y_1y_1": 8, "y_1y_1k": 8, "y_1y_2": 8, "y_1y_2k": 8, "y_1y_n": 8, "y_1y_nk": 8, "y_2": [0, 5, 8, 9, 11, 22, 28, 29], "y_2y_1": 8, "y_2y_1k": 8, "y_2y_2": 8, "y_2y_2k": 8, "y_3": [0, 9, 22], "y_4": 22, "y_bin": [33, 34], "y_binari": [33, 34], "y_center": [18, 31], "y_data": [0, 1, 5, 6, 28, 29, 30, 31], "y_data_ful": 1, "y_decis": 8, "y_fit": [0, 29], "y_i": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 19, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "y_if_": 10, "y_indic": [33, 34], "y_ix_": [0, 28], "y_ix_i": [7, 8, 13, 29, 30, 31, 33, 34], "y_iy_jk": 8, "y_j": [6, 8, 12, 23, 32, 33, 34, 35], "y_k": [12, 34], "y_m": 22, "y_mean": [18, 31], "y_model": [0, 4, 5, 6, 28, 29, 30, 31], "y_multi": [33, 34], "y_n": [8, 13, 30, 31], "y_ny_1": 8, "y_ny_1k": 8, "y_ny_2": 8, "y_ny_2k": 8, "y_ny_n": 8, "y_ny_nk": 8, "y_offset": [6, 17, 29, 31], "y_onehot": [33, 34], "y_plot": 9, "y_pred": [0, 1, 4, 6, 7, 8, 9, 10, 29, 31, 32, 33, 34], "y_pred1": 9, "y_pred2": 9, "y_pred_bin": [33, 34], "y_pred_multi": [33, 34], "y_pred_rf": 10, "y_pred_tre": 10, "y_prob": [33, 34], "y_prob_bin": [33, 34], "y_prob_multi": [33, 34], "y_proba": [7, 10, 34], "y_sampl": [], "y_scaler": [6, 29, 31], "y_test": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34], "y_test_onehot": 1, "y_test_predict": [], "y_tot": 4, "y_train": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 28, 29, 30, 31, 32, 33, 34], "y_train_mean": [6, 29, 31], "y_train_onehot": 1, "y_train_predict": [], "y_train_r": 19, "y_train_scal": [6, 29, 31], "y_true": [33, 34], "y_val": 1, "yand": 34, "ye": [3, 6, 7, 32, 33, 34], "year": [0, 21, 28], "yet": [0, 1, 6, 8, 11, 13, 20, 28, 33, 35], "yi": [13, 31, 33, 34], "yield": [0, 2, 5, 6, 8, 10, 12, 13, 14, 22, 25, 28, 30, 31, 32, 34, 35], "yk": 8, "ylabel": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 25, 28, 29, 30, 31, 32, 33], "ylim": [3, 6, 32, 33], "ym": 9, "ymesh": 13, "yn": 0, "yo": [8, 9, 10], "yor": 34, "yoshiki": [], "yoshua": [1, 27], "you": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35], "young": 0, "your": [1, 2, 4, 5, 6, 8, 11, 13, 15, 17, 19, 20, 21, 22, 28, 30, 31, 32, 33, 34, 35], "your_model_object": 16, "yourself": [11, 13, 28, 30], "youtu": [29, 30, 32, 34], "youtub": [21, 30, 31, 32, 34, 35], "ypred": [6, 32, 33], "ypredict": [0, 13, 28, 29, 30, 31], "ypredict2": [13, 30, 31], "ypredictlasso": [5, 30], "ypredictol": [0, 5, 30], "ypredictown": [6, 29, 31], "ypredictownridg": [6, 29, 30, 31], "ypredictridg": [0, 5, 6, 29, 30, 31], "ypredictskl": [6, 29, 31], "ytest": [6, 32, 33], "ytick": [3, 6, 8, 9, 32, 33], "ytild": [0, 6, 28, 29, 32, 33], "ytildelasso": [5, 30], "ytildenp": [0, 28, 29], "ytildeol": [0, 5, 30], "ytildeownridg": [6, 29, 30, 31], "ytilderidg": [5, 6, 29, 30, 31], "ytrain": [6, 32, 33], "yuxi": 28, "yx": [22, 28], "yxor": 34, "yy": [22, 28], "yz": [22, 28], "z": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 22, 25, 28, 29, 32, 33, 34, 35], "z_": [1, 2, 12, 22, 28, 35], "z_0": [22, 28, 35], "z_1": [22, 28, 35], "z_2": [22, 28, 35], "z_c": 1, "z_h": 1, "z_hidden": 2, "z_i": [1, 12, 34], "z_j": [1, 12], "z_k": [12, 29, 35], "z_m": 1, "z_mod": 9, "z_o": 1, "z_output": 2, "za": [], "zaman": 25, "zaxi": 6, "zero": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 22, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "zeros_lik": [4, 33, 34], "zeroth": 29, "zfill": 4, "zip": [4, 6, 33, 34], "zm_h": [0, 28], "zn": [], "zone": [], "zoom": 28, "zscout": [], "zx": [22, 28], "zy": [22, 28], "zz": [22, 28], "\u00f8yvind": [6, 29, 31]}, "titles": ["3. Linear Regression", "14. Building a Feed Forward Neural Network", "15. Solving Differential Equations with Deep Learning", "16. Convolutional Neural Networks", "17. Recurrent neural networks: Overarching view", "4. Ridge and Lasso Regression", "5. Resampling Methods", "6. Logistic Regression", "8. Support Vector Machines, overarching aims", "9. Decision trees, overarching aims", "10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods", "11. Basic ideas of the Principal Component Analysis (PCA)", "13. Neural networks", "7. Optimization, the central part of any Machine Learning algortithm", "12. Clustering and Unsupervised Learning", "Exercises week 34", "Exercises week 35", "Exercises week 36", "Exercises week 37", "Exercises week 38", "Exercises week 39", "Applied Data Analysis and Machine Learning", "2. Linear Algebra, Handling of Arrays and more Python Features", "Project 1 on Machine Learning, deadline October 6 (midnight), 2025", "Course setting", "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: Linear Regression and Gradient descent", "Week 37: Gradient descent methods", "Week 38: Statistical analysis, bias-variance tradeoff and resampling methods", "Week 39: Resampling methods and logistic regression", "Week 40: Gradient descent methods (continued) and start Neural networks", "Week 41 Neural networks and constructing a neural network code"], "titleterms": {"": [8, 10, 30, 31, 32, 33, 34], "0": [], "04": [], "05": [], "06": [], "07": [], "1": [0, 15, 16, 17, 18, 19, 20, 23, 29, 35], "10": 35, "11": [], "15": [19, 32], "19": 19, "1a": 18, "2": [0, 15, 16, 17, 18, 19, 20, 28, 29, 30, 35], "20": [], "2017": [], "2018": [], "2019": [], "2023": 26, "2025": [23, 33, 34, 35], "22": 33, "26": 33, "27": [], "29": 34, "2a": [], "2b": [], "3": [0, 15, 16, 17, 18, 19, 20, 29, 35], "34": [15, 28], "35": [16, 29], "36": [17, 30], "37": [18, 31], "38": [19, 32], "39": [20, 33], "3a": 18, "3b": 18, "4": [0, 15, 16, 17, 18, 19, 20, 29], "40": 34, "41": 35, "4a": 18, "4b": 18, "5": [0, 16, 18, 19, 20], "6": [23, 35], "8": 31, "A": [0, 1, 4, 8, 9, 28, 32, 33, 34], "AND": 34, "And": [28, 29, 31], "But": 31, "In": [26, 35], "Ising": 6, "OR": 34, "The": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 15, 21, 28, 29, 30, 31, 32, 33, 34, 35], "To": 28, "With": [4, 30], "a11i": [], "about": [28, 29, 30], "abov": [30, 35], "abstract": 20, "accuraci": 31, "across": 31, "activ": [1, 12, 34, 35], "ad": [0, 6, 20, 23, 28, 29, 34, 35], "adaboost": 10, "adagrad": [13, 31], "adam": [13, 31], "adapt": [10, 31], "add": [], "adjust": 1, "advanc": 23, "adversari": 4, "again": [3, 9], "ai": [23, 28], "aim": [8, 9, 28], "aka": 28, "al": 31, "algebra": [22, 28], "algorithm": [9, 10, 11, 12, 28, 29, 30, 31, 35], "algortithm": [13, 30, 33, 34], "all": [8, 35], "an": [0, 4, 10, 15, 20, 28, 35], "analys": [5, 29, 30], "analysi": [0, 5, 6, 11, 21, 23, 25, 28, 29, 30, 32, 33, 35], "analyt": [0, 16, 18], "analyz": 35, "ani": [13, 30, 33, 34], "anoth": [9, 30, 32, 33], "api": [], "appli": 21, "approach": [0, 8, 14, 28, 31, 32, 33], "approxim": [12, 35], "architectur": 1, "arrai": [22, 28], "artifici": [34, 35], "assist": 26, "assumpt": 32, "august": [], "author": [], "autocorrel": 25, "autograd": [2, 13, 31], "automat": [13, 31, 35], "avail": 20, "avali": [], "averag": 31, "b": 23, "back": [1, 11, 12, 29, 30, 35], "background": [21, 23, 32], "bag": 10, "base": [13, 31, 32], "basic": [0, 5, 7, 9, 10, 11, 22, 29, 30, 33, 34, 35], "batch": [1, 31], "bay": 5, "befor": 11, "beta": [], "better": [8, 34], "bia": [6, 19, 23, 31, 32, 33], "bias": 35, "binari": 1, "bind": 28, "bird": 10, "blind": [], "block": [], "boldsymbol": [18, 29, 32], "book": [19, 35], "boost": 10, "bootstrap": [6, 10, 32, 33], "boston": [], "breast": 1, "brief": [28, 32, 33], "bring": [12, 35], "browser": [], "bsd": [], "build": [1, 3, 9], "c": [23, 28], "calcul": [18, 29, 30], "can": [28, 31, 32, 33, 35], "cancer": [1, 7, 9, 11], "cart": 9, "case": [8, 10, 25, 29, 30, 31, 33, 34], "cdn": [], "cell": [], "central": [13, 21, 25, 30, 32, 33, 34], "chain": [12, 35], "challeng": 31, "chang": 10, "changelog": [], "channel": 28, "chi": [0, 28], "choic": 17, "choos": [1, 31], "cifar01": 3, "citat": [], "class": [33, 34, 35], "classic": 11, "classif": [1, 9, 10, 33, 34], "classifi": [8, 33], "claus": [], "clip": 1, "cluster": 14, "cnn": 3, "code": [1, 2, 5, 9, 11, 12, 13, 14, 15, 16, 20, 23, 28, 29, 30, 31, 32, 33, 34, 35], "collect": [1, 3], "color": [], "colorblind": [], "combin": 31, "commun": 28, "compact": [33, 34, 35], "compar": [2, 10, 16], "comparison": [30, 31], "compet": 31, "compil": [], "complet": [29, 35], "complex": [0, 6, 23, 29], "complic": [6, 35], "compon": 11, "comput": [9, 19, 31], "computation": [32, 33], "computerlab": 28, "con": [9, 31], "concept": 25, "condit": 30, "confid": 32, "conjug": 13, "consider": 35, "constraint": 31, "construct": 35, "contain": [], "content": [], "continu": 34, "contn": 28, "contrast": [], "contributor": [], "converg": 31, "convex": [8, 13, 30, 31], "convolut": [3, 12, 34, 35], "copyright": [], "core": [], "correct": 31, "correl": [11, 29, 34], "correspond": [], "cost": [1, 10, 29, 30, 31, 32, 33, 34, 35], "count": 35, "cours": [21, 24, 27, 28], "covari": [5, 11, 25, 29], "cover": 28, "creat": [16, 20], "creator": [], "cross": [6, 23, 32, 33, 34], "cython": 28, "d": 23, "dark": [], "data": [0, 1, 3, 6, 7, 9, 11, 15, 17, 18, 21, 25, 28, 29, 33, 34, 35], "dataset": [1, 3, 18], "david": 28, "deadlin": [23, 28], "deadllin": 26, "decai": [2, 31], "decis": [9, 10], "decomposit": [5, 11, 22, 29, 30], "deeep": [], "deep": [1, 2, 28, 31, 33, 34, 35], "defin": [1, 28, 35], "definit": [19, 35], "deflist": [], "degre": [0, 17, 29], "deliver": [15, 16, 19, 20, 23], "deliveri": 23, "delta": 32, "dens": 0, "depend": [], "deriv": [5, 12, 16, 17, 19, 29, 30, 31, 32, 35], "descent": [2, 10, 13, 18, 23, 30, 31, 34], "design": 29, "detail": [3, 28], "develop": 1, "diagon": 11, "differ": [8, 31], "differenti": [2, 13, 31, 35], "diffus": 2, "dimens": 31, "dimension": [2, 3, 8, 18], "direct": [], "disadvantag": 9, "discret": 25, "discrimin": 28, "discuss": 34, "distribut": [5, 25, 32], "do": [1, 31, 34], "document": 20, "doe": [29, 30, 34], "domain": 25, "down": 1, "dropout": 1, "e": 23, "each": 33, "economi": [29, 30], "electron": 23, "element": [0, 25, 28], "elimin": 22, "empir": 31, "energi": 28, "ensembl": 10, "entri": 35, "entropi": [9, 33, 34], "environ": [0, 15], "equat": [0, 2, 12, 29, 30, 33, 34, 35], "error": [0, 10, 28, 29, 30, 32, 33], "essenti": 28, "estim": 32, "et": 31, "etc": 28, "euler": 2, "evalu": [1, 35], "evid": 31, "exampl": [1, 2, 3, 4, 6, 7, 8, 9, 10, 28, 29, 30, 31, 32, 33, 34, 35], "exercis": [0, 6, 15, 16, 17, 18, 19, 20, 29, 35], "expect": [19, 25, 32], "expens": [32, 33], "experi": 25, "explicit": 35, "explor": 0, "exponenti": [2, 31], "express": [16, 17, 19, 29, 33, 34, 35], "extend": [30, 33, 34, 35], "extrapol": 4, "extrem": [10, 28], "ey": 10, "f": 23, "fall": 26, "famili": [1, 28], "famou": 22, "fantast": [29, 30], "faq": [], "featur": [9, 16, 22, 29], "februari": [], "feed": [1, 12, 34, 35], "figur": 20, "file": [], "fill": [], "final": [12, 29, 31, 35], "find": [16, 18, 32], "fine": 1, "first": [4, 12, 28, 30, 35], "fit": [0, 10, 15, 16, 28, 30], "fix": [29, 30, 31], "float": 35, "fold": [32, 33], "forc": 3, "forest": 10, "form": 18, "format": [23, 28], "formula": 18, "forward": [1, 2, 12, 34, 35], "foster": 28, "fourier": 3, "frank": 6, "freedom": [0, 17, 29], "frequent": [29, 31], "frequentist": [0, 28], "from": [5, 10, 12, 28, 29, 30, 31, 32, 33, 34, 35], "full": [2, 31], "function": [0, 1, 6, 7, 8, 10, 11, 12, 13, 23, 25, 28, 29, 30, 31, 32, 33, 34, 35], "further": [3, 5, 29, 30], "g": 23, "gan": 4, "gate": 34, "gaussian": 22, "gd": [13, 31], "gener": [4, 9, 28, 33, 34, 35], "geometr": [11, 30], "get": [20, 35], "gini": 9, "github": 15, "goal": [15, 16, 17, 18, 19, 20], "good": [0, 20, 28], "goodfellow": 31, "gotthard": [], "grade": [26, 28], "gradient": [1, 2, 10, 13, 18, 23, 30, 31, 34, 35], "greativ": [], "group": 33, "growth": 2, "guid": [], "h": 23, "ha": 21, "hand": 35, "handl": [22, 28], "happen": [32, 33], "hessian": [29, 30, 31], "hidden": [2, 35], "high": [], "histogram": 32, "histori": [], "hous": [], "how": 16, "hyperbol": 34, "hyperparamet": [1, 17], "hyperplan": 8, "i": [0, 1, 28], "id3": 9, "idea": 11, "ideal": 30, "ident": 32, "identifi": 32, "ii": 28, "iid": 32, "illustr": [30, 34, 35], "implement": [1, 16, 17, 18], "implic": [5, 29, 30], "import": [5, 22, 28, 29, 30, 35], "improv": [1, 31], "includ": [13, 23, 31, 33, 34, 35], "incorpor": [], "increment": 11, "independ": 32, "index": 9, "inform": 26, "ingredi": 35, "input": [2, 35], "instal": [21, 23, 28], "instructor": 26, "intermedi": 35, "interpret": [5, 11, 19, 28, 29, 30, 32], "interv": 32, "introduc": [11, 13, 29], "introduct": [0, 6, 20, 21, 22, 23, 28, 34, 35], "invers": [5, 22], "invert": [29, 30], "ipython": [], "iter": 10, "its": 29, "j": [], "jacobian": 29, "januari": [], "jax": 13, "job": 34, "julia": 28, "jungl": 10, "jupyt": [], "k": [32, 33, 35], "kera": [1, 3], "kernel": [8, 11], "l": 35, "lab": [30, 31, 32, 33, 34, 35], "lagrangian": 8, "lasso": [5, 6, 23, 29, 30], "last": [29, 31, 34, 35], "later": [5, 29, 30], "layer": [1, 2, 3, 12, 35], "layout": 35, "learn": [0, 1, 2, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 28, 29, 30, 31, 32, 33, 34, 35], "least": [5, 6, 16, 19, 23, 28, 29, 30, 31], "lectur": [28, 30, 31, 32, 33, 34, 35], "level": 10, "librari": [21, 28], "licens": [], "light": [], "likelihood": [7, 32, 33, 34], "limit": [1, 13, 25, 30, 31, 32], "linear": [0, 8, 13, 15, 22, 28, 29, 30, 33], "link": [5, 11, 27, 29, 32], "list": 35, "literatur": 23, "logist": [7, 28, 33, 34], "loss": [29, 30, 31], "lu": 22, "ma": [], "machin": [0, 8, 13, 21, 23, 28, 30, 33, 34], "made": 32, "main": [25, 28], "make": [0, 9, 10, 20, 29], "mani": [10, 12], "markdown": [], "mask": [], "maskedarrai": [], "mass": 28, "materi": [23, 28, 29, 30, 31, 32, 33, 35], "math": [5, 29, 30], "mathemat": [3, 5, 8, 29, 30, 34, 35], "matplotlib": [], "matric": [5, 22, 28], "matrix": [1, 5, 11, 12, 16, 22, 28, 29, 30, 31, 34], "matter": 0, "max": 29, "maximum": [32, 33, 34], "me": [], "mean": [0, 29, 30, 33], "measur": 34, "meet": [5, 10, 25, 28, 29], "memori": 31, "mercer": 8, "metadata": [], "method": [6, 9, 10, 13, 23, 28, 30, 31, 32, 33, 34], "metric": 19, "midnight": 23, "min": 29, "mini": 31, "minibatch": 31, "minim": [28, 33, 34], "mit": [], "ml": 28, "mle": 32, "mlp": 12, "mnist": [3, 4], "mode": 35, "model": [0, 1, 4, 6, 12, 15, 17, 28, 34, 35], "moment": 31, "momentum": [13, 23, 31], "mondai": [30, 31, 32, 34, 35], "moon": [8, 9], "more": [3, 6, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35], "motiv": 31, "move": 31, "multi": [34, 35], "multilay": [12, 34, 35], "multipl": [1, 3, 17], "multipli": 8, "multivari": 35, "myst": [], "ncsa": [], "need": [23, 28], "network": [1, 2, 3, 4, 7, 12, 28, 31, 33, 34, 35], "neural": [1, 2, 3, 4, 7, 12, 28, 31, 34, 35], "neuron": [34, 35], "new": [4, 18, 32, 35], "newton": [30, 31, 33, 34], "nn": 35, "node": 35, "non": [8, 31], "none": 31, "normal": [0, 1, 32], "notat": [12, 34], "note": [23, 29, 30], "notebook": [], "novemb": [], "now": [1, 9, 13, 30, 31, 32, 33], "nuclear": [0, 28], "nueral": 33, "numba": 28, "number": [0, 2, 25, 29, 31, 35], "numer": [2, 23, 25], "numpi": [22, 28], "object": 3, "observ": 35, "obtain": 11, "octob": [23, 35], "od": 2, "off": [6, 19, 23], "ol": [5, 6, 15, 16, 18, 23, 30, 32], "one": [2, 12, 18, 30, 35], "ones": 34, "open": [], "oper": [22, 35], "optim": [1, 8, 13, 18, 21, 28, 29, 30, 31, 33, 34, 35], "order": [13, 18, 31], "ordinari": [5, 6, 16, 19, 23, 28, 29, 30, 31], "organ": [0, 28], "oslo": 27, "other": [4, 9, 11, 12, 22, 23, 28, 34, 35], "ouput": 35, "our": [0, 4, 5, 11, 13, 23, 28, 29, 30, 33, 34], "outcom": [21, 28], "output": [2, 35], "over": 35, "overarch": [0, 4, 8, 9, 28, 29, 35], "overview": [10, 28, 31], "own": [0, 10, 11, 23, 28, 29], "packag": [22, 28], "panda": [28, 29], "parallel": 35, "paramet": [28, 29, 33, 34, 35], "paramt": 18, "part": [13, 21, 23, 30, 33, 34, 35], "partial": 2, "pass": 1, "pca": 11, "pdf": 25, "percepetron": 35, "perceptron": [12, 34, 35], "perform": [1, 9], "period": 3, "perspect": 1, "pitaya": [], "plan": [29, 30, 31, 32, 33, 35], "plethora": 28, "plot": [32, 33], "point": [4, 35], "poisson": 2, "polici": [], "polynomi": [3, 16, 18, 30], "popul": 2, "popular": 28, "practic": [13, 26, 28, 31], "pre": [1, 3], "preambl": 23, "predict": 4, "predictor": [33, 34], "preprocess": [29, 31], "prerequisit": [3, 21, 28], "present": 20, "princip": 11, "principl": 3, "pro": [9, 31], "probabl": [5, 25, 32], "problem": [1, 2, 13, 28, 29, 30, 31, 33, 34, 35], "procedur": [9, 28], "process": [1, 3], "program": [2, 13, 23, 30, 31, 35], "project": [6, 20, 23, 26, 28], "prop": 13, "propag": [1, 12, 35], "properti": [5, 25, 29, 30, 31, 33], "python": [0, 9, 15, 21, 22, 28], "quick": 8, "quickli": [], "r": 28, "random": [10, 11, 25], "raphson": [30, 33, 34], "rate": [23, 31], "read": [9, 28, 29, 31, 32, 33, 34, 35], "real": [6, 28, 35], "recommend": [28, 29], "record": [], "recurr": [4, 12, 34, 35], "reduc": [0, 29, 35], "reduct": 3, "refer": 23, "referenc": 20, "reformul": 2, "regress": [0, 5, 6, 7, 9, 10, 13, 15, 17, 18, 19, 23, 28, 29, 30, 31, 32, 33, 34], "regular": 1, "relat": [], "relev": [27, 29, 34], "relu": 1, "remark": 3, "remind": [6, 8, 28, 29, 30, 31, 35], "replac": [13, 31], "report": [20, 23], "repositori": [15, 32, 33], "requir": [2, 21], "resampl": [6, 19, 23, 32, 33], "rescal": [6, 29], "residu": [29, 30], "resourc": 2, "result": [29, 30, 35], "revers": 35, "revis": [], "revisit": [13, 30, 31, 33, 34], "rewrit": [28, 29, 32], "rewritten": [33, 34], "ridg": [0, 5, 6, 17, 18, 19, 23, 29, 30, 31], "rm": 13, "rmsprop": 31, "role": [], "rule": [12, 31, 35], "rung": 23, "same": [13, 31, 32, 33], "sampl": 11, "scalabl": 31, "scale": [17, 18, 19, 29, 31], "schedul": 28, "schemat": 9, "scheme": 2, "scienc": 28, "scikit": [0, 1, 11, 28, 29, 30, 31, 32, 33, 34], "second": [13, 18, 31], "select": 33, "semest": 26, "sensit": 30, "septemb": [19, 30, 31, 32, 33, 34], "seriou": 35, "session": [30, 31, 32, 33, 34, 35], "set": [0, 2, 3, 9, 12, 15, 24, 28, 29, 30, 35], "setup": 15, "sgd": [13, 31], "should": 1, "show": [], "similar": [13, 31], "simpl": [0, 4, 9, 13, 18, 28, 29, 30, 31, 33, 35], "simpler": 35, "simplest": 18, "singl": [10, 34, 35], "singular": [5, 11, 29, 30], "size": [29, 30, 31], "sklearn": 16, "slightli": 31, "smarter": 35, "smoothi": [], "sneak": 31, "soft": 8, "softmax": 1, "softwar": [23, 28], "solv": [2, 30, 33, 34], "solver": 13, "some": [13, 22, 29, 30, 33, 35], "sourc": [], "specifi": 2, "speed": 31, "sphinx": [], "split": [0, 15, 29], "squar": [0, 5, 6, 10, 16, 19, 23, 28, 29, 30, 31], "standard": [13, 29, 32], "start": [20, 34], "state": 0, "statist": [5, 6, 21, 25, 28, 32, 33], "steepest": [10, 13, 30], "step": [31, 32, 33], "stochast": [13, 23, 25, 31], "stop": 31, "strongli": [28, 31], "structur": [], "studi": 34, "suggest": [28, 34], "sum": [32, 33, 35], "summari": [26, 28], "superposit": 3, "supervis": 1, "support": 8, "svd": [5, 29, 30], "synthet": [18, 33, 34], "systemat": 3, "t": 29, "take": 16, "taken": [28, 31], "teach": 26, "teacher": [26, 28], "team": [], "technic": 29, "techniqu": [6, 11, 23], "technologi": 21, "tensorflow": [1, 3], "tent": [26, 28], "term": [32, 35], "test": [0, 1, 15, 17, 29], "texmath": [], "text": 28, "textbook": [27, 28], "than": 30, "thank": [], "theorem": [5, 8, 11, 12, 25, 32, 35], "theoret": 31, "theori": 25, "theta": [18, 32], "thi": [28, 35], "three": 35, "through": 35, "time": 31, "tip": [13, 31], "todo": [], "togeth": [12, 35], "tool": [23, 28], "top": 1, "topic": 28, "toward": 11, "trade": [6, 19, 23], "tradeoff": [6, 32, 33], "train": [0, 1, 4, 15, 28, 29, 35], "transform": 3, "translat": [], "tree": [9, 10], "tuesdai": [30, 34, 35], "tune": 1, "two": [3, 8, 21, 33, 34, 35], "type": [2, 4, 12, 28, 34, 35], "uio": 28, "understand": [32, 33], "univers": [12, 27, 35], "unsupervis": 14, "up": [0, 2, 9, 12, 15, 28, 29, 30, 32, 33, 35], "updat": [23, 31, 35], "us": [0, 1, 2, 3, 7, 13, 16, 18, 19, 21, 23, 28, 29, 30, 31, 33, 34, 35], "usag": 31, "v": [3, 31], "valid": [6, 23, 32, 33], "valu": [5, 11, 19, 25, 29, 30, 32, 33], "vari": 31, "variabl": [25, 30], "varianc": [6, 19, 23, 32, 33], "variou": [0, 32, 33], "vector": [8, 12, 16, 22, 28, 29, 34], "versu": 28, "video": [31, 32, 33, 34, 35], "view": [0, 4, 10, 29, 35], "virtual": 15, "visual": [1, 9], "wai": [9, 23, 32, 33, 35], "wave": 2, "we": [28, 31, 35], "wednesdai": [30, 34, 35], "week": [15, 16, 17, 18, 19, 20, 28, 29, 30, 31, 32, 33, 34, 35], "weekli": [], "welcom": [], "what": [0, 28, 29, 30, 32, 33], "when": 31, "which": [1, 31], "why": [28, 31, 32, 33, 34, 35], "wisconsin": 7, "word": 35, "workflow": [], "wrap": 32, "write": [4, 11, 20, 23, 30], "x": 29, "xgboost": 10, "xor": 34, "yaml": [], "yet": 30, "your": [0, 10, 16, 18, 23, 29], "z_j": 35}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"1a)": [[18, "a"]], "3a)": [[18, "id1"]], "3b)": [[18, "b"]], "4a)": [[18, "id2"]], "4b)": [[18, "id3"]], "A Classification Tree": [[9, "a-classification-tree"]], "A Frequentist approach to data analysis": [[0, "a-frequentist-approach-to-data-analysis"], [29, "a-frequentist-approach-to-data-analysis"]], "A better approach": [[8, "a-better-approach"]], "A first summary": [[29, "a-first-summary"]], "A more compact expression": [[34, "a-more-compact-expression"], [35, "a-more-compact-expression"]], "A new Cost Function": [[33, "a-new-cost-function"]], "A quick Reminder on Lagrangian Multipliers": [[8, "a-quick-reminder-on-lagrangian-multipliers"]], "A simple example": [[4, "a-simple-example"]], "A soft classifier": [[8, "a-soft-classifier"]], "A top-down perspective on Neural networks": [[1, "a-top-down-perspective-on-neural-networks"]], "A way to Read the Bias-Variance Tradeoff": [[33, "a-way-to-read-the-bias-variance-tradeoff"], [34, "a-way-to-read-the-bias-variance-tradeoff"]], "ADAM algorithm, taken from Goodfellow et al": [[32, "adam-algorithm-taken-from-goodfellow-et-al"]], "ADAM optimizer": [[13, "adam-optimizer"], [32, "id2"]], "Accuracy": [[32, "accuracy"]], "Activation functions": [[12, "activation-functions"], [35, "activation-functions"]], "Activation functions, Logistic and Hyperbolic ones": [[35, "activation-functions-logistic-and-hyperbolic-ones"]], "AdaGrad Properties": [[32, "adagrad-properties"]], "AdaGrad Update Rule Derivation": [[32, "adagrad-update-rule-derivation"]], "AdaGrad algorithm, taken from Goodfellow et al": [[32, "adagrad-algorithm-taken-from-goodfellow-et-al"]], "Adam Optimizer": [[32, "adam-optimizer"]], "Adam vs. AdaGrad and RMSProp": [[32, "adam-vs-adagrad-and-rmsprop"]], "Adam: Bias Correction": [[32, "adam-bias-correction"]], "Adam: Exponential Moving Averages (Moments)": [[32, "adam-exponential-moving-averages-moments"]], "Adam: Update Rule Derivation": [[32, "adam-update-rule-derivation"]], "Adaptive boosting: AdaBoost, Basic Algorithm": [[10, "adaptive-boosting-adaboost-basic-algorithm"]], "Adaptivity Across Dimensions": [[32, "adaptivity-across-dimensions"]], "Adding Neural Networks": [[35, "adding-neural-networks"]], "Adding a hidden layer": [[36, "adding-a-hidden-layer"]], "Adding error analysis and training set up": [[29, "adding-error-analysis-and-training-set-up"], [30, "adding-error-analysis-and-training-set-up"]], "Adjust hyperparameters": [[1, "adjust-hyperparameters"]], "Algorithms and codes for Adagrad, RMSprop and Adam": [[32, "algorithms-and-codes-for-adagrad-rmsprop-and-adam"]], "Algorithms for Setting up Decision Trees": [[9, "algorithms-for-setting-up-decision-trees"]], "An Overview of Ensemble Methods": [[10, "an-overview-of-ensemble-methods"]], "An extrapolation example": [[4, "an-extrapolation-example"]], "An optimization/minimization problem": [[29, "an-optimization-minimization-problem"]], "Analyzing the last results": [[36, "analyzing-the-last-results"]], "And finally \\boldsymbol{X}\\boldsymbol{X}^T": [[30, "and-finally-boldsymbol-x-boldsymbol-x-t"]], "And finally ADAM": [[32, "and-finally-adam"]], "And what about using neural networks?": [[29, "and-what-about-using-neural-networks"]], "Another Example from Scikit-Learn\u2019s Repository": [[33, "another-example-from-scikit-learn-s-repository"], [34, "another-example-from-scikit-learn-s-repository"]], "Another Example, now with a polynomial fit": [[31, "another-example-now-with-a-polynomial-fit"]], "Another example, the moons again": [[9, "another-example-the-moons-again"]], "Applied Data Analysis and Machine Learning": [[22, null]], "Artificial neurons": [[35, "artificial-neurons"], [36, "artificial-neurons"]], "Assumptions made": [[33, "assumptions-made"]], "Autocorrelation function": [[26, "autocorrelation-function"]], "Automatic differentiation": [[13, "automatic-differentiation"], [36, "automatic-differentiation"]], "Automatic differentiation through examples": [[36, "automatic-differentiation-through-examples"]], "Back to Ridge and LASSO Regression": [[30, "back-to-ridge-and-lasso-regression"], [31, "back-to-ridge-and-lasso-regression"]], "Back to the Cancer Data": [[11, "back-to-the-cancer-data"]], "Background literature": [[24, "background-literature"]], "Bagging": [[10, "bagging"]], "Bagging Examples": [[10, "bagging-examples"]], "Basic Matrix Features": [[23, "basic-matrix-features"]], "Basic ideas of the Principal Component Analysis (PCA)": [[11, null]], "Basic math of the SVD": [[5, "basic-math-of-the-svd"], [30, "basic-math-of-the-svd"], [31, "basic-math-of-the-svd"]], "Basics": [[7, "basics"], [34, "basics"], [35, "basics"]], "Basics of a tree": [[9, "basics-of-a-tree"]], "Basics of an NN": [[36, "basics-of-an-nn"]], "Batch Normalization": [[1, "batch-normalization"]], "Batches and mini-batches": [[32, "batches-and-mini-batches"]], "Bayes\u2019 Theorem and Ridge and Lasso Regression": [[5, "bayes-theorem-and-ridge-and-lasso-regression"]], "Boosting, a Bird\u2019s Eye View": [[10, "boosting-a-bird-s-eye-view"]], "Bootstrap": [[6, "bootstrap"]], "Bringing it together": [[36, "bringing-it-together"]], "Bringing it together, first back propagation equation": [[12, "bringing-it-together-first-back-propagation-equation"]], "Building a Feed Forward Neural Network": [[1, null]], "Building a tree, regression": [[9, "building-a-tree-regression"]], "Building neural networks in Tensorflow and Keras": [[1, "building-neural-networks-in-tensorflow-and-keras"]], "But none of these can compete with Newton\u2019s method": [[32, "but-none-of-these-can-compete-with-newton-s-method"]], "CNNs in more detail, building convolutional neural networks in Tensorflow and Keras": [[3, "cnns-in-more-detail-building-convolutional-neural-networks-in-tensorflow-and-keras"]], "Cancer Data again now with Decision Trees and other Methods": [[9, "cancer-data-again-now-with-decision-trees-and-other-methods"]], "Chain rule": [[36, "chain-rule"]], "Chain rule, forward and reverse modes": [[36, "chain-rule-forward-and-reverse-modes"]], "Challenge: Choosing a Fixed Learning Rate": [[32, "challenge-choosing-a-fixed-learning-rate"]], "Choose cost function and optimizer": [[1, "choose-cost-function-and-optimizer"]], "Class of functions we can approximate": [[36, "class-of-functions-we-can-approximate"]], "Classical PCA Theorem": [[11, "classical-pca-theorem"]], "Classification problems": [[34, "classification-problems"], [35, "classification-problems"]], "Clustering and Unsupervised Learning": [[14, null]], "Code Example for Cross-validation and k-fold Cross-validation": [[33, "code-example-for-cross-validation-and-k-fold-cross-validation"], [34, "code-example-for-cross-validation-and-k-fold-cross-validation"]], "Code example": [[36, "code-example"]], "Code example for the Bootstrap method": [[33, "code-example-for-the-bootstrap-method"]], "Code for SVD and Inversion of Matrices": [[5, "code-for-svd-and-inversion-of-matrices"]], "Code with a Number of Minibatches which varies": [[32, "code-with-a-number-of-minibatches-which-varies"]], "Codes and Approaches": [[14, "codes-and-approaches"]], "Codes for the SVD": [[5, "codes-for-the-svd"], [30, "codes-for-the-svd"], [31, "codes-for-the-svd"]], "Coding Setup and Linear Regression": [[15, "coding-setup-and-linear-regression"]], "Collect and pre-process data": [[1, "collect-and-pre-process-data"]], "Communication channels": [[29, "communication-channels"]], "Compact expressions": [[36, "compact-expressions"]], "Compare Bagging on Trees with Random Forests": [[10, "compare-bagging-on-trees-with-random-forests"]], "Comparing with a numerical scheme": [[2, "comparing-with-a-numerical-scheme"]], "Comparison with OLS": [[31, "comparison-with-ols"]], "Completing the list": [[36, "completing-the-list"]], "Computation of gradients": [[32, "computation-of-gradients"]], "Computing the Gini index": [[9, "computing-the-gini-index"]], "Conditions on convex functions": [[31, "conditions-on-convex-functions"]], "Confidence Intervals": [[33, "confidence-intervals"]], "Conjugate gradient method": [[13, "conjugate-gradient-method"]], "Convergence rates": [[32, "convergence-rates"]], "Convex function": [[31, "convex-function"]], "Convex functions": [[13, "convex-functions"], [31, "convex-functions"]], "Convolution Examples: Polynomial multiplication": [[3, "convolution-examples-polynomial-multiplication"]], "Convolution Examples: Principle of Superposition and Periodic Forces (Fourier Transforms)": [[3, "convolution-examples-principle-of-superposition-and-periodic-forces-fourier-transforms"]], "Convolutional Neural Network": [[12, "convolutional-neural-network"], [35, "convolutional-neural-network"], [36, "convolutional-neural-network"]], "Convolutional Neural Networks": [[3, null]], "Correlation Function and Design/Feature Matrix": [[30, "correlation-function-and-design-feature-matrix"]], "Correlation Matrix": [[11, "correlation-matrix"], [30, "correlation-matrix"]], "Correlation Matrix with Pandas": [[30, "correlation-matrix-with-pandas"]], "Counting the number of floating point operations": [[36, "counting-the-number-of-floating-point-operations"]], "Course Format": [[29, "course-format"]], "Course setting": [[25, null]], "Covariance Matrix Examples": [[30, "covariance-matrix-examples"]], "Covariance and Correlation Matrix": [[30, "covariance-and-correlation-matrix"]], "Cross-validation": [[6, "cross-validation"]], "Cross-validation in brief": [[33, "cross-validation-in-brief"], [34, "cross-validation-in-brief"]], "Deadlines for projects (tentative)": [[29, "deadlines-for-projects-tentative"]], "Decision trees, overarching aims": [[9, null]], "Deep Neural Networks": [[32, "deep-neural-networks"]], "Deep learning methods": [[29, "deep-learning-methods"]], "Define model and architecture": [[1, "define-model-and-architecture"]], "Defining intermediate operations": [[36, "defining-intermediate-operations"]], "Defining the cost function": [[1, "defining-the-cost-function"]], "Definitions": [[19, "definitions"], [36, "definitions"]], "Deliverables": [[15, "deliverables"], [16, "deliverables"], [19, "deliverables"], [20, "deliverables"], [24, "deliverables"]], "Derivation of the AdaGrad Algorithm": [[32, "derivation-of-the-adagrad-algorithm"]], "Derivative of the cost function": [[36, "derivative-of-the-cost-function"]], "Derivatives and the chain rule": [[12, "derivatives-and-the-chain-rule"], [36, "derivatives-and-the-chain-rule"]], "Derivatives in terms of z_j^L": [[36, "derivatives-in-terms-of-z-j-l"]], "Derivatives of the hidden layer": [[36, "derivatives-of-the-hidden-layer"]], "Derivatives, example 1": [[30, "derivatives-example-1"]], "Deriving OLS from a probability distribution": [[5, "deriving-ols-from-a-probability-distribution"], [33, "deriving-ols-from-a-probability-distribution"]], "Deriving and Implementing Ordinary Least Squares": [[16, "deriving-and-implementing-ordinary-least-squares"]], "Deriving and Implementing Ridge Regression": [[17, "deriving-and-implementing-ridge-regression"]], "Deriving the Lasso Regression Equations": [[30, "deriving-the-lasso-regression-equations"], [31, "deriving-the-lasso-regression-equations"], [31, "id6"]], "Deriving the Ridge Regression Equations": [[30, "deriving-the-ridge-regression-equations"], [31, "deriving-the-ridge-regression-equations"], [31, "id3"]], "Deriving the back propagation code for a multilayer perceptron model": [[12, "deriving-the-back-propagation-code-for-a-multilayer-perceptron-model"]], "Developing a code for doing neural networks with back propagation": [[1, "developing-a-code-for-doing-neural-networks-with-back-propagation"]], "Diagonalize the sample covariance matrix to obtain the principal components": [[11, "diagonalize-the-sample-covariance-matrix-to-obtain-the-principal-components"]], "Different kernels and Mercer\u2019s theorem": [[8, "different-kernels-and-mercer-s-theorem"]], "Disadvantages": [[9, "disadvantages"]], "Discriminative Modeling": [[29, "discriminative-modeling"]], "Discussing the correlation data": [[35, "discussing-the-correlation-data"]], "Does Logistic Regression do a better Job?": [[35, "does-logistic-regression-do-a-better-job"]], "Domains and probabilities": [[26, "domains-and-probabilities"]], "Dropout": [[1, "dropout"]], "Economy-size SVD": [[30, "economy-size-svd"], [31, "economy-size-svd"]], "Elements of Probability Theory and Statistical Data Analysis": [[26, null]], "Empirical Evidence: Convergence Time and Memory in Practice": [[32, "empirical-evidence-convergence-time-and-memory-in-practice"]], "Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods": [[10, null]], "Entropy and the ID3 algorithm": [[9, "entropy-and-the-id3-algorithm"]], "Essential elements of ML": [[29, "essential-elements-of-ml"]], "Evaluate model performance on test data": [[1, "evaluate-model-performance-on-test-data"]], "Example 2": [[30, "example-2"]], "Example 3": [[30, "example-3"]], "Example 4": [[30, "example-4"]], "Example Matrix": [[30, "example-matrix"], [31, "example-matrix"]], "Example code for Bias-Variance tradeoff": [[33, "example-code-for-bias-variance-tradeoff"]], "Example code for Logistic Regression": [[34, "example-code-for-logistic-regression"], [35, "example-code-for-logistic-regression"]], "Example of discriminative modeling, taken from Generative Deep Learning by David Foster": [[29, "example-of-discriminative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of generative modeling, taken from Generative Deep Learning by David Foster": [[29, "example-of-generative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of own Standard scaling": [[30, "example-of-own-standard-scaling"]], "Example relevant for the exercises": [[30, "example-relevant-for-the-exercises"]], "Example: Exponential decay": [[2, "example-exponential-decay"]], "Example: Population growth": [[2, "example-population-growth"]], "Example: The diffusion equation": [[2, "example-the-diffusion-equation"]], "Example: binary classification problem": [[1, "example-binary-classification-problem"]], "Examples": [[29, "examples"]], "Examples of XOR, OR and AND gates": [[35, "examples-of-xor-or-and-and-gates"]], "Examples of likelihood functions used in logistic regression and neural networks": [[7, "examples-of-likelihood-functions-used-in-logistic-regression-and-neural-networks"]], "Examples of likelihood functions used in logistic regression and nueral networks": [[34, "examples-of-likelihood-functions-used-in-logistic-regression-and-nueral-networks"]], "Exercise 1": [[21, "exercise-1"]], "Exercise 1 - Choice of model and degrees of freedom": [[17, "exercise-1-choice-of-model-and-degrees-of-freedom"]], "Exercise 1 - Finding the derivative of Matrix-Vector expressions": [[16, "exercise-1-finding-the-derivative-of-matrix-vector-expressions"]], "Exercise 1 - Github Setup": [[15, "exercise-1-github-setup"]], "Exercise 1, scale your data": [[18, "exercise-1-scale-your-data"]], "Exercise 1: Creating the report document": [[20, "exercise-1-creating-the-report-document"]], "Exercise 1: Expectation values for ordinary least squares expressions": [[19, "exercise-1-expectation-values-for-ordinary-least-squares-expressions"]], "Exercise 1: Including more data": [[36, "exercise-1-including-more-data"]], "Exercise 1: Setting up various Python environments": [[0, "exercise-1-setting-up-various-python-environments"]], "Exercise 2": [[21, "exercise-2"]], "Exercise 2 - Deriving the expression for OLS": [[16, "exercise-2-deriving-the-expression-for-ols"]], "Exercise 2 - Deriving the expression for Ridge Regression": [[17, "exercise-2-deriving-the-expression-for-ridge-regression"]], "Exercise 2 - Setting up a Github repository": [[15, "exercise-2-setting-up-a-github-repository"]], "Exercise 2, calculate the gradients": [[18, "exercise-2-calculate-the-gradients"]], "Exercise 2: Adding good figures": [[20, "exercise-2-adding-good-figures"]], "Exercise 2: Expectation values for Ridge regression": [[19, "exercise-2-expectation-values-for-ridge-regression"]], "Exercise 2: Extended program": [[36, "exercise-2-extended-program"]], "Exercise 2: making your own data and exploring scikit-learn": [[0, "exercise-2-making-your-own-data-and-exploring-scikit-learn"]], "Exercise 3": [[21, "exercise-3"]], "Exercise 3 - Creating feature matrix and implementing OLS using the analytical expression": [[16, "exercise-3-creating-feature-matrix-and-implementing-ols-using-the-analytical-expression"]], "Exercise 3 - Fitting an OLS model to data": [[15, "exercise-3-fitting-an-ols-model-to-data"]], "Exercise 3 - Scaling data": [[17, "exercise-3-scaling-data"]], "Exercise 3 - Setting up a Python virtual environment": [[15, "exercise-3-setting-up-a-python-virtual-environment"]], "Exercise 3, using the analytical formulae for OLS and Ridge regression to find the optimal paramters \\boldsymbol{\\theta}": [[18, "exercise-3-using-the-analytical-formulae-for-ols-and-ridge-regression-to-find-the-optimal-paramters-boldsymbol-theta"]], "Exercise 3: Deriving the expression for the Bias-Variance Trade-off": [[19, "exercise-3-deriving-the-expression-for-the-bias-variance-trade-off"]], "Exercise 3: Normalizing our data": [[0, "exercise-3-normalizing-our-data"]], "Exercise 3: Writing an abstract and introduction": [[20, "exercise-3-writing-an-abstract-and-introduction"]], "Exercise 4 - Custom activation for each layer": [[21, "exercise-4-custom-activation-for-each-layer"]], "Exercise 4 - Fitting a polynomial": [[16, "exercise-4-fitting-a-polynomial"]], "Exercise 4 - Implementing Ridge Regression": [[17, "exercise-4-implementing-ridge-regression"]], "Exercise 4 - Testing multiple hyperparameters": [[17, "exercise-4-testing-multiple-hyperparameters"]], "Exercise 4 - The train-test split": [[15, "exercise-4-the-train-test-split"]], "Exercise 4, Implementing the simplest form for gradient descent": [[18, "exercise-4-implementing-the-simplest-form-for-gradient-descent"]], "Exercise 4: Adding Ridge Regression": [[0, "exercise-4-adding-ridge-regression"]], "Exercise 4: Computing the Bias and Variance": [[19, "exercise-4-computing-the-bias-and-variance"]], "Exercise 4: Making the code available and presentable": [[20, "exercise-4-making-the-code-available-and-presentable"]], "Exercise 5 - Comparing your code with sklearn": [[16, "exercise-5-comparing-your-code-with-sklearn"]], "Exercise 5 - Processing multiple inputs at once": [[21, "exercise-5-processing-multiple-inputs-at-once"]], "Exercise 5, Ridge regression and a new Synthetic Dataset": [[18, "exercise-5-ridge-regression-and-a-new-synthetic-dataset"]], "Exercise 5: Analytical exercises": [[0, "exercise-5-analytical-exercises"]], "Exercise 5: Interpretation of scaling and metrics": [[19, "exercise-5-interpretation-of-scaling-and-metrics"]], "Exercise 5: Referencing": [[20, "exercise-5-referencing"]], "Exercise 6 - Predicting on real data": [[21, "exercise-6-predicting-on-real-data"]], "Exercise 7 - Training on real data (Optional)": [[21, "exercise-7-training-on-real-data-optional"]], "Exercise: Cross-validation as resampling techniques, adding more complexity": [[6, "exercise-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Exercise: Analysis of real data": [[6, "exercise-analysis-of-real-data"]], "Exercise: Bias-variance trade-off and resampling techniques": [[6, "exercise-bias-variance-trade-off-and-resampling-techniques"]], "Exercise: Lasso Regression on the Franke function with resampling": [[6, "exercise-lasso-regression-on-the-franke-function-with-resampling"]], "Exercise: Ordinary Least Square (OLS) on the Franke function": [[6, "exercise-ordinary-least-square-ols-on-the-franke-function"]], "Exercise: Ridge Regression on the Franke function with resampling": [[6, "exercise-ridge-regression-on-the-franke-function-with-resampling"]], "Exercises": [[0, "exercises"]], "Exercises and Projects": [[6, "exercises-and-projects"]], "Exercises week 34": [[15, null]], "Exercises week 35": [[16, null]], "Exercises week 36": [[17, null]], "Exercises week 37": [[18, null]], "Exercises week 38": [[19, null]], "Exercises week 39": [[20, null]], "Exercises week 41": [[21, null]], "Expectation value and variance": [[33, "expectation-value-and-variance"]], "Expectation value and variance for \\boldsymbol{\\theta}": [[33, "expectation-value-and-variance-for-boldsymbol-theta"]], "Expectation values": [[26, "expectation-values"]], "Explicit derivatives": [[36, "explicit-derivatives"]], "Extending to more predictors": [[34, "extending-to-more-predictors"], [35, "extending-to-more-predictors"]], "Extending to more than one variable": [[31, "extending-to-more-than-one-variable"]], "Extremely useful tools, strongly recommended": [[29, "extremely-useful-tools-strongly-recommended"]], "Feed-forward neural networks": [[12, "feed-forward-neural-networks"], [35, "feed-forward-neural-networks"], [36, "feed-forward-neural-networks"]], "Feed-forward pass": [[1, "feed-forward-pass"]], "Final back propagating equation": [[12, "final-back-propagating-equation"], [36, "final-back-propagating-equation"]], "Final derivatives": [[36, "final-derivatives"]], "Final expression": [[36, "final-expression"]], "Final expressions for the biases of the hidden layer": [[36, "final-expressions-for-the-biases-of-the-hidden-layer"]], "Finding the Limit": [[33, "finding-the-limit"]], "Fine-tuning neural network hyperparameters": [[1, "fine-tuning-neural-network-hyperparameters"]], "First network example, simple percepetron with one input": [[36, "first-network-example-simple-percepetron-with-one-input"]], "Fitting an Equation of State for Dense Nuclear Matter": [[0, "fitting-an-equation-of-state-for-dense-nuclear-matter"]], "Fixing the singularity": [[30, "fixing-the-singularity"], [31, "fixing-the-singularity"]], "Format for electronic delivery of report and programs": [[24, "format-for-electronic-delivery-of-report-and-programs"]], "Forward and reverse modes": [[36, "forward-and-reverse-modes"]], "Frequently used scaling functions": [[30, "frequently-used-scaling-functions"], [32, "frequently-used-scaling-functions"]], "From OLS to Ridge and Lasso": [[31, "from-ols-to-ridge-and-lasso"]], "From one to many layers, the universal approximation theorem": [[12, "from-one-to-many-layers-the-universal-approximation-theorem"]], "Functionality in Scikit-Learn": [[30, "functionality-in-scikit-learn"], [32, "functionality-in-scikit-learn"]], "Further Dimensionality Remarks": [[3, "further-dimensionality-remarks"]], "Further properties (important for our analyses later)": [[5, "further-properties-important-for-our-analyses-later"], [30, "further-properties-important-for-our-analyses-later"], [31, "further-properties-important-for-our-analyses-later"]], "Gaussian Elimination": [[23, "gaussian-elimination"]], "General Features": [[9, "general-features"]], "General linear models and linear algebra": [[29, "general-linear-models-and-linear-algebra"]], "Generalizing the fitting procedure as a linear algebra problem": [[29, "generalizing-the-fitting-procedure-as-a-linear-algebra-problem"], [29, "id1"]], "Generative Adversarial Networks": [[4, "generative-adversarial-networks"]], "Generative Models": [[4, "generative-models"]], "Generative Versus Discriminative Modeling": [[29, "generative-versus-discriminative-modeling"]], "Geometric Interpretation and link with Singular Value Decomposition": [[11, "geometric-interpretation-and-link-with-singular-value-decomposition"]], "Getting serious, the back propagation equations for a neural network": [[36, "getting-serious-the-back-propagation-equations-for-a-neural-network"]], "Getting started with project 1": [[20, "getting-started-with-project-1"]], "Gradient Boosting, Classification Example": [[10, "gradient-boosting-classification-example"]], "Gradient Boosting, Examples of Regression": [[10, "gradient-boosting-examples-of-regression"]], "Gradient Clipping": [[1, "gradient-clipping"]], "Gradient Descent Example": [[31, "id1"], [32, "id1"]], "Gradient boosting: Basics with Steepest Descent/Functional Gradient Descent": [[10, "gradient-boosting-basics-with-steepest-descent-functional-gradient-descent"]], "Gradient descent": [[2, "gradient-descent"]], "Gradient descent and Ridge": [[31, "gradient-descent-and-ridge"], [32, "gradient-descent-and-ridge"]], "Gradient descent and revisiting Ordinary Least Squares from last week": [[32, "gradient-descent-and-revisiting-ordinary-least-squares-from-last-week"]], "Gradient descent example": [[31, "gradient-descent-example"], [32, "gradient-descent-example"]], "Gradient expressions": [[36, "gradient-expressions"]], "Grading": [[27, "grading"], [27, "id2"], [29, "grading"]], "How to take derivatives of Matrix-Vector expressions": [[16, "how-to-take-derivatives-of-matrix-vector-expressions"]], "Hyperplanes and all that": [[8, "hyperplanes-and-all-that"]], "Identifying Terms": [[33, "identifying-terms"]], "Illustration of a single perceptron model and a multi-perceptron model": [[35, "illustration-of-a-single-perceptron-model-and-a-multi-perceptron-model"], [36, "illustration-of-a-single-perceptron-model-and-a-multi-perceptron-model"]], "Important Matrix and vector handling packages": [[23, "important-matrix-and-vector-handling-packages"]], "Important observations": [[36, "important-observations"]], "Important technicalities: More on Rescaling data": [[30, "important-technicalities-more-on-rescaling-data"]], "Improving gradient descent with momentum": [[32, "improving-gradient-descent-with-momentum"]], "Improving performance": [[1, "improving-performance"]], "In general not this simple": [[36, "in-general-not-this-simple"]], "In summary": [[27, "in-summary"]], "Including Stochastic Gradient Descent with Autograd": [[13, "including-stochastic-gradient-descent-with-autograd"], [32, "including-stochastic-gradient-descent-with-autograd"]], "Including more classes": [[34, "including-more-classes"], [35, "including-more-classes"]], "Incremental PCA": [[11, "incremental-pca"]], "Independent and Identically Distributed (iid)": [[33, "independent-and-identically-distributed-iid"]], "Inputs to the activation function": [[36, "inputs-to-the-activation-function"]], "Installing R, C++, cython or Julia": [[29, "installing-r-c-cython-or-julia"]], "Installing R, C++, cython, Numba etc": [[29, "installing-r-c-cython-numba-etc"]], "Instructor information": [[27, "instructor-information"]], "Interpretations and optimizing our parameters": [[29, "interpretations-and-optimizing-our-parameters"], [29, "id2"], [29, "id3"], [30, "interpretations-and-optimizing-our-parameters"], [30, "id1"], [30, "id2"]], "Interpreting the Ridge results": [[30, "interpreting-the-ridge-results"], [31, "interpreting-the-ridge-results"], [31, "id4"]], "Introducing JAX": [[13, "introducing-jax"]], "Introducing the Covariance and Correlation functions": [[11, "introducing-the-covariance-and-correlation-functions"], [30, "introducing-the-covariance-and-correlation-functions"]], "Introduction": [[0, "introduction"], [6, "introduction"], [22, "introduction"], [23, "introduction"]], "Introduction to Neural networks": [[35, "introduction-to-neural-networks"], [36, "introduction-to-neural-networks"]], "Introduction to numerical projects": [[24, "introduction-to-numerical-projects"]], "Iterative Fitting, Classification and AdaBoost": [[10, "iterative-fitting-classification-and-adaboost"]], "Iterative Fitting, Regression and Squared-error Cost Function": [[10, "iterative-fitting-regression-and-squared-error-cost-function"]], "Kernel PCA": [[11, "kernel-pca"]], "Kernels and non-linearity": [[8, "kernels-and-non-linearity"]], "LU Decomposition, the inverse of a matrix": [[23, "lu-decomposition-the-inverse-of-a-matrix"]], "Lab sessions Tuesday and Wednesday": [[35, "lab-sessions-tuesday-and-wednesday"]], "Lab sessions on Tuesday and Wednesday": [[36, "lab-sessions-on-tuesday-and-wednesday"]], "Lab sessions week 39": [[34, "lab-sessions-week-39"]], "Lasso Regression": [[31, "lasso-regression"]], "Lasso case": [[31, "lasso-case"]], "Layers": [[1, "layers"]], "Layers used to build CNNs": [[3, "layers-used-to-build-cnns"]], "Layout of a neural network with three hidden layers": [[36, "layout-of-a-neural-network-with-three-hidden-layers"]], "Layout of a simple neural network with no hidden layer": [[36, "layout-of-a-simple-neural-network-with-no-hidden-layer"]], "Layout of a simple neural network with one hidden layer": [[36, "layout-of-a-simple-neural-network-with-one-hidden-layer"]], "Layout of a simple neural network with two input nodes, one hidden layer and one output node": [[36, "layout-of-a-simple-neural-network-with-two-input-nodes-one-hidden-layer-and-one-output-node"]], "Learning goals": [[15, "learning-goals"], [16, "learning-goals"], [17, "learning-goals"], [18, "learning-goals"], [19, "learning-goals"], [20, "learning-goals"]], "Learning outcomes": [[22, "learning-outcomes"], [29, "learning-outcomes"]], "Lecture Monday October 6": [[36, "lecture-monday-october-6"]], "Lecture Monday September 29, 2025": [[35, "lecture-monday-september-29-2025"]], "Lecture material": [[34, "lecture-material"]], "Lectures and ComputerLab": [[29, "lectures-and-computerlab"]], "Limitations of supervised learning with deep networks": [[1, "limitations-of-supervised-learning-with-deep-networks"]], "Linear Algebra, Handling of Arrays and more Python Features": [[23, null]], "Linear Regression": [[0, null]], "Linear Regression Problems": [[30, "linear-regression-problems"], [31, "linear-regression-problems"]], "Linear Regression and the SVD": [[31, "linear-regression-and-the-svd"]], "Linear Regression, basic elements": [[0, "linear-regression-basic-elements"]], "Linear classifier": [[34, "linear-classifier"]], "Linking Bayes\u2019 Theorem with Ridge and Lasso Regression": [[5, "linking-bayes-theorem-with-ridge-and-lasso-regression"]], "Linking the regression analysis with a statistical interpretation": [[5, "linking-the-regression-analysis-with-a-statistical-interpretation"], [33, "linking-the-regression-analysis-with-a-statistical-interpretation"]], "Linking with the SVD": [[5, "linking-with-the-svd"], [30, "linking-with-the-svd"]], "Links to relevant courses at the University of Oslo": [[28, "links-to-relevant-courses-at-the-university-of-oslo"]], "Logistic Regression": [[7, null], [7, "id1"], [34, "logistic-regression"]], "Logistic Regression, from last week": [[35, "logistic-regression-from-last-week"]], "MNIST and GANs": [[4, "mnist-and-gans"]], "Machine Learning": [[29, "machine-learning"]], "Machine learning": [[22, "machine-learning"]], "Main textbooks": [[29, "main-textbooks"]], "Making a tree": [[9, "making-a-tree"]], "Making your own Bootstrap: Changing the Level of the Decision Tree": [[10, "making-your-own-bootstrap-changing-the-level-of-the-decision-tree"]], "Making your own test-train splitting": [[30, "making-your-own-test-train-splitting"]], "Material for exercises week 35": [[30, "material-for-exercises-week-35"]], "Material for lab sessions sessions Tuesday and Wednesday": [[31, "material-for-lab-sessions-sessions-tuesday-and-wednesday"]], "Material for lecture Monday September 2": [[31, "material-for-lecture-monday-september-2"]], "Material for lecture Monday September 8": [[32, "material-for-lecture-monday-september-8"]], "Material for the lab sessions": [[32, "material-for-the-lab-sessions"], [33, "material-for-the-lab-sessions"]], "Material for the lecture on Monday October 6, 2025": [[36, "material-for-the-lecture-on-monday-october-6-2025"]], "Mathematical Interpretation of Ordinary Least Squares": [[5, "mathematical-interpretation-of-ordinary-least-squares"], [30, "mathematical-interpretation-of-ordinary-least-squares"], [31, "mathematical-interpretation-of-ordinary-least-squares"]], "Mathematical model": [[35, "mathematical-model"], [35, "id1"], [35, "id2"], [35, "id3"], [35, "id4"]], "Mathematical optimization of convex functions": [[8, "mathematical-optimization-of-convex-functions"]], "Mathematics of CNNs": [[3, "mathematics-of-cnns"]], "Mathematics of deep learning": [[36, "mathematics-of-deep-learning"]], "Mathematics of deep learning and neural networks": [[36, "mathematics-of-deep-learning-and-neural-networks"]], "Mathematics of the SVD and implications": [[5, "mathematics-of-the-svd-and-implications"], [30, "mathematics-of-the-svd-and-implications"], [31, "mathematics-of-the-svd-and-implications"]], "Matrices in Python": [[29, "matrices-in-python"]], "Matrix multiplication": [[1, "matrix-multiplication"]], "Matrix-vector notation": [[35, "matrix-vector-notation"]], "Matrix-vector notation and activation": [[12, "matrix-vector-notation-and-activation"], [35, "matrix-vector-notation-and-activation"]], "Maximum Likelihood Estimation (MLE)": [[33, "maximum-likelihood-estimation-mle"]], "Maximum likelihood": [[34, "maximum-likelihood"], [35, "maximum-likelihood"]], "Meet the covariance!": [[26, "meet-the-covariance"]], "Meet the Covariance Matrix": [[5, "meet-the-covariance-matrix"], [30, "meet-the-covariance-matrix"]], "Meet the Hessian Matrix": [[30, "meet-the-hessian-matrix"]], "Meet the Pandas": [[29, "meet-the-pandas"]], "Memory Usage and Scalability": [[32, "memory-usage-and-scalability"]], "Memory constraints": [[32, "memory-constraints"]], "Min-Max Scaling": [[30, "min-max-scaling"]], "Minimizing the cross entropy": [[34, "minimizing-the-cross-entropy"], [35, "minimizing-the-cross-entropy"]], "Momentum based GD": [[13, "momentum-based-gd"], [32, "momentum-based-gd"]], "More classes": [[34, "more-classes"], [35, "more-classes"]], "More complicated Example: The Ising model": [[6, "more-complicated-example-the-ising-model"]], "More complicated function": [[36, "more-complicated-function"]], "More considerations": [[36, "more-considerations"]], "More examples on bootstrap and cross-validation and errors": [[33, "more-examples-on-bootstrap-and-cross-validation-and-errors"], [34, "more-examples-on-bootstrap-and-cross-validation-and-errors"]], "More interpretations": [[30, "more-interpretations"], [31, "more-interpretations"], [31, "id5"]], "More on Dimensionalities": [[3, "more-on-dimensionalities"]], "More on Rescaling data": [[6, "more-on-rescaling-data"]], "More on Steepest descent": [[31, "more-on-steepest-descent"]], "More on convex functions": [[31, "more-on-convex-functions"]], "More on the general approximation theorem": [[36, "more-on-the-general-approximation-theorem"]], "More preprocessing": [[30, "more-preprocessing"], [32, "more-preprocessing"]], "Motivation for Adaptive Step Sizes": [[32, "motivation-for-adaptive-step-sizes"]], "Multilayer perceptrons": [[12, "multilayer-perceptrons"], [35, "multilayer-perceptrons"], [36, "multilayer-perceptrons"]], "Multivariable functions": [[36, "multivariable-functions"]], "Network requirements": [[2, "network-requirements"]], "Neural Networks vs CNNs": [[3, "neural-networks-vs-cnns"]], "Neural network types": [[35, "neural-network-types"], [36, "neural-network-types"]], "Neural networks": [[12, null]], "New expression for the derivative": [[36, "new-expression-for-the-derivative"]], "Non-Convex Problems": [[32, "non-convex-problems"]], "Note about SVD Calculations": [[30, "note-about-svd-calculations"], [31, "note-about-svd-calculations"]], "Note on Scikit-Learn": [[31, "note-on-scikit-learn"]], "Numerical experiments and the covariance, central limit theorem": [[26, "numerical-experiments-and-the-covariance-central-limit-theorem"]], "Numpy and arrays": [[23, "numpy-and-arrays"], [29, "numpy-and-arrays"]], "Numpy examples and Important Matrix and vector handling packages": [[29, "numpy-examples-and-important-matrix-and-vector-handling-packages"]], "Optimization and Deep learning": [[34, "optimization-and-deep-learning"], [35, "optimization-and-deep-learning"]], "Optimization and gradient descent, the central part of any Machine Learning algortithm": [[31, "optimization-and-gradient-descent-the-central-part-of-any-machine-learning-algortithm"]], "Optimization, the central part of any Machine Learning algortithm": [[13, null], [34, "optimization-the-central-part-of-any-machine-learning-algortithm"], [35, "optimization-the-central-part-of-any-machine-learning-algortithm"]], "Optimizing our parameters": [[29, "optimizing-our-parameters"]], "Optimizing our parameters, more details": [[29, "optimizing-our-parameters-more-details"]], "Optimizing the cost function": [[1, "optimizing-the-cost-function"]], "Optimizing the parameters": [[36, "optimizing-the-parameters"]], "Organizing our data": [[0, "organizing-our-data"], [29, "organizing-our-data"]], "Other Matrix and Vector Operations": [[23, "other-matrix-and-vector-operations"]], "Other Types of Recurrent Neural Networks": [[4, "other-types-of-recurrent-neural-networks"]], "Other courses on Data science and Machine Learning at UiO": [[29, "other-courses-on-data-science-and-machine-learning-at-uio"]], "Other courses on Data science and Machine Learning at UiO, contn": [[29, "other-courses-on-data-science-and-machine-learning-at-uio-contn"]], "Other ingredients of a neural network": [[36, "other-ingredients-of-a-neural-network"]], "Other measures in classification studies": [[35, "other-measures-in-classification-studies"]], "Other parameters": [[36, "other-parameters"]], "Other popular texts": [[29, "other-popular-texts"]], "Other techniques": [[11, "other-techniques"]], "Other types of networks": [[12, "other-types-of-networks"], [35, "other-types-of-networks"], [36, "other-types-of-networks"]], "Other ways of visualizing the trees": [[9, "other-ways-of-visualizing-the-trees"]], "Our model for the nuclear binding energies": [[29, "our-model-for-the-nuclear-binding-energies"]], "Output layer": [[36, "output-layer"]], "Overarching aims of the exercises this week": [[21, "overarching-aims-of-the-exercises-this-week"]], "Overarching view of a neural network": [[36, "overarching-view-of-a-neural-network"]], "Overview of first week": [[29, "overview-of-first-week"]], "Overview video on Stochastic Gradient Descent (SGD)": [[32, "overview-video-on-stochastic-gradient-descent-sgd"]], "Own code for Ordinary Least Squares": [[29, "own-code-for-ordinary-least-squares"], [30, "own-code-for-ordinary-least-squares"]], "PCA and scikit-learn": [[11, "pca-and-scikit-learn"]], "Pandas AI": [[29, "pandas-ai"]], "Parameters of neural networks": [[36, "parameters-of-neural-networks"]], "Part a : Ordinary Least Square (OLS) for the Runge function": [[24, "part-a-ordinary-least-square-ols-for-the-runge-function"]], "Part b: Adding Ridge regression for the Runge function": [[24, "part-b-adding-ridge-regression-for-the-runge-function"]], "Part c: Writing your own gradient descent code": [[24, "part-c-writing-your-own-gradient-descent-code"]], "Part d: Including momentum and more advanced ways to update the learning the rate": [[24, "part-d-including-momentum-and-more-advanced-ways-to-update-the-learning-the-rate"]], "Part e: Writing our own code for Lasso regression": [[24, "part-e-writing-our-own-code-for-lasso-regression"]], "Part f: Stochastic gradient descent": [[24, "part-f-stochastic-gradient-descent"]], "Part g: Bias-variance trade-off and resampling techniques": [[24, "part-g-bias-variance-trade-off-and-resampling-techniques"]], "Part h): Cross-validation as resampling techniques, adding more complexity": [[24, "part-h-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Partial Differential Equations": [[2, "partial-differential-equations"]], "Plan for week 39, September 22-26, 2025": [[34, "plan-for-week-39-september-22-26-2025"]], "Plan for week 41, October 6-10": [[36, "plan-for-week-41-october-6-10"]], "Plans for week 35": [[30, "plans-for-week-35"]], "Plans for week 36": [[31, "plans-for-week-36"]], "Plans for week 37, lecture Monday": [[32, "plans-for-week-37-lecture-monday"]], "Plans for week 38, lecture Monday September 15": [[33, "plans-for-week-38-lecture-monday-september-15"]], "Plotting the Histogram": [[33, "plotting-the-histogram"]], "Plotting the mean value for each group": [[34, "plotting-the-mean-value-for-each-group"]], "Practical tips": [[13, "practical-tips"], [32, "practical-tips"]], "Practicalities": [[27, "practicalities"], [27, "id1"]], "Preamble: Note on writing reports, using reference material, AI and other tools": [[24, "preamble-note-on-writing-reports-using-reference-material-ai-and-other-tools"]], "Predicting New Points With A Trained Recurrent Neural Network": [[4, "predicting-new-points-with-a-trained-recurrent-neural-network"]], "Preprocessing our data": [[30, "preprocessing-our-data"]], "Prerequisites": [[29, "prerequisites"]], "Prerequisites and background": [[22, "prerequisites-and-background"]], "Prerequisites: Collect and pre-process data": [[3, "prerequisites-collect-and-pre-process-data"]], "Probability Distribution Functions": [[26, "probability-distribution-functions"]], "Program example for gradient descent with Ridge Regression": [[31, "program-example-for-gradient-descent-with-ridge-regression"], [32, "program-example-for-gradient-descent-with-ridge-regression"]], "Program for stochastic gradient": [[13, "program-for-stochastic-gradient"]], "Project 1 on Machine Learning, deadline October 6 (midnight), 2025": [[24, null]], "Properties of PDFs": [[26, "properties-of-pdfs"]], "Pros and cons": [[32, "pros-and-cons"]], "Pros and cons of trees, pros": [[9, "pros-and-cons-of-trees-pros"]], "Python installers": [[22, "python-installers"], [29, "python-installers"]], "RMS prop": [[13, "rms-prop"]], "RMSProp algorithm, taken from Goodfellow et al": [[32, "rmsprop-algorithm-taken-from-goodfellow-et-al"]], "RMSProp: Adaptive Learning Rates": [[32, "rmsprop-adaptive-learning-rates"]], "RMSprop for adaptive learning rate with Stochastic Gradient Descent": [[32, "rmsprop-for-adaptive-learning-rate-with-stochastic-gradient-descent"]], "Random Numbers": [[26, "random-numbers"]], "Random forests": [[10, "random-forests"]], "Randomized PCA": [[11, "randomized-pca"]], "Reading material": [[29, "reading-material"]], "Reading recommendations:": [[30, "reading-recommendations"]], "Reading suggestions week 34": [[29, "reading-suggestions-week-34"]], "Readings and Videos": [[33, "readings-and-videos"]], "Readings and Videos, logistic regression": [[34, "readings-and-videos-logistic-regression"]], "Readings and Videos, resampling methods": [[34, "readings-and-videos-resampling-methods"]], "Readings and Videos:": [[32, "readings-and-videos"], [36, "readings-and-videos"]], "Recurrent neural networks": [[12, "recurrent-neural-networks"], [35, "recurrent-neural-networks"], [36, "recurrent-neural-networks"]], "Recurrent neural networks: Overarching view": [[4, null]], "Reducing the number of degrees of freedom, overarching view": [[0, "reducing-the-number-of-degrees-of-freedom-overarching-view"], [30, "reducing-the-number-of-degrees-of-freedom-overarching-view"]], "Reducing the number of operations": [[36, "reducing-the-number-of-operations"]], "Reformulating the problem": [[2, "reformulating-the-problem"]], "Regression Case": [[10, "regression-case"]], "Regression analysis and resampling methods": [[24, "regression-analysis-and-resampling-methods"]], "Regression analysis, overarching aims": [[29, "regression-analysis-overarching-aims"]], "Regression analysis, overarching aims II": [[29, "regression-analysis-overarching-aims-ii"]], "Regularization": [[1, "regularization"]], "Relevance": [[35, "relevance"]], "Reminder from last week": [[30, "reminder-from-last-week"]], "Reminder on Newton-Raphson\u2019s method": [[31, "reminder-on-newton-raphson-s-method"]], "Reminder on Statistics": [[6, "reminder-on-statistics"]], "Reminder on books with hands-on material and codes": [[36, "reminder-on-books-with-hands-on-material-and-codes"]], "Reminder on different scaling methods": [[32, "reminder-on-different-scaling-methods"]], "Reminder on the chain rule and gradients": [[36, "reminder-on-the-chain-rule-and-gradients"]], "Replace or not": [[13, "replace-or-not"], [32, "replace-or-not"]], "Required Technologies": [[22, "required-technologies"]], "Resampling Methods": [[6, null]], "Resampling and the Bias-Variance Trade-off": [[19, "resampling-and-the-bias-variance-trade-off"]], "Resampling approaches can be computationally expensive": [[33, "resampling-approaches-can-be-computationally-expensive"], [34, "resampling-approaches-can-be-computationally-expensive"]], "Resampling methods": [[6, "id1"], [33, "resampling-methods"], [33, "id2"], [34, "resampling-methods"], [34, "id1"]], "Resampling methods: Bootstrap": [[33, "resampling-methods-bootstrap"], [34, "resampling-methods-bootstrap"]], "Resampling methods: Bootstrap approach": [[33, "resampling-methods-bootstrap-approach"]], "Resampling methods: Bootstrap background": [[33, "resampling-methods-bootstrap-background"]], "Resampling methods: Bootstrap steps": [[33, "resampling-methods-bootstrap-steps"]], "Resampling methods: More Bootstrap background": [[33, "resampling-methods-more-bootstrap-background"]], "Residual Error": [[30, "residual-error"], [31, "residual-error"]], "Resources on differential equations and deep learning": [[2, "resources-on-differential-equations-and-deep-learning"]], "Revisiting Ordinary Least Squares": [[31, "revisiting-ordinary-least-squares"]], "Revisiting our Linear Regression Solvers": [[13, "revisiting-our-linear-regression-solvers"]], "Revisiting our Logistic Regression case": [[34, "revisiting-our-logistic-regression-case"], [35, "revisiting-our-logistic-regression-case"]], "Rewriting the Covariance and/or Correlation Matrix": [[30, "rewriting-the-covariance-and-or-correlation-matrix"]], "Rewriting the \\delta-function": [[33, "rewriting-the-delta-function"]], "Rewriting the fitting procedure as a linear algebra problem": [[29, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem"]], "Rewriting the fitting procedure as a linear algebra problem, more details": [[29, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem-more-details"]], "Ridge Regression": [[31, "ridge-regression"]], "Ridge and LASSO Regression": [[30, "ridge-and-lasso-regression"], [31, "ridge-and-lasso-regression"], [31, "id2"]], "Ridge and Lasso Regression": [[5, null], [5, "id1"]], "SGD example": [[32, "sgd-example"]], "SGD vs Full-Batch GD: Convergence Speed and Memory Comparison": [[32, "sgd-vs-full-batch-gd-convergence-speed-and-memory-comparison"]], "SVD analysis": [[31, "svd-analysis"]], "Same code but now with momentum gradient descent": [[13, "same-code-but-now-with-momentum-gradient-descent"], [32, "same-code-but-now-with-momentum-gradient-descent"], [32, "id3"], [32, "id4"]], "Schedule first week": [[29, "schedule-first-week"]], "Schematic Regression Procedure": [[9, "schematic-regression-procedure"]], "Second moment of the gradient": [[32, "second-moment-of-the-gradient"]], "September 15-19": [[19, "september-15-19"]], "Setting up the Back propagation algorithm": [[12, "setting-up-the-back-propagation-algorithm"]], "Setting up the Back propagation algorithm, part 3": [[36, "setting-up-the-back-propagation-algorithm-part-3"]], "Setting up the Matrix to be inverted": [[30, "setting-up-the-matrix-to-be-inverted"], [31, "setting-up-the-matrix-to-be-inverted"]], "Setting up the back propagation algorithm": [[36, "setting-up-the-back-propagation-algorithm"]], "Setting up the back propagation algorithm, part 2": [[36, "setting-up-the-back-propagation-algorithm-part-2"]], "Setting up the equations for a neural network": [[36, "setting-up-the-equations-for-a-neural-network"]], "Setting up the network using Autograd; The full program": [[2, "setting-up-the-network-using-autograd-the-full-program"]], "Similar (second order function now) problem but now with AdaGrad": [[13, "similar-second-order-function-now-problem-but-now-with-adagrad"], [32, "similar-second-order-function-now-problem-but-now-with-adagrad"]], "Simple Python Code to read in Data and perform Classification": [[9, "simple-python-code-to-read-in-data-and-perform-classification"]], "Simple case": [[30, "simple-case"], [31, "simple-case"]], "Simple code for solving the above problem": [[31, "simple-code-for-solving-the-above-problem"]], "Simple example": [[34, "simple-example"], [36, "simple-example"]], "Simple example code": [[32, "simple-example-code"]], "Simple example to illustrate Ordinary Least Squares, Ridge and Lasso Regression": [[31, "simple-example-to-illustrate-ordinary-least-squares-ridge-and-lasso-regression"]], "Simple geometric interpretation": [[31, "simple-geometric-interpretation"]], "Simple linear regression model using scikit-learn": [[0, "simple-linear-regression-model-using-scikit-learn"], [29, "simple-linear-regression-model-using-scikit-learn"]], "Simple neural network and the back propagation equations": [[36, "simple-neural-network-and-the-back-propagation-equations"]], "Simple one-dimensional second-order polynomial": [[18, "simple-one-dimensional-second-order-polynomial"]], "Simple program": [[31, "simple-program"], [32, "simple-program"]], "Simpler examples first, and automatic differentiation": [[36, "simpler-examples-first-and-automatic-differentiation"]], "Slightly different approach": [[32, "slightly-different-approach"]], "Smarter way of evaluating the above function": [[36, "smarter-way-of-evaluating-the-above-function"]], "Sneaking in automatic differentiation using Autograd": [[32, "sneaking-in-automatic-differentiation-using-autograd"]], "Software and needed installations": [[24, "software-and-needed-installations"], [29, "software-and-needed-installations"]], "Solving Differential Equations with Deep Learning": [[2, null]], "Solving the one dimensional Poisson equation": [[2, "solving-the-one-dimensional-poisson-equation"]], "Solving the wave equation with Neural Networks": [[2, "solving-the-wave-equation-with-neural-networks"]], "Solving using Newton-Raphson\u2019s method": [[34, "solving-using-newton-raphson-s-method"], [35, "solving-using-newton-raphson-s-method"]], "Some famous Matrices": [[23, "some-famous-matrices"]], "Some parallels from real analysis": [[36, "some-parallels-from-real-analysis"]], "Some selected properties": [[34, "some-selected-properties"]], "Some simple problems": [[13, "some-simple-problems"], [31, "some-simple-problems"]], "Some useful matrix and vector expressions": [[30, "some-useful-matrix-and-vector-expressions"]], "Splitting our Data in Training and Test data": [[0, "splitting-our-data-in-training-and-test-data"], [30, "splitting-our-data-in-training-and-test-data"]], "Standard Approach based on the Normal Distribution": [[33, "standard-approach-based-on-the-normal-distribution"]], "Standard steepest descent": [[13, "standard-steepest-descent"]], "Statistical analysis": [[33, "statistical-analysis"], [34, "statistical-analysis"]], "Statistical analysis and optimization of data": [[22, "statistical-analysis-and-optimization-of-data"], [29, "statistical-analysis-and-optimization-of-data"]], "Steepest descent": [[13, "steepest-descent"], [31, "steepest-descent"]], "Stochastic Gradient Descent": [[32, "stochastic-gradient-descent"]], "Stochastic Gradient Descent (SGD)": [[13, "stochastic-gradient-descent-sgd"], [32, "stochastic-gradient-descent-sgd"]], "Stochastic variables and the main concepts, the discrete case": [[26, "stochastic-variables-and-the-main-concepts-the-discrete-case"]], "Strongly Convex Case": [[32, "strongly-convex-case"]], "Suggested readings and videos": [[35, "suggested-readings-and-videos"]], "Summing up": [[33, "summing-up"], [34, "summing-up"]], "Support Vector Machines, overarching aims": [[8, null]], "Synthetic data generation": [[34, "synthetic-data-generation"], [35, "synthetic-data-generation"]], "Systematic reduction": [[3, "systematic-reduction"]], "Teachers": [[29, "teachers"]], "Teachers and Grading": [[27, null]], "Teaching Assistants Fall semester 2023": [[27, "teaching-assistants-fall-semester-2023"]], "Tentative deadllines for projects": [[27, "tentative-deadllines-for-projects"]], "Testing the Means Squared Error as function of Complexity": [[0, "testing-the-means-squared-error-as-function-of-complexity"], [30, "testing-the-means-squared-error-as-function-of-complexity"]], "Textbooks": [[28, null]], "The Algorithm before theorem": [[11, "the-algorithm-before-theorem"]], "The Breast Cancer Data, now with Keras": [[1, "the-breast-cancer-data-now-with-keras"]], "The CART algorithm for Classification": [[9, "the-cart-algorithm-for-classification"]], "The CART algorithm for Regression": [[9, "the-cart-algorithm-for-regression"]], "The CIFAR01 data set": [[3, "the-cifar01-data-set"]], "The Central Limit Theorem": [[33, "the-central-limit-theorem"]], "The Hessian matrix": [[31, "the-hessian-matrix"], [32, "the-hessian-matrix"]], "The Hessian matrix for Ridge Regression": [[31, "the-hessian-matrix-for-ridge-regression"], [32, "the-hessian-matrix-for-ridge-regression"]], "The Jacobian": [[30, "the-jacobian"]], "The MNIST dataset again": [[3, "the-mnist-dataset-again"]], "The OLS case": [[31, "the-ols-case"]], "The RELU function family": [[1, "the-relu-function-family"]], "The Ridge case": [[31, "the-ridge-case"]], "The SVD, a Fantastic Algorithm": [[30, "the-svd-a-fantastic-algorithm"], [31, "the-svd-a-fantastic-algorithm"]], "The Softmax function": [[1, "the-softmax-function"]], "The \\chi^2 function": [[0, "the-chi-2-function"], [29, "the-chi-2-function"], [29, "id4"], [29, "id5"], [29, "id6"], [29, "id7"], [29, "id8"]], "The approximation theorem in words": [[36, "the-approximation-theorem-in-words"]], "The bias-variance tradeoff": [[6, "the-bias-variance-tradeoff"], [33, "the-bias-variance-tradeoff"], [34, "the-bias-variance-tradeoff"]], "The code for solving the ODE": [[2, "the-code-for-solving-the-ode"]], "The complete code with a simple data set": [[30, "the-complete-code-with-a-simple-data-set"]], "The cost function rewritten": [[34, "the-cost-function-rewritten"], [35, "the-cost-function-rewritten"]], "The cost/loss function": [[30, "the-cost-loss-function"]], "The course has two central parts": [[22, "the-course-has-two-central-parts"]], "The derivative of the cost/loss function": [[31, "the-derivative-of-the-cost-loss-function"], [32, "the-derivative-of-the-cost-loss-function"]], "The derivatives": [[36, "the-derivatives"]], "The equations": [[31, "the-equations"]], "The equations for ordinary least squares": [[30, "the-equations-for-ordinary-least-squares"]], "The equations to solve": [[34, "the-equations-to-solve"], [35, "the-equations-to-solve"]], "The first Case": [[31, "the-first-case"]], "The gradient step": [[32, "the-gradient-step"]], "The ideal": [[31, "the-ideal"]], "The logistic function": [[7, "the-logistic-function"], [34, "the-logistic-function"]], "The mean squared error and its derivative": [[30, "the-mean-squared-error-and-its-derivative"]], "The moons example": [[8, "the-moons-example"]], "The multilayer perceptron (MLP)": [[12, "the-multilayer-perceptron-mlp"]], "The network with one input layer, specified number of hidden layers, and one output layer": [[2, "the-network-with-one-input-layer-specified-number-of-hidden-layers-and-one-output-layer"]], "The optimization problem": [[36, "the-optimization-problem"]], "The ouput layer": [[36, "the-ouput-layer"]], "The plethora of machine learning algorithms/methods": [[29, "the-plethora-of-machine-learning-algorithms-methods"]], "The same example but now with cross-validation": [[33, "the-same-example-but-now-with-cross-validation"], [34, "the-same-example-but-now-with-cross-validation"]], "The sensitiveness of the gradient descent": [[31, "the-sensitiveness-of-the-gradient-descent"]], "The singular value decomposition": [[5, "the-singular-value-decomposition"], [30, "the-singular-value-decomposition"], [31, "the-singular-value-decomposition"]], "The training": [[36, "the-training"]], "The two-dimensional case": [[8, "the-two-dimensional-case"]], "Theoretical Convergence Speed and convex optimization": [[32, "theoretical-convergence-speed-and-convex-optimization"]], "Time decay rate": [[32, "time-decay-rate"]], "To our real data: nuclear binding energies. Brief reminder on masses and binding energies": [[29, "to-our-real-data-nuclear-binding-energies-brief-reminder-on-masses-and-binding-energies"]], "Topics covered in this course: Statistical analysis and optimization of data": [[29, "topics-covered-in-this-course-statistical-analysis-and-optimization-of-data"]], "Towards the PCA theorem": [[11, "towards-the-pca-theorem"]], "Train and test datasets": [[1, "train-and-test-datasets"]], "Two parameters": [[34, "two-parameters"], [35, "two-parameters"]], "Two-dimensional Objects": [[3, "two-dimensional-objects"]], "Type of problem": [[2, "type-of-problem"]], "Types of Machine Learning": [[29, "types-of-machine-learning"]], "Understanding what happens": [[33, "understanding-what-happens"], [34, "understanding-what-happens"]], "Universal approximation theorem": [[36, "universal-approximation-theorem"]], "Updating the gradients": [[36, "updating-the-gradients"]], "Use the books!": [[19, "use-the-books"]], "Useful Python libraries": [[22, "useful-python-libraries"], [29, "useful-python-libraries"]], "Using Autograd": [[13, "using-autograd"]], "Using Scikit-learn": [[35, "using-scikit-learn"]], "Using forward Euler to solve the ODE": [[2, "using-forward-euler-to-solve-the-ode"]], "Using gradient descent methods, limitations": [[13, "using-gradient-descent-methods-limitations"], [31, "using-gradient-descent-methods-limitations"], [32, "using-gradient-descent-methods-limitations"]], "Using the chain rule and summing over all k entries": [[36, "using-the-chain-rule-and-summing-over-all-k-entries"]], "Using the correlation matrix": [[35, "using-the-correlation-matrix"]], "Various steps in cross-validation": [[33, "various-steps-in-cross-validation"], [34, "various-steps-in-cross-validation"]], "Visualization": [[1, "visualization"], [1, "id1"]], "Visualizing the Tree, Classification": [[9, "visualizing-the-tree-classification"]], "Week 34: Introduction to the course, Logistics and Practicalities": [[29, null]], "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression": [[30, null]], "Week 36: Linear Regression and Gradient descent": [[31, null]], "Week 37: Gradient descent methods": [[32, null]], "Week 38: Statistical analysis, bias-variance tradeoff and resampling methods": [[33, null]], "Week 39: Resampling methods and logistic regression": [[34, null]], "Week 40: Gradient descent methods (continued) and start Neural networks": [[35, null]], "Week 41 Neural networks and constructing a neural network code": [[36, null]], "What Is Generative Modeling?": [[29, "what-is-generative-modeling"]], "What does it mean?": [[30, "what-does-it-mean"], [31, "what-does-it-mean"]], "What is Machine Learning?": [[0, "what-is-machine-learning"]], "What is a good model?": [[0, "what-is-a-good-model"], [29, "what-is-a-good-model"]], "What is a good model? Can we define it?": [[29, "what-is-a-good-model-can-we-define-it"]], "When do we stop?": [[32, "when-do-we-stop"]], "Which activation function should I use?": [[1, "which-activation-function-should-i-use"]], "Why Combine Momentum and RMSProp?": [[32, "why-combine-momentum-and-rmsprop"]], "Why Linear Regression (aka Ordinary Least Squares and family)": [[29, "why-linear-regression-aka-ordinary-least-squares-and-family"]], "Why multilayer perceptrons?": [[35, "why-multilayer-perceptrons"], [36, "why-multilayer-perceptrons"]], "Why resampling methods": [[33, "why-resampling-methods"]], "Why resampling methods ?": [[33, "id1"], [34, "why-resampling-methods"]], "Wisconsin Cancer Data": [[7, "wisconsin-cancer-data"]], "With Lasso Regression": [[31, "with-lasso-regression"]], "Wrapping it up": [[33, "wrapping-it-up"]], "Writing Our First Generative Adversarial Network": [[4, "writing-our-first-generative-adversarial-network"]], "Writing our own PCA code": [[11, "writing-our-own-pca-code"]], "Writing the Cost Function": [[31, "writing-the-cost-function"]], "XGBoost: Extreme Gradient Boosting": [[10, "xgboost-extreme-gradient-boosting"]], "Yet another Example": [[31, "yet-another-example"]], "a) Expression for Ridge regression": [[17, "a-expression-for-ridge-regression"]], "scikit-learn implementation": [[1, "scikit-learn-implementation"]]}, "docnames": ["chapter1", "chapter10", "chapter11", "chapter12", "chapter13", "chapter2", "chapter3", "chapter4", "chapter5", "chapter6", "chapter7", "chapter8", "chapter9", "chapteroptimization", "clustering", "exercisesweek34", "exercisesweek35", "exercisesweek36", "exercisesweek37", "exercisesweek38", "exercisesweek39", "exercisesweek41", "intro", "linalg", "project1", "schedule", "statistics", "teachers", "textbooks", "week34", "week35", "week36", "week37", "week38", "week39", "week40", "week41"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["chapter1.ipynb", "chapter10.ipynb", "chapter11.ipynb", "chapter12.ipynb", "chapter13.ipynb", "chapter2.ipynb", "chapter3.ipynb", "chapter4.ipynb", "chapter5.ipynb", "chapter6.ipynb", "chapter7.ipynb", "chapter8.ipynb", "chapter9.ipynb", "chapteroptimization.ipynb", "clustering.ipynb", "exercisesweek34.ipynb", "exercisesweek35.ipynb", "exercisesweek36.ipynb", "exercisesweek37.ipynb", "exercisesweek38.ipynb", "exercisesweek39.ipynb", "exercisesweek41.ipynb", "intro.md", "linalg.ipynb", "project1.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"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 17, 19, 21, 22, 23, 24, 26, 27, 29, 30, 36], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "00": [0, 1, 5, 11, 29, 30, 36], "000": [1, 3], "000000": [], "00000000e": [], "001": [2, 8, 13, 21, 31, 32], "004": 5, "004113634617443131": 30, "004113634617443139": 30, "00411363461744314": 30, "004113634617443147": 30, "005b82": [], "00622f": [], "00727646693": [0, 29], "0072b2": [], "00749c": [], "0076268": 21, "008561": [], "0086649156": [0, 29], "00e0e0": [], "01": [0, 1, 2, 5, 9, 11, 13, 17, 28, 29, 30, 32, 34, 35, 36], "010726": [], "0110": 26, "01719003e": [], "02": [0, 4, 7, 12, 29, 34, 35], "02334824": [], "023b95": [], "024c1a": [], "02857": 4, "02f": 6, "03077640549": 4, "03097597e": [], "031": 5, "04": 11, "0458": 9, "05": [4, 6], "0550ae": [], "05767": 36, "062292565": 4, "062435": [], "06730814": [], "07": [], "0713": [0, 29], "07285": 3, "08": 26, "08078025e": [], "080808": [], "08336233266": 4, "08376632": 30, "083766322923899": 30, "0837663229239043": 30, "0917": 9, "0969da4a": [], "0d1117": [], "0n": [0, 29], "0x113e21950": 17, "1": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35], "10": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35], "100": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "1000": [0, 1, 2, 4, 5, 8, 11, 13, 14, 18, 19, 21, 22, 26, 29, 31, 32, 34, 35], "10000": [2, 5, 6, 10, 11, 13, 26, 33], "100000": 8, "10001": 10, "1001": 26, "1002": 26, "1003": 26, "1005": 26, "1007": [33, 34], "1009": 26, "101": 16, "1011": 26, "1013": 26, "1013904243": 26, "1015": 26, "102": 16, "1023": 26, "1024": 3, "1026": 26, "1027": 26, "103": 1, "1030": 26, "1037": 26, "1038": 26, "1040": 26, "1047": 26, "107": 16, "108": [], "10th": 9, "10x": [0, 29], "11": [0, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "110": [], "1100": 26, "1101": 26, "111": [1, 7, 12, 34, 35, 36], "112": 16, "11340253": [], "11590451": [], "116": 16, "116329": [], "116633": [], "117": 16, "118": 16, "12": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 18, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 35], "120": 3, "121": [8, 9, 10, 16], "1215pm": [27, 29], "122": [8, 9, 10], "124": [0, 29], "125": 16, "127": [4, 16], "128": [3, 4, 13, 32], "129": 16, "1298": 9, "12pm": [27, 29], "13": [0, 2, 9, 12, 23, 26, 29, 35], "131": 16, "133": [7, 34], "135": 16, "136": 16, "14": [0, 2, 4, 6, 8, 9, 10, 12, 23, 26, 28, 30, 33, 34], "141": 16, "1412": 32, "141414": [], "143": 16, "1446729567": 4, "149": 16, "14g": [6, 33], "15": [0, 2, 4, 6, 7, 8, 9, 12, 13, 24, 26, 29, 31, 32, 34, 35], "150": [4, 8, 21, 34, 35], "1502": 36, "152": 16, "153760": [], "156": 16, "157": [], "158": [], "159": 16, "15g": [6, 33], "15pm": 29, "16": [1, 2, 3, 4, 5, 8, 9, 10, 21, 26, 29, 31, 33], "160": 16, "1603": 3, "161": 16, "162": 16, "16231451": 4, "163": 16, "16384": 3, "164": 16, "167": 16, "17": [1, 2, 8, 26], "172": 16, "173": 16, "175": [33, 34], "176": 16, "178": 16, "179": 16, "1797": 1, "18": [2, 6, 7, 8, 9, 10, 26, 29, 33, 34], "1807": 4, "181036": [], "18392847": [], "18c1c4": [], "19": [2, 26, 29, 33], "192": [33, 34], "1940": [], "1943": [12, 35, 36], "19569961": 30, "19680801": [], "1970": [23, 29], "1973": 9, "1979": [6, 33], "1989": 36, "1991": 36, "1_1": [12, 35], "1_2": [12, 35], "1_3": [12, 35], "1cm": [0, 8, 10, 26, 29, 36], "1d": [1, 2, 3, 34, 35], "1e": [2, 4, 13, 14, 32, 34, 35], "1e10": 14, "1e1e1": [], "1e4": 6, "1f": 1, "1k": 23, "1n": [0, 29], "1x": [0, 29], "1zkibvqf": 21, "2": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 23, 24, 26, 28, 32, 33, 34, 35], "20": [0, 1, 2, 6, 7, 8, 16, 17, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "200": [0, 2, 3, 4, 8, 9, 10, 34, 35], "2000": [0, 30], "2001": [], "2004": [13, 31], "2006": 28, "2007": [], "20072279": [], "2008": [29, 32], "2009": [], "2010": 1, "2011": [1, 32], "2012": 32, "2013": [], "2014": [4, 32], "2015": 1, "2016": [0, 29], "2018": [0, 6, 30, 33, 34], "2019": [], "2020": [], "2021": [6, 14, 30, 32], "2022": [29, 36], "2024": [21, 33], "2025": [18, 21, 29, 30, 31, 32, 33], "21": [0, 1, 5, 7, 9, 12, 23, 29, 30, 31, 34, 35, 36], "2116753732": 4, "215pm": [27, 29], "2167072": [], "22": [0, 1, 5, 12, 13, 23, 29, 30, 31, 35], "221": 8, "225": 4, "22948497": [], "23": [1, 12, 23, 35], "24": [0, 1, 23, 29], "242424": [], "24292f": [], "25": [2, 3, 4, 5, 6, 8, 9, 11, 30], "250": [2, 4, 7, 9, 34], "25000": [], "250154": [], "252124": [], "253775": [], "255": 3, "256": [4, 32], "25x": 24, "26": [], "26303845": [], "264": [], "265": [], "265109911": 4, "266": [], "269": [], "27": 1, "270": [], "278": [31, 32], "27n_": 26, "28": [1, 3, 4], "283": [31, 32], "2830637392": 4, "2861": 26, "2873": 9, "2882": 26, "2886": 26, "2890": [0, 29], "2892": 26, "29": 30, "2915": 26, "2931": 29, "29364655": [], "294399745619595": [], "296247": [], "2968": 29, "2980": [21, 29], "298273": [], "298375": [], "2990": 29, "2_": [12, 35], "2_1": [12, 35], "2_2": [12, 35], "2_3": [12, 35], "2_i": [12, 35], "2_m": [6, 26, 33], "2_t": 13, "2_x": 26, "2a": 17, "2a1968": [], "2b": 26, "2b2b2b": [], "2c8f433990d1": 32, "2cm": 8, "2d": [1, 3, 11, 12, 22, 29, 34, 35, 36], "2e": [6, 33, 34], "2f": [0, 7, 9, 10, 11, 12, 29, 34, 35], "2g": 2, "2g_i": 2, "2k": 3, "2m": [6, 33], "2mvizaqfst8": 30, "2n": [0, 2, 3, 29, 30], "2nd": 9, "2p": [26, 36], "2pt": 4, "2x": [0, 3, 8, 13, 29, 36], "2x_ix_jy_iy_j": 8, "2x_j": 8, "2xb": 36, "2y_i": 10, "2y_j": 8, "3": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35], "30": [0, 1, 4, 6, 7, 10, 13, 27, 32, 33, 34, 35], "300": [34, 35], "30000": [0, 29], "3072": 3, "31": [12, 23, 26, 35], "315": [6, 30, 32], "3155": [0, 5, 6, 30, 31, 32, 33, 34], "32": [3, 4, 6, 12, 13, 23, 26, 32, 35], "3200": 1, "3250": 1, "3297": [], "33": [12, 23, 27, 35], "3303": [], "3310": [], "332331": [], "333": [7, 34], "3331": [], "3337": [], "34": 23, "3436": [0, 29], "3437": [0, 29], "35": [0, 6, 24, 29, 31, 32], "3581341341": 4, "359": [5, 31], "36": [0, 5, 6, 18, 24, 26], "37": [24, 31, 33, 34], "370782966": 4, "38": [24, 26], "387": [33, 34], "39": [0, 24, 27, 29], "3d": [2, 3, 4, 6, 13, 16, 33, 34], "3d73a9": [], "3f": [1, 3, 9], "3n": 23, "3x": [2, 8], "3x_0x_1": 36, "3x_i": 2, "3y": 8, "4": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 23, 24, 26, 29, 31, 32, 33, 34, 35, 36], "40": [1, 6, 27, 29, 33, 34], "400": 4, "4000": 29, "40008b9a5380fcacce3976bf7c08af5b": 32, "4050": [28, 29], "41": 23, "4155": [2, 15], "41589548": [], "42": [1, 4, 8, 9, 10, 23, 34, 35, 36], "43": [0, 7, 23], "4310": 29, "436462435": 4, "437a6b": [], "44": [0, 23, 31, 32], "45": [27, 29], "46": [27, 29], "462": [7, 34], "47": [27, 29], "473d18": [], "479465113": 4, "47958494": [], "48": [], "48257387": [27, 29], "49": [5, 6, 11], "49152": 3, "4940954": [0, 29], "4990": 26, "4992": 26, "4997": 26, "4c4b4be8": [], "4c4c7f": [9, 10], "4d": 3, "4f": [6, 34, 35], "4pm": [27, 29], "4y": 8, "4y_i": 10, "5": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "50": [1, 2, 3, 4, 6, 7, 8, 10, 13, 29, 30, 32, 33, 35, 36], "500": [1, 3, 4, 6, 9, 10, 13, 32, 33, 34], "5000": 24, "5018": 26, "506": [], "507d50": [9, 10], "50j": 13, "50x10": 1, "51": 10, "510": 1, "512132": [], "515151": [], "5177783846": 4, "52": 34, "53": [9, 34], "5391cf": [], "54": [6, 26], "5411205": [], "54894451": [], "55": 1, "56": 1, "56469864": 21, "56536": [0, 29], "569": 1, "57": [0, 8, 27, 29], "571": [5, 31], "576": 33, "58": [10, 27, 29], "58a6ff70": [], "591317992": 4, "5ca7e4": [], "5cm": 26, "5f": [8, 32], "5x": [8, 18], "5y": 8, "6": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 18, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35], "60": [1, 3], "60000": 4, "6019067271": 4, "60610368": 21, "606439": [], "622cbc": [], "625": [7, 34], "63": 1, "64": [1, 3, 4, 13, 23, 29, 32], "64x50": 1, "65": [1, 8, 9], "66666691": [], "66707b": [], "66ccee": [], "66e9ec": [], "6730c5": [], "6887363571": 4, "69": [16, 26], "69069n_": 26, "691": [], "6980": 32, "6e7681": [], "6e7781": [], "6f98b3": [], "6n_": 26, "7": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36], "70": [1, 7, 34], "702c00": [], "70653767": 4, "71": 1, "724": 3, "72f088": [], "73": [], "7304881": [], "737373": [], "75": [5, 6, 8, 11, 33], "76": [27, 29, 34], "765": [7, 34], "77": [27, 29], "7718": 9, "7782028952": 4, "77893972": [], "78": [], "797979": [], "7998f2": [], "79c0ff": [], "7d7d58": [9, 10], "7ee787": [], "7f4707": [], "8": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 19, 21, 23, 26, 27, 29, 31, 34, 35], "80": [0, 1, 5, 8, 17, 30], "800": [4, 7, 34], "8045e5": [], "81": 1, "815am": [27, 29], "81b19b": [], "8250df": [], "84858": [33, 34], "85": 1, "8702784034": 4, "8786ac": [], "88": 29, "8a4600": [], "8b949e": [], "8c8c8c": [], "8f": [6, 33, 34], "8g": [6, 33], "8n": 23, "8x8": 1, "9": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 12, 13, 23, 26, 29, 32, 34, 35], "90": 1, "9040": 9, "91": [27, 29], "912583": [], "91cbff": [], "92": [27, 29], "93": 16, "931": [0, 29], "933": [5, 31], "937": 26, "938": 26, "939": [0, 26, 29], "94": 26, "95": [1, 11, 33], "953800": [], "954": 26, "955820c21e8b": 4, "9579870417283": 21, "96": [6, 33], "960": 26, "961": 26, "962": 26, "9649652536": 4, "96611194e": [], "974eb7": [], "978": [33, 34], "9780387310732": 28, "9780387848570": 28, "9781098134174": 29, "9781492032632": 28, "9781801819312": 29, "97898392": 30, "98": [0, 1, 16], "985": 26, "986": 26, "98661b": [], "989": 26, "9898ff": [9, 10], "99": [13, 16, 32, 33], "991": 26, "992": 26, "993": 26, "996": 5, "996b00": [], "999": [9, 26, 32], "999999": [], "9e86c8": [], "9e8741": [], "9f4e55": [], "9x": 6, "9y": 6, "A": [2, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 36], "AND": 2, "AS": [], "AT": [], "And": [0, 3, 4, 5, 6, 9, 13, 20, 22, 24, 26, 31], "As": [0, 1, 2, 3, 4, 5, 6, 8, 10, 12, 13, 15, 16, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "At": [0, 4, 6, 13, 20, 29, 32], "BE": [0, 29], "BUT": [], "BY": [], "Be": [2, 18, 22, 29], "Being": 13, "But": [0, 1, 2, 3, 5, 6, 9, 10, 16, 21, 26, 30, 33, 34], "By": [0, 3, 5, 6, 12, 13, 17, 19, 23, 29, 30, 31, 32, 33, 35], "FOR": [], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 19, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "IF": [6, 30, 32], "IN": 28, "If": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "In": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35], "Ising": [5, 12, 30, 31, 35, 36], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "Its": [1, 2, 4, 11], "NO": [], "NOT": [], "No": [6, 9, 29, 30, 32, 35], "Not": [0, 1, 5, 6, 30, 31, 32, 33, 35], "OF": [], "ON": [], "OR": 26, "Of": 26, "On": [0, 3, 24, 26, 27, 28, 29, 32, 33], "One": [0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 13, 17, 26, 30, 31, 32, 33, 34, 35, 36], "Or": [0, 1, 6, 29], "SUCH": [], "Such": [0, 6, 12, 16, 26, 32, 33, 34, 35, 36], "THE": [], "TO": [], "That": [0, 5, 7, 10, 11, 12, 14, 24, 26, 29, 33, 34, 35, 36], "The": [4, 10, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28], "Then": [0, 1, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 29, 31, 32, 33, 36], "There": [0, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 23, 24, 26, 27, 29, 30, 31, 32, 35, 36], "These": [0, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 17, 18, 23, 24, 26, 27, 29, 30, 31, 32, 36], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 20, 21, 23, 26, 30, 31, 32, 33, 34, 35, 36], "WITH": [], "Will": [34, 35], "With": [0, 5, 6, 8, 9, 10, 11, 12, 14, 16, 19, 21, 23, 24, 26, 29, 30, 33, 34, 35, 36], "_": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 21, 23, 24, 29, 30, 31, 32, 33, 34, 35], "_0": [5, 8, 10, 11, 13, 30, 31], "_1": [2, 5, 6, 8, 10, 11, 12, 13, 14, 23, 30, 31, 32, 36], "_2": [2, 5, 8, 11, 12, 13, 23, 30, 32, 35], "_3": 23, "_4": 23, "_9": [13, 32], "__array_finalize__": [], "__class__": 10, "__doc__": [6, 33, 34], "__future__": [8, 9, 36], "__getattribute__": [], "__import__": [], "__init__": [1, 34, 35], "__main__": 2, "__name__": [2, 10], "__new__": [], "__path__": [], "_add_intercept": [34, 35], "_auto1": [2, 3, 4, 5, 6, 7, 12, 13, 23, 26, 30, 31, 34, 35, 36], "_auto10": [6, 12], "_auto11": 6, "_auto12": 6, "_auto2": [2, 3, 4, 5, 6, 12, 13, 23, 26, 35, 36], "_auto3": [3, 4, 5, 6, 12, 13, 23, 35, 36], "_auto4": [4, 6, 12, 13, 23, 35], "_auto5": [4, 6, 12, 13, 23, 35], "_auto6": [4, 6, 12, 23, 35], "_auto7": [4, 6, 12, 23, 35], "_auto8": [6, 12], "_auto9": [6, 12], "_build": [0, 22, 24, 28, 29], "_c": 1, "_center": [], "_compile_transl": [], "_compon": 11, "_data": [], "_depth": 9, "_export": [15, 16, 19], "_fraction": 9, "_i": [0, 1, 2, 5, 6, 7, 8, 11, 12, 13, 19, 24, 29, 30, 31, 32, 33, 34, 35, 36], "_j": [0, 1, 2, 3, 5, 6, 8, 13, 19, 24, 30, 31, 32, 33, 34], "_k": [13, 31, 32], "_l": [12, 35, 36], "_lambda": 6, "_leaf": 9, "_m": 10, "_mask": [], "_multilayer_perceptron": [], "_n": [2, 5, 8, 11, 13, 30, 31, 32], "_node": 9, "_norm": [], "_p": [5, 8, 30, 31], "_parse_numpydoc_see_also_sect": [], "_pydevd_bundl": [], "_ratio": 11, "_sampl": 9, "_sigmoid": [34, 35], "_softmax": [34, 35], "_split": [6, 9, 24], "_t": [13, 32], "_test": [6, 24], "_varianc": 11, "_weight": 9, "a0": 3, "a0111f": [], "a0faa0": [9, 10], "a1": [0, 21, 29], "a11": [], "a12236": [], "a2": [0, 21, 29], "a25e53": [], "a2bffc": [], "a3": [0, 29], "a4": [0, 29], "a5d6ff": [], "a_": [0, 1, 16, 23, 29, 30, 36], "a_0": [0, 29, 36], "a_1": 36, "a_1a": [0, 29], "a_2": 36, "a_2a": [0, 29], "a_3": [0, 29], "a_3a": [0, 29], "a_4": [0, 29], "a_4a": [0, 29], "a_h": 1, "a_i": [0, 1, 2, 12, 29, 36], "a_j": [1, 12, 36], "a_k": [0, 1, 12, 36], "aa": [], "aaa": [], "aaron": 28, "ab": [0, 2, 5, 13, 14, 29, 30, 32, 36], "ab6369": [], "ab_channel": [22, 35, 36], "abandon": 1, "abe338": [], "abid": 26, "abil": [0, 10], "abl": [0, 1, 4, 5, 6, 7, 10, 12, 13, 16, 18, 20, 21, 24, 30, 31, 32, 34, 35, 36], "about": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 20, 22, 23, 24, 27, 32, 33, 34, 35], "abov": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 26, 28, 29, 30, 32, 33, 34, 35], "abovement": [6, 24, 29, 33, 34], "abscissa": [13, 31], "absent": 32, "absolut": [0, 2, 5, 6, 13, 29, 30, 31, 33, 34], "absorb": [30, 31], "abstract": [1, 32, 34], "abund": 32, "ac": [], "acc_bin": [34, 35], "acc_multi": [34, 35], "acceler": [13, 32], "accept": [0, 3, 6, 9, 21, 24, 30, 32], "access": [3, 11, 26, 29, 32], "accid": [4, 6, 33, 34], "accompani": [0, 29, 30], "accomplish": [8, 9, 13, 32], "accord": [0, 1, 2, 5, 6, 9, 12, 13, 14, 26, 29, 31, 32, 33, 35, 36], "accordingli": 11, "account": [0, 3, 5, 13, 15, 16, 20, 26, 29, 32], "accumul": [12, 13, 26, 32, 35, 36], "accur": [0, 3, 4, 6, 10, 13, 32, 33, 34], "accuraci": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 21, 29, 30, 31, 34, 35, 36], "accuracy_scor": [0, 1, 10, 21, 29, 34, 35], "accuracy_score_numpi": 1, "acheiv": 21, "achiev": [0, 1, 5, 6, 8, 12, 23, 29, 32, 33, 34, 35, 36], "aco": 26, "acquaint": 22, "acquir": [1, 22, 29], "acr": [], "across": [1, 3, 6, 9, 17, 22, 29, 33], "act": [1, 3, 23, 32], "actic": 21, "action": 26, "activ": [0, 2, 3, 4, 9, 15, 25, 27, 29, 32], "activation_func": 21, "activest": [], "actual": [0, 1, 4, 5, 6, 8, 11, 15, 16, 18, 21, 23, 26, 29, 30, 31, 32, 33], "ad": [1, 3, 4, 5, 8, 13, 15, 16, 23, 31, 32, 33, 34], "ada_clf": 10, "adaboostclassifi": 10, "adadelta": [13, 32], "adagrad": [24, 33, 36], "adam": [1, 3, 4, 21, 24, 29, 33, 36], "adap": 36, "adapt": [4, 6, 13, 17, 28, 31, 33, 34, 36], "add": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "add6ff": [], "add_": [], "add_subplot": [1, 7, 12, 14, 34, 35], "addendum": 5, "addeventlisten": [], "addit": [0, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 15, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 36], "addition": [12, 13, 31, 32, 35, 36], "address": [1, 9, 11, 13, 29, 32], "adjac": [3, 12, 35, 36], "adjoint": [5, 30], "adjust": [0, 5, 12, 13, 31, 32, 35], "admir": [0, 29], "advanc": [4, 6, 12, 28, 29, 32, 33, 34, 35, 36], "advantag": [1, 3, 5, 6, 10, 13, 19, 23, 31, 32, 33, 34], "adversari": 29, "advis": [], "afecionado": 29, "affect": [3, 15, 19], "affin": [0, 3, 8, 11, 30, 36], "afford": 3, "aficionado": 29, "aforement": 14, "african": [], "after": [0, 1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 36], "afterward": [0, 29], "ag": [0, 7, 29, 30, 34], "ag_0": 2, "again": [0, 1, 4, 5, 6, 7, 8, 10, 11, 12, 13, 24, 26, 29, 30, 31, 33, 34, 35, 36], "against": [1, 4, 7, 10, 34], "agegroup": [7, 34], "agegroupmean": [7, 34], "aggreg": [9, 10, 32], "agorithm": 10, "agre": [5, 6, 26, 30, 31, 32, 33], "agreement": [13, 32], "ahead": 9, "ai": [0, 28], "aid": [11, 20, 32], "aim": [0, 1, 4, 6, 7, 11, 14, 16, 17, 19, 20, 22, 23, 24, 30, 33, 34, 35, 36], "ainv": 5, "airplan": 3, "aka": 5, "al": [0, 2, 4, 16, 17, 20, 28, 29, 30, 31, 33, 34, 35, 36], "alarm": [5, 7], "aldo": 30, "algebra": [0, 3, 5, 13, 22, 30, 31, 33], "algorithm": [0, 1, 2, 4, 5, 6, 7, 8, 13, 14, 16, 22, 23, 24, 26, 28, 33, 34, 35], "align": [0, 2, 5, 6, 7, 8, 13, 26, 29, 30, 31, 33, 34, 35], "all": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "allclos": 21, "allevi": [1, 13, 31], "alloc": [3, 23], "allow": [0, 1, 2, 3, 5, 6, 8, 10, 13, 15, 22, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "almost": [0, 1, 6, 8, 11, 13, 26, 31, 32, 33, 34, 35], "alon": [2, 9, 32], "along": [2, 3, 4, 5, 6, 9, 10, 11, 15, 20, 21, 22, 23, 29, 30, 31, 33, 34], "alpha": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 26, 29, 30, 31, 32, 33, 34, 35], "alpha_": [10, 32], "alpha_0": 3, "alpha_1": 3, "alpha_2": 3, "alpha_i": [3, 13], "alpha_k": 13, "alpha_m": 10, "alpha_n": 3, "alpha_opt": 13, "alreadi": [2, 3, 4, 5, 6, 10, 12, 15, 22, 23, 26, 29, 30, 31, 34, 35, 36], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "alter": 1, "altern": [0, 1, 4, 5, 6, 8, 9, 11, 13, 15, 18, 23, 24, 29, 30, 32, 33, 34], "although": [0, 1, 5, 6, 8, 10, 13, 16, 19, 20, 29, 32, 33, 34, 36], "alwai": [0, 3, 5, 6, 12, 13, 16, 19, 21, 24, 26, 29, 30, 31, 32, 33, 35, 36], "am": 4, "ambit": 36, "ame2016": [0, 29], "american": [], "amjith": [], "among": [0, 3, 5, 9, 10, 12, 23, 29, 30, 35, 36], "amongst": [5, 33], "amount": [0, 1, 3, 4, 6, 8, 10, 14, 22, 33, 34, 36], "an": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 35], "an_": 26, "anaconda": [0, 1, 22, 24, 29], "analogi": 13, "analys": [6, 33, 34], "analysi": [1, 3, 4, 7, 14, 19, 23, 28, 32, 35], "analyt": [2, 3, 5, 6, 7, 12, 13, 17, 22, 24, 29, 30, 31, 32, 33, 34, 35, 36], "analyz": [0, 1, 3, 4, 5, 6, 16, 24, 26, 30, 31, 32], "andrew": 1, "angl": [0, 3, 9, 30, 32], "anharmon": 3, "ani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 19, 21, 26, 29, 30, 32, 33, 36], "anim": [4, 12, 35, 36], "ann": [12, 35, 36], "annot": [0, 1, 3, 7, 8, 29, 35], "announc": 29, "anom": [], "anomali": [], "anonym": 18, "anoth": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 23, 24, 26, 29, 30, 32, 36], "ansatz": [0, 18, 29], "answer": [0, 1, 3, 5, 6, 19, 23, 24, 27, 29, 33], "antialias": [2, 6], "anticip": 4, "anymor": [1, 8], "anyon": [4, 8, 15], "anyth": [1, 15, 16, 21, 26], "anytim": [27, 29], "anywai": [], "apach": 1, "apart": [11, 13, 31, 32], "api": [1, 22, 29], "appar": 2, "appear": [0, 1, 3, 13, 23, 26, 36], "append": [1, 3, 4, 8, 9, 13, 19, 21, 29, 32, 34, 35], "appendic": 24, "appendix": 24, "appli": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 18, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36], "applic": [0, 1, 3, 4, 5, 6, 7, 9, 12, 13, 16, 23, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "apply_gradi": 4, "approach": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 24, 26, 28, 30, 31, 36], "approch": 24, "appropri": [2, 6, 9, 12, 13, 17, 22, 26, 32, 33, 34, 35], "approv": 29, "approx": [0, 2, 3, 6, 10, 11, 13, 18, 24, 26, 29, 31, 32, 33], "approxim": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 19, 24, 26, 29, 30, 31, 32, 33, 34, 35], "apt": [0, 22, 24, 29], "aq": 26, "ar": [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, 29, 30, 31, 32, 33, 34, 35, 36], "aragorn": 29, "arang": [1, 3, 4, 6, 7, 9, 10, 12, 13, 29, 32, 34, 35], "arbitrari": [1, 4, 6, 8, 12, 13, 26, 31, 33, 35, 36], "arbitrarili": [0, 1, 11, 29, 32], "arc": 6, "architectur": [3, 4, 12, 36], "archiv": 24, "area": [0, 3, 6, 28, 29], "argmax": [1, 11, 21, 34, 35], "argmin": [4, 10, 14], "argsort": 11, "argu": [1, 13], "arguement": 19, "argument": [0, 2, 3, 5, 11, 12, 13, 17, 21, 29, 30, 32, 33, 35, 36], "aris": [0, 6, 12, 13, 26, 29, 31, 33, 34], "arithmet": [0, 13, 23, 29], "arm": [6, 30, 32], "armadillo": 23, "armin": [], "arnulf": 36, "around": [0, 1, 4, 5, 6, 11, 18, 21, 24, 26, 29, 33, 34, 35, 36], "arrai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 16, 18, 21, 22, 24, 26, 30, 31, 32, 33, 34, 35, 36], "arrang": [3, 29], "array_equ": [34, 35], "arraybox": 13, "arriv": [0, 6, 9, 11, 19, 23, 26, 29, 33], "arrow": [12, 35, 36], "arrowprop": 8, "art": [0, 1, 22], "articl": [0, 3, 4, 6, 10, 19, 29, 30, 31, 32, 33, 34], "artifici": [0, 2, 7, 12, 28, 29, 34], "artificialneuron": [12, 35, 36], "arug": 13, "arxiv": [3, 4, 32, 36], "asarrai": [0, 6, 9, 30, 32], "asid": 30, "ask": [5, 6, 11, 12, 15, 19, 24, 33, 36], "aspect": [0, 6, 22, 29, 30, 36], "assembl": 3, "assembli": [0, 29], "assert": 4, "assess": [0, 6, 24, 29, 30, 33, 34], "asset": [], "assici": 4, "assign": [0, 7, 8, 9, 12, 13, 14, 15, 25, 27, 28, 29, 34, 35], "associ": [0, 6, 9, 12, 14, 26, 29, 33, 34, 35, 36], "assum": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "assumpt": [0, 3, 5, 6, 9, 11, 26, 29, 30, 34], "ast": [0, 5, 6, 29, 33], "astyp": [4, 9, 10, 34, 35], "asymmetri": [0, 29], "asymptot": [4, 6, 32, 33, 34], "atom": [0, 29], "attain": 32, "attempt": [0, 4, 6, 7, 8, 10, 29, 30, 32, 34, 36], "attend": 29, "attent": [0, 23, 29], "attract": [0, 10, 29], "attribut": [0, 9, 29], "audi": [0, 29], "audio": [3, 4], "august": [29, 30], "aurelien": [0, 28, 29], "austfjel": 6, "auth": 15, "authent": 15, "author": [0, 1, 10, 26], "authour": 29, "auto": [9, 10, 26], "auto_exampl": [21, 24, 30], "autocor": 26, "autocorrelation_tim": 26, "autocorrelform": 26, "autocovari": 26, "autoencod": [4, 22, 29], "autoencond": 22, "autograd": [21, 22, 29, 36], "autom": [0, 22, 28, 29], "automac": 23, "automag": 29, "automat": [0, 1, 2, 3, 4, 11, 16, 21, 22, 23, 29, 35], "automobil": 3, "autonom": 4, "avail": [0, 1, 4, 6, 10, 11, 22, 23, 24, 25, 27, 28, 29, 33, 34], "avali": [20, 24], "averag": [0, 1, 3, 6, 9, 10, 13, 14, 26, 27, 29, 30, 33, 34], "avoid": [0, 4, 5, 6, 9, 11, 13, 18, 21, 23, 30, 32, 33, 34], "awai": [2, 3, 6, 30, 32, 36], "awar": [2, 10], "award": [27, 29], "ax": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 21, 23, 24, 29, 33, 34, 35], "axes3d": [2, 6, 13, 31, 32], "axes_grid1": 6, "axhlin": 8, "axi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "axiom": 5, "axvlin": [4, 8], "axvspan": 4, "b": [0, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 17, 19, 20, 21, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "b1": [8, 21], "b19db4": [], "b1bac4": [], "b2": [8, 21], "b3": 8, "b35900": [], "b89784": [], "b_": [0, 1, 23, 36], "b_0": [0, 36], "b_1": [0, 2, 12, 13, 32, 35, 36], "b_2": [0, 13, 36], "b_5": [13, 32], "b_g": 21, "b_group": 9, "b_i": [0, 1, 2, 12, 29, 35, 36], "b_ia_": [0, 29], "b_ia_i": 0, "b_index": 9, "b_j": [1, 12, 35, 36], "b_k": [0, 1, 12, 13, 32, 35, 36], "b_m": [12, 35], "b_score": 9, "b_valu": 9, "ba": 32, "babcock": 29, "bach": 32, "bachelor": [25, 27], "back": [0, 3, 4, 5, 6, 8, 9, 10, 15, 16, 21, 23, 26, 29, 32], "backbon": 23, "backend": [1, 4], "background": [28, 29], "backpropag": [1, 21, 32, 36], "backslash": [], "backtrack": 9, "backup": 23, "backward": [1, 2, 4, 12, 23, 32, 36], "bad": [6, 17, 30], "badli": 26, "bag": [9, 22, 29], "bag_clf": 10, "baggin": 29, "baggingboot": 10, "baggingclassifi": 10, "baggingtre": 10, "bailei": [], "balanc": [6, 32, 33, 34], "ballpark": 18, "band": 23, "bandwidth": 23, "banner": [], "bar": [0, 6, 11, 24, 29], "barber": 28, "bare": [4, 10], "base": [0, 1, 3, 4, 5, 7, 8, 9, 10, 14, 15, 16, 17, 22, 26, 27, 28, 29, 30, 31, 34, 35, 36], "basi": [5, 7, 8, 10, 11, 12, 13, 23, 30, 31, 34, 35, 36], "basic": [6, 8, 12, 13, 14, 15, 22, 24, 26, 29, 33], "basin": 32, "batch": [3, 4, 11, 12, 13, 21, 31, 34, 35], "batch_shap": 4, "batch_siz": [1, 3, 4], "batchnorm": 4, "bay": [7, 34, 35], "baydin": 36, "bayesian": [5, 22, 28, 29], "bbbbbb": [], "beauti": [], "becam": [], "becaus": [0, 1, 2, 3, 4, 5, 6, 8, 9, 12, 13, 14, 29, 30, 31, 32, 33, 34, 35], "becom": [0, 1, 2, 5, 6, 7, 9, 12, 13, 19, 26, 29, 30, 31, 32, 33, 34, 35, 36], "been": [0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 19, 20, 22, 23, 24, 29, 30, 32, 33, 35, 36], "befor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 26, 29, 30, 32, 33, 34, 35, 36], "beforehand": [0, 26, 29], "began": [], "begin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "behav": [1, 6, 13, 31, 33, 34], "behavior": [0, 1, 13, 29, 31, 32], "behaviour": [12, 32, 35, 36], "behind": [0, 1, 6, 8, 13, 29, 31], "being": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 17, 20, 26, 29, 30, 31, 32, 34, 35, 36], "believ": [9, 23], "belong": [7, 8, 9, 13, 14, 31, 34, 35], "below": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "benchmark": 10, "benefici": [1, 13], "benefit": [0, 1, 4, 11, 13, 22, 29, 31, 32], "bengio": [1, 28, 29, 30, 32], "benign": [1, 7, 35], "benno": 36, "berner": 36, "besid": [4, 5, 31], "bessel": [5, 30, 33], "best": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 18, 21, 27, 29, 30, 31, 32, 33, 34, 35], "beta": [1, 3, 10, 11, 13, 16, 17, 19, 29, 30, 31], "beta1": [], "beta2": [], "beta_": [3, 13, 17, 30], "beta_0": [1, 3, 13, 30], "beta_1": [1, 3, 10, 13, 30, 32], "beta_1m_": 32, "beta_1x_i": 13, "beta_2": [3, 13, 32], "beta_2v_": 32, "beta_3": 3, "beta_i": [3, 32], "beta_j": [13, 30], "beta_k": 13, "beta_linreg": 13, "beta_m": 10, "beta_mg_m": 10, "beta_n": 3, "better": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 19, 20, 29, 30, 32, 33], "between": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "beyond": [0, 1, 5, 6, 8, 13, 29, 30, 31, 32], "bf": [13, 14, 23, 26, 31], "bf5400": [], "bg": 29, "bgd": [13, 32], "bia": [0, 1, 2, 3, 5, 8, 9, 10, 12, 13, 20, 21, 29, 30, 31, 35, 36], "bias": [1, 2, 3, 5, 6, 9, 12, 19, 21, 32, 33, 35], "bib": [], "bibliographi": 24, "bibtex": [], "big": [0, 1, 2, 5, 6, 14, 19, 32, 33], "bigger": [1, 6, 30], "bigr": [12, 35], "bike": 9, "bilbo": 29, "billion": [3, 12, 22, 32, 35, 36], "bin": [7, 26, 35], "binari": [0, 3, 5, 7, 9, 10, 12, 29, 34, 35], "binary_cross_entropi": [34, 35], "binary_result": [34, 35], "binarycrossentropi": 4, "bind": 0, "binomi": [22, 26, 29], "binsboot": [6, 33], "bioinformat": 0, "biolog": [1, 12, 35, 36], "bios1100": [22, 29], "bird": [0, 3], "birth": 29, "bishop": [28, 29], "bit": [1, 4, 19, 21, 23, 26, 29], "bitwis": 26, "bivari": 2, "bk": [13, 32], "bla": [23, 29], "black": [8, 9, 14], "blame": [], "block": [6, 10, 22, 23, 26, 29, 33, 34], "blockquot": [], "blog": 29, "blogpost": 4, "blue": [0, 3], "bm": [], "bmatrix": [0, 1, 3, 5, 7, 8, 11, 13, 23, 29, 30, 31, 32, 34, 35, 36], "bmi": 1, "bodi": [0, 1, 4, 12, 35, 36], "bold": 1, "boldfac": [0, 5, 16, 30, 31], "boldsymbol": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 24, 29, 31, 32, 34, 35, 36], "boltzmann": [12, 22, 29, 35, 36], "book": [17, 24, 28, 29, 30, 33, 34], "book1": 28, "bool": [], "boolean": [4, 17], "boost": [1, 9, 22, 29], "boostrap": 10, "bootstrap": [1, 13, 19, 22, 24, 29, 32], "born": 32, "borrow": 29, "boston_dataset": [], "bot": 8, "both": [0, 1, 4, 5, 6, 8, 9, 10, 13, 14, 15, 16, 17, 19, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35], "bottl": [7, 34, 35], "bottou": 32, "bound": [8, 12, 32, 35, 36], "boundari": [2, 4, 8, 11, 12], "bousquet": 32, "bower": [], "box": [4, 9, 21], "boyd": [8, 13, 31], "bracket": [4, 26], "brain": [1, 7, 12, 34, 35, 36], "branch": [9, 29], "break": [0, 4, 6, 11, 14, 29, 32], "breast": [5, 7, 11, 35], "breviti": 13, "brew": [0, 22, 24, 29], "brg": 8, "brian": [], "brief": [24, 30], "briefli": [0, 16, 19, 29, 33], "bring": [0, 5, 6, 10, 30, 32], "britt": [27, 29], "broad": 0, "broadcast": 21, "broadli": 29, "brought": [13, 22, 29], "brownle": 4, "browser": [15, 29], "brute": [3, 5, 11, 30, 36], "bsd": [], "budget": 32, "buffer_s": 4, "bug": [], "bugfix": [], "bui": 4, "build": [0, 4, 5, 6, 10, 16, 23, 26, 29, 33, 34, 35, 36], "built": [1, 3, 4, 6, 33, 34], "bunch": 11, "bundl": [], "busi": [], "bxe2t": [35, 36], "byte": [23, 29], "c": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36], "c1": [8, 11], "c2": [8, 11], "c4a2f5": [], "c5e478": [], "c9d1d9": [], "c_": [8, 9, 10, 13, 26, 31, 32], "c_0": 26, "c_1": [12, 35], "c_2": [12, 35], "c_3": [12, 35], "c_4": [12, 35], "c_i": [12, 13, 32, 35], "c_k": 26, "ca": [1, 29], "caab6d": [], "cach": 10, "cal": [0, 8, 10, 12, 13, 31, 32, 36], "calcul": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 23, 26, 29, 32, 33, 34, 35, 36], "california": 24, "call": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "calor": [0, 30], "caltech": [], "cambridg": [13, 28, 31, 36], "can": [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, 26, 27, 28, 30, 31, 35], "cancel": [0, 13, 29, 30], "cancer": [5, 10, 35], "cancerpd": [7, 35], "candid": [8, 9, 10, 32], "cannot": [0, 1, 4, 5, 6, 7, 8, 9, 24, 26, 30, 31, 32, 35], "canopi": [0, 22, 24, 29], "canva": [15, 16, 19, 20, 24, 29], "cap": 5, "capabl": [0, 1, 8, 13, 22, 29], "capac": [2, 27], "capita": [], "caption": [20, 24], "captur": [4, 11, 12, 29, 35, 36], "car": [3, 4], "card": [0, 7, 29, 34, 35], "cardin": 1, "care": [11, 15, 19, 32], "carefulli": [13, 32], "carlo": [0, 6, 22, 26, 28, 29, 33, 34], "carri": [2, 6, 7, 24, 33, 34, 35], "cart": 10, "case": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 16, 22, 23, 24, 29, 33, 36], "casella": 28, "cast": 1, "cat": [3, 4], "catch": 0, "categor": [0, 1, 3, 9, 11, 29, 34, 35], "categori": [0, 1, 3, 7, 10, 12, 14, 29, 34, 35, 36], "categorical_cross_entropi": [34, 35], "categorical_crossentropi": [1, 3], "caus": [0, 5, 6, 26, 29, 30, 31, 32, 33, 34], "causal": 0, "causat": [0, 29], "cax": 1, "cb": [6, 29], "cbar": 1, "cc": [0, 1, 5, 13, 29, 30, 31, 32, 36], "cc398b": [], "ccbb44": [], "ccc": [5, 12, 31, 35], "cdf": 26, "cdot": [0, 2, 6, 12, 13, 14, 23, 26, 29, 31, 32, 33, 35], "celebr": [13, 31], "cell": [4, 21], "center": [0, 1, 6, 7, 8, 9, 11, 14, 18, 24, 26, 29, 30, 32, 33, 34, 35], "central": [0, 3, 5, 6, 8, 16, 20, 23, 29, 30, 36], "centroid": [14, 26], "centroid_differ": 14, "centuri": 3, "certain": [0, 3, 6, 7, 9, 21, 26, 29, 30, 33, 34, 35], "certainti": 33, "cf": [], "cf222e": [], "cffi": [], "cg": 13, "cha": [], "chain": [0, 1, 13, 22, 26, 29], "challeng": [15, 36], "chanc": [1, 5, 13, 26, 32], "chang": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "changelog": [], "channel": 3, "chap4": 36, "chapter": [0, 6, 10, 11, 16, 17, 19, 23, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36], "chapter3": [0, 24], "charact": [0, 3, 5, 29, 30, 31], "character": [8, 9, 10, 12, 26, 35], "characterist": [0, 1, 3, 10, 13, 29], "charg": [0, 29], "charl": [], "charset": [], "chase": 4, "chatgpt": [15, 24], "chd": [7, 34], "chddata": [7, 34], "cheap": [5, 30, 31, 32], "cheaper": [1, 13, 32], "check": [1, 3, 4, 5, 11, 13, 15, 16, 19, 21, 23, 29, 32, 34, 35], "checkmark": 3, "checkpoint": 4, "checkpoint_dir": 4, "checkpoint_prefix": 4, "chen": 10, "cheng": 30, "chiaramont": 2, "childcar": 16, "children": 16, "choic": [0, 1, 2, 3, 4, 6, 9, 12, 13, 14, 20, 23, 29, 30, 31, 32, 33, 34, 35], "choleski": [5, 23, 30, 31], "choos": [2, 3, 6, 9, 10, 11, 13, 14, 15, 18, 19, 21, 24, 31, 33, 34, 35], "chosen": [0, 1, 2, 6, 8, 9, 10, 13, 16, 26, 29, 31, 32, 33, 34], "chosen_datapoint": 1, "christian": 28, "christoph": [28, 29], "chunk": 32, "cifar": 3, "cifar10": 3, "circ": [1, 12, 32, 36], "circl": [0, 8, 12, 30, 32, 35, 36], "circuit": 3, "circumfer": 9, "circumv": [1, 5, 13, 30, 31, 32], "citat": [], "cite": [20, 24], "ckpt": 4, "cl": [34, 35], "claim": [], "clarifi": 21, "clariti": 26, "class": [0, 1, 3, 4, 6, 7, 8, 9, 11, 12, 13, 21, 26, 29, 33], "class0": [34, 35], "class1": [34, 35], "class_nam": [3, 9], "class_to_index": [34, 35], "class_val": 9, "class_valu": 9, "classic": [7, 9, 13, 35], "classif": [0, 3, 5, 6, 7, 8, 11, 12, 21, 22, 24, 28, 29, 30, 33], "classifi": [0, 1, 4, 7, 9, 10, 11, 29, 35], "classificaton": 1, "classifii": 10, "claus": [], "clean": 1, "clear": [1, 5, 10, 12, 13, 32], "clearli": [0, 3, 5, 6, 7, 8, 26, 30, 31, 33, 34, 35], "clever": [1, 10], "clf": [0, 6, 8, 9, 10, 29, 30], "clf3": 0, "clf_lasso": 6, "clf_ridg": 6, "cli": 15, "click": [], "clip": [3, 26, 32, 34, 35], "clock": 32, "clone": [15, 27], "close": [0, 1, 2, 4, 6, 8, 9, 11, 12, 13, 14, 18, 26, 28, 29, 31, 32, 33, 35, 36], "closer": [3, 5, 13, 30, 31, 32], "closest": [8, 11, 13, 14], "closur": [22, 29], "cloud": [22, 29], "cluster": [0, 1, 4, 6, 11, 22, 29, 33, 34, 35], "cluster_label": 14, "cm": [1, 2, 3, 6, 8, 13, 31, 32], "cmap": [0, 1, 2, 3, 4, 6, 8, 9, 10, 29], "cmap_arg": 6, "cmd": [9, 15], "cn_": 26, "cnn": [12, 35, 36], "cnn_kera": 3, "cntk": [22, 29], "co": [0, 2, 3, 6, 9, 13, 29, 33, 34], "code": [0, 3, 4, 6, 7, 8, 18, 19, 21, 22, 23, 26, 28], "codec": [], "coef": [0, 29], "coef0": 8, "coef_": [0, 5, 6, 8, 9, 13, 16, 29, 30, 31, 32], "coeff": 5, "coeffici": [0, 3, 5, 6, 7, 8, 9, 13, 18, 23, 29, 30, 32, 33, 34, 35], "coerc": [0, 6, 29, 33, 34], "coin": [10, 26], "coin_toss": 10, "col": [0, 11, 29, 30], "colab": [21, 22, 29], "cold": 9, "colinear": [], "collabor": [20, 24], "collaps": 8, "collect": [2, 6, 10, 11, 17, 22, 26, 28, 29, 33, 34, 36], "collinear": [5, 30, 31], "color": [0, 3, 4, 6, 8, 9, 10, 26, 32], "color_channel": 3, "color_cod": 6, "colorbar": [1, 6, 20], "colsample_bytre": 10, "colsaobject": 10, "column": [0, 1, 2, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 19, 23, 29, 30, 31, 32, 33, 34, 35, 36], "columntransform": 9, "com": [4, 6, 15, 16, 19, 20, 21, 22, 24, 28, 29, 31, 32, 33, 34, 35, 36], "combin": [1, 2, 5, 6, 7, 10, 15, 18, 26, 33, 34], "come": [0, 1, 3, 4, 5, 12, 13, 14, 15, 29, 30, 31, 32, 35, 36], "comfort": [], "command": [0, 1, 15], "comment": [0, 4, 5, 6, 20, 24], "commerci": [0, 22, 24, 29], "commit": 15, "commod": [0, 29], "common": [0, 1, 3, 5, 6, 7, 9, 11, 13, 14, 16, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "commonli": [0, 1, 4, 6, 7, 9, 13, 14, 30, 32, 33, 34, 35], "commonmark": [], "commun": [0, 12, 15, 24, 35, 36], "commut": 3, "commutatitav": 3, "compact": [0, 1, 3, 5, 6, 7, 9, 11, 12, 13, 14, 21, 29, 30, 33], "compair": 0, "compar": [0, 3, 4, 5, 6, 11, 13, 18, 23, 24, 29, 30, 31, 32, 33, 34, 36], "comparison": [2, 4, 13], "compat": [7, 34, 35], "compens": 32, "compet": 0, "competit": 10, "compil": [0, 1, 3, 4, 13, 22, 23, 29], "compl": 21, "complet": [0, 2, 3, 4, 9, 12, 15, 16, 17, 18, 19, 20, 21, 29, 35], "completenn": [12, 35], "complex": [1, 5, 8, 9, 11, 12, 13, 16, 19, 29, 31, 32, 33, 34], "complianc": [], "complic": [0, 1, 9, 13, 24, 29, 31, 32, 33, 34], "compoment": 30, "compon": [0, 1, 3, 4, 5, 6, 7, 9, 14, 16, 22, 29, 30, 31, 33, 35, 36], "components_": 11, "compos": [9, 12, 13, 14, 22, 29, 35, 36], "compphys": [0, 6, 16, 20, 22, 24, 25, 27, 28, 29, 30, 31, 34, 35], "compress": [0, 29, 30], "compris": 6, "compromis": [5, 30, 31], "compulsori": [22, 29], "comput": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36], "computation": [0, 3, 6, 9, 13, 26, 29, 31, 32, 36], "computationalscienceuio": 29, "computerlab": 24, "concaten": [2, 4, 6, 14, 34, 35], "concav": [1, 13, 30, 31], "concentr": 10, "concept": [0, 2, 22, 29, 30], "conceptu": [12, 13, 31, 35, 36], "concern": [0, 1, 4, 7, 29, 31, 34, 35], "concic": 29, "conclud": [0, 5, 13, 32], "conclus": 1, "cond": 2, "conda": [0, 1, 22, 24, 29], "condis": 30, "condit": [0, 2, 4, 5, 6, 8, 9, 11, 13, 26, 29, 30, 32, 33], "conduct": 22, "condwav": 2, "confid": [0, 5, 6, 7, 8, 19, 29, 30, 34, 35], "configur": 3, "confirm": [5, 12, 21, 35], "conform": [], "confus": [5, 6, 7, 10, 23, 30, 33], "confusion_matrix": 9, "congruenti": 26, "conjug": [4, 8], "conjugaci": 13, "conjunct": 3, "connect": [0, 1, 3, 4, 9, 11, 12, 13, 23, 29, 30, 31, 35, 36], "consensu": 32, "consequ": [5, 6, 8, 10, 12, 13, 30, 31, 32, 33], "consequenti": [], "conserv": [5, 14, 30, 31], "consid": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 16, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "consider": [0, 1, 5, 13, 29, 30, 31, 33], "consist": [1, 2, 3, 4, 6, 12, 13, 24, 26, 30, 31, 33, 34, 35, 36], "consol": [], "const": [], "constant": [0, 2, 4, 5, 6, 8, 12, 13, 16, 18, 26, 29, 30, 31, 32, 35, 36], "constitu": [0, 29], "constitut": [2, 6, 33, 34], "constrain": [1, 3, 5, 7, 11, 31, 34], "constraint": [5, 6, 8, 13, 30, 31, 33], "construct": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 23, 26, 29, 30, 33, 35], "constructor": [], "consum": 32, "contact": [0, 29], "contain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 18, 19, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "contemporari": 29, "content": [1, 15, 20, 22, 23, 29, 31, 32], "context": [6, 10, 13, 24, 31, 32, 33, 34, 36], "contigu": 23, "contin": 19, "continu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "contour": [9, 10, 13], "contourf": [8, 9, 10], "contract": [], "contrast": [1, 4, 9, 10, 12, 29, 32, 35, 36], "contribut": [0, 3, 5, 13, 18, 26, 29, 30, 31, 32], "contributor": [0, 24], "control": [0, 1, 3, 9, 13, 15, 22, 29], "conv": [3, 4], "conv2d": [3, 4], "conv2dtranspos": 4, "convei": 29, "conveni": [5, 6, 12, 13, 23, 24, 29, 31, 32, 33, 35], "convent": [12, 30], "converg": [1, 2, 4, 5, 8, 13, 14, 18, 30, 31, 36], "convergencewarn": [], "convers": [20, 32], "convert": [0, 1, 4, 5, 9, 11, 13, 23, 29, 30, 31, 34, 35], "converttomatrix": 4, "convex": [4, 5, 7, 30, 34, 35], "convinc": [13, 31], "convolut": [1, 4, 22, 29], "cool": [4, 9], "coolwarm": 6, "coordin": [5, 12, 14, 30, 31, 32, 35], "coorel": [], "copi": [0, 1, 14, 15, 30, 34, 35], "copyright": [], "core": 10, "corel": 29, "coronari": [7, 34], "corr": [5, 7, 11, 30, 35], "correalt": [11, 22], "correct": [0, 1, 2, 3, 4, 5, 7, 13, 15, 19, 20, 21, 23, 26, 29, 30, 31, 33, 34, 35], "correctli": [1, 2, 6, 7, 10, 18, 19, 21, 24, 33, 34], "correl": [0, 1, 3, 5, 6, 7, 10, 12, 13, 22, 26, 29, 31, 32, 33, 36], "correlation_matrix": [5, 7, 11, 30, 35], "correspond": [0, 3, 5, 6, 8, 9, 11, 12, 22, 23, 24, 26, 29, 30, 31, 33, 35, 36], "cortex": [12, 35, 36], "cosin": [3, 6, 33, 34], "cost": [0, 2, 3, 5, 6, 7, 8, 9, 12, 13, 16, 17, 18, 19, 21, 24, 29], "cost_deep_grad": 2, "cost_funct": 2, "cost_function_deep": 2, "cost_function_deep_grad": 2, "cost_function_grad": 2, "cost_grad": 2, "cost_histori": [], "cost_ol": [], "cost_ridg": [], "cost_sum": 2, "costli": 32, "costol": [13, 32], "could": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "coulomb": [0, 29], "count": [0, 9, 15, 24, 25, 26, 27, 29], "counter": 24, "counteract": 32, "counterpart": 29, "countor": 13, "coupl": [4, 5, 6, 21, 33], "cours": [0, 1, 3, 5, 11, 15, 16, 17, 19, 20, 21, 24, 27, 30, 33, 34], "coursework": 15, "courvil": [28, 29, 30, 32], "cov": [5, 6, 11, 23, 26, 29, 30, 33], "cov_xi": [5, 11, 30], "cov_xx": [5, 11, 30], "cov_yi": [5, 11, 30], "covari": [0, 7, 22, 23, 29, 31, 35], "covariance_matrix": [5, 11, 14], "cover": [0, 5, 22, 24, 27, 28, 30, 31, 33], "covert": [0, 29], "covxi": 26, "covxx": 26, "covxz": 26, "covyi": 26, "covyz": 26, "covzz": 26, "cpu": 1, "cqofi41lfdw": 36, "craft": 3, "crash": 32, "creat": [1, 3, 4, 5, 9, 10, 11, 12, 15, 18, 19, 21, 22, 29, 32, 34, 35, 36], "create_biases_and_weight": 1, "create_convolutional_neural_network_kera": 3, "create_lay": 21, "create_layers_batch": 21, "create_neural_network_kera": 1, "create_x": [5, 11], "creation": [], "credit": [0, 7, 27, 29, 34, 35], "crim": [], "crime": [], "criteria": [0, 4, 9, 10, 14, 26, 29], "criterion": [9, 10, 13, 18, 31, 32, 36], "critic": [6, 24, 30], "critiqu": 24, "cross": [0, 1, 3, 7, 9, 10, 13, 15, 21, 22, 26, 29, 30, 31, 32], "cross_entropi": [4, 21], "cross_val_scor": [6, 33, 34], "cross_valid": [7, 10, 35], "crossvalid": [6, 33, 34], "crucial": [1, 26, 32], "cs231": 3, "csr_matrix": [23, 29], "css": [], "csv": [0, 4, 6, 7, 9, 33, 34, 35], "ctnk": 1, "cube": 36, "cubic": 0, "culprit": [], "cumbersom": [5, 33], "cumprod": [], "cumsum": [10, 11, 29], "cumul": [7, 10, 26, 32], "cumulative_heads_ratio": 10, "cup": 5, "current": [1, 2, 3, 4, 13, 14, 15, 16, 28, 31, 32, 34, 35], "curs": [0, 30], "curv": [6, 7, 10, 12, 24, 34, 35], "curvatur": [13, 31, 32], "custom": [6, 14], "custom_cmap": [9, 10], "custom_cmap2": [9, 10], "custom_lin": [], "cutpoint": 9, "cv": [6, 7, 10, 33, 34, 35], "cvxbook": [13, 31], "cvxopt": [5, 8, 30], "cybenko": 36, "cycl": [1, 12, 35, 36], "cycler": [], "d": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "d1": [], "d166a3": [], "d2": [], "d2_g_t": 2, "d2a8ff": [], "d4d0ab": [], "d71835": [], "d9dee3": [], "d_f": [13, 31], "d_g_t": 2, "d_net_out": 2, "da": [3, 36], "dagger": [5, 23, 30, 31], "dai": [1, 9, 22], "damag": [], "damp": 3, "darget": 9, "darkr": 26, "dat": [0, 29], "dat_id": [0, 6, 7, 9, 29, 33, 34], "data": [2, 4, 5, 8, 10, 12, 13, 14, 16, 19, 20, 23, 24, 28, 31, 32, 33], "data1": 14, "data2": 14, "data3": 14, "data4": 14, "data_id": [0, 6, 7, 9, 29, 33, 34], "data_indic": 1, "data_panda": 29, "data_path": [0, 6, 7, 9, 29, 33, 34], "databas": 1, "datafil": [0, 6, 7, 9, 29, 33, 34], "datafram": [0, 4, 5, 7, 9, 11, 29, 30, 35], "datapoint": [1, 5, 6, 7, 11, 13, 16, 31, 32, 33, 34], "datasci": [15, 16, 19], "dataset": [0, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 21, 24, 29, 31, 32, 33, 34, 35], "datatyp": 4, "date": [15, 18, 21, 24, 29, 30, 31, 32, 33, 34, 35, 36], "daughter": 10, "davi": [], "david": 28, "davison": [33, 34], "db": 36, "dbb7ff": [], "dbh": 1, "dbo": 1, "dcc6e0": [], "dcomposit": 23, "ddot": 2, "de": 32, "dead": 1, "deadlin": [15, 20, 21], "deal": [0, 1, 3, 5, 6, 8, 11, 13, 14, 19, 23, 26, 29, 30, 31, 32, 36], "dealt": 0, "debt": [7, 34, 35], "debug": [0, 5, 6, 30, 31, 32, 33, 34], "debugg": [], "decad": [0, 3, 32], "decai": [0, 13, 26, 29], "decemb": [27, 29], "decent": 10, "decid": [0, 2, 3, 5, 6, 9, 18, 30, 31, 32, 33, 34], "decim": [0, 29], "decis": [0, 1, 8, 11, 22, 28, 29], "decision_funct": 8, "decision_tre": 9, "decisiontreeclassifi": [9, 10], "decisiontreeregressor": [0, 9, 10], "declar": [0, 4, 20, 23, 29], "declare_namespac": [], "decompos": [5, 6, 23, 30, 31, 36], "decomposit": [0, 6, 12, 29, 35, 36], "decompost": [5, 30, 31], "deconvolut": 3, "decorrel": [10, 13, 32], "decreas": [1, 2, 4, 5, 6, 10, 11, 13, 19, 31, 32, 33, 34], "dedic": 20, "deduc": [0, 29], "deep": [3, 7, 12, 13, 22, 28, 30, 31], "deep_neural_network": 2, "deep_param": 2, "deep_tree_clf": [9, 10], "deep_tree_clf1": 9, "deep_tree_clf2": 9, "deepen": [5, 22, 29], "deeper": [0, 3, 4, 29], "deeplearningbook": [28, 29, 31, 32], "deer": 3, "def": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 21, 26, 29, 30, 31, 32, 33, 34, 35, 36], "def_covari": 26, "default": [0, 1, 2, 4, 6, 7, 23, 29, 30, 34, 35], "default_tim": 4, "defect": [5, 30, 31], "defici": [5, 30, 31], "defin": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 21, 23, 24, 26, 30, 31, 32, 33, 34, 35], "definit": [1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 23, 26, 30, 31, 32, 33, 34, 35], "defint": 26, "degre": [3, 5, 6, 8, 9, 10, 11, 15, 16, 19, 20, 24, 26, 29, 31, 32, 33, 34], "deisenroth": 30, "del": 1, "delet": [6, 15], "delimit": 4, "deliv": [15, 24, 25, 29], "delta": [0, 2, 3, 6, 8, 12, 13, 14, 29, 32, 36], "delta_": [1, 23, 36], "delta_0": [3, 36], "delta_1": [3, 36], "delta_2": [3, 36], "delta_2a_1": 36, "delta_3": 3, "delta_4": 3, "delta_5": 3, "delta_h": [0, 1, 29], "delta_i": 36, "delta_j": [3, 12, 36], "delta_k": [12, 36], "delta_l": [1, 3], "delta_momentum": [13, 32], "delta_n": [0, 3, 29], "delug": 22, "delv": 0, "demand": [13, 31], "demonstr": [0, 3, 5, 6, 7, 11, 12, 19, 22, 29, 30, 31, 32, 33, 34, 35], "demystifi": [35, 36], "den": 4, "denomin": [1, 5, 32], "denot": [1, 2, 6, 7, 13, 26, 31, 32, 34, 35], "dens": [1, 3, 4], "densiti": [0, 2, 6, 26, 33, 34], "depart": [27, 29, 30, 31, 32, 33, 34, 35, 36], "depend": [0, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 22, 23, 24, 26, 29, 30, 31, 32, 34, 35, 36], "depict": 26, "deploy": [0, 22, 24, 29], "depth": [0, 3, 9, 10, 23, 33], "der": [], "deriv": [0, 1, 2, 6, 7, 8, 10, 11, 13, 18, 22, 24, 29, 34, 35], "derivati": 13, "derivative_fn": 13, "derivb1": 36, "derivb2": 36, "derivw1": 36, "derivw2": 36, "descend": [5, 9, 11, 30, 31], "descent": [0, 1, 3, 7, 8, 12, 29, 30, 34, 36], "describ": [0, 2, 4, 5, 6, 8, 10, 11, 12, 13, 19, 20, 23, 24, 29, 32, 33, 35, 36], "descript": [0, 8, 9, 20, 24, 29], "design": [0, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 17, 18, 24, 29, 31, 32, 33, 34, 35, 36], "designmatrix": [0, 29], "desir": [0, 2, 4, 5, 13, 14, 29, 30, 31, 32], "desktop": 15, "despit": [1, 12, 32, 35], "destroi": 23, "det": [5, 23, 30, 31], "detail": [0, 6, 11, 13, 14, 18, 21, 23, 24, 30, 31, 32], "detect": [3, 8, 12, 35, 36], "determin": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 18, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "determinist": [7, 13, 26, 31, 32, 34, 36], "deternin": 36, "dev": [1, 24], "develop": [0, 3, 5, 8, 10, 11, 12, 22, 23, 24, 29, 30, 35, 36], "deviat": [0, 1, 2, 4, 5, 6, 17, 18, 19, 24, 26, 29, 30, 32, 33, 34], "devis": [12, 35, 36], "df": [4, 8, 11, 13, 29, 36], "df1": 29, "di": [], "diag": [5, 8, 30, 31, 32], "diagnost": [1, 10], "diagon": [0, 5, 7, 13, 18, 19, 23, 26, 29, 30, 31, 32, 34, 35], "diagonaliz": [5, 30, 31], "diagram": 10, "diagsvd": 6, "dice": [6, 26, 33], "dict": [6, 8], "dictionari": [], "did": [0, 1, 5, 6, 7, 10, 11, 14, 16, 24, 29, 33, 34, 35], "die": 1, "diff": [2, 36], "diff1": 2, "diff2": 2, "diff_ag": 2, "diffeent": 8, "differ": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 35, 36], "different": 36, "differenti": [0, 3, 16, 21, 22, 23, 29, 30, 31, 35], "difficult": [0, 1, 6, 10, 13, 26, 29, 32, 33, 34], "difficulti": [0, 1, 13, 29, 31, 32], "diffonedim": 2, "digit": [0, 1, 3, 4, 6, 27, 29], "digress": 36, "dilemma": [13, 32], "dilut": 1, "dim": [4, 11, 14, 23], "dimens": [0, 1, 2, 3, 4, 5, 8, 11, 14, 16, 23, 29, 30, 31, 36], "dimension": [0, 4, 5, 6, 9, 11, 13, 14, 19, 22, 23, 24, 29, 30, 31, 32, 33], "dimensionless": [0, 3, 29], "diment": 23, "diminish": 32, "dimnsion": 4, "diod": 3, "direct": [0, 1, 2, 4, 11, 12, 13, 14, 29, 30, 31, 32, 35, 36], "directli": [1, 4, 5, 6, 18, 26, 30, 31], "directori": [], "disadvantag": [0, 29, 32], "disappear": [3, 6, 33], "disc_loss": 4, "disc_tap": 4, "discard": [6, 11, 32, 33, 34], "disciplin": [0, 3, 12, 35, 36], "disclaim": 26, "discontinu": 36, "discord": [21, 29], "discourag": [13, 15, 31], "discov": [0, 29], "discover": 5, "discret": [1, 3, 5, 7, 13, 34, 35], "discrimin": [4, 7, 10, 11, 34, 35], "discriminator_loss": 4, "discriminator_loss_list": 4, "discriminator_model": 4, "discriminator_optim": 4, "discuss": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 36], "diseas": [7, 34, 35], "disguis": [6, 30, 32], "disk": 32, "disord": [1, 7, 34, 35], "dispai": [35, 36], "displai": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 24, 26, 29, 30, 32, 33, 34, 35, 36], "displaystyl": [0, 5, 17, 29, 30, 31, 32], "disregard": [0, 29], "dissimilar": [11, 14], "dist": 14, "distanc": [8, 9, 11, 14, 26], "distance_list": 9, "distinct": [3, 7, 8, 9, 10, 14, 34, 35], "distinctli": 8, "distinguish": [0, 4, 7, 8, 26, 29, 35], "distplot": [], "distribut": [0, 1, 4, 6, 7, 10, 11, 13, 14, 18, 19, 21, 22, 23, 24, 29, 30, 31, 32, 34], "distrubut": [0, 22, 24, 29], "div": [], "dive": [0, 8, 23, 29], "diverg": [1, 13, 31, 32], "divid": [0, 1, 3, 5, 6, 7, 8, 9, 11, 12, 18, 19, 26, 29, 30, 32, 33, 34, 35, 36], "divis": [6, 8, 9, 13, 18, 23, 26, 32, 33, 34, 36], "dl": [], "dm": [], "dna": [7, 34, 35], "dnn": [0, 1, 2, 4, 12, 29, 35, 36], "dnn1": 4, "dnn2_gru2": 4, "dnn_kera": 1, "dnn_model": 1, "dnn_numpi": 1, "dnn_scikit": [0, 1, 29], "do": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 29, 30, 31, 33, 34, 36], "doc": [0, 15, 16, 19, 22, 24, 25, 27, 28, 29], "document": [4, 13, 15], "docutil": [], "doe": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 21, 23, 24, 26, 29, 32, 33, 34, 36], "doesn": [3, 9, 12, 29, 32, 36], "dog": [1, 3, 4], "dollar": [], "domain": [5, 8, 13, 24, 31, 33], "domcontentload": [], "domin": [0, 29], "don": [0, 1, 3, 5, 6, 8, 11, 13, 15, 16, 21, 22, 24, 29, 30, 32], "done": [0, 2, 3, 4, 5, 6, 9, 10, 11, 13, 16, 20, 23, 24, 29, 30, 31, 32, 33, 34, 36], "dot": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "doubl": [3, 4, 16, 23, 29], "doubli": 1, "doubt": 24, "down": [0, 3, 6, 9, 11, 12, 13, 31, 32, 35], "download": [0, 1, 3, 5, 6, 15, 20, 23, 28, 29], "downsampl": 3, "dozen": 1, "dq": [6, 33], "draft": 20, "drag": 13, "dragon": [], "dramat": 11, "drastic": 4, "draw": [4, 6, 10, 13, 31, 33, 34], "drawback": [0, 1, 3, 13, 30, 31, 32], "drawn": [1, 4, 6, 7, 11, 26, 29, 33, 34, 35], "drive": [3, 4, 21], "driven": 3, "drop": [0, 1, 5, 6, 11, 13, 26, 29, 30, 31, 33], "dropna": [0, 6, 29, 33, 34], "dropout": 4, "dt": [2, 3, 13, 26, 36], "dtype": [0, 1, 3, 4, 14, 23, 29, 34, 35, 36], "dual": [], "dub": [0, 29], "duboi": [], "due": [1, 2, 5, 6, 8, 10, 12, 13, 18, 27, 29, 30, 31, 32, 33, 34, 35, 36], "dugard": [], "dummi": [], "dure": [0, 1, 3, 4, 8, 9, 11, 20, 22, 24, 29, 32, 33, 34, 35], "dwell": [], "dwh": 1, "dwo": 1, "dx": [2, 3, 8, 26, 36], "dx_1": 26, "dx_1p": [6, 33], "dx_2p": [6, 33], "dx_mp": [6, 33], "dx_n": 26, "dxp": [6, 33], "dy": [1, 8, 26], "dynam": 4, "dz": 8, "e": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "e1e1e1": [], "e_": [0, 2, 29], "e_z": 21, "each": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36], "eager": 33, "eapprox": [0, 29], "earli": [1, 13, 32], "earlier": [0, 5, 7, 8, 9, 11, 12, 13, 19, 20, 21, 29, 30, 34, 35, 36], "earthexplor": 6, "eas": [6, 9, 14, 33], "easi": [0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 21, 22, 23, 29, 30, 31, 32, 33, 34, 35, 36], "easier": [5, 6, 8, 9, 13, 15, 20, 21, 24, 26, 29, 30, 31, 33, 34], "easiest": [13, 18, 34, 35], "easili": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "eastern": [27, 29], "ebind": [0, 29], "eblock": 9, "ec8e2c": [], "econom": [], "econometr": 29, "economi": 5, "ecosystem": [22, 29], "ect": 25, "edg": 3, "edgecolor": [6, 33, 34], "edit": 21, "editor": [15, 20], "edu": [13, 24, 31], "educ": [0, 24, 29, 33], "ee6677": [], "eff": 26, "effect": [1, 4, 10, 13, 16, 17, 18, 26, 32], "effic": 1, "effici": [0, 3, 10, 13, 21, 22, 23, 26, 29, 32, 34, 35, 36], "effort": 19, "efron": [6, 33, 34], "egrad": 13, "eig": [5, 11, 13, 23, 26, 29, 30, 31, 32], "eigen": 26, "eigenpair": [5, 11, 30, 31], "eigenvalu": [0, 5, 8, 11, 13, 23, 29, 30, 31, 32], "eigenvector": [5, 11, 13, 30, 31], "eight": [23, 29], "eigval": [23, 26, 29], "eigvalu": [11, 13, 31, 32], "eigvec": [23, 26, 29], "eigvector": [11, 13, 31, 32], "eir": [27, 29], "eispack": [23, 29], "either": [1, 5, 6, 7, 8, 9, 10, 11, 13, 18, 19, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "eivind": 27, "eivinsto": 27, "ekstr\u00f8m": 4, "elabor": 26, "elarn": 3, "electr": [0, 3, 12, 29, 35, 36], "electron": 29, "eleg": 11, "element": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 19, 20, 21, 22, 23, 24, 28, 30, 32, 33, 34, 35, 36], "elementari": [10, 13, 23, 36], "elementwis": [3, 13], "elementwise_grad": [2, 13], "elessar": 29, "elif": 14, "elim": 23, "elimin": [3, 8], "elin": [27, 29], "ell_": [], "ellipsi": 16, "els": [1, 3, 4, 7, 9, 12, 13, 16, 23, 34, 35], "elu": 1, "elus": [0, 29], "em": [], "email": [20, 21, 25, 27, 29], "emb": [], "embark": 36, "embed": [0, 11, 30], "embodi": [6, 24, 33, 34], "emit": 26, "emner": 28, "emph": 32, "emphas": [0, 10, 22, 29], "emphasi": [0, 22, 28, 29], "empir": [1, 11, 26], "emploi": [0, 1, 5, 6, 11, 13, 26, 29, 30, 31, 33], "employ": 0, "empti": [6, 10, 15, 33, 34], "emul": [12, 35, 36], "en": [22, 24, 28], "enabl": [11, 32], "enbodi": [6, 33], "encod": [0, 3, 5, 9, 11, 14, 29, 30, 31, 34, 35], "encompass": [0, 24, 26], "encount": [0, 1, 5, 7, 13, 15, 21, 24, 26, 29, 30, 31, 32, 34, 35], "encourag": [15, 24], "end": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "endblock": [], "endfor": [], "endif": [], "endors": [], "endpoint": [3, 6], "energi": [0, 4, 6, 33, 34], "enforc": [12, 35, 36], "eng": 28, "engin": [0, 1, 3, 4, 22, 29], "english": 24, "enjoi": 32, "enocurag": 24, "enorm": 3, "enough": [0, 6, 13, 29, 31, 32, 33], "ensembl": [1, 9, 29], "ensur": [0, 1, 2, 3, 5, 6, 11, 13, 18, 26, 30, 31, 32, 33, 34, 36], "entail": 29, "enter": [5, 6, 30, 31, 32], "enthought": [0, 22, 24, 29], "entir": [1, 3, 7, 9, 21, 22, 26, 29, 32, 34], "entireti": [], "entiti": [9, 12, 23, 29], "entri": [0, 5, 8, 11, 12, 23, 29, 30, 32, 33], "entropi": [1, 3, 7, 10, 13, 21, 29, 31, 32], "enumer": [0, 1, 2, 3, 4, 6, 8, 21, 29, 30, 32, 34, 35], "env": 26, "environ": [2, 21, 22, 24, 29], "environemnt": 15, "eo": [0, 6, 33, 34], "eol": 0, "eosfit": 0, "epoch": [0, 1, 3, 4, 12, 13, 21, 29, 32, 34, 35], "eppstein": [], "epsilon": [0, 5, 6, 7, 13, 24, 29, 30, 31, 32, 33, 34, 35, 36], "epsilon_": [0, 29], "epsilon_0": [0, 29], "epsilon_1": [0, 29], "epsilon_2": [0, 29], "epsilon_i": [0, 29, 30], "eq": [3, 13, 14, 23, 26, 31], "eqnarrai": [3, 5, 6, 33], "equal": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 16, 18, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "equat": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 19, 23, 26, 29, 32, 33], "equilibrium": [2, 12, 35, 36], "equiv": [3, 13, 23, 26, 31, 32], "equival": [0, 1, 5, 7, 8, 11, 13, 22, 23, 29, 30, 31, 32, 33], "equivel": [19, 21], "eras": [], "erf": 26, "eriador": 29, "eric": [], "err": [0, 10], "err_": [6, 33, 34], "err_sqr": 2, "errat": [13, 31, 32], "erron": 2, "error": [1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 32, 35, 36], "error_estimate_corr_tim": 26, "error_hidden": 1, "error_output": 1, "escap": [13, 31, 32], "escapehtml": [], "especi": [1, 3, 9, 12, 13, 15, 18, 24, 32, 35, 36], "essenti": [0, 5, 6, 9, 10, 12, 14, 15, 24, 26, 30, 31, 32, 35, 36], "establish": [0, 6, 10, 11, 16, 24], "estim": [0, 1, 5, 6, 7, 10, 11, 13, 22, 26, 29, 30, 31, 32, 34, 35], "estimated_mse_fold": [6, 33, 34], "estimated_mse_kfold": [6, 33, 34], "estimated_mse_sklearn": [6, 33, 34], "et": [0, 2, 4, 16, 17, 20, 28, 29, 30, 31, 33, 34, 35, 36], "eta": [0, 1, 3, 8, 12, 13, 18, 29, 31, 32, 36], "eta0": [8, 13], "eta_": 13, "eta_j": 32, "eta_t": [13, 32], "eta_v": [0, 1, 3, 29], "etc": [0, 1, 3, 5, 7, 8, 9, 11, 12, 13, 14, 22, 23, 24, 26, 30, 31, 32, 34, 35], "ethic": 22, "etsim": 33, "euclidean": [0, 14, 30, 32], "euler": [], "evalu": [0, 2, 3, 4, 5, 6, 9, 13, 15, 16, 17, 19, 21, 24, 26, 29, 30, 31, 32, 33, 34, 35], "evalut": [13, 24], "even": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 22, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "evenli": 4, "event": [5, 7, 10, 26, 33, 34], "eventu": [0, 5, 6, 11, 12, 13, 24, 27, 30, 31, 32, 33, 34, 35, 36], "everi": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 21, 22, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "everyth": [4, 12, 16, 18, 21, 36], "everywher": [4, 13, 31], "evolv": 0, "exact": [0, 5, 11, 12, 13, 23, 26, 29, 30, 32, 36], "exactli": [0, 3, 4, 6, 12, 18, 22, 30, 32, 33, 35, 36], "exam": 29, "examin": [6, 33, 34], "exampl": [0, 5, 11, 12, 13, 15, 16, 18, 20, 22, 23, 24, 26, 28], "exce": [1, 12, 13, 32, 35, 36], "exceed": 32, "excel": [0, 1, 4, 5, 10, 20, 24, 29, 30], "except": [3, 4, 6, 8, 9, 23], "excess": [0, 29], "exchang": 32, "excit": 0, "exclud": [1, 6, 12, 24, 30, 32, 33, 34, 35], "exclus": [0, 1, 3, 6, 26, 29, 33, 34], "execut": [2, 5, 13, 15, 30, 31, 32], "exemplari": [], "exemplifi": [13, 32], "exercic": [27, 29], "exercis": [5, 22, 24, 25, 27, 29, 31, 32, 33, 34, 35], "exhaust": [6, 32, 33, 34], "exhibit": [0, 5, 6, 8, 29, 30, 33], "exist": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 19, 23, 24, 29, 31, 32, 33, 34], "exit": [5, 23, 30, 31], "exp": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 16, 17, 19, 21, 26, 30, 31, 32, 33, 34, 35, 36], "exp_term": 1, "exp_z": [34, 35], "expand": [5, 7, 11, 13, 31, 34, 35], "expans": [0, 3, 5, 8, 10, 12, 13, 29, 30, 31, 36], "expect": [0, 1, 5, 6, 7, 11, 12, 13, 15, 18, 22, 24, 29, 30, 32, 34, 36], "expectation_value_of_h_wrt_p": 26, "expens": [6, 10, 13, 16, 31, 32], "experi": [0, 1, 6, 8, 13, 15, 22, 24, 29, 30, 31, 32, 33, 34], "experiment": [0, 4, 6, 9, 26, 29, 33, 34], "expert": [1, 9], "explain": [0, 6, 9, 10, 11, 13, 16, 19, 24, 29, 31, 34, 35], "explained_variance_ratio_": 11, "explan": [], "explanatori": [0, 29], "explicit": [0, 3, 6, 13, 23, 24, 29, 30, 31, 32], "explicitli": [0, 4, 21], "explod": [1, 36], "exploit": [0, 3, 12, 13, 29, 32, 35, 36], "explor": [1, 4, 6, 8, 13, 18, 22, 24, 29, 31, 32], "expon": 1, "exponenti": [0, 1, 5, 6, 10, 13, 26, 29, 31, 36], "export": [9, 15, 16, 19, 20, 34, 35], "export_graphviz": 9, "export_text": 9, "exporttext": 9, "expos": 22, "expr": 36, "express": [0, 2, 3, 5, 6, 7, 10, 12, 13, 18, 23, 24, 26, 29, 31, 32, 33], "exptmean": 26, "exptvari": 26, "extend": [0, 2, 7, 11, 13, 22, 29, 32], "extend_path": [], "extens": [0, 12, 15, 22, 29, 35, 36], "extent": [0, 1, 6, 28, 33, 34], "extern": [3, 6, 9], "extra": [1, 3, 5, 15, 27, 29, 30, 31], "extract": [0, 3, 5, 6, 7, 8, 11, 13, 16, 17, 23, 29, 30, 34, 35, 36], "extrapol": [0, 29], "extrem": [0, 1, 4, 5, 6, 7, 8, 9, 13, 15, 16, 23, 30, 31, 32, 34], "extremum": [13, 31], "extrins": 11, "ey": [0, 5, 6, 13, 14, 18, 23, 29, 30, 31, 32], "f": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "f1": 13, "f11": [0, 29], "f12": [0, 29], "f13": [0, 29], "f1_grad": 13, "f1d": 13, "f2": 13, "f26196": [], "f2_grad_x1": 13, "f2_grad_x1_analyt": 13, "f2_grad_x2": 13, "f2_grad_x2_analyt": 13, "f2f2f2": [], "f3": 13, "f3_grad": 13, "f3_grad_analyt": 13, "f4": 13, "f4_grad": 13, "f4_grad_analyt": 13, "f5": 13, "f5_grad": 13, "f5a394": [], "f5ab35": [], "f5f5f5": [], "f6": 13, "f6_for": 13, "f6_for_grad": 13, "f6_grad_analyt": 13, "f6_while": 13, "f6_while_grad": 13, "f7": 13, "f78c6c": [], "f7_grad": 13, "f7_grad_analyt": 13, "f8": 13, "f8_grad": 13, "f8f8f2": [], "f9": [0, 13, 29], "f9_altern": 13, "f9_alternative_grad": 13, "f9_grad": 13, "f_": 10, "f_0": [3, 10], "f_1": [10, 13, 31], "f_2": [12, 13, 31, 35], "f_3": [12, 35], "f_d": 26, "f_grad": 13, "f_grad_analyt": 13, "f_i": [0, 6, 12, 16, 33, 34, 35], "f_m": [3, 10], "f_n": 3, "f_vec": 2, "face": [13, 29, 31], "facecolor": [6, 8, 26, 33], "facil": [0, 22], "facilit": [12, 35, 36], "fact": [0, 1, 3, 5, 9, 11, 12, 13, 29, 30, 31, 32], "facto": 32, "factor": [0, 1, 3, 5, 6, 9, 10, 11, 13, 23, 26, 29, 30, 31], "factori": 13, "fad000": [], "fade": 6, "fae4c2": [], "fafab0": [9, 10], "fail": [0, 6, 13, 27, 29, 31, 33, 34, 36], "failur": [7, 34, 35], "fairli": [1, 2, 18, 26, 32], "faisal": [16, 30], "fake": 4, "fake_loss": 4, "fake_output": 4, "fall": [8, 9, 25], "fals": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 16, 17, 23, 29, 30, 31, 32, 33, 34, 35], "famili": [0, 7, 8, 26, 30, 32, 34, 35, 36], "familiar": [0, 3, 5, 6, 8, 15, 22, 23, 24, 26, 29, 33, 36], "famou": [6, 12], "far": [0, 3, 4, 5, 6, 8, 11, 12, 13, 14, 16, 20, 21, 29, 30, 31, 32, 35, 36], "fashion": [0, 9, 10, 29, 32], "fast": [1, 3, 6, 10, 12, 13, 22, 26, 29, 31, 32, 33, 34, 36], "faster": [1, 11, 13, 21, 32], "fastest": [13, 23, 31], "fatal": [], "favor": [7, 32, 34], "favorit": 26, "fc": 3, "fcfcfc": [], "fdac54": [], "fdf2e2": [], "featur": [0, 1, 3, 5, 6, 7, 8, 10, 11, 12, 13, 15, 17, 18, 19, 21, 22, 26, 29, 31, 32, 33, 34, 35, 36], "feature_nam": [1, 7, 9, 21, 35], "feautur": 9, "fed": [1, 36], "feed": [0, 2, 3, 11, 21, 22, 29], "feed_forward": [1, 21], "feed_forward_all_relu": 21, "feed_forward_batch": 21, "feed_forward_out": 1, "feed_forward_train": 1, "feedback": [4, 20, 29], "feeddorward": 4, "feedforward": [1, 4, 12], "feel": [0, 5, 6, 11, 13, 15, 16, 18, 21, 22, 24, 27, 29, 36], "feet": [], "fefef": [], "fefeff": [], "felt": 24, "fenc": [], "fernando": [], "fetch": [6, 15], "few": [1, 3, 4, 5, 9, 17, 18, 19, 26, 29, 36], "fewer": [0, 9, 11, 19, 29, 32], "ff7b72": [], "ff9492": [], "ffa07a": [], "ffa657": [], "ffb757": [], "ffd700": [], "ffd900": [], "ffd9002e": [], "ffffff": [], "ffnn": [1, 12, 35, 36], "fi": [], "field": [0, 3, 6, 12, 19, 22, 35, 36], "fieldmask": [], "fifteen": 36, "fifth": [0, 6, 29], "fig": [0, 1, 2, 3, 4, 6, 7, 12, 13, 14, 24, 29, 34, 35], "fig_id": [0, 6, 7, 9, 29, 33, 34], "figaxi": 26, "figsiz": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 29, 33, 34, 35], "figur": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 22, 24, 29, 30, 31, 32, 33, 34, 35, 36], "figure_id": [0, 6, 7, 9, 29, 33, 34], "figurefil": [0, 6, 7, 9, 29, 33, 34], "file": [0, 4, 5, 6, 7, 9, 15, 20, 21, 24, 29, 33, 34], "file_prefix": 4, "filenam": 29, "fill": [5, 9, 18, 30, 31], "fill_valu": [], "filter": [3, 4], "final": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 20, 21, 24, 25, 26, 27, 29, 31, 33, 34, 35], "financ": 0, "find": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 21, 22, 24, 26, 29, 30, 31, 32, 34, 35, 36], "fine": [0, 14], "finish": [2, 20, 21], "finit": [3, 5, 6, 12, 13, 17, 26, 30, 31, 33, 34, 35, 36], "finnicki": 15, "fire": [], "first": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 21, 23, 24, 26, 27, 28, 30, 32, 33, 34, 35], "first_moment": 32, "first_term": 32, "firsteigvector": 11, "fit": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 17, 18, 19, 24, 26, 30, 32, 33, 34, 35, 36], "fit_beta": 30, "fit_intercept": [0, 5, 6, 16, 30, 31, 32, 33, 34, 35], "fit_mod": 9, "fit_theta": [6, 32], "fit_transform": [0, 6, 8, 9, 11, 15, 19, 33, 34], "fiti": [0, 29], "five": [0, 9, 29, 30, 36], "fix": [0, 3, 4, 6, 10, 11, 12, 13, 24, 29, 33, 34, 35], "flag": 4, "flat": [12, 13, 31, 32], "flatten": [1, 3, 4, 5, 23], "flavor": [], "flexibl": [1, 6, 8, 10, 12, 29, 32, 33, 34, 35], "flip": [21, 27, 29], "float": [0, 3, 4, 5, 9, 11, 13, 14, 23, 29, 30, 31], "float32": [4, 9], "float64": [4, 23, 29, 35, 36], "flop": [5, 23, 30, 31], "flow": [1, 4, 12, 35, 36], "flower": 21, "fluctuat": [5, 32], "fly": 11, "fm": 0, "fmax": 3, "fmesh": 13, "fn": 7, "focu": [0, 3, 4, 5, 6, 15, 22, 24, 28, 29, 30, 31, 32, 33, 34], "focus": [1, 6, 7, 23, 30, 32, 34, 35], "fold": [6, 9, 24], "folder": [0, 4, 6, 15, 20, 24, 29], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "font": [7, 20, 26, 29, 34], "fontdict": 26, "fontsiz": [1, 6, 8, 9, 10, 26], "fontweight": 1, "footprint": [3, 32], "foral": [8, 30, 36], "forc": [0, 5, 6, 10, 11, 30, 31, 32, 36], "forcast": 4, "forcier": [], "forecast": [4, 12, 35, 36], "forest": [0, 1, 9, 22, 29], "forget": [11, 32], "form": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "formal": [3, 4, 14, 18, 26, 36], "format": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 20, 22, 26, 28, 33, 34, 35], "format_data": 4, "formatstrformatt": [6, 13, 31, 32], "formatt": [], "formul": [4, 6, 11, 14], "formula": [3, 13, 26, 31, 36], "forth": [4, 12, 35], "fortran": [0, 22, 23, 29], "fortran2003": [22, 29], "fortran2008": 24, "fortran90": 26, "fortun": [0, 11, 30], "forward": [0, 3, 6, 21, 22, 23, 29, 32, 33], "forwardpropag": 36, "found": [1, 2, 4, 5, 6, 12, 13, 19, 20, 21, 24, 29, 30, 32, 33, 34, 35, 36], "foundat": [22, 29], "four": [4, 5, 6, 8, 12, 21, 23, 25, 27, 29, 31, 35, 36], "fourier": [0, 29, 36], "fourierdef1": 3, "fourierdef2": 3, "fourierseriessign": 3, "fourth": [12, 29, 30], "fp": 7, "frac": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "fraction": [9, 34, 35], "frame": [7, 32, 35], "framework": [1, 8, 10, 26], "frank": [5, 11], "frankefunct": [5, 6, 11], "fredli": [21, 27, 29], "free": [0, 6, 11, 13, 15, 16, 18, 21, 22, 23, 24, 26, 27, 28, 29, 36], "freecodecamp": 22, "freedom": [5, 31], "freeli": [0, 24], "freez": 15, "frequenc": [3, 6, 7, 26, 33, 35], "frequent": [0, 8, 9, 13, 31], "frequentist": 22, "fresh": 10, "fridai": [15, 21, 27, 29], "friedman": [6, 19, 24, 28, 29], "friendli": 4, "fro": 24, "frodo": 29, "frog": 3, "from": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28], "from_cod": 9, "from_logit": [3, 4], "from_tensor_slic": 4, "front": [0, 4, 5, 29, 30, 31], "frustrat": 15, "fulfil": [2, 5, 12, 30, 31, 35], "full": [1, 3, 5, 7, 9, 10, 13, 21, 26, 29, 30, 31, 34], "full_matric": [5, 30, 31], "fulli": [3, 6, 12, 26, 33, 34, 35, 36], "fullnam": [], "fun": [22, 29], "func": [2, 21], "function": [2, 3, 4, 5, 9, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "functionali": 11, "fundament": [0, 6, 22, 29, 33, 34], "funtion": 2, "furnish": [], "furthemor": 36, "further": [2, 7, 9, 19, 29, 36], "furthermor": [0, 3, 5, 6, 7, 11, 12, 13, 22, 24, 29, 30, 31, 32, 33, 34, 35], "futur": [0, 4, 8, 9, 29], "fy": [15, 21, 24, 25, 27, 28, 29], "fys4155": 24, "fys5419": [28, 29], "fys5429": [28, 29], "f\u00f8470": [27, 29], "g": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 13, 15, 18, 19, 26, 29, 30, 31, 32, 33, 34, 35], "g0": 2, "g_": [2, 9, 10, 32], "g_0": 2, "g_1": [2, 10], "g_2": [2, 10], "g_3": 36, "g_analyt": 2, "g_dnn_ag": 2, "g_euler": 2, "g_i": [2, 36], "g_j": 36, "g_m": [3, 10], "g_n": 3, "g_re": 2, "g_t": [2, 32], "g_t_d2t": 2, "g_t_d2x": 2, "g_t_dt": 2, "g_t_hessian": 2, "g_t_hessian_func": 2, "g_t_jacobian": 2, "g_t_jacobian_func": 2, "g_trial": 2, "g_trial_deep": 2, "g_vec": 2, "gain": [1, 5, 7, 9, 10, 13, 30, 31], "galleri": [0, 29], "game": 4, "gamge": 29, "gamma": [0, 2, 8, 9, 10, 11, 13, 29, 31], "gamma1": 8, "gamma2": 8, "gamma_": [0, 29], "gamma_0": 10, "gamma_1": 10, "gamma_1x": 10, "gamma_i": [0, 8, 26, 29], "gamma_j": 13, "gamma_k": [13, 31], "gamma_m": 10, "gamma_x": [0, 29], "gap": [8, 32], "gate": [4, 12, 36], "gather": [0, 1, 12, 30, 35, 36], "gaug": [12, 35, 36], "gaussbacksub": 23, "gaussian": [4, 5, 6, 8, 14, 18, 26, 29, 33, 34, 35], "gaussian_point": 14, "gaussian_rbf": 8, "gave": [13, 32], "gavra": 29, "gbc": 29, "gca": [2, 6, 8, 13], "gd": [1, 31, 36], "gd_clf": 10, "gdclassiffiercgain": 10, "gdclassiffierconfus": 10, "gdclassiffierroc": 10, "gdm": 13, "gdregress": 10, "ge": [1, 5, 7, 26, 30, 31, 34], "gen_loss": 4, "gen_tap": 4, "gender": [0, 29], "genener": 4, "gener": [0, 1, 2, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23, 24, 26, 28, 30, 31, 32, 33], "generaliz": 16, "generallay": [12, 35], "generate_and_save_imag": 4, "generate_binary_data": [34, 35], "generate_imag": 4, "generate_latent_point": 4, "generate_multiclass_data": [34, 35], "generate_simple_clustering_dataset": 14, "generated_imag": 4, "generator_loss": 4, "generator_loss_list": 4, "generator_model": 4, "generator_optim": 4, "genom": 22, "geodes": 11, "geoff": 32, "geometr": [0, 13, 29, 32], "geometri": 5, "georg": 28, "geotif": 6, "geq": [2, 5, 8, 9, 13, 30, 31, 32], "gerard": [], "geron": [0, 28, 29], "get": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 19, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34], "get_dummi": 9, "get_paramet": 2, "get_split": 9, "get_yaxi": 8, "get_yticklabel": 6, "getmask": [], "gh": 15, "giant": 32, "gibb": [22, 29], "gif": 4, "gini": 10, "gini_index": 9, "ginvers": 13, "git": [0, 15, 22, 29], "gitcdn": [], "giter": [13, 32], "github": [0, 20, 22, 24, 25, 27, 28, 29, 30, 36], "gitignor": 15, "gitlab": [0, 15, 22, 24, 29], "gitta": 36, "give": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 19, 22, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "given": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "glkfgrjhtlnplbx4": 21, "global": [6, 7, 13, 31, 32, 34, 35], "glorot": 1, "gmail": [], "gnew": 13, "go": [0, 1, 3, 5, 6, 8, 9, 11, 12, 13, 15, 16, 18, 21, 29, 30, 31, 33, 36], "goal": [0, 7, 9, 29, 34, 35], "goe": [0, 1, 2, 5, 6, 13, 14, 15, 19, 23, 29, 30, 31, 32, 33], "goessner": [], "golden": 13, "gone": [5, 30, 31], "gong": 1, "good": [1, 3, 4, 5, 6, 9, 10, 11, 13, 15, 18, 21, 22, 26, 28, 30, 31, 32, 34, 36], "goodfellow": [4, 28, 29, 30, 31, 34, 35, 36], "googl": [1, 4, 21, 22, 29], "got": [1, 6, 21, 24], "gotten": 29, "gov": 6, "govern": 29, "gp": 28, "gpu": [1, 13, 22, 29, 32], "grad": [2, 13, 21, 32], "grad_analyt": 13, "grad_ol": 18, "grad_ridg": 18, "grade": [24, 25], "gradient": [0, 3, 4, 7, 8, 9, 12, 21, 22, 29, 30, 34], "gradient_desc": 32, "gradient_func": 21, "gradientboostingclassifi": 10, "gradientboostingregressor": 10, "gradients_of_discrimin": 4, "gradients_of_gener": 4, "gradienttap": 4, "gradual": [1, 14], "grai": [4, 6], "granger": [], "grant": [], "graph": [1, 9, 11, 12, 13, 16, 20, 31, 32, 35, 36], "graph_from_dot_data": 9, "graphic": [0, 1, 9, 15, 29], "grasp": 0, "gray_r": [1, 3], "grayscal": 3, "great": [5, 13, 15, 21, 31, 32, 36], "greater": [1, 7, 26, 30, 35], "greatli": 13, "greedi": 9, "green": [0, 3, 9, 26], "grei": 4, "grid": [1, 3, 6, 7, 8, 12, 26, 30, 32, 33, 34, 35], "groh": 36, "grossli": [13, 31], "ground": [0, 29], "group": [0, 6, 7, 9, 14, 15, 20, 22, 24, 25, 27, 29, 33], "groupbi": [0, 29], "grow": [1, 3, 9, 10, 32], "growth": [0, 29], "gru": 4, "guarante": [0, 4, 13, 26, 29, 30, 31, 32], "guess": [1, 4, 10, 13, 14, 31, 32], "guestrin": 10, "gui": 15, "guid": [1, 21], "guidelin": [20, 24, 34, 35], "g\u00f6ssner": [], "h": [0, 1, 5, 6, 8, 13, 15, 19, 21, 26, 27, 28, 29, 30, 31, 32], "h1": 2, "h_": [0, 13, 29, 31, 32], "h_0": 32, "h_1": [2, 13, 31], "h_2": [2, 13, 31], "h_m": 10, "h_t": 32, "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "haanen": [27, 29], "habit": [0, 30], "had": [0, 1, 6, 7, 13, 29, 31, 32, 33, 34], "hadamard": [1, 12, 13, 32, 36], "half": [1, 8, 9, 34, 35, 36], "halv": 10, "hand": [0, 1, 2, 3, 5, 11, 12, 13, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 34, 35], "handi": [3, 24], "handl": [0, 1, 2, 5, 9, 11, 15, 18, 22, 30, 31, 32], "handle_unknown": 9, "handsid": [12, 36], "handwrit": [12, 35, 36], "handwritten": [1, 5], "happen": [1, 2, 3, 4, 5, 6, 10, 13, 26, 30, 31, 32, 35], "hard": [1, 7, 8, 10, 13, 21, 31, 32, 34, 36], "hardcopi": [22, 29], "harder": [0, 1, 19, 21, 30], "harmon": 3, "hash": 32, "hasn": [], "hassl": [0, 22, 29], "hast": [22, 29], "hasti": [0, 6, 16, 17, 19, 20, 24, 28, 29, 30, 33, 34], "hat": [0, 1, 5, 6, 7, 9, 10, 11, 12, 13, 16, 17, 18, 19, 23, 30, 31, 32, 33, 35, 36], "hauser": [], "have": [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, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "have_sys_un_h": [], "haven": 1, "he": [7, 34, 35], "head": [4, 10, 26], "header": [0, 29], "heads_proba": 10, "health": [0, 30], "hear": [0, 13, 29, 32], "heart": [0, 7, 29, 34], "heatmap": [0, 1, 3, 7, 17, 20, 29, 35], "heavi": 32, "heavili": 0, "heavisid": 1, "height": [1, 3, 6, 30], "held": [13, 32], "help": [0, 1, 4, 12, 13, 15, 16, 24, 29, 32, 33, 35, 36], "helper": [4, 14, 34, 35], "henc": [0, 5, 6, 8, 9, 10, 12, 13, 29, 30, 31, 32, 33, 34, 35], "henrik": [27, 29], "her": [7, 34, 35], "here": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "hereaft": [0, 8, 12, 29], "herebi": [], "hermitian": 23, "hessenberg": 23, "hessian": [0, 2, 5, 13, 34, 35], "heterogen": [9, 10], "hex": [], "hi": [7, 34, 35], "hidden": [1, 3, 4, 12, 21, 35], "hidden_bia": 1, "hidden_bias_gradi": [1, 36], "hidden_layer_s": [0, 1, 29], "hidden_neuron": 4, "hidden_weight": 1, "hidden_weights_gradi": [1, 36], "hierarch": [5, 30, 31], "high": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 13, 14, 21, 22, 23, 24, 29, 30, 31, 32, 33, 34], "higher": [0, 1, 3, 5, 6, 8, 13, 18, 24, 29, 30, 31, 32, 33, 34], "highest": [1, 2, 34, 35], "highli": [0, 3, 4, 10, 19, 22, 23, 28, 29, 30, 31, 32], "highlight": [], "highwai": [], "hing": 8, "hint": [13, 15, 16, 21, 30, 31], "hinton": 32, "hip": 22, "hire": 0, "hist": [4, 6, 7, 26, 33, 35], "histogram": [6, 7, 26, 35], "histor": [7, 11, 34], "histori": [3, 4, 12, 15, 32, 35, 36], "hitherto": 5, "hjorth": [27, 29, 30, 31, 32, 33, 34, 35, 36], "hobbi": 26, "hoc": [5, 30, 31], "hoff": 28, "hold": [1, 3, 6, 13, 14, 31, 32, 33], "holder": [0, 29], "holdgraf_evidence_2014": [], "home": [], "homepag": [24, 29], "homework": [6, 13, 31, 32], "homogen": [1, 3, 9, 10, 13, 32], "honchar": 2, "hopefulli": [0, 11, 15, 19, 26, 29, 32], "horizont": 11, "horlyk": [27, 29], "hornik": 36, "hors": [3, 7, 29, 34, 35], "hot": [1, 9, 34, 35], "hour": [1, 22, 25, 26, 27, 29, 32, 33], "how": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "howev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "href": [], "hspace": [0, 4, 8, 10, 26, 29, 36], "hstack": 1, "htf": 29, "html": [0, 16, 20, 21, 22, 24, 25, 27, 28, 29, 30, 31, 32, 36], "http": [0, 3, 4, 6, 13, 15, 16, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "huang": [0, 29], "huber": [0, 29], "huge": [1, 3, 4, 22, 32], "human": [0, 1, 3, 6, 9, 12, 30, 35, 36], "humid": 9, "hundr": 1, "hungri": 1, "hybrid": 25, "hydrogen": [0, 29], "hyperbol": [1, 4, 12], "hyperparam": 8, "hyperparamat": 36, "hyperparamet": [3, 4, 5, 6, 9, 13, 18, 24, 30, 31, 32, 36], "hyperplan": 11, "h\u00f8rlyk": [27, 29], "i": [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, 31, 32, 33, 34, 35, 36], "i0": [0, 29], "i1": [0, 6, 8, 12, 29, 30, 32, 35], "i2": [0, 8, 12, 29, 35], "i3": [0, 12, 29, 35], "i5": [0, 29], "i_": [13, 31, 32], "i_1": [5, 6, 33], "i_2": [5, 6, 33], "i_siz": 21, "i_t": 32, "ian": 28, "iayaan2": 21, "ic": [1, 24], "id": [7, 13, 31, 32, 34], "ida": [27, 29], "idea": [0, 1, 2, 3, 4, 6, 9, 10, 12, 13, 20, 23, 24, 30, 31, 32, 33, 34, 35, 36], "ideal": [0, 2, 6, 8, 13, 26, 29, 32, 33, 34, 35], "idem": [6, 33, 34], "ident": [5, 6, 12, 13, 17, 18, 23, 30, 31, 35], "identical": 33, "identifi": [0, 1, 7, 9, 11, 12, 13, 14, 29, 30, 34, 35], "idx": [34, 35], "ieor": 26, "ifi": 28, "ifs": [22, 29], "ignor": [0, 1, 3, 9, 15, 30, 32], "ii": [23, 26], "iii": [23, 29], "ij": [0, 1, 3, 6, 8, 12, 14, 16, 23, 26, 29, 30, 32, 35, 36], "ik": [0, 23, 29, 30], "iki": [], "ilg3ggewq5u": 36, "ill": 32, "illinoi": [], "illustr": [5, 7, 10, 12, 13, 14, 20, 22, 29, 34], "ilsvrc": 32, "im": 6, "imag": [1, 3, 4, 6, 9, 11, 12, 14, 28, 29, 35, 36], "image_at_epoch_": 4, "image_batch": 4, "image_height": 3, "image_path": [0, 6, 7, 9, 29, 33, 34], "image_width": 3, "imageio": 6, "imagenet": 32, "images_from_seed_imag": 4, "imagin": 1, "immedi": [0, 3, 4, 6, 22, 29, 32], "implement": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 19, 20, 21, 24, 26, 29, 30, 31, 32, 34, 35, 36], "impli": [3, 5, 6, 7, 13, 23, 30, 31, 32, 33, 34], "implicit": [3, 32], "implicitli": [11, 26], "import": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 24, 26, 32, 33, 34, 35], "importantli": 3, "importerror": [], "impos": [0, 6, 11, 12, 29, 35], "imposs": [0, 5, 29, 30, 31], "impract": 32, "impress": [0, 12, 29, 35, 36], "improv": [0, 4, 5, 9, 10, 11, 13, 15, 21, 24, 30, 31], "impur": 9, "imread": 6, "imshow": [1, 3, 4, 6], "in3050": [28, 29], "in3310": 29, "in4080": [28, 29], "in4300": [28, 29], "in4310": 28, "in5400": 3, "in5550": 28, "in_out_neuron": 4, "inaccur": [13, 31], "inact": [12, 35, 36], "inadequ": [0, 29], "inappropri": 32, "inch": [6, 30], "incident": [], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 26, 27, 28, 29, 30, 31, 33], "include_bia": [6, 9, 33, 34], "incom": [12, 16, 35, 36], "incorrect": 1, "incoveni": 8, "increas": [0, 1, 3, 4, 5, 6, 9, 12, 13, 19, 24, 26, 29, 30, 32, 33, 34, 35, 36], "increasingli": 26, "increment": 32, "ind": 6, "inde": [0, 2, 4, 5, 6, 13, 29, 30, 31, 36], "indefinit": 4, "independ": [0, 5, 6, 7, 8, 12, 13, 26, 29, 30, 31, 32, 34, 35], "index": [0, 1, 3, 4, 10, 14, 22, 23, 24, 26, 28, 29], "index_col": [0, 29], "indic": [0, 1, 3, 4, 5, 6, 9, 10, 11, 13, 16, 24, 29, 30, 36], "indirect": [], "indispens": [6, 33, 34], "individu": [1, 6, 7, 10, 12, 26, 29, 30, 32, 33, 34, 35, 36], "indu": [], "indx": 23, "indx1": 2, "indx2": 2, "indx3": 2, "ineffici": [3, 13], "inequ": [8, 13], "inequaltii": 31, "inertia": 13, "inexperi": [], "inf": [], "inf1000": [22, 29], "inf1100": [22, 29], "inf1100l": [22, 29], "inf1110": [22, 29], "inf3000": 29, "infeas": [9, 32], "infer": [0, 1, 4, 6, 28, 29, 33, 34], "inferenc": 1, "infil": [0, 6, 7, 9, 29, 33, 34], "infin": [5, 6, 7, 11, 19, 30, 31, 33, 34, 36], "infinit": [3, 32], "infinitesim": 26, "influenc": [6, 10, 18, 33, 34], "influenti": 1, "info": 29, "inform": [0, 1, 3, 4, 6, 9, 11, 12, 13, 14, 23, 24, 28, 29, 31, 32, 33, 34, 35, 36], "inforom": 15, "infrequ": 32, "infti": [3, 6, 13, 26, 31, 33, 36], "ingeni": [13, 31, 32], "ingredi": [0, 9, 29], "inher": [6, 32, 33, 34], "inherit": [23, 29, 32], "init": [], "initi": [0, 1, 2, 6, 10, 13, 14, 18, 23, 26, 29, 31, 32, 33, 34, 35, 36], "inject": 14, "inlin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 23, 26, 29, 30, 31, 32, 33, 34, 35], "inner": [0, 13, 30], "innerhtml": [], "inp": 4, "inplac": 13, "inpput": 36, "input": [0, 1, 3, 4, 5, 6, 7, 8, 12, 13, 14, 16, 24, 26, 29, 30, 31, 32, 33, 34, 35], "input_dim": 1, "input_s": 21, "input_shap": [3, 4], "inputs": 1, "inputs_shuffl": [0, 1, 30], "inquiri": 20, "insert": [3, 5, 6, 8, 10, 26, 30, 31, 33], "insid": [4, 7, 21, 35], "insight": [0, 1, 5, 22, 29, 30, 31, 33, 34, 36], "insist": [6, 13, 30, 32], "inspir": [0, 1, 12, 24, 29, 35, 36], "instabl": 2, "instal": [0, 1, 5, 6, 9, 15, 20], "instanc": [0, 1, 2, 4, 6, 9, 11, 13, 16, 29, 30, 31, 32, 33, 34], "instanti": 10, "instead": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 17, 20, 21, 23, 26, 29, 30, 32, 33], "institut": 1, "instruct": [0, 1, 15], "int": [0, 1, 2, 3, 4, 5, 6, 11, 13, 14, 23, 26, 30, 32, 33, 34, 35], "int32": 10, "int_": [3, 6, 26, 33, 36], "int_0": 26, "int_a": 26, "intak": [0, 30], "integ": [1, 2, 13, 14, 23, 26, 29, 34, 35], "integer_vector": 1, "integr": [3, 6, 26, 29, 33], "intellig": [0, 14, 28, 29], "intend": 10, "intens": [1, 18], "intention": 14, "interact": [0, 6, 9, 12, 22, 24, 29, 35, 36], "intercept": [0, 6, 8, 11, 13, 16, 17, 18, 19, 29, 30, 31, 32, 33, 34, 35], "intercept_": [0, 6, 8, 9, 13, 29, 30, 32], "interchang": [5, 12, 23, 35, 36], "interconnect": 1, "interesit": [], "interest": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 19, 22, 24, 26, 29, 30, 31, 33, 34, 35, 36], "interfac": [0, 1, 15, 23, 30], "interior": [0, 9, 29], "intermedi": [23, 30, 32], "intermediari": 21, "intern": [1, 10, 12, 34, 35, 36], "internation": [], "interpol": [1, 3, 4, 6, 12, 35, 36], "interpr": [5, 30, 31], "interpret": [0, 1, 6, 9, 10, 12, 13, 15, 16, 21, 23, 24, 26, 36], "interrupt": [], "interv": [0, 3, 5, 6, 7, 13, 19, 26, 29, 30, 31, 34, 35], "intial": [13, 31], "intract": [0, 4, 30], "intrins": [3, 11, 23, 26, 29], "intro": [22, 28, 29], "introduc": [0, 1, 5, 6, 8, 10, 12, 23, 24, 26, 29, 31, 32, 33, 35, 36], "introduct": [1, 2, 4, 13, 28, 30, 31, 32, 34], "introductori": [0, 4, 23, 28, 29, 30], "intuit": [0, 5, 6, 8, 12, 13, 24, 29, 32, 33, 34, 35, 36], "inv": [0, 5, 13, 17, 29, 30, 31, 32], "invalid": [], "invalu": [0, 13, 22, 29, 31], "invari": 1, "invd": 5, "inver": [8, 35], "invers": [0, 3, 6, 13, 29, 30, 31, 32], "inverse_transform": 8, "invert": [0, 5, 7, 10, 13, 16, 18, 29, 32, 34, 35], "investig": [], "invh": [13, 32], "invok": 8, "involv": [0, 2, 6, 7, 11, 12, 29, 30, 32, 33, 34, 35, 36], "io": [0, 22, 24, 25, 27, 28, 29, 30], "ion": [], "ip": [0, 8, 26, 29], "ipca": 11, "ipynb": [22, 29], "ipython": [0, 5, 7, 9, 11, 14, 22, 24, 29, 30, 34], "iq": [6, 33], "iri": [8, 9, 21], "irreduc": [6, 33, 34], "irrelev": [5, 30, 31], "irrespect": [0, 29], "irvin": 24, "isaac": [], "isaacmus": [], "iseffici": [], "isn": 5, "isnul": [], "isomap": 11, "issu": [1, 9, 15, 23, 32], "it_arrai": 13, "item": [0, 13, 29], "items": [23, 29], "iter": [1, 2, 4, 6, 8, 13, 14, 18, 24, 26, 31, 32, 33, 34, 35, 36], "its": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 24, 26, 29, 31, 32, 33, 34, 35, 36], "itself": [5, 6, 12, 24, 26, 29, 30, 33, 36], "j": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "j1": 23, "j_": 6, "j_41hld6ttu": 33, "j_lasso_sk": 6, "j_ridge_sk": 6, "j_sk": 6, "jackknif": [6, 22, 29, 33, 34], "jacobian": [2, 13, 31], "janko": [], "jason": 4, "javascript": [], "jax": [22, 29, 32, 36], "jeff": [], "jensen": [27, 29, 30, 31, 32, 33, 34, 35, 36], "jentzen": 36, "jerom": [19, 24, 28], "jhauser": [], "ji": [12, 23, 36], "jit": 13, "jj": [0, 5, 6, 29, 33], "jk": [0, 1, 6, 12, 23, 29, 35, 36], "jl": [0, 29], "jm": 23, "jnp": 13, "job": [2, 8, 10, 15], "join": [0, 4, 6, 7, 9, 24, 29, 33, 34], "joint": [4, 5], "jonathan": [], "json": [], "judg": [13, 31, 34, 35], "judgement": 6, "julia": [22, 23, 24], "juliu": 36, "jump": [26, 32], "junk": 4, "jupit": 29, "jupyt": [0, 15, 16, 19, 22, 24, 28, 29, 33, 36], "jupyterbook": [], "jupytext": [], "just": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 21, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36], "justif": 0, "justifi": [3, 10], "k": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 35], "k0": [7, 34, 35], "k1": [7, 34, 35], "kaggl": [6, 24], "kappa_d": 26, "karl": [27, 29], "karush": 8, "katex": [], "katrin": [27, 29], "keep": [0, 1, 4, 5, 6, 11, 13, 14, 15, 18, 21, 23, 24, 29, 30, 31, 32, 33, 34], "keepdim": [1, 6, 10, 23, 33, 34, 35], "kei": [1, 3, 6, 12, 32, 35], "kellei": [], "kenneth": [], "kept": [4, 6, 14, 33, 34], "kera": [0, 4, 22, 24, 29], "kernel": [0, 1, 3, 22, 29, 30], "kernel_regular": [1, 3], "kernel_s": 4, "kernelpca": 11, "kev": [0, 29], "kevin": [28, 29], "kevinsheppard": [], "keyword": [18, 23, 29], "kfold": [6, 33, 34], "kg": 1, "ki": 23, "kick": [1, 13, 32], "kiener": 2, "kilomet": [6, 30], "kim": [], "kind": [0, 2, 3, 4, 8, 12, 13, 14, 29, 30, 35, 36], "kingma": 32, "kj": [6, 12, 23, 30, 32, 36], "kjm": [22, 29], "kkt": 8, "kl": 26, "km": [12, 29, 35], "kmean": 14, "kmeanspoint": 14, "kn_k": 14, "know": [0, 1, 2, 5, 6, 8, 13, 15, 16, 17, 19, 20, 22, 29, 30, 31], "knowledg": [0, 22, 29], "known": [1, 3, 4, 5, 6, 7, 8, 9, 12, 18, 23, 24, 26, 28, 30, 32, 33, 34, 35, 36], "kondev": [0, 29], "kp": 26, "kpca": 11, "kramdown": [], "kroneck": 14, "kt": [], "kuckuck": 36, "kuhn": 8, "kutyniok": 36, "kvalsund": [27, 29], "kwown": [0, 29], "l": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 23, 24, 26, 29, 31, 32, 34, 35], "l0": [7, 34, 35], "l1": [0, 1, 3, 7, 29, 34, 35], "l1_l2": [1, 3], "l1regl": 5, "l2": [1, 3], "l_": [23, 32], "l_1": [7, 34, 35, 36], "l_2": [7, 13, 31, 32, 34, 35, 36], "l_i": 32, "l_j": [12, 36], "la": 13, "la_": [], "la_i": [12, 36], "la_k": [12, 36], "lab": [20, 22, 24, 29], "label": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "labelencod": [7, 10, 35], "labels": [6, 8, 9], "labels_shuffl": [0, 1, 30], "laboratori": 25, "lack": [0, 29, 32], "lagari": 2, "lagrang": [8, 11], "lam": 18, "lambda": [0, 1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 17, 18, 19, 20, 24, 26, 29, 30, 31, 32, 33, 34, 35], "lambda_": 11, "lambda_0": 11, "lambda_1": [5, 8, 11, 30, 31], "lambda_2": [8, 11], "lambda_i": [8, 11], "lambda_iy_i": 8, "lambda_jy_iy_j": 8, "lambda_k": 8, "lambda_n": [5, 8, 30, 31], "lamda": 1, "land": 8, "landmark": 8, "landscap": [13, 18, 31, 32], "langl": [0, 6, 11, 26, 29, 30], "languag": [0, 1, 4, 8, 22, 23, 24, 28, 29], "lapack": [23, 29], "laplac": 5, "laptop": [15, 22], "larg": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 18, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 36], "larger": [0, 3, 5, 6, 8, 10, 11, 13, 17, 26, 29, 30, 31, 32, 33], "largest": [4, 8, 11], "lasso": [0, 7, 22, 29, 32, 33, 34, 35], "lasso_sk": 6, "last": [0, 1, 3, 4, 5, 6, 7, 8, 12, 16, 17, 19, 21, 23, 24, 26, 27, 29, 31, 33, 34], "latent": 4, "latent_dim": 4, "latent_point": 4, "latent_space_value_rang": 4, "later": [0, 1, 4, 7, 8, 12, 13, 14, 15, 19, 21, 22, 24, 29, 32, 34, 35, 36], "latest": [4, 15, 22], "latest_checkpoint": 4, "latex": [20, 29], "latexcodec": [], "latter": [0, 3, 6, 7, 8, 11, 13, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "lattic": [12, 35, 36], "law": 0, "layer": [0, 4, 13, 29, 32, 35], "layer_output_s": 21, "layers_grad": 21, "lbfg": [7, 9, 10, 35], "lc_messag": [], "lcc": [5, 6, 33], "lda": 11, "ldot": [0, 6, 11, 24, 29, 33, 34], "le": [5, 7, 10, 13, 17, 26, 30, 31, 32, 34], "lead": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "leaf": 9, "leaki": 1, "leakyrelu": 4, "lear": [13, 31], "learn": [3, 4, 5, 6, 7, 8, 9, 10, 12, 21, 23, 27, 28], "learnabl": 3, "learner": 10, "learnig": 29, "learning_r": [8, 10, 21], "learning_rate_init": [0, 1, 29], "learning_schedul": [13, 32], "learnt": 24, "least": [0, 7, 8, 10, 11, 17, 18, 22, 23, 26, 33, 34, 35], "leat": [13, 32], "leav": [0, 1, 3, 5, 6, 9, 11, 21, 29, 31, 33, 34], "lectur": [0, 1, 5, 10, 11, 12, 13, 22, 23, 24, 25, 27, 28, 30], "lecturenot": [0, 22, 24, 28, 29], "left": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "leftarrow": [8, 12, 36], "legend": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 21, 29, 30, 31, 32, 33, 34, 35], "legend_el": 21, "leinonen": 29, "len": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 16, 17, 21, 23, 29, 30, 31, 32, 33, 34, 35], "length": [0, 1, 3, 4, 8, 9, 13, 16, 21, 22, 29, 30, 31, 32], "length_of_sequ": 4, "leq": [0, 5, 7, 8, 13, 14, 26, 29, 30, 31, 32, 34], "less": [0, 1, 3, 4, 5, 6, 8, 9, 13, 22, 26, 29, 30, 31, 32, 33, 34], "lessen": 1, "let": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "letter": [0, 16, 23, 26, 29, 30], "level": [0, 1, 5, 6, 9, 22, 23, 24, 25, 27, 29, 32, 33, 34, 36], "leverag": 32, "lexer": [], "li": [8, 11], "liabil": [], "liabl": [], "lib": [], "liberti": 32, "liblinear": 10, "librari": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 23, 24, 26, 28, 30, 31, 32], "licenc": [], "licens": [0, 1, 22, 24, 29], "lie": [0, 6, 11, 26, 29, 30, 33, 34], "life": [0, 1, 8, 12, 29, 35, 36], "lifetim": 13, "light": [], "like": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "likelihood": [0, 1, 5, 9, 29, 30], "lim_": 26, "limit": [0, 5, 6, 8, 12, 23, 24, 29, 30, 34, 35, 36], "lin_clf": 8, "lin_model": [], "lin_reg": 9, "linalg": [0, 2, 5, 6, 8, 11, 13, 17, 23, 26, 29, 30, 31, 32, 35], "line": [0, 3, 6, 8, 11, 13, 15, 16, 20, 21, 29, 31, 32, 33, 36], "line1": 8, "line2": 8, "line2d": [], "line3": 8, "line_model": 15, "line_ms": 15, "line_predict": 15, "linear": [1, 3, 5, 6, 7, 9, 10, 11, 12, 16, 17, 18, 19, 21, 22, 24, 26, 32, 33, 35, 36], "linear_model": [0, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 29, 30, 31, 32, 33, 34, 35], "linear_regress": [6, 33, 34], "linearli": [5, 30, 31, 32], "linearloc": [6, 13, 31, 32], "linearregress": [0, 6, 7, 9, 15, 16, 19, 29, 30, 32, 33, 34], "linearsvc": 8, "lineat": 31, "liner": [1, 3], "linerar": 10, "linewidth": [0, 2, 4, 6, 8, 9, 10, 33], "link": [0, 4, 9, 12, 15, 20, 21, 22, 24, 25, 27, 29, 34, 36], "linlag": 5, "linpack": [23, 29], "linreg": [0, 29], "linspac": [0, 2, 3, 4, 6, 8, 9, 10, 13, 16, 17, 19, 23, 26, 29, 30, 32, 33, 34], "linu": 4, "linux": [0, 1, 22, 24, 29], "liquid": [0, 29], "list": [1, 2, 3, 4, 9, 15, 21, 22, 24, 29, 32, 35], "listedcolormap": [9, 10], "literatur": [1, 7, 14, 28, 33, 34], "littl": [1, 3, 9, 12, 32, 36], "live": [8, 16], "ll": [0, 18, 26, 29, 30], "lle": [0, 30], "llm": 20, "lloyd": [4, 14], "lmb": [0, 2, 5, 6, 30, 31, 32, 33, 34], "lmbd": [0, 1, 3, 29], "lmbd_val": [0, 1, 3, 29], "lmbda": [13, 31, 32], "ln": [1, 13, 31], "load": [1, 4, 6, 7, 9, 10, 32, 35], "load_boston": [], "load_breast_canc": [1, 7, 9, 10, 11, 35], "load_data": [3, 4], "load_digit": [1, 3], "load_iri": [8, 9, 21], "loc": [3, 6, 7, 8, 9, 10, 21, 29, 33, 34, 35], "local": [0, 1, 3, 7, 12, 13, 15, 21, 30, 31, 32, 34, 35, 36], "locat": [2, 3, 8, 15], "log": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 13, 15, 20, 21, 23, 24, 29, 32, 33, 34, 35], "log10": [0, 5, 6, 30, 31, 32, 33, 34], "log_": [0, 29], "log_clf": 10, "logarithm": [0, 5, 7, 17, 23, 29, 33, 34, 35], "logbook": 24, "logic": [0, 1, 9, 29], "logical_or": [], "login": 15, "logist": [0, 1, 2, 8, 9, 10, 11, 12, 13, 22, 30, 31, 32, 36], "logisticregress": [7, 9, 10, 11, 34, 35], "logit": [7, 34, 35], "logreg": [7, 9, 10, 11, 35], "logspac": [0, 1, 3, 5, 6, 29, 30, 31, 32, 33, 34], "long": [0, 1, 3, 4, 12, 13, 21, 29, 31, 32, 35, 36], "longer": [2, 3, 8, 10, 14, 23, 26, 29, 32], "loocv": [6, 33, 34], "look": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 20, 23, 24, 26, 29, 30, 31, 32, 33, 34], "loop": [1, 4, 6, 10, 12, 14, 16, 17, 18, 22, 23, 29, 32, 33, 34], "lose": 1, "loss": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 18, 21, 23, 24, 29, 33, 34, 35, 36], "loss_bin": [34, 35], "loss_fil": 4, "loss_multi": [34, 35], "loss_vec": [34, 35], "lossfil": 4, "lost": 4, "lot": [1, 4, 6, 16, 19, 20, 32, 33], "low": [0, 6, 9, 10, 11, 24, 29, 30, 33, 34], "lower": [0, 1, 3, 6, 9, 10, 16, 21, 23, 30, 32], "lowercas": [23, 29], "lowest": [9, 13, 26, 32], "lr": [1, 3, 4, 10, 34, 35], "lstat": [], "lstm": 4, "lstm_2layer": 4, "lstsq": [0, 29, 30], "lt": [6, 33], "lu": [0, 5, 29, 30, 31], "lubksb": 23, "luckili": 2, "ludcmp": 23, "lux": 23, "lvert": 1, "lw": [0, 29], "m": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 15, 23, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36], "m_": [9, 12, 36], "m_0": 32, "m_1": 14, "m_h": [0, 29], "m_k": 14, "m_l": [12, 36], "m_n": [0, 29], "m_p": [0, 29], "m_t": [13, 32], "ma": 11, "machin": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 23, 28, 30, 32, 33, 36], "machinelearn": [0, 6, 16, 20, 22, 24, 25, 27, 28, 29, 30, 31, 34, 35], "machineri": [], "mackai": 28, "macro": [], "made": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 24, 29, 30, 32, 34, 35, 36], "mae": [0, 29], "magic": 4, "magnitud": [1, 6, 7, 13, 21, 30, 32, 35, 36], "mai": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 19, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "mail": [25, 27], "main": [0, 1, 3, 4, 5, 6, 7, 9, 23, 24, 28, 30, 31, 32, 34, 35], "mainli": [0, 5, 6, 7, 9, 29, 30, 33, 34, 35], "maintain": [6, 32, 33], "major": [1, 6, 9, 10, 13, 23, 29, 31, 32, 33, 34], "make": [1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 18, 19, 21, 22, 23, 24, 26, 28, 29, 31, 32, 33, 34, 35, 36], "make_axes_locat": 6, "make_classif": 35, "make_moon": [8, 9, 10], "make_pipelin": [0, 6, 10, 30, 33, 34], "makedir": [0, 6, 7, 9, 29, 33, 34], "malcondit": 23, "malign": [1, 7, 9, 35], "mammographi": 5, "manag": [0, 2, 3, 15, 22, 24, 29, 32], "mandatori": [27, 29], "mani": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "manifold": 11, "manner": 3, "manual": [6, 21, 30, 32], "map": [0, 1, 2, 6, 7, 8, 11, 12, 14, 26, 29, 34, 35], "marc": 30, "marchant": [], "margin": [0, 5, 8], "marit": [0, 29], "mark": 29, "markdownfil": [], "markdownit": [], "markdownitdeflist": [], "markedli": [], "marker": [7, 23, 29, 34], "markov": [22, 29], "markup": [], "marsaglia": 26, "mask_or": [], "masked_arrai": [], "maskedrecord": [], "mass": [0, 1, 5, 13, 30, 31], "massag": [0, 29], "masses2016": [0, 29], "masses2016ol": [0, 29], "masses2016tre": 0, "masseval2016": [0, 29], "master": [25, 27], "mat": [22, 29], "mat1100": [22, 29], "mat1110": [22, 29], "mat1120": [22, 29], "match": [1, 4, 5, 13, 14, 15, 30, 31, 32], "materi": [4, 5, 7, 13, 15, 23, 25, 27, 35], "math": [3, 7, 12, 13, 23, 26, 28, 29, 32, 34, 35], "mathbb": [0, 4, 5, 6, 7, 8, 11, 12, 13, 14, 17, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "mathbf": [0, 5, 6, 7, 8, 13, 19, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "mathcal": [1, 5, 6, 7, 13, 24, 33, 34, 35], "matheemat": 3, "mathemat": [0, 6, 11, 12, 13, 21, 22, 23, 26, 28, 29, 32], "mathemati": 29, "mathrm": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "matmul": [1, 2, 5, 36], "matnat": 28, "matplotlib": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35], "matplotlibrc": [], "matric": [0, 1, 3, 4, 6, 7, 8, 11, 13, 16, 17, 22, 30, 31, 34, 35, 36], "matrix": [0, 2, 3, 4, 6, 7, 8, 10, 13, 17, 18, 19, 21, 24, 26, 33, 34, 36], "matshow": 1, "matter": [2, 3, 13, 30, 31, 32, 36], "matthia": [], "max": [0, 1, 2, 3, 4, 9, 10, 12, 13, 21, 27, 29, 31, 32, 34, 35, 36], "max_depth": [0, 9, 10], "max_diff": 2, "max_diff1": 2, "max_diff2": 2, "max_it": [0, 1, 8, 13, 29, 35], "max_iter": 14, "max_leaf_nod": 10, "max_sampl": 10, "maxdegre": [0, 6, 10, 30, 33, 34], "maxdepth": 10, "maxim": [1, 4, 5, 7, 8, 11, 33, 34, 35], "maximum": [0, 2, 3, 5, 7, 8, 9, 10, 13, 14, 29, 30, 31, 32], "maxpolydegre": [5, 6, 30, 31, 32, 33, 34], "maxpooling2d": 3, "mbox": [5, 6, 30, 31, 33], "mcculloch": [12, 35, 36], "md": 11, "mdoel": 4, "me": [], "mean": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23, 24, 26, 29, 32, 33, 35, 36], "mean0": [34, 35], "mean1": [34, 35], "mean_absolute_error": [0, 29], "mean_divisor": 14, "mean_i": 26, "mean_matrix": 14, "mean_squared_error": [0, 4, 6, 7, 10, 15, 19, 29, 30, 33, 34], "mean_squared_log_error": [0, 29], "mean_vector": 14, "mean_x": 26, "meaning": [0, 4, 7, 29, 34], "meansquarederror": [0, 29], "meant": [3, 7, 10, 13, 34, 36], "meanwhil": 32, "measur": [0, 1, 2, 5, 6, 9, 11, 12, 14, 16, 18, 24, 26, 29, 30, 32, 33, 34, 36], "mechan": [0, 4, 26, 29, 32], "median": [0, 29, 30, 32], "medicin": [12, 35, 36], "medium": [4, 8, 13, 32], "medv": [], "meet": [0, 27], "mehta": [0, 29, 30, 31], "member": [20, 24], "memori": [3, 4, 11, 12, 13, 18, 23, 35, 36], "mentat": [], "mention": [0, 12, 13, 24, 26, 29, 31, 32, 35, 36], "merchant": [], "mere": [0, 24], "merg": [], "meshgrid": [2, 5, 6, 8, 9, 10, 11], "mess": 15, "messag": [5, 13], "messi": 2, "met": [0, 3, 8, 30], "meta": [], "meteorolog": 9, "meter": [6, 30], "method": [0, 1, 2, 3, 4, 5, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 28, 30, 36], "metion": 6, "metric": [0, 1, 3, 6, 7, 9, 10, 14, 15, 21, 29, 30, 33, 34, 35], "metropoli": [22, 29], "mev": [0, 26, 29], "mgd": [13, 32], "mglearn": [22, 29], "mgrid": 13, "mhjensen": [], "mi": 10, "mia": [27, 29], "michael": 36, "microsoft": 28, "mid": 1, "midel": 4, "midnight": [15, 21], "midpoint": 9, "might": [0, 1, 2, 4, 6, 9, 13, 15, 17, 18, 30, 31, 32], "migth": 17, "mild": 9, "millimet": [6, 30], "million": [0, 29, 30, 32], "mimic": [12, 35, 36], "min": [0, 2, 5, 8, 9, 31], "min_": [0, 2, 5, 14, 17, 29, 30, 31], "min_samples_leaf": 9, "mind": [0, 6, 13, 15, 18, 21, 29, 30, 31, 32, 33], "mindboard": 4, "mine": [22, 29], "mini": [1, 11, 12, 13, 31], "minibatch": [1, 11, 13], "minibathc": [13, 32], "miniforge3": [], "minim": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 30, 31, 32, 33], "minima": [0, 1, 7, 13, 29, 31, 32, 34, 35], "minimum": [0, 1, 2, 6, 8, 9, 11, 13, 30, 31, 32, 33, 34, 35], "minmaxscal": [0, 30, 32], "minor": 26, "minst": 1, "minu": [7, 34], "mirjalili": 29, "mirror": 9, "misc": 6, "misclassif": [8, 9, 10], "misclassifi": [8, 10], "miser": 0, "mismatch": 1, "miss": [7, 10], "mistak": [4, 19], "mit": 28, "mitig": 32, "mix": [1, 2, 29], "mixtur": [13, 32], "mk": [9, 23], "mkdir": [0, 6, 7, 9, 29, 33, 34], "ml": [0, 1, 10, 13, 23, 24, 30, 31, 32], "mlab": 26, "mle": [5, 7, 34, 35], "mlp": [1, 35, 36], "mlpclassifi": [1, 35], "mlpregressor": [0, 29], "mm": 23, "mml": 30, "mn": [12, 26, 35], "mnist": [1, 11], "mo": [], "mod": 26, "mode": [25, 27, 29, 34, 35], "model": [2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 24, 26, 28, 30, 31, 32, 33, 34], "model_bin": [34, 35], "model_multi": [34, 35], "model_select": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34, 35], "moder": [10, 32], "modern": [0, 6, 7, 22, 29, 32, 33, 34, 35, 36], "modest": 32, "modif": [2, 12, 13], "modifi": [0, 1, 3, 5, 7, 8, 10, 12, 13, 29, 30, 31, 32, 34, 35, 36], "modul": [0, 16, 23, 29], "modular": 26, "modulo": 26, "moe": [11, 30], "moment": [5, 6, 13, 26, 33], "momentum": 36, "mondai": [27, 29, 34], "monitor": [13, 32], "monoton": [5, 12, 26, 33, 35, 36], "mont": [0, 6, 22, 26, 28, 29, 33, 34], "montli": 16, "moor": [5, 6], "more": [0, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 22, 26], "moreov": [0, 3], "morten": [27, 29, 30, 31, 32, 33, 34, 35, 36], "mortenhj": 29, "most": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 22, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "mostli": [1, 11, 18, 32], "motion": [0, 13], "motiv": [1, 4, 36], "moulin": 32, "move": [0, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 21, 24, 26, 30, 31, 33, 34, 35, 36], "mpl": [7, 29, 34], "mpl_toolkit": [2, 6, 13, 31, 32], "mplot3d": [2, 6, 13, 31, 32], "mplregressor": 1, "mr_": [], "mrecord": [], "ms3tv8fvar": 35, "mse": [0, 4, 5, 6, 9, 10, 15, 16, 17, 19, 20, 24, 29, 30, 31, 32, 33, 34], "mse_simpletre": 10, "mselassopredict": [5, 31], "mselassotrain": [5, 31], "mseownridgepredict": [6, 30, 31, 32], "msepredict": [5, 31], "mseridgepredict": [0, 5, 6, 30, 31, 32], "msetrain": [5, 31], "msg": [], "msle": [0, 29], "mt": [7, 12, 34, 35], "mu": [0, 6, 11, 13, 26, 29, 32, 33], "mu0": 26, "mu1": 26, "mu2": 26, "mu_": [6, 26, 30, 32, 33], "mu_i": [6, 30, 32], "mu_n": 11, "mu_x": 26, "much": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "multi": [0, 1, 3, 7, 22, 29, 34], "multi_class": [34, 35], "multiclass": [1, 7, 34, 35], "multiclass_result": [34, 35], "multidimension": [11, 12, 29, 35, 36], "multilay": 1, "multinomi": [7, 34, 35], "multipl": [2, 4, 5, 6, 7, 12, 13, 15, 26, 30, 31, 32, 33, 34, 35, 36], "multipli": [3, 5, 6, 11, 13, 18, 23, 26, 30, 31, 32], "multiplum": 8, "multivari": [0, 2, 10, 11, 22, 26, 29], "multivariate_norm": [11, 14], "multpli": 16, "murphi": [11, 28, 29], "muse": [], "must": [1, 2, 5, 6, 8, 10, 12, 13, 14, 15, 20, 24, 26, 30, 31, 32, 33, 34, 35, 36], "mutat": [7, 34, 35], "mutual": [1, 3, 6, 13, 33, 34], "mx_": 26, "my": 29, "myenv": [], "myriad": [0, 22, 29], "myself": [], "mz1": 26, "mz2": 26, "m\u00f8svatn": 6, "n": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "n0": [34, 35], "n1": [23, 34, 35], "n2": 23, "n8grai": [], "n_": [1, 2, 3, 8, 12, 26, 35], "n_0": [12, 26, 35], "n_boostrap": [6, 10, 33, 34], "n_bootstrap": [6, 33], "n_categori": [1, 3], "n_class": [34, 35], "n_cluster": 14, "n_compon": 11, "n_epoch": [13, 32], "n_estim": 10, "n_examples_to_gener": 4, "n_featur": [1, 18, 34, 35, 36], "n_filter": 3, "n_hidden": 2, "n_hidden_neuron": [0, 1, 29, 36], "n_i": 26, "n_input": [0, 1, 3, 30, 36], "n_instanc": 9, "n_iter": 32, "n_job": 10, "n_k": 14, "n_l": [12, 26, 35], "n_layer": 1, "n_m": 9, "n_neuron": 1, "n_neurons_connect": 3, "n_neurons_layer1": 1, "n_neurons_layer2": 1, "n_output": 36, "n_point": 14, "n_sampl": [6, 8, 9, 10, 14, 18, 33, 34, 35], "n_split": [6, 33, 34], "n_step": 4, "n_t": 2, "n_x": 2, "nabla": [1, 13, 31, 32], "nabla_": [2, 13, 31, 32], "nabla_w": 13, "nag": 13, "naimi": [0, 29], "naiv": [7, 34, 35], "naive_kmean": 14, "name": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 36], "namespac": [], "nan": [], "narrow": [13, 32], "nathaniel": [], "nation": [1, 5], "nativ": [22, 29], "natur": [0, 1, 4, 8, 9, 12, 13, 24, 26, 28, 29, 31, 32, 35, 36], "navier": [12, 35, 36], "navig": [15, 32], "nb": 26, "nb_": 23, "nbconvert": 29, "nd": 14, "ndarrai": 6, "ne": [9, 10, 23, 26, 30, 31], "nearest": [1, 3, 6, 11], "nearli": [13, 31], "neat": 29, "neccesari": [6, 33], "necess": 2, "necessari": [0, 1, 3, 4, 8, 14, 18, 29, 36], "necessarili": [0, 4, 11, 26, 29], "necesserali": 5, "neck": [7, 34, 35], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 26, 30, 31, 32, 33, 34, 35, 36], "neg": [0, 1, 3, 5, 6, 7, 10, 13, 23, 26, 29, 31, 33, 34, 35], "neg_mean_squared_error": [6, 33, 34], "neglect": [26, 32], "neglig": 26, "neighbor": [3, 6, 11], "neither": [4, 13, 32], "neq": [13, 14, 26, 31], "nervou": [12, 35, 36], "nest": [9, 12, 35], "nesterov": 13, "net": [2, 4, 12, 35, 36], "netlib": [23, 29], "network": [0, 9, 13, 21, 22, 28, 30], "network_input_s": 21, "neural": [0, 13, 21, 22, 28, 30, 34], "neural_network": [0, 1, 2, 29, 35], "neuralnetwork": 1, "neuralnetworksanddeeplearn": 36, "neuron": [1, 2, 3, 4, 12], "neutral": [0, 29], "neutron": [0, 29], "never": [1, 4, 6, 9, 26, 33, 34], "new": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 23, 29, 30, 31, 32, 34, 35], "new_chang": [13, 32], "new_hobbit": 29, "new_ma": [], "newaxi": [0, 3, 6, 9, 21, 33, 34], "newli": [0, 29], "newlin": [34, 35], "newton": [1, 7, 8, 13, 26, 36], "next": [0, 1, 2, 3, 4, 5, 6, 8, 9, 13, 14, 15, 16, 21, 29, 30, 31, 32, 33, 35, 36], "next_guess": 13, "next_input": 4, "ng": 1, "ni": 14, "nice": [0, 1, 5, 11, 29, 30, 31], "nicer": [18, 32], "nielsen": 36, "nine": 36, "nip": 32, "niter": [13, 31, 32], "nitric": [], "nlambda": [0, 5, 6, 30, 31, 32, 33, 34], "nlp": 28, "nm": 26, "nm_n": [0, 29], "nmse": [6, 33, 34], "nn": [2, 5, 6, 12, 23, 29, 33, 35], "nn_model": 1, "nnmin": 2, "node": [1, 3, 9, 10, 12, 21, 35], "nois": [0, 4, 5, 6, 8, 9, 10, 13, 18, 19, 24, 29, 30, 31, 32, 33, 34], "noise_dimens": 4, "noisi": [1, 6, 24, 32, 33, 34], "nomask": [], "non": [0, 1, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 18, 21, 23, 26, 29, 30, 31, 33, 34, 35, 36], "nondifferenti": 32, "none": [0, 1, 2, 4, 5, 9, 10, 13, 26, 29, 30, 34, 35, 36], "noninfring": [], "nonlinear": [3, 6, 8, 9, 11, 12, 33, 34, 35, 36], "nonneg": [6, 9, 13, 31, 33, 34], "nonparametr": 6, "nonsens": 26, "nonsingular": 23, "nonumb": [3, 7, 8, 13, 23, 34, 35], "nor": [1, 4, 13, 32, 36], "norm": [0, 1, 5, 6, 8, 11, 13, 18, 29, 30, 31, 32, 33, 36], "normal": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 34, 35, 36], "normali": [23, 29], "norwai": [6, 24, 29, 31, 32, 33, 35, 36], "notabl": [], "notat": [0, 2, 5, 6, 13, 14, 26, 29, 30, 31, 33, 34, 36], "note": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 18, 22, 23, 26, 28, 29, 32, 33, 34, 35, 36], "notebook": [0, 1, 3, 9, 15, 16, 19, 20, 21, 22, 24, 29, 33, 36], "noteworthi": 32, "noth": [1, 2, 5, 8, 12, 14, 26, 30, 31, 35], "notic": [4, 5, 12, 13, 23, 26, 29, 36], "notion": 3, "novel": [3, 6, 10, 29], "novemb": [1, 27, 29], "now": [0, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 19, 21, 22, 23, 24, 26, 29, 30, 35, 36], "nowadai": [0, 1, 3, 9, 22, 29], "nox": [], "np": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "npm": [], "npr": 2, "nsampl": [6, 33, 34], "nt": 2, "nu": 26, "nuclear": [5, 30, 31], "nuclei": [0, 26, 29], "nucleon": [0, 29], "nucleu": [0, 29], "num": 4, "num_coordin": 2, "num_hidden_neuron": 2, "num_it": [2, 18], "num_neuron": 2, "num_neurons_hidden": 2, "num_point": 2, "num_tre": 10, "num_valu": 2, "number": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 21, 23, 24, 25, 27, 29, 31, 33, 34, 35], "numberid": [7, 34], "numberparamet": 3, "numer": [0, 5, 6, 9, 10, 11, 12, 13, 21, 22, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36], "numpi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 24, 26, 30, 31, 32, 33, 34, 35, 36], "numpydocstr": [], "nunmpi": [5, 30], "nve_frngahw": 31, "nx": 2, "ny": 26, "o": [0, 1, 4, 5, 6, 7, 8, 9, 11, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35], "obei": [6, 11, 13, 30, 32], "object": [0, 1, 4, 8, 10, 15, 19, 23, 29, 32, 36], "obliqu": [5, 30, 31], "observ": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 26, 29, 31, 32, 33, 34, 35], "obtain": [0, 1, 5, 6, 7, 8, 9, 10, 12, 13, 14, 17, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "obviou": [5, 6, 11, 26, 30, 31], "obviouli": 29, "obvious": [0, 4, 5, 6, 23, 29, 33], "oc": [30, 31], "occupi": [], "occur": [0, 6, 8, 9, 23, 26, 29], "octob": [21, 27, 29, 35], "od": 0, "odd": [0, 3, 7, 29, 30, 32, 34, 35], "odenum": 2, "odesi": 2, "oen": 0, "off": [1, 3, 4, 5, 9, 13, 20, 26, 32, 33], "offer": [6, 11, 22, 23, 25, 27, 29, 33, 34], "offic": [27, 29], "offici": [25, 29], "offlin": 21, "often": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "ofter": [23, 29], "ol": [0, 13, 17, 19, 30, 32, 34], "old": [1, 5, 10, 13, 15, 18, 34, 35], "old_ma": [], "oliph": [], "ols_paramet": 16, "ols_sk": 6, "ols_svd": 6, "olsbeta": 31, "olstheta": [0, 5], "omega": [2, 3, 6], "omega_0": 3, "omit": [0, 5, 29, 30, 31, 33], "onc": [1, 6, 9, 11, 13, 20, 33, 34], "one": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35], "one_hot": [34, 35], "one_hot_predict": 21, "onehot": 1, "onehot_vector": 1, "onehotencod": 9, "ones": [0, 2, 5, 6, 8, 9, 10, 11, 13, 16, 18, 21, 23, 24, 29, 30, 31, 32, 33, 34, 36], "ones_lik": 4, "ong": 30, "onl": 3, "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "onlin": [11, 15, 20, 25, 32, 36], "onto": [5, 11, 30, 31], "open": [0, 1, 4, 6, 7, 9, 15, 22, 24, 25, 27, 29, 33, 34, 35], "oper": [0, 1, 3, 5, 6, 10, 11, 12, 13, 15, 16, 21, 22, 26, 29, 30, 31, 32, 33, 35], "operation": 26, "oplu": 26, "opmiz": [13, 32], "opportun": 0, "oppos": [6, 13], "opposit": [1, 5, 8, 30, 31], "opt": [1, 5, 24, 29, 31], "optim": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 19, 21, 24, 33], "optimis": [1, 3], "option": [0, 1, 3, 5, 6, 8, 11, 15, 18, 23, 30, 32, 33], "optmiz": [1, 8, 13, 30], "oral": 29, "orang": 0, "order": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 19, 21, 23, 24, 26, 29, 30, 31, 33, 34, 35, 36], "ordinari": [0, 2, 3, 7, 11, 13, 17, 18, 22, 33, 34, 35], "oreilli": [28, 29], "org": [0, 3, 4, 16, 20, 21, 22, 23, 24, 28, 29, 30, 31, 32, 36], "organ": [6, 7, 10, 23, 33, 34], "orgin": 36, "orient": [1, 5, 26, 30, 31], "origin": [0, 3, 5, 6, 8, 11, 12, 13, 15, 23, 29, 30, 31, 32, 33, 34, 35], "orthogn": [5, 30, 31], "orthogon": [0, 5, 6, 8, 11, 13, 23, 29, 30, 31], "orthonorm": [5, 30, 31], "os": [27, 29], "oscar": 1, "oscil": [3, 13, 32], "oskar": 29, "oskarlei": 29, "osl": 18, "oslo": [0, 22, 24, 25, 27, 29, 30, 31, 32, 33, 34, 35, 36], "osx": [0, 22, 24, 29], "other": [0, 1, 2, 3, 5, 6, 7, 8, 10, 13, 14, 16, 19, 21, 22, 25, 26, 27, 28, 30, 31, 32, 33, 34], "otherwis": [0, 1, 4, 7, 13, 23, 29, 32, 34, 35], "ouput": [5, 7, 12, 33, 34], "our": [1, 2, 3, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 21, 22, 23, 26, 32, 33, 36], "ourmodel": 0, "ourselv": [0, 5, 6, 8, 11, 13, 29, 30, 31, 33], "out": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 21, 22, 23, 24, 26, 29, 30, 32, 33, 34, 35, 36], "out_fil": 9, "outcom": [0, 7, 9, 10, 12, 26, 30, 34, 35], "outdoor": 9, "outer": [6, 12, 13], "outfil": 4, "outlier": [0, 8, 29, 30, 32], "outlin": [6, 10, 11, 33, 34], "outlook": 9, "outperform": [10, 32], "output": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35], "output_bia": 1, "output_bias_gradi": [1, 36], "output_shap": 4, "output_weight": 1, "output_weights_gradi": [1, 36], "outputlayer1": [12, 35], "outputlayer2": [12, 35], "outsid": 4, "over": [0, 1, 3, 4, 5, 6, 9, 10, 12, 13, 15, 16, 19, 23, 24, 29, 30, 31, 32, 33, 34], "over1": 13, "overal": [1, 10, 32], "overcast": 9, "overcom": [12, 13, 35, 36], "overdetermin": [0, 29], "overfit": [0, 1, 3, 6, 9, 10, 13, 32, 33, 34], "overflow": [5, 32, 33], "overhead": [12, 36], "overlap": [3, 7, 8, 9, 35], "overleaf": [20, 24], "overlin": [0, 5, 6, 9, 10, 11, 14, 23, 29, 30, 32], "overshoot": 32, "overst": 0, "overtrain": 4, "overview": [3, 20], "own": [4, 5, 6, 8, 12, 13, 16, 18, 22, 23, 31, 32, 33, 36], "owner": [], "ownmsepredict": 0, "ownmsetrain": 0, "ownridgebeta": 30, "ownridgetheta": [0, 6, 30, 31, 32], "ownypredictridg": 0, "ownytilderidg": 0, "ox": [], "oxid": [], "p": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 23, 26, 29, 30, 31, 32, 33, 34, 35], "p0": 2, "p1": 2, "p_": [2, 4, 8, 9], "p_hidden": 2, "p_i": [5, 26], "p_j": 26, "p_n": 26, "p_output": 2, "p_x": 26, "pa": 36, "pack": [0, 29], "packag": [0, 1, 3, 4, 5, 8, 11, 13, 15, 20, 22, 24, 26, 30, 31, 32], "packtpub": 29, "packtpublish": 29, "pad": [3, 4], "page": [0, 22, 24, 29, 31, 32, 33, 34], "pai": [0, 1, 9, 13, 15, 32], "pair": [0, 2, 3, 9, 22, 26, 29], "paltform": 15, "panda": [0, 4, 5, 6, 7, 9, 11, 22, 24, 31, 32, 33, 34, 35], "pandoc": [], "panel": 29, "paper": [1, 32], "paper_fil": 32, "paradigm": [0, 29], "paragraph": 20, "parallel": [10, 13, 22, 23, 29], "param": 2, "paramat": 2, "paramet": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 17, 18, 19, 21, 24, 26, 31, 32, 33], "parameter": [0, 6, 10, 29, 30], "parametr": [0, 6, 29, 30, 33, 34], "paramt": [3, 5, 33, 36], "parent": 36, "parser": [], "part": [0, 1, 3, 5, 6, 10, 17, 19, 20, 21, 23, 25, 26, 27, 29, 30, 33], "partial": [0, 1, 5, 6, 7, 8, 10, 11, 12, 13, 16, 21, 26, 29, 30, 31, 32, 34, 35, 36], "particip": [15, 22, 25, 27, 29], "particl": [0, 4, 13, 26, 29], "particular": [0, 1, 2, 3, 5, 6, 9, 10, 11, 12, 13, 16, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "particularli": [5, 6, 8, 11, 13, 26, 30, 31, 32, 33, 34], "partit": [1, 4, 9], "partli": [6, 29], "partner": [15, 24], "pass": [2, 3, 12, 14, 21, 32, 36], "password": 24, "past": [10, 26, 32], "patch": [6, 26, 33], "path": [0, 4, 6, 7, 9, 22, 29, 32, 33, 34], "pathcollect": 17, "patholog": [], "patient": [7, 34, 35], "patter": 4, "pattern": [0, 3, 4, 12, 28, 29, 32, 35, 36], "paul": [], "pauli": [0, 29], "pav": [], "pc": [11, 15, 22], "pca": [0, 7, 22, 29, 30, 35], "pd": [0, 4, 5, 6, 7, 9, 11, 29, 30, 31, 32, 33, 34, 35], "pde": 2, "pdf": [0, 3, 4, 5, 6, 9, 15, 16, 19, 20, 24, 28, 29, 33], "pedagog": [0, 29, 30], "penal": [6, 18, 30, 32], "penalti": [6, 13, 18, 24, 30, 32], "penros": [5, 6], "pentagon": [13, 31], "peopl": [1, 9, 13, 22, 24, 32], "per": [0, 1, 6, 21, 25, 27, 29, 32, 33, 34, 35], "percentag": [10, 11, 27], "perceptron": [0, 1, 7, 29, 34], "peregrin": 29, "perez": [], "perfect": [0, 1, 13, 29, 32], "perfectli": [4, 6, 33, 34], "perform": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 16, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "performac": 4, "perhap": [0, 5, 13, 29, 30, 31, 32], "perimet": 1, "period": [1, 4, 26], "permiss": 15, "permit": [], "permut": 11, "persist": 13, "person": [5, 6, 7, 16, 20, 25, 27, 29, 30, 34], "perspect": 28, "pertin": [12, 29, 36], "petal": [8, 9], "peter": [28, 30], "petersen": 36, "phantom": 26, "phase": [6, 12, 35, 36], "phenomena": 26, "phenomenon": 32, "phi": 8, "phi_k": 8, "philipp": 36, "philosophi": 13, "phone": [27, 29], "photo": [4, 29], "php": 24, "phrase": [0, 29], "physic": [0, 1, 4, 7, 12, 13, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "pi": [2, 3, 5, 6, 7, 9, 12, 13, 26, 33, 34, 35], "pick": [1, 9, 10, 11, 13, 14, 24, 32], "pickl": 1, "pictur": [0, 29], "pie": [22, 29], "piec": [11, 14, 21], "pierr": [], "pillow": [0, 22, 24, 29], "pinv": [5, 6, 13, 24, 30, 31, 32, 35], "pip": [0, 1, 15, 22, 24, 29], "pip3": [0, 1, 24, 29], "pipelin": [0, 6, 8, 10, 30, 33, 34], "pippin": 29, "pit": 4, "pitfal": [6, 30], "pitt": [12, 35, 36], "pixel": [1, 3, 4, 29], "pixel_height": [1, 3], "pixel_width": [1, 3], "pkg_resourc": [], "pkgutil": [], "place": [0, 4, 6, 8, 13, 15, 23, 24, 29, 31, 33], "plai": [0, 3, 4, 5, 6, 8, 11, 18, 22, 24, 29, 30, 31, 33, 34, 36], "plain": [8, 10, 12, 13, 14, 24, 31, 32, 36], "plan": [6, 9, 27, 28, 29], "plane": [8, 9], "plateau": [5, 31, 32], "platform": [22, 29], "plausibl": [12, 35], "pleas": [13, 24, 27, 29], "plenti": 1, "plethora": [3, 12, 35, 36], "pliahhy2ibx9hdharr6b7xevztgzra1p": [35, 36], "plot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 35], "plot_all_sc": [24, 30], "plot_confusion_matrix": [7, 10, 35], "plot_count": 6, "plot_cumulative_gain": [7, 10, 35], "plot_data": 1, "plot_dataset": 8, "plot_decision_boundari": [9, 10], "plot_import": 10, "plot_iris_dataset": 21, "plot_max": 4, "plot_min": 4, "plot_model": 4, "plot_numb": 4, "plot_predict": 8, "plot_regression_predict": 9, "plot_result": 4, "plot_roc": [7, 10, 35], "plot_surfac": [2, 6, 13], "plot_train": 9, "plot_tre": [9, 10], "plqvvvaa0qudcjd5baw2dxe6of2tius3v3": [35, 36], "plt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35], "plu": [0, 3, 5, 7, 18, 29, 30, 34], "plugin": [], "pm": [8, 33], "pmatrix": 2, "pml": 28, "pn": 3, "png": [0, 4, 6, 7, 9, 29, 33, 34], "point": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35], "point_1": 4, "point_2": 4, "poisson": [22, 26, 29], "poli": [6, 8, 33, 34], "poly100_kernel_svm_clf": 8, "poly3": 0, "poly3_plot": 0, "poly_featur": [8, 9, 15], "poly_features10": 9, "poly_fit": 9, "poly_fit10": 9, "poly_kernel_svm_clf": 8, "poly_model": 15, "poly_ms": 15, "poly_predict": 15, "polydegre": [0, 5, 6, 10, 30, 33, 34], "polygon": [13, 31], "polym": [12, 35, 36], "polymi": 24, "polynomi": [0, 5, 6, 7, 8, 9, 10, 11, 15, 17, 19, 20, 24, 29, 30, 32, 33, 34, 35, 36], "polynomial_featur": [6, 15, 16, 17, 33, 34], "polynomial_svm_clf": 8, "polynomialfeatur": [0, 6, 8, 9, 15, 16, 19, 30, 33, 34], "polytrop": [0, 6, 33, 34], "pool": 3, "pool_siz": 3, "poor": [1, 13, 31, 32], "poorli": [0, 30], "popul": [0, 5, 29, 30], "popular": [0, 1, 3, 6, 7, 8, 9, 11, 12, 15, 22, 23, 24, 26, 30, 34, 35], "popularli": [0, 29], "portabl": 10, "portion": [11, 13, 32], "pose": [0, 4, 5, 6, 11, 26, 29, 33], "posit": [0, 1, 2, 3, 5, 7, 8, 10, 11, 13, 14, 21, 23, 26, 29, 30, 31, 32, 34, 35], "possibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "possibli": [6, 8, 13, 24], "post": [], "posterior": 5, "postpon": [0, 30], "postscript": 24, "postul": 5, "potenti": [0, 3, 5, 6, 12, 13, 30, 32, 33, 35, 36], "pott": [12, 35, 36], "power": [0, 1, 5, 6, 8, 9, 12, 13, 29, 30, 31, 32, 33, 34, 35, 36], "pp": [5, 6, 19, 33, 36], "practic": [0, 5, 6, 7, 8, 16, 18, 19, 21, 24, 26, 30, 33, 34, 35], "practition": [0, 1, 3, 29, 32], "pre": 29, "preambl": [], "precalcul": 36, "preced": [1, 11, 12, 26, 35], "preceed": 4, "preceq": 8, "precis": [0, 2, 5, 11, 13, 23, 24, 26, 29, 30, 32, 33, 36], "pred": [6, 33, 34, 35], "predicit": 0, "predict": [0, 1, 5, 6, 7, 8, 9, 10, 15, 16, 17, 19, 22, 24, 28, 29, 30, 31, 32, 33, 34, 35], "predict_prob": [1, 34, 35], "predict_proba": [7, 10, 35], "predictedlabel": [34, 35], "predictor": [0, 5, 6, 7, 9, 10, 11, 29, 30, 32], "prefer": [0, 1, 6, 8, 9, 11, 13, 15, 20, 22, 24, 29], "prefil": [], "prepar": [0, 6, 23, 24, 29, 30], "preprocess": [0, 4, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 24, 33, 34, 35], "prerequisit": 0, "prescript": 24, "presenc": 13, "present": [0, 5, 6, 7, 9, 12, 13, 23, 24, 26, 29, 30, 31, 32, 35, 36], "preserv": [3, 11, 23], "press": [13, 15, 28, 31, 36], "pretrain": [1, 4], "pretti": [0, 4, 8, 9, 21, 22, 24, 29], "prettier": [], "prev_centroid": 14, "prevent": [13, 26, 32], "previou": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 21, 23, 24, 26, 30, 31, 32, 35, 36], "previous": [2, 3, 9, 10, 26], "price": [0, 4, 9, 13, 32], "primal": 8, "primari": [0, 7, 29, 34, 35], "prime": 26, "princip": [0, 5, 7, 22, 29, 30, 31, 35], "principl": [0, 6, 7, 8, 14, 29, 33, 34, 35], "print": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "print_funct": [8, 9], "printout": [0, 29], "prior": [0, 5, 6, 29], "privat": 0, "prob": [1, 26, 34, 35], "probabilist": [0, 28, 29, 30], "probabl": [0, 1, 3, 4, 6, 7, 10, 13, 21, 22, 29, 30, 32, 34, 35], "problem": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 22, 23, 24, 26, 33], "probml": 28, "proce": [0, 5, 6, 7, 8, 9, 10, 11, 13, 23, 29, 30, 33, 36], "procedur": [2, 4, 5, 6, 8, 10, 11, 13, 30, 31, 32, 33, 34], "proceed": 23, "process": [0, 2, 4, 6, 9, 10, 12, 13, 22, 23, 24, 26, 28, 29, 31, 32, 33, 34, 35, 36], "procur": [], "prod": 28, "prod_": [1, 5, 7, 33, 34, 35], "produc": [0, 3, 4, 5, 6, 9, 10, 11, 12, 13, 18, 20, 22, 23, 24, 26, 29, 30, 33, 35, 36], "product": [0, 1, 3, 5, 6, 7, 8, 12, 13, 16, 17, 22, 23, 29, 30, 32, 33, 34, 35, 36], "profess": [0, 29], "profit": [], "program": [0, 1, 4, 5, 6, 8, 12, 14, 15, 22, 23, 25, 26, 27, 29, 30, 35], "programm": 23, "progress": [1, 4, 14, 32, 34, 35], "prohibit": [6, 33, 34], "project": [0, 1, 2, 3, 5, 11, 13, 15, 19, 22, 25, 30, 31, 32, 33, 34, 35], "project_root_dir": [0, 6, 7, 9, 29, 33, 34], "promin": [12, 35, 36], "promis": 8, "promot": [27, 29], "prompt": 20, "prone": [9, 15, 21, 36], "pronounc": [13, 22, 29, 32], "proof": [0, 11, 12, 13, 29, 31, 33, 34, 36], "prop": 32, "prop_cycl": [], "propag": [2, 3, 13, 21, 32], "proper": [0, 2, 6, 7, 20, 33, 34], "properli": [1, 6, 8, 10, 13, 18, 20, 24, 32], "properti": [0, 1, 3, 12, 13, 16, 23, 29, 33, 35], "propgag": 36, "proport": [0, 1, 5, 9, 11, 13, 26, 29, 30], "propos": [1, 4, 6, 10, 24, 29, 32], "propto": [5, 13, 31, 32], "proton": [0, 29], "prove": [3, 13, 31, 32], "provid": [0, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "proxi": [1, 13, 32], "prune": 9, "pseudo": [23, 26, 32], "pseudocod": 24, "pseudoinv": 5, "pseudoinvers": [5, 6, 24], "pseudorandom": [6, 26, 33], "psychologi": [0, 29], "pt": 13, "public": [0, 15, 22, 29], "publish": 36, "pull": 15, "punish": [0, 1, 29], "pure": [3, 9, 26], "purest": 9, "puriti": 9, "purpos": [0, 3, 10, 12, 14, 21, 29, 35, 36], "push": 15, "put": [1, 20, 24, 32], "putmask": [], "py": 5, "pybtex": [], "pycod": 29, "pydata": 22, "pydevd_extension_api": [], "pydevd_plugin": [], "pydevd_plugin_plugin_nam": [], "pydot": 9, "pygment": [], "pyhton2": 29, "pylab": [7, 29, 34], "pypi": 22, "pyplot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35], "pythagora": 5, "python": [1, 2, 3, 5, 6, 8, 11, 12, 13, 14, 18, 20, 21, 24, 26, 30, 32, 36], "python2": [0, 24], "python3": [0, 22, 24, 29], "pythonpath": [], "pytorch": [0, 22, 24, 29, 36], "pyzmq": [], "q": [5, 6, 8, 11, 26, 33], "qp": 8, "qquad": [2, 11, 13, 23, 32], "qr": [5, 6, 23, 30, 31], "quad": [1, 13, 23], "quadrat": [0, 8, 9, 13, 29], "qualit": [4, 9, 24, 26], "qualiti": [0, 9, 22, 29, 30, 36], "quantifi": 1, "quantil": 10, "quantit": [0, 6, 9, 24, 29, 33, 34], "quantiti": [0, 2, 5, 6, 7, 9, 10, 11, 12, 14, 16, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "quantum": [4, 12, 28, 29, 35, 36], "quartil": [0, 30, 32], "quasi": 36, "quench": 5, "queri": 9, "question": [0, 5, 6, 9, 11, 12, 13, 24, 27, 29, 30, 32, 33, 36], "qugan": 4, "quick": [4, 26], "quicker": 32, "quickli": [1, 3, 9, 11, 13, 31, 32], "quit": [1, 5, 6, 9, 10, 12, 15, 30, 31, 33, 34, 35], "quot": 4, "r": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 22, 23, 24, 26, 30, 31, 32, 33, 34, 35, 36], "r2": [0, 5, 6, 19, 29, 30, 31], "r2_score": [0, 29], "r2score": [0, 29], "r_": 32, "r_0": 32, "r_1": 9, "r_2": 9, "r_j": 9, "r_m": 9, "r_t": 32, "rad": [], "rade": [], "radial": [8, 12, 35, 36], "radioact": 26, "radiu": [0, 1, 30, 32], "radziej": [], "ragan": [], "rain": 9, "rais": [], "ram": 32, "ramanujam": [], "ramp": 1, "ran0": 26, "ran1": 26, "ran2": 26, "ran3": 26, "rand": [0, 4, 5, 6, 9, 10, 13, 15, 19, 21, 23, 29, 30, 31, 32, 33, 34], "randint": [6, 9, 13, 32, 33], "randn": [0, 1, 2, 5, 6, 9, 11, 13, 15, 18, 21, 29, 30, 31, 32, 33, 34, 35, 36], "random": [0, 1, 2, 3, 4, 5, 6, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "random_forest_model": 10, "random_index": [13, 32], "random_indic": [1, 3], "random_st": [7, 8, 9, 10, 11, 34, 35], "randomforestclassifi": 10, "randomli": [1, 6, 9, 13, 14, 18, 31, 32, 33, 34], "randomst": [34, 35], "rang": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 18, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "rangl": [0, 6, 11, 26, 29, 30], "rangle_x": 26, "rank": [5, 30, 31], "rankdir": 4, "raphson": [1, 8, 13], "rapidli": [0, 32], "rare": [1, 13, 32], "raschka": [29, 30, 33, 34, 35], "rasckha": 29, "rashcka": [31, 32, 36], "rashkca": 36, "rate": [1, 2, 3, 4, 8, 9, 10, 12, 13, 18, 31, 33, 34, 35, 36], "rather": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 26, 29, 30, 31, 33, 34, 36], "ratio": [4, 7, 9, 10, 11, 34, 35], "rational": [0, 29], "ravel": [5, 6, 7, 8, 9, 10, 11, 13, 23, 33, 34, 35], "raw": [3, 32], "rbf": [8, 11, 12, 35, 36], "rbf_kernel_svm_clf": 8, "rbf_pca": 11, "rc": 26, "rcond": [0, 29, 30], "rcparam": [1, 3, 7, 8, 9, 10, 26, 29, 34], "re": [2, 4, 13, 15, 31], "reach": [1, 4, 5, 6, 9, 10, 12, 13, 14, 31, 32, 33, 34, 36], "react": [], "read": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 16, 17, 19, 20, 23, 24, 26, 28, 31], "read_csv": [0, 6, 7, 9, 33, 34], "read_fwf": [0, 29], "reader": [0, 6, 20, 23, 26, 29, 30, 32], "readi": [0, 1, 5, 6, 8, 10, 11, 12, 23, 29, 36], "readili": 1, "readm": [15, 20, 24], "readthedoc": 22, "real": [0, 1, 4, 7, 10, 11, 12, 16, 18, 19, 23, 30, 33, 34, 35], "real_loss": 4, "real_output": 4, "realist": [8, 29], "realiti": 26, "realiz": [1, 12, 35], "realli": [0, 1, 29], "rearrang": 13, "reason": [0, 1, 3, 4, 10, 13, 28, 29, 31, 32], "reassign": 1, "recal": [5, 6, 9, 10, 11, 12, 23, 26, 29, 30, 31, 32, 33, 34, 36], "recarrai": [], "recast": 3, "receiv": [1, 3, 10, 12, 26, 35, 36], "recent": [0, 6, 13, 28, 32, 33, 34, 36], "recept": [3, 12, 35, 36], "receptive_field": 3, "recip": [0, 6, 7, 23, 24, 29, 30, 34, 35], "reciproc": 5, "recogn": [0, 4, 5, 10, 29, 33], "recognit": [0, 1, 3, 12, 28, 29, 35, 36], "recommen": 29, "recommend": [0, 2, 3, 4, 5, 6, 8, 13, 15, 19, 20, 21, 22, 23, 24, 28, 31, 32, 33, 34, 35, 36], "reconsid": 9, "reconstruct": 11, "record": [10, 24, 25, 27, 29, 34, 35], "recreat": [15, 21], "rectangl": [9, 13, 31], "rectangular": [5, 30, 31], "rectifi": [1, 3, 12, 35], "recur": [0, 22, 29], "recurr": [0, 1, 22, 29], "recurs": [9, 22, 23, 29], "red": [0, 3, 4, 6, 8, 9, 32, 33], "redefin": [0, 10, 29, 30, 31], "redefinit": 31, "redistribut": [], "reduc": [1, 3, 5, 6, 9, 10, 11, 13, 29, 31, 32, 33], "reduct": [0, 10, 11, 22, 26, 29, 30], "reegress": 24, "ref": 20, "refer": [0, 1, 2, 3, 5, 6, 11, 12, 13, 14, 20, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36], "referansestil": 20, "referenc": [2, 36], "refin": [12, 35, 36], "refit": [6, 33, 34], "reflect": [0, 1, 4, 5, 24, 26, 29], "refresh": [22, 29], "refreshprogrammingskil": 29, "reg": [10, 11], "regard": [1, 9, 13], "regardless": [12, 16, 35], "regexp": [], "reggi": [], "regim": 32, "region": [3, 4, 6, 9, 12, 24, 32, 35, 36], "regist": [6, 26], "reglasso": [5, 31], "regr_1": [0, 9], "regr_2": [0, 9], "regr_3": [0, 9], "regress": [1, 8, 11, 12, 16, 20, 22, 23, 36], "regressor": [0, 7, 10, 34], "regret": [], "regridg": [0, 5, 6, 30, 31, 32], "regular": [0, 3, 4, 5, 6, 7, 9, 13, 17, 18, 27, 29, 30, 31, 32, 33, 34, 35], "regularli": 15, "reilli": [0, 28, 29], "reinforc": [0, 8, 22, 29], "reiter": 1, "reitz": [], "reject": 7, "rel": [0, 4, 6, 7, 9, 12, 13, 21, 26, 29, 30, 32, 33, 34, 35], "relat": [0, 1, 3, 4, 5, 11, 13, 14, 19, 23, 26, 29, 30, 31, 33, 36], "relationship": [0, 4, 9, 18, 29], "relativeerror": [0, 29, 30], "releas": [1, 22, 29], "relev": [0, 1, 5, 7, 11, 22, 24, 26, 29, 31, 32], "reli": [0, 6, 8, 32], "reliabilti": 24, "reliabl": [7, 26, 34, 35], "relu": [3, 4, 21, 29], "remain": [1, 2, 4, 6, 12, 23, 26, 30, 32, 33, 34, 35, 36], "remaind": 26, "reman": 2, "remark": 1, "rememb": [0, 8, 13, 20, 21, 23, 24, 29, 32], "remind": [0, 5, 11, 13, 19, 23, 26, 33], "remot": 15, "remov": [4, 5, 6, 18, 30, 31, 32], "renam": 15, "render": [0, 29, 30], "reorder": [5, 7, 30, 31, 34, 35], "reorgan": [0, 29], "repeat": [0, 1, 3, 4, 5, 6, 9, 10, 11, 13, 14, 23, 24, 26, 29, 30, 31, 32, 33, 34, 36], "repeated": 29, "repeatedli": [0, 6, 10, 13, 33, 34], "repet": 3, "repetit": [6, 29, 30, 33, 34], "rephras": [13, 31], "replac": [0, 1, 3, 4, 5, 6, 10, 12, 14, 22, 24, 29, 30, 31, 33, 34, 36], "replica": [6, 33], "repo": [15, 24], "report": [29, 32, 34, 35], "repositori": [4, 20, 24, 29], "reposotori": [], "repres": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "represent": [0, 1, 3, 6, 26, 29, 33, 34], "representd": 3, "reproduc": [0, 5, 6, 9, 12, 15, 16, 18, 20, 22, 24, 26, 29, 30, 36], "repuls": [0, 29], "request": [0, 13, 32], "requir": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 17, 18, 19, 20, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "res1": 2, "res2": 2, "res3": 2, "res_analyt": 2, "res_analytical1": 2, "res_analytical2": 2, "res_analytical3": 2, "resaml": 6, "resampl": [0, 7, 10, 22, 29, 30], "rescal": [0, 11, 12, 32, 35], "rescu": 5, "reseach": 6, "research": [0, 4, 13, 21, 22, 28, 29, 32], "resembl": [6, 26, 33], "reserv": [1, 5, 6, 26, 33, 34], "reshap": [0, 1, 2, 3, 4, 6, 8, 9, 10, 23, 29, 30, 33, 34], "resid": 32, "residenti": [], "residu": [0, 5, 13, 29], "resiz": [5, 30, 31], "resnet": 32, "resort": 32, "resourc": [29, 32], "respect": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 21, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "respond": [12, 35, 36], "respons": [0, 7, 9, 12, 29, 30, 34, 35, 36], "rest": [0, 5, 18, 21, 30, 31, 32], "restat": [0, 12, 29], "restor": 4, "restored_discrimin": 4, "restored_gener": 4, "restrict": [0, 3, 9, 12, 29, 35, 36], "result": [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, 26, 29, 32, 33, 34, 35], "retail": [], "retain": [5, 6, 30, 31, 32, 33, 34], "rethink": 33, "return": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "return_data": 14, "return_sequ": 4, "return_x_i": 9, "reus": [1, 3, 6, 19, 20, 24, 36], "reveal": [0, 12, 29, 35, 36], "revers": [1, 23], "review": [22, 23], "revis": [], "revisit": 14, "revolut": 29, "reward": [0, 4, 29], "rewrit": [0, 3, 5, 6, 7, 8, 10, 11, 12, 13, 16, 19, 23, 24, 26, 31, 32, 34, 35, 36], "rewritten": [2, 6, 8, 10, 26, 33], "rewrot": [13, 34, 35], "rf": 10, "rgb": 3, "rgoj5yh7evk": 22, "rh": [6, 33], "rho": [0, 10, 13, 32], "rho_1": 10, "rho_2": 10, "rho_m": 10, "rich": [0, 29], "rid": [], "ride": 9, "rideclass": 9, "ridedata": 9, "ridg": [7, 11, 13, 20, 22, 29, 33, 34, 35], "ridge_paramet": 17, "ridge_sk": 6, "ridgebeta": 31, "ridgetheta": 5, "right": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "right_sid": 2, "rightarrow": [0, 1, 5, 6, 8, 11, 12, 13, 26, 29, 30, 31, 32, 33, 35, 36], "rigor": [0, 29, 30, 31], "ring": 6, "rise": [0, 29], "risk": [0, 13, 29, 31, 32], "rival": 4, "river": [], "rlm": 29, "rm": [26, 32], "rmse": [], "rmsporp": [13, 32], "rmsprop": [1, 3, 4, 13, 24, 33, 36], "rnd_clf": 10, "rng": [26, 34, 35], "rnn": [4, 12, 35, 36], "rnn1": 4, "rnn2": 4, "rnn_2layer": 4, "rnn_input": 4, "rnn_output": 4, "rnn_train": 4, "rntrick1": 26, "rntrick2": 26, "rntrick3": 26, "rntrick4": 26, "ro": [0, 13, 29, 31, 32], "robert": [19, 24, 28], "robust": [0, 29, 32], "robustscal": [0, 30, 32], "roc": [7, 10], "role": [0, 2, 5, 6, 8, 18, 22, 24, 29, 30, 31, 32, 33, 34, 36], "roll": 6, "ronach": [], "room": [0, 27, 29], "root": [0, 5, 9, 13, 15, 26, 30, 31, 32, 36], "root_directori": [], "rot": 29, "rotat": [1, 8, 9, 10], "rotation_matrix": 9, "roughli": [1, 3, 18], "round": [7, 9, 13, 35], "routin": [13, 23, 29, 31], "row": [0, 1, 2, 5, 6, 9, 11, 16, 21, 23, 29, 30, 31, 33], "rr": [5, 30, 31], "rrr": [5, 30, 31], "rubric": [], "rudg": [], "rug": [13, 31, 32], "rule": [0, 1, 5, 6, 13, 24, 29, 30, 31, 35], "run": [0, 1, 2, 4, 5, 6, 8, 9, 11, 13, 15, 20, 21, 22, 24, 29, 30, 31, 32, 33, 34], "runtim": [1, 6, 14, 15], "rust": [0, 22, 23, 29], "rvert": 1, "rvert_2": 1, "s_": [3, 6], "s_1": 6, "s_i": [6, 7, 34], "s_j": 6, "s_k": 6, "s_phenomenon": 24, "saddl": [13, 31, 32], "safeguard": [18, 32], "sai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "said": [6, 9, 13, 31], "sake": [0, 5, 7, 11, 29, 30, 31, 34, 35, 36], "sale": [0, 29], "sam": 29, "same": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 18, 20, 21, 23, 24, 26, 29, 30, 31, 35, 36], "samm": 10, "sampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 18, 19, 22, 23, 24, 26, 29, 30, 32, 33, 34, 35], "sample_vari": 14, "sampleexptvari": 26, "samples_per_class": [34, 35], "samwis": 29, "sandbox": [], "sandboxmod": 21, "sasha": [], "sastri": 11, "satisfactori": [0, 29], "satisfi": [1, 2, 3, 6, 8, 13, 23, 26, 31, 33], "satur": [1, 6, 33, 34], "save": [0, 4, 6, 7, 9, 13, 20, 29, 32, 33, 34], "save_fig": [0, 6, 7, 9, 10, 29, 33, 34], "savefig": [0, 4, 6, 7, 9, 26, 29, 33, 34], "savetxt": 4, "saw": [5, 30], "scalabl": 10, "scalar": [2, 5, 6, 10, 30, 33, 36], "scale": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 23, 24, 27, 29, 31, 34, 35], "scale_mean": 4, "scale_std": 4, "scaler": [0, 7, 8, 9, 10, 11, 17, 24, 30], "scan": [5, 7, 34, 35], "scari": 5, "scatter": [0, 1, 6, 7, 8, 9, 14, 15, 17, 21, 29, 30, 32, 33, 34], "scenario": [6, 13, 31, 32], "schedul": [13, 32], "scheme": [1, 13, 31, 32, 34, 35], "schrage": 26, "sch\u00f8yen": [6, 30, 32], "scienc": [0, 1, 10, 12, 13, 22, 25, 26, 27, 28, 31, 33, 34, 35, 36], "scientif": [0, 20, 22, 24, 29, 34, 35], "scientist": [0, 29], "scikit": [3, 5, 6, 8, 9, 10, 13, 15, 16, 20, 21, 22, 23, 24, 28], "scikit_learn": [0, 35], "scikitlearn": 29, "scikitplot": [7, 10, 35], "scipi": [0, 3, 5, 6, 13, 22, 23, 24, 29, 30, 31, 33], "scl": 6, "scm": 15, "score": [0, 1, 3, 6, 7, 9, 10, 11, 15, 16, 19, 21, 24, 27, 29, 30, 32, 33, 34, 35], "scores_kfold": [6, 33, 34], "scratch": [1, 13, 16, 35, 36], "script": [], "sdg": [13, 32], "sdv4f4s2sb8": [31, 32], "seaborn": [0, 1, 3, 6, 7, 29, 35], "seamless": [0, 22, 24, 29], "search": [0, 1, 3, 5, 9, 13, 15, 29, 31, 32], "sebastian": [29, 36], "sebastianraschka": 29, "sec": 6, "second": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 21, 22, 23, 26, 27, 29, 30, 31, 33, 34, 35, 36], "second_mo": 32, "second_term": 32, "secondari": 32, "secondeigvector": 11, "secondli": [12, 36], "section": [4, 11, 16, 20, 23, 24, 26, 30, 32, 34], "sector": 0, "see": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "seed": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 18, 20, 21, 24, 26, 29, 30, 31, 32, 33, 34, 36], "seed_imag": 4, "seek": [1, 2, 8], "seem": [1, 3, 4, 32], "seemingli": [0, 29], "seen": [0, 1, 3, 5, 10, 12, 26], "segment": [13, 31], "seismic": 6, "seldomli": [0, 29], "select": [1, 5, 6, 8, 9, 10, 11, 15, 20, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33], "selevet": 15, "self": [1, 5, 30, 34, 35], "sell": 4, "semest": [7, 25, 35], "semi": [8, 13, 31, 32], "semilogx": 6, "send": [5, 12, 13, 21, 27, 29, 35, 36], "senior": [25, 27], "sens": [0, 4, 6, 8, 21, 29, 33], "sensibl": [3, 21], "sensit": [0, 5, 6, 9, 13, 29, 30, 32, 33, 34], "sent": [2, 21, 36], "sentdex": [35, 36], "sentenc": [4, 12, 35, 36], "separ": [0, 1, 2, 4, 6, 8, 9, 12, 14, 18, 21, 22, 24, 26, 29, 32, 33, 35, 36], "septemb": [18, 24, 29], "sequenc": [3, 4, 7, 9, 10, 12, 13, 22, 23, 26, 29, 31, 34, 35, 36], "sequenti": [1, 3, 4, 10, 12, 26, 35, 36], "seri": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 23, 29, 30, 31, 33, 35, 36], "serif": [7, 26, 29, 34], "serv": [0, 1, 2, 3, 5, 7, 13, 28, 29, 30, 31, 32, 34, 35], "servic": 24, "session": [1, 15, 20, 24, 25, 27, 29], "set": [1, 4, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 21, 22, 23, 24, 26, 27, 32, 33, 34, 35], "set_major_formatt": 6, "set_major_loc": 6, "set_tick": [1, 8], "set_ticklabel": 1, "set_titl": [0, 1, 2, 3, 7, 12, 14, 29, 34, 35], "set_xlabel": [0, 1, 2, 3, 7, 12, 29, 34, 35], "set_xlim": [7, 12, 34, 35], "set_xticklabel": 1, "set_ylabel": [0, 1, 2, 3, 7, 29, 35], "set_ylim": [7, 12, 34, 35], "set_ytick": [7, 35], "set_yticklabel": [1, 6], "set_zlim": 6, "seth": 4, "setminu": 6, "setosa": [8, 9], "setosa_or_versicolor": 8, "setp": [6, 33, 34], "setup": [1, 4, 6, 8, 22, 29, 30, 31, 36], "sever": [0, 3, 5, 6, 7, 8, 9, 11, 12, 13, 16, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "sgd": [1, 3, 31], "sgd_clf": 8, "sgdclassifi": 8, "sgdreg": 13, "sgdregressor": 13, "sgn": [5, 30, 31], "shall": [], "shallow": [13, 32], "shape": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 21, 23, 29, 30, 31, 32, 33, 34, 35, 36], "share": [1, 3, 15, 29], "share_mask": [], "shareabl": 15, "she": [7, 34, 35], "sheppard": [], "shibukawa": [], "shift": [1, 6, 12, 15, 18, 26, 30, 32, 35], "ship": 3, "shire": 29, "short": [4, 5, 20, 24], "shortcom": [13, 31, 32], "shorten": 4, "shorter": 26, "shorthand": [29, 33], "shortli": [23, 29], "should": [0, 2, 3, 5, 6, 8, 9, 11, 12, 15, 18, 19, 20, 21, 23, 24, 26, 29, 30, 32, 33, 34, 36], "shouldn": [], "show": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "show_shap": 4, "shown": [0, 4, 5, 8, 12, 13, 23, 30, 31, 32, 35, 36], "shrink": [3, 5, 6, 8, 11, 30, 31, 32], "shrinkag": [5, 6, 30, 31], "shrunk": 11, "shuffl": [0, 1, 4, 6, 13, 30, 32, 33, 34], "sickit": 36, "side": [0, 2, 5, 8, 12, 13, 23, 24, 29, 31, 34, 35], "sigh": [22, 29], "sigma": [0, 1, 5, 6, 7, 10, 11, 12, 13, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "sigma0": 26, "sigma1": 26, "sigma2": 26, "sigma_": [5, 23, 29, 30, 31, 33], "sigma_0": [5, 30, 31], "sigma_1": [5, 30, 31, 36], "sigma_2": [5, 30, 31, 36], "sigma_fn": [7, 12, 34, 35], "sigma_i": [0, 5, 29, 30, 31], "sigma_j": [5, 30, 31], "sigma_m": [6, 26, 33], "sigma_n": [11, 26], "sigma_t": 13, "sigma_x": 26, "sigmoid": [1, 2, 4, 7, 8, 10, 12, 21, 34, 35, 36], "sigmundson": [6, 30, 32], "sign": [1, 2, 7, 8, 10, 26, 27, 34], "signal": [1, 3, 10, 12, 32, 35, 36], "signifi": 4, "signific": [1, 32], "significantli": [1, 13, 18, 26, 31, 32], "sim": [4, 5, 6, 13, 19, 26, 33], "similar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 18, 22, 23, 24, 29, 31, 33, 34, 35, 36], "similarli": [0, 1, 3, 5, 8, 10, 13, 26, 29, 30, 31, 32, 36], "simpl": [1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 22, 23, 26, 33, 35], "simple_plot": [], "simplepredict": 10, "simpler": [0, 1, 5, 6, 7, 13, 16, 22, 24, 29, 31, 32], "simplernn": 4, "simplest": [0, 1, 3, 4, 9, 10, 12, 14, 24, 29, 35, 36], "simpletre": 10, "simpli": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 22, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "simplic": [2, 5, 6, 7, 8, 9, 10, 11, 12, 14, 30, 31, 32, 34, 35, 36], "simplicti": [5, 30, 31], "simplif": 36, "simplifi": [0, 6, 9, 18, 22, 24, 29, 30, 32, 33, 34, 36], "simplist": [3, 6, 26, 33], "simul": [6, 18, 32, 33, 34], "simultan": [6, 32, 33, 34], "sin": [0, 1, 2, 3, 4, 9, 12, 13, 23, 29, 35], "sinc": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "sine": [3, 12, 35], "singl": [0, 1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 18, 19, 21, 23, 26, 29, 30, 31, 32, 33, 34], "singular": [0, 6, 13, 23, 29, 33], "sinusoid": 3, "site": [0, 24, 25, 30], "situat": [0, 4, 5, 7, 13, 26, 29, 30, 31, 32, 34, 35], "six": [3, 26, 36], "size": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 18, 20, 21, 23, 24, 26, 29, 33, 34, 35, 36], "sizesp": 32, "sketch": 10, "ski": 9, "skill": 0, "skip": 11, "skl": [0, 6, 29, 30, 32], "sklearn": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 29, 30, 31, 32, 33, 34, 35], "skplt": [7, 10, 35], "sl": [6, 30, 32], "slack": 8, "slender": [], "slice": [2, 23, 29], "slide": [0, 3, 16, 24, 26, 29, 30, 31, 36], "slight": [6, 13, 33, 34], "slightli": [1, 2, 3, 5, 6, 7, 10, 26, 30, 31, 33, 34, 35, 36], "slope": [8, 11, 12, 35], "slow": [0, 2, 8, 13, 18, 30, 31, 32], "slower": [5, 23, 29, 30, 31, 32], "slowest": 23, "slowli": [12, 32], "slp": 1, "small": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 18, 21, 22, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "smaller": [0, 1, 2, 5, 6, 8, 9, 11, 13, 21, 26, 29, 30, 31, 32, 33, 34], "smallest": [0, 4, 14, 29], "smallest_row_index": 14, "smodin": [], "smooth": [0, 3, 6, 13, 24, 29, 31, 32], "smoother": 32, "sn": [0, 1, 3, 6, 7, 29, 35], "sne": 11, "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "soar": 6, "social": 0, "soft": [1, 7, 10, 12, 34, 35, 36], "soften": 8, "softmax": [3, 7, 21, 34, 35], "softmax_vec": 21, "softwar": [0, 8, 22, 23, 36], "sokogskriv": 20, "sol": 8, "sol1": 21, "sole": [0, 6, 29], "solid": [0, 7, 34, 35], "solut": [0, 1, 2, 3, 5, 6, 8, 10, 11, 13, 18, 21, 23, 24, 26, 29, 30, 31, 32, 33], "solution_ev": 32, "soluton": 2, "solv": [0, 1, 3, 5, 6, 8, 10, 11, 12, 13, 16, 23, 24, 29, 30, 36], "solve_expdec": 2, "solve_ode_deep_neural_network": 2, "solve_ode_neural_network": 2, "solve_pde_deep_neural_network": 2, "solveod": 2, "solveode_popul": 2, "solver": [2, 7, 8, 9, 10, 23, 29, 35], "some": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 21, 24, 26, 29, 32, 33, 35], "some_model": [6, 30, 32], "somehow": 4, "someon": 16, "someth": [0, 1, 3, 4, 7, 9, 11, 15, 19, 20, 24, 26, 29, 30, 35], "sometim": [0, 1, 11, 12, 13, 14, 19, 30, 32, 35, 36], "somewhat": 35, "soon": [23, 27, 30], "sophist": [0, 29], "sopt": 13, "sort": [5, 6, 9, 11, 26, 33, 34], "sound": [3, 5], "sourc": [0, 1, 3, 6, 22, 23, 24, 26, 29, 32, 33, 34], "space": [0, 1, 4, 5, 8, 9, 11, 12, 13, 14, 26, 30, 31, 32, 34, 35, 36], "span": [0, 3, 5, 9, 11, 23, 29, 30, 31], "spare": 1, "spars": [3, 6, 18, 23, 29, 32], "sparse_mtx": [23, 29], "sparsecategoricalcrossentropi": 3, "sparsiti": [10, 18], "spatial": [1, 2, 3, 12, 35, 36], "speak": 26, "special": [6, 7, 10, 12, 13, 23, 26, 29, 30, 31, 32, 34, 35, 36], "specif": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 35, 36], "specifi": [0, 3, 5, 6, 7, 9, 11, 13, 14, 26, 29, 31, 32, 33, 34, 35], "specifici": [0, 10, 29], "spectacular": 3, "spectral": 1, "speech": [0, 1, 3, 4, 12, 35, 36], "speed": [1, 2, 4, 13], "spend": [16, 26, 32], "spent": 24, "sphere": [0, 30, 32], "sphinx": [], "sphinx_book_them": [], "sphinxcontrib": [], "spike": 32, "spin": 6, "spite": 0, "spitzer": [], "spline": 8, "split": [1, 3, 4, 5, 6, 8, 9, 10, 11, 14, 16, 17, 20, 21, 24, 26, 29, 31, 32, 33, 34], "splite": 0, "splitter": [1, 10], "spoiler": [], "spontan": 26, "spot": 3, "spread": [0, 11, 26, 29, 30, 34, 35], "springer": [19, 24, 28, 29, 33, 34], "spuriou": [13, 32], "sqquar": 31, "sqrsignal": 3, "sqrt": [3, 4, 5, 6, 8, 10, 11, 13, 26, 30, 31, 32, 33, 36], "squar": [1, 2, 3, 4, 7, 8, 9, 11, 13, 14, 15, 17, 18, 22, 23, 26, 33, 34, 35, 36], "squarederror": 10, "squaredeuclidean": 14, "squash": [12, 35], "src": [], "srtm": 6, "srtm_data_norway_1": 6, "sso": 20, "stabil": [5, 24, 32, 34, 35], "stabl": [0, 4, 5, 6, 9, 16, 20, 22, 24, 29, 30, 31, 32], "stack": [3, 4], "stage": [5, 13, 15, 24, 32, 36], "stagnat": 32, "stai": [0, 2, 4, 5, 11, 29, 30, 32], "stand": [0, 5, 9, 12, 29, 30, 31, 35], "standard": [0, 1, 4, 5, 6, 7, 8, 10, 12, 17, 18, 19, 23, 24, 26, 29, 31, 32, 34, 35, 36], "standardscal": [0, 6, 7, 8, 9, 10, 11, 17, 30, 32], "standpoint": 32, "stanford": [13, 31], "start": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 21, 23, 26, 27, 29, 30, 31, 32, 33, 34, 36], "start_tim": 14, "starter": [], "stat": [6, 33], "state": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 13, 22, 26, 29, 30, 31, 33, 34, 35, 36], "statement": [0, 7, 23, 29, 35], "static": [], "stationari": [31, 32], "statist": [0, 1, 3, 4, 7, 9, 10, 11, 12, 13, 14, 19, 23, 24, 28, 30, 31, 32, 35, 36], "statu": [0, 7, 15, 29, 34, 35], "stavang": 6, "stb": [], "std": [0, 4, 6, 18, 29, 30, 32, 33, 34], "steep": [13, 31, 32], "steepest": 32, "stefan": [], "step": [0, 1, 2, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 23, 24, 29, 31, 35, 36], "step_fn": [7, 12, 34, 35], "step_length": [13, 32], "step_siz": 32, "steps_list": 9, "stereo": 3, "sticki": [], "still": [0, 2, 3, 5, 6, 11, 13, 21, 26, 30, 31, 32, 33, 34, 36], "stimuli": [12, 35, 36], "stk": [28, 29], "stk2100": [28, 29], "stk3155": [15, 24, 25, 27], "stk4021": [28, 29], "stk4051": [28, 29], "stk4155": [25, 27], "stk5000": 28, "stochast": [0, 1, 5, 6, 8, 11, 12, 31, 33, 34, 36], "stock": 4, "stoke": [12, 35, 36], "stone": [0, 7, 34, 35, 36], "stop": [1, 4, 9, 13, 14, 18, 31, 36], "storag": [5, 30, 31], "store": [0, 1, 2, 3, 6, 11, 13, 26, 29, 32], "storehaug": [27, 29], "stori": [], "str": [1, 3, 4], "straight": [0, 6, 8, 13, 29, 31, 33], "straightforward": [0, 2, 3, 5, 6, 8, 9, 10, 13, 23, 29, 30, 31, 33], "strategi": [0, 1, 9, 29], "stratifi": [6, 33, 34], "stream": 32, "strength": [0, 5, 14, 30, 31], "stretch": 11, "strict": [8, 13, 31], "strictli": [8, 13, 31], "stride": [4, 23], "strike": 6, "string": 1, "stroke": [7, 34, 35], "strong": [3, 6, 9, 10, 12, 23, 26, 32, 33, 35, 36], "strongli": [0, 8, 15, 20, 22, 23], "stronli": [], "structur": [0, 1, 2, 3, 6, 9, 10, 12, 22, 29, 33, 34, 35], "stuck": [1, 13, 31, 32], "student": [0, 15, 24, 25, 27, 28, 29], "studi": [0, 3, 4, 5, 6, 7, 8, 11, 12, 13, 22, 24, 28, 29, 30, 31, 32, 34, 36], "studier": 28, "stuff": 21, "style": [7, 9, 20, 23, 29], "stylesheet": [], "st\u00f8land": 27, "sub": [9, 12, 32, 35, 36], "subarrai": [], "subclass": [], "subdivid": [0, 23, 29], "subfield": 0, "subgradi": 32, "subject": [6, 8, 26], "sublicens": [], "sublinear": 32, "submit": 29, "subplot": [0, 1, 3, 4, 6, 7, 8, 9, 10, 14, 21, 29, 33, 34, 35], "subplots_adjust": [8, 26], "subprogram": [23, 29], "subproject": [], "subract": [0, 30], "subroutin": [0, 29], "subscript": 1, "subsequ": [1, 4, 5, 6, 12, 23, 26, 30, 31, 33, 35, 36], "subset": [1, 6, 9, 12, 13, 22, 29, 31, 32, 33, 34, 35, 36], "subspac": [0, 8, 11, 30], "substanti": [9, 10, 32], "substep": 11, "substitut": [3, 6, 12, 16, 23, 33, 34, 35], "subsubset": 9, "subtask": 6, "subtl": 1, "subtract": [0, 4, 5, 6, 11, 13, 18, 19, 23, 24, 26, 30, 32, 33, 34], "subtre": 9, "succeed": [0, 4, 29], "success": [3, 7, 9, 13, 26, 34, 35], "successfulli": [4, 9], "succinctli": 32, "sudo": [0, 22, 24, 29], "suffer": [0, 1, 2, 5, 10, 29, 30, 31], "suffici": [1, 6, 8, 11, 13, 31, 33, 34], "suggest": [1, 13, 24, 28, 31, 32], "suit": [8, 12, 35, 36], "suitabl": [0, 15, 19, 26, 30, 32], "sum": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 21, 23, 26, 29, 30, 31, 32, 35], "sum_": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "sum_i": [0, 2, 5, 6, 8, 13, 19, 24, 30, 31, 32, 33, 34], "sum_j": [6, 18, 32], "sum_ja_": 0, "sum_k": [6, 8, 12, 23, 36], "sum_logist": 13, "sum_m": 3, "sum_n": 3, "sum_nx_": 3, "summar": [5, 6, 9, 33, 34], "summari": [1, 3, 4, 10, 25, 31, 32], "summat": [0, 3, 16, 30, 31], "sunni": 9, "super": [5, 30, 31, 32], "superfici": 3, "superscript": [1, 12, 35, 36], "supervis": [0, 5, 6, 7, 9, 12, 22, 29, 30, 31, 33, 34, 35, 36], "supplement": [7, 24, 34, 35], "suppli": [], "support": [0, 1, 9, 10, 11, 13, 20, 21, 22, 29, 30, 32, 34, 35, 36], "suppos": [0, 5, 6, 7, 8, 10, 11, 12, 13, 23, 29, 30, 31, 32, 33, 34, 35, 36], "suppress": [5, 13, 31], "sure": [0, 1, 4, 6, 16, 20, 21, 24], "surf": 6, "surfac": [0, 6, 29, 32], "surpass": 6, "surpris": [0, 29], "surround": [3, 22], "survei": [0, 5, 6, 29, 30], "svc": [8, 9, 10], "svd": [0, 6, 11, 29, 33], "svdinv": 5, "svm": [8, 9, 10, 11], "svm_clf": [8, 10], "svn": [], "swap": 21, "swath": [5, 30, 31], "switch": 0, "sy": [13, 31, 32], "symbol": [1, 5, 11, 13, 22, 26, 29, 30, 31, 36], "symmeteri": 1, "symmetr": [0, 5, 8, 11, 12, 13, 23, 29, 30, 35, 36], "symmetri": 6, "sympi": [0, 22, 24, 29, 36], "synonim": 26, "syntax": 13, "system": [0, 1, 3, 4, 6, 7, 9, 10, 12, 13, 15, 22, 23, 24, 29, 31, 32, 34, 35, 36], "systemat": [4, 6, 33, 34], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 26, 27, 29, 31, 32, 33, 34, 35, 36], "t0": [3, 6, 13, 32], "t1": [2, 13, 32], "t2": 2, "t3": 2, "t9jjwsmsd1o": 33, "t_": 2, "t_0": [2, 9, 13, 32], "t_1": [13, 32], "t_b": 10, "t_i": [1, 2, 5, 12, 30, 31], "t_j": 12, "t_k": 9, "tabl": [9, 24, 26, 27, 29, 35], "tabul": [0, 29], "tabular": 29, "tackl": 4, "tag": [2, 3, 4, 5, 6, 7, 12, 13, 14, 23, 26, 30, 31, 34, 35, 36], "tagrget": 36, "taht": [0, 29], "tail": 26, "tailor": [2, 8, 11, 29, 36], "taiwan": [0, 29], "take": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 21, 22, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "taken": [0, 1, 3, 6, 10, 13, 21, 23, 33], "tan": 3, "tangent": [1, 4, 12, 13, 31, 35], "tanh": [1, 4, 7, 8, 12, 34, 35], "target": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 19, 21, 29, 30, 31, 32, 33, 34, 35, 36], "target_nam": [9, 21], "task": [0, 1, 3, 6, 9, 11, 12, 14, 21, 24, 29, 32, 33, 34, 35, 36], "tau": [3, 5, 26], "taught": 29, "tax": [], "taylor": [2, 13, 31, 36], "taylornr": [13, 31], "tc": 8, "teach": [15, 25, 29, 33], "team": 1, "teaser": 0, "technic": [0, 5, 6, 13, 24, 31, 32, 33], "techniqu": [0, 1, 8, 10, 13, 22, 26, 28, 29, 30, 32, 33, 34], "technologi": [0, 1], "tell": [0, 4, 6, 10, 11, 13, 16, 26, 32, 33, 34], "temp": 1, "temp1": 1, "temp2": 1, "temperatur": [0, 9, 29], "templat": [18, 20], "temporari": [], "temporarili": 1, "ten": [3, 29, 36], "tend": [3, 5, 6, 8, 9, 10, 12, 13, 14, 30, 32, 33, 34], "tendenc": [0, 29], "tension": [6, 33, 34], "tensor": 3, "tensorflow": [0, 2, 4, 8, 14, 22, 23, 24, 28, 29, 30], "term": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 24, 26, 29, 30, 31, 32, 34, 35], "term1": [5, 6, 11], "term2": [5, 6, 11], "term3": [5, 6, 11], "term4": [5, 6, 11], "termin": [0, 4, 5, 9, 10, 13, 15, 30, 31, 32], "terminarl": 15, "terrain": 6, "terrain1": 6, "test": [3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 19, 20, 21, 23, 24, 26, 29, 31, 32, 33, 34, 35], "test_acc": 3, "test_accuraci": [1, 3], "test_error": 6, "test_imag": [3, 4], "test_ind": [6, 33, 34], "test_input": 4, "test_label": [3, 4], "test_loss": 3, "test_pr": 1, "test_predict": 1, "test_rnn": 4, "test_scor": [7, 10, 35], "test_siz": [0, 1, 3, 5, 6, 10, 15, 17, 30, 31, 32, 33, 34], "test_split": 9, "testerror": [0, 6, 30, 33, 34], "testi": 4, "testpredict": 4, "testx": 4, "tex": [], "text": [0, 1, 2, 4, 5, 8, 9, 11, 13, 15, 18, 20, 23, 24, 26, 28, 30, 31, 32, 33, 34], "textbf": [], "textbook": [16, 24, 30, 31, 33, 34], "textual": 9, "textur": 1, "tf": [1, 3, 4, 13, 14, 31], "th": [0, 1, 2, 5, 6, 7, 9, 12, 13, 14, 23, 24, 26, 29, 30, 32, 33, 34, 35, 36], "than": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 17, 21, 22, 26, 29, 30, 32, 33, 34, 35, 36], "thank": [4, 6, 30, 32], "theano": [1, 22, 29], "thei": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 18, 20, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "them": [0, 1, 3, 4, 6, 8, 9, 10, 11, 12, 13, 18, 21, 23, 24, 29, 30, 35, 36], "theme": [0, 15, 29], "themselv": [0, 24, 26, 29, 32], "thenc": [6, 33, 34], "theorem": [2, 6, 7, 30, 31, 34, 35], "theoret": [0, 4, 10], "theori": [0, 1, 3, 8, 9, 12, 13, 19, 22, 24, 28, 29, 32, 35, 36], "thereaft": [0, 5, 6, 11, 12, 23, 24, 29, 33, 34, 36], "therebi": [0, 5, 7, 11, 24, 29, 30, 31, 34, 35, 36], "therefor": [0, 1, 2, 3, 4, 6, 7, 8, 11, 13, 19, 26, 29, 30, 31, 32, 33, 34, 35], "therein": 11, "thereof": [0, 6, 13, 29, 32, 33], "theta": [0, 1, 4, 5, 6, 7, 13, 16, 24, 26, 29, 30, 31, 32, 34, 35, 36], "theta1": 32, "theta2": 32, "theta_": [0, 1, 6, 7, 13, 29, 30, 31, 32, 34, 35], "theta_0": [0, 5, 6, 7, 16, 29, 30, 31, 32, 34, 35], "theta_0x_": [0, 29, 30], "theta_1": [0, 5, 6, 7, 29, 30, 31, 32, 34, 35], "theta_1x_": [0, 29, 30], "theta_1x_0": [0, 29], "theta_1x_1": [0, 7, 29, 34, 35], "theta_1x_2": [0, 29], "theta_1x_i": [7, 30, 31, 32, 34, 35], "theta_2": [0, 29, 30], "theta_2x_": [0, 29, 30], "theta_2x_0": [0, 29], "theta_2x_1": [0, 29], "theta_2x_2": [0, 7, 29, 34, 35], "theta_2x_i": 30, "theta_3x_i": 30, "theta_4x_i": 30, "theta_closed_form": 18, "theta_closed_formol": 18, "theta_closed_formridg": 18, "theta_gdol": 18, "theta_gdridg": 18, "theta_i": [0, 1, 5, 29, 30, 31], "theta_j": [0, 5, 6, 18, 29, 30, 32], "theta_k": [31, 32], "theta_linreg": [13, 31, 32], "theta_ol": 18, "theta_p": [7, 34, 35], "theta_px_p": [7, 34, 35], "theta_ridg": 18, "theta_t": [13, 32], "theta_tru": 18, "thetaand": 35, "thetaith": 32, "thetaor": 35, "thetavalu": 5, "thetaxor": 35, "thi": [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, 28, 30, 31, 32, 33, 34, 35], "thing": [0, 1, 2, 4, 5, 7, 9, 15, 16, 18, 21, 26, 29, 33, 35], "think": [0, 1, 3, 4, 6, 9, 12, 13, 14, 26, 29, 30, 31, 32, 33, 35], "third": [0, 3, 6, 13, 27, 29, 31, 32], "thirti": [7, 35], "thorughout": 29, "those": [0, 3, 5, 6, 8, 9, 10, 11, 23, 24, 29, 30, 31, 32, 33, 34, 36], "though": [1, 2, 3, 4, 13, 16, 17, 19, 21, 23, 26, 32], "thought": [6, 14, 24, 26, 33, 34], "thousand": [0, 1, 24, 30, 32], "three": [0, 1, 3, 5, 6, 8, 9, 12, 21, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35], "threshold": [1, 3, 9, 10, 11, 12, 13, 32, 34, 35, 36], "through": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 13, 14, 15, 21, 22, 23, 24, 26, 29, 30, 31, 32, 33, 35], "throughout": [0, 4, 5, 14, 15, 22, 23, 26, 29], "throw": [3, 6, 26, 33], "thu": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 27, 29, 30, 31, 32, 33, 34, 35, 36], "thumb": [0, 6, 24, 30], "thursdai": [], "tibshirani": [6, 19, 24, 28, 29, 33, 34], "tick_param": 6, "ticker": [6, 13, 26, 31, 32], "tif": 6, "tight_layout": [1, 7, 35], "tightli": 11, "tild": [0, 5, 6, 7, 11, 19, 24, 26, 29, 30, 31, 32, 33, 34, 36], "till": [0, 4, 7, 8, 9, 10, 12, 23, 29, 30, 34, 35, 36], "time": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 29, 30, 31, 33, 34, 35, 36], "timeit": 4, "timer": 4, "timeseri": [], "tini": [1, 32], "tip": 3, "titl": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 15, 20, 21, 26, 29, 31, 32, 33, 34], "tm": [], "tmp": 13, "tn": [2, 3, 7], "to_categor": [1, 3, 4], "to_categorical_numpi": 1, "to_numer": [0, 6, 29, 33, 34], "todai": 3, "togeth": [0, 3, 6, 8, 11, 13, 22, 29], "toi": 14, "token": [], "told": 13, "toler": [2, 14], "tolist": 4, "tomographi": [12, 35, 36], "too": [0, 2, 4, 5, 6, 9, 11, 13, 17, 18, 26, 28, 30, 31, 32, 33, 34], "took": [8, 29], "tool": [0, 1, 3, 6, 13, 15, 22, 30, 33, 34], "toolbox": 8, "top": [0, 3, 5, 6, 9, 10, 19, 22, 29, 33], "topic": [0, 5, 6, 7, 8, 22, 24, 30, 31, 33, 34, 35, 36], "topolog": [3, 12, 35, 36], "topologi": [1, 12], "torkjellsdatt": [27, 29], "tort": [], "toss": [10, 26], "total": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 23, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "total_loss": 4, "totalclustervari": 14, "totalscatt": 14, "toward": [1, 2, 7, 12, 13, 15, 31, 34, 35], "towardsdatasci": 32, "town": [], "tp": [4, 7], "tpng": 9, "tpu": [13, 22, 29], "tqdm": 6, "tr": [], "track": [3, 13, 14, 15, 23, 30, 31, 32], "tract": [], "tractabl": [0, 29, 30], "trade": [5, 9, 20, 32, 33], "tradeoff": [0, 5, 19, 24, 29, 30, 31], "tradit": [0, 1, 4, 6, 29, 33, 34], "train": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 16, 17, 20, 24, 31, 32, 33, 34, 35], "train_accuraci": [0, 1, 3, 29], "train_dataset": 4, "train_end": [0, 1, 30], "train_error": 6, "train_imag": [3, 4], "train_ind": [6, 33, 34], "train_label": [3, 4], "train_network": 21, "train_pr": 1, "train_siz": [0, 1, 3, 30], "train_step": 4, "train_test_split": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34, 35], "train_test_split_numpi": [0, 1, 30], "trainable_vari": 4, "trained_model": [6, 30, 32], "trainerror": [0, 30], "traini": 4, "training_checkpoint": 4, "training_dataset": 4, "training_gradi": [13, 32], "trainingerror": [6, 33, 34], "trainpredict": 4, "trainscor": 4, "trainx": 4, "trait": [0, 29], "trajectori": [4, 32], "transfer": [9, 29], "transform": [0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 21, 22, 23, 29, 30, 31, 32, 33, 34, 35, 36], "transit": [6, 12, 35, 36], "translat": [1, 4, 6, 10, 29, 30, 32], "transpos": [1, 5, 11, 21, 23, 30, 31], "travers": [0, 5], "travi": [], "treat": [0, 1, 3, 6, 12, 13, 18, 21, 26, 29, 30, 31, 32, 33, 34, 35, 36], "tree": [0, 1, 22, 29], "tree_clf": [9, 10], "tree_clf_": 9, "tree_clf_sr": 9, "tree_reg": 9, "tree_reg1": 9, "tree_reg2": 9, "trend": 26, "treue": 7, "trevor": [19, 24, 28], "tri": [2, 3, 4, 9, 13, 16, 32], "triain": 0, "trial": [0, 2, 4, 6, 13, 26, 29, 31, 32, 33, 34], "triangl": [13, 31], "triangular": 23, "trick": [3, 4, 8, 11, 13, 26, 32], "trickier": 26, "tridiagon": 23, "trillion": 22, "trim": [], "trivial": [0, 1, 5, 11, 26, 29, 31], "troffa": [], "troubl": [0, 8, 12, 15, 21, 30, 32, 36], "truck": 3, "true": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35], "true_beta": 30, "true_fun": [6, 33, 34], "true_theta": [6, 32], "truelabel": [34, 35], "truli": 29, "truncat": 36, "try": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 18, 21, 22, 23, 24, 26, 29, 30, 31, 32, 34, 35, 36], "tr\u00f6ger": [], "tucker": 8, "tuesdai": [27, 29, 34], "tumor": [7, 9, 34, 35], "tumour": [7, 35], "tunabl": 1, "tune": [4, 9, 13, 23, 29, 32], "tupl": 21, "turn": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "tutori": [1, 4], "tv": 2, "tveito": 2, "tvw1zdmznwm": 35, "tweak": [1, 4, 10, 26], "twice": [13, 31], "twist": 11, "two": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33], "tx": [13, 31, 32, 35], "tx_1": [13, 31], "txt": [4, 15, 20, 24], "ty": [13, 31], "type": [0, 1, 3, 6, 8, 10, 13, 21, 23, 26, 30, 31, 32, 33], "typeset": 20, "typic": [0, 1, 2, 3, 4, 5, 7, 9, 10, 12, 13, 15, 16, 20, 26, 29, 30, 31, 32, 33, 34, 35, 36], "typo": 24, "u": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "u_": 23, "u_i": [12, 35], "u_m": 10, "ua": [0, 29], "ubuntu": [0, 22, 24, 29], "uci": 24, "ufunc": [], "uio": [15, 20, 21, 24, 27, 28], "uk": [], "un": 14, "unabl": [15, 21], "unari": [23, 29], "unbalanc": [6, 9, 33, 34], "unbias": [0, 5, 6, 29, 33], "uncent": [6, 30, 32], "uncertainti": [0, 5, 29], "uncertitud": 26, "unchang": [1, 3], "uncom": [], "uncorrel": [10, 26], "undefin": [5, 30, 31], "under": [0, 1, 5, 6, 10, 13, 22, 24, 29, 30, 31, 32, 33], "underdetermin": [0, 29], "underfit": [1, 6, 33, 34], "underflowproblem": [5, 33], "undergo": [5, 21], "undergradu": [25, 27], "underli": [0, 1, 9, 13, 18, 26, 29, 32], "underlin": [], "underscor": [], "underset": [4, 14], "understand": [0, 1, 3, 5, 6, 10, 13, 14, 15, 19, 20, 21, 22, 29, 30, 31, 32, 36], "understood": [8, 13], "underwai": [], "undesir": 8, "undetermin": [5, 8, 33], "undo": 4, "unexpect": [6, 33], "unexpected": 26, "unexplain": 18, "unfair": [6, 30], "unfortun": [1, 8, 9, 10], "unicode_liter": [8, 9], "uniform": [0, 1, 5, 6, 11, 13, 24, 26, 29, 31, 32, 34, 35], "uniformli": [13, 26, 31, 32], "unifrompdf": 26, "unimport": [13, 31], "union": [5, 6, 33, 34], "uniqu": [0, 2, 6, 13, 14, 23, 29, 33, 34, 35], "unique_class": [34, 35], "unique_cluster_label": 14, "unit": [0, 1, 3, 4, 5, 10, 12, 18, 26, 29, 30, 31, 32, 35, 36], "unitari": [5, 6, 23, 30, 31], "unitarili": [23, 29], "uniti": 26, "univari": 26, "univers": [0, 1, 2, 13, 22, 24, 25, 27, 29, 30, 31, 32, 33, 34, 35], "unix": 1, "unknow": [0, 23, 29], "unknown": [0, 1, 3, 4, 5, 6, 8, 10, 13, 19, 23, 24, 29, 30, 31, 32, 33, 34, 36], "unknowwn": 12, "unlabel": 1, "unless": [0, 3, 6, 11, 13, 24, 29, 31, 33, 36], "unlik": [1, 3, 8, 13, 31, 32], "unnecessarili": 9, "unord": 3, "unpickl": [], "unpleas": [], "unpublish": 32, "unravel": 1, "unrol": [3, 11], "unscal": 19, "unseen": [0, 7, 9, 15, 34, 35], "unstabl": 1, "unsupervis": [0, 1, 4, 12, 22, 29, 35, 36], "unsymmetr": [23, 29], "until": [1, 2, 4, 9, 12, 13, 14, 21, 31, 32, 35], "untouch": 0, "unusu": [12, 35, 36], "up": [1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 32, 35], "updat": [1, 2, 10, 12, 13, 14, 15, 18, 19, 21, 33, 34, 35], "uploa": 29, "upload": [15, 20, 22, 24, 28], "upon": [0, 1, 6, 7, 11, 23, 36], "upper": [0, 8, 9, 16, 23, 30], "uppercas": [23, 29], "upsampl": 4, "upscal": 4, "uptad": 36, "upward": [], "url": [29, 30, 35], "us": [4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 17, 20, 21, 23, 26, 28, 33], "usag": [0, 8, 22, 29, 30, 36], "usd": [], "usd10000": [], "use_bia": 4, "usecol": [0, 29], "useless": 1, "user": [0, 1, 2, 4, 6, 7, 15, 22, 23, 24, 29, 30, 34, 35], "usernam": [15, 24], "usetex": 26, "usg": 6, "usr": 26, "usual": [0, 3, 4, 7, 12, 13, 14, 29, 32, 34, 35, 36], "ut": 5, "utf": [], "util": [1, 3, 4, 6, 7, 10, 14, 19, 29, 33, 34], "ux": 23, "v": [2, 4, 5, 6, 11, 13, 15, 22, 30, 31, 33, 34, 35, 36], "v0": 26, "v1": 26, "v2": 26, "v5": [], "v8xr": [35, 36], "v_": 32, "v_0": [11, 32], "v_t": 32, "va": 1, "vahid": 29, "val": 13, "val_accuraci": 3, "val_loss": 4, "vale": 2, "valid": [0, 1, 4, 7, 9, 10, 13, 22, 26, 29, 30, 32, 35], "validation_data": 3, "validation_split": 4, "valu": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 24, 29, 32, 35, 36], "valuat": 9, "valueerror": [], "valy": 4, "van": [0, 19, 24, 29, 30, 31, 32], "vandenbergh": [8, 13, 31], "vandermond": [0, 29], "vanilla": [0, 6, 11, 14, 30, 32], "vanish": [1, 4, 13, 26, 31, 36], "var": [5, 6, 10, 11, 19, 24, 26, 30, 33, 34], "var_x": 26, "varabl": 8, "varepsilon": [5, 6, 19, 33], "varepsilon_": [5, 6, 33], "varepsilon_i": [5, 6, 33], "vari": [0, 1, 3, 5, 6, 10, 21, 29, 33, 34, 36], "variabl": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 13, 14, 21, 23, 29, 30, 32, 33, 34, 35, 36], "varianc": [0, 1, 5, 7, 9, 10, 11, 13, 14, 18, 20, 22, 23, 26, 29, 30, 31, 32, 35], "variance_i": [5, 11, 30], "variance_x": [5, 11, 30], "variant": [0, 1, 6, 8, 12, 13, 29, 30, 31, 32, 35, 36], "variat": [3, 4, 11, 29], "varieti": [0, 3, 12, 22, 24, 29, 35, 36], "variou": [1, 3, 5, 6, 7, 8, 9, 11, 12, 13, 16, 19, 20, 22, 23, 24, 26, 29, 30, 31, 32, 35, 36], "varydimens": 4, "vast": 32, "vastli": 3, "vaue": 1, "vault": 0, "vdot": [2, 13, 31, 32], "ve": [24, 32], "vec": [6, 33], "vector": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 17, 18, 21, 22, 31, 32, 33, 34, 36], "vector_mean": 14, "ventur": [0, 8, 22, 29], "venv": 15, "verbos": [1, 3, 4, 34, 35], "veri": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 21, 24, 26, 28, 29, 30, 31, 32, 33, 34], "verifi": [3, 11, 23, 29], "versatil": [8, 29], "versicolor": [8, 9], "version": [0, 3, 10, 13, 14, 15, 21, 22, 23, 24, 26, 29], "versu": [1, 32], "vert": [0, 1, 5, 6, 7, 8, 9, 11, 13, 16, 17, 29, 30, 31, 32, 33, 34, 35, 36], "vert_1": [5, 6, 30, 31, 32], "vert_2": [5, 6, 11, 17, 30, 31, 32, 33], "via": [0, 5, 6, 7, 8, 9, 10, 11, 12, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "vidal": 11, "video": [0, 1, 12, 22, 25, 27, 29, 30, 31], "view": [1, 3, 5, 6, 12, 13, 26, 28, 29, 31, 32, 33, 35], "violat": 8, "virginica": 9, "viridi": [0, 1, 2, 3, 29], "virtanen": [], "virtual": [1, 32], "viscos": 13, "viscou": 13, "visibl": 15, "vision": [0, 3], "visit": 32, "visual": [0, 3, 11, 12, 18, 22, 29, 30, 35, 36], "visualis": 1, "visualstudio": [15, 16, 19], "viz": [6, 8, 26], "vmap": 13, "vmax": [1, 6], "vmh0zpt0tli": 32, "vmin": [1, 6], "voic": 3, "volatil": 32, "volum": [0, 3, 29], "von": 36, "vote": [10, 29], "voting_clf": 10, "votingclassifi": 10, "votingsimpl": 10, "vscode": 21, "vstack": [5, 11, 23, 26, 29, 30, 34, 35], "vt": [5, 30, 31], "w": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 21, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "w1": [8, 21], "w2": [8, 11, 21], "w3": 8, "w_": [1, 12, 35, 36], "w_0": 36, "w_1": [8, 23, 36], "w_1a_0": 36, "w_1x": 36, "w_1x_": 8, "w_1x_1": 8, "w_2": [8, 23, 36], "w_2a_1": 36, "w_2x_": 8, "w_2x_2": 8, "w_3": 23, "w_4": 23, "w_g": 21, "w_hidden": 2, "w_i": [1, 2, 10, 36], "w_ix_i": [12, 35, 36], "w_j": 23, "w_m": 23, "w_output": 2, "w_px_": 8, "w_px_p": 8, "w_t": [], "wa": [1, 3, 4, 5, 6, 7, 10, 11, 12, 14, 17, 19, 21, 23, 29, 30, 32, 33, 34, 35, 36], "wai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 23, 26, 29, 30, 31, 32, 35], "walk": 9, "walker": 26, "wall": 32, "walt": [], "wang": [0, 29], "want": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 26, 29, 30, 31, 32, 33, 34, 36], "warn": 4, "warrant": [6, 33, 34], "warranti": [], "wast": [3, 32], "watch": [22, 31, 32, 33, 35, 36], "wave": 3, "wavelet": 8, "wcag": [], "we": [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, 26, 27, 28, 30, 31, 33, 34, 35], "weak": [9, 10, 14], "weaker": 32, "weather": [1, 12, 35, 36], "web": [22, 25, 27, 29], "webpag": 29, "websit": [6, 23, 24, 25, 29], "wedg": [8, 26, 36], "wednesdai": [27, 29, 34], "wee": 11, "week": [0, 5, 6, 7, 24, 25, 27], "weekli": [15, 16, 22, 24, 25, 27, 28, 29, 35], "weierstrass": 36, "weight": [1, 2, 3, 6, 7, 9, 10, 12, 13, 18, 21, 26, 32, 34, 35, 36], "weigth": 2, "welchlab": [35, 36], "welcom": [8, 15, 22], "well": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36], "went": 8, "were": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 26, 29, 32, 33, 34, 35, 36], "wessel": [0, 19, 24, 29, 30, 31, 32], "wg_nf1awssi": 36, "what": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 26, 32, 35, 36], "whatev": [3, 21], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 24, 26, 29, 30, 31, 33, 34, 35, 36], "whenev": [13, 15, 26, 32, 36], "where": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36], "wherea": [6, 26, 32, 33, 34], "wherefrom": 24, "wherein": [1, 12, 35, 36], "whether": [0, 3, 5, 7, 9, 24, 26, 29, 34, 35], "which": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 36], "whichev": [1, 3], "while": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 19, 20, 21, 26, 29, 30, 31, 32, 33, 34, 35, 36], "white": 9, "whiteboad": 32, "whiteboard": [30, 31, 32, 33, 34, 35, 36], "who": [0, 15], "whole": [1, 3, 4, 5, 9, 11, 13, 21, 32], "whom": [], "whose": [0, 6, 10, 26, 30, 33, 34], "whow": [11, 30], "why": [0, 1, 3, 6, 13, 15, 16, 17, 19, 21, 24, 30, 31], "wide": [0, 1, 3, 6, 7, 12, 22, 23, 24, 29, 33, 34, 35, 36], "widehat": [6, 33], "width": [0, 3, 8, 9, 21, 29], "wieringen": [0, 19, 24, 29, 30, 31, 32], "wiki": 24, "wikipedia": 24, "win": [10, 32], "wind": 9, "window": [], "wing": [27, 29], "winther": 2, "wiothout": 6, "wiscons": 7, "wisconsin": [10, 35], "wisdom": [6, 30, 32], "wise": [1, 5, 12, 13, 21, 30, 31, 32, 35], "wish": [0, 2, 5, 7, 8, 11, 13, 14, 18, 23, 24, 29, 30, 31, 32, 34, 35, 36], "with_std": [0, 30], "wither": 6, "within": [0, 2, 3, 4, 7, 9, 12, 13, 14, 26, 28, 29, 31, 34, 35], "withinclust": 14, "without": [0, 1, 5, 6, 8, 9, 11, 12, 13, 15, 18, 24, 29, 30, 31, 32, 33, 34, 35, 36], "wo5dmep_bbi": [35, 36], "won": [0, 15, 29, 36], "wonder": 8, "word": [0, 1, 3, 4, 5, 6, 7, 14, 19, 24, 26, 29, 30, 31, 32], "work": [0, 1, 4, 6, 7, 8, 9, 13, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36], "workabl": 32, "workaround": [], "workhors": 32, "workload": 32, "workshop": 29, "world": [0, 8, 16, 30], "worldwid": [0, 29], "worri": 15, "wors": [0, 1, 3, 4, 6, 29, 32, 33, 34], "worth": [9, 19, 21], "worthi": 24, "would": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 20, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "wouldn": [], "wrap": [6, 23, 29], "wrapper": 21, "write": [0, 1, 2, 3, 5, 6, 7, 8, 12, 13, 15, 16, 18, 21, 23, 29, 30, 32, 33, 34, 35, 36], "writer": [34, 35], "writerow": [34, 35], "written": [0, 2, 3, 5, 11, 12, 13, 16, 22, 23, 24, 26, 29, 30, 31, 32, 36], "wrong": [1, 8, 15, 19], "wrongli": 10, "wrote": [5, 11, 30], "wrt": [10, 13, 21, 32, 36], "wth": [10, 13, 32], "wurstemberg": 36, "www": [20, 22, 23, 24, 28, 29, 31, 32, 33, 35, 36], "wx_1": 8, "x": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 26, 29, 31, 32, 33, 34, 35, 36], "x0": [8, 34, 35], "x1": [4, 8, 9, 10, 13, 34, 35], "x1_exampl": 8, "x1d": 8, "x2": [8, 9, 10, 13], "x2d": [8, 11], "x2d_train": 11, "x2dsl": 11, "x3": 8, "x_": [0, 2, 3, 5, 6, 8, 10, 11, 13, 14, 23, 26, 29, 30, 31, 32, 33, 34, 36], "x_0": [0, 5, 11, 18, 23, 29, 30, 33, 36], "x_1": [0, 2, 5, 6, 7, 8, 9, 10, 11, 13, 18, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "x_2": [0, 2, 5, 6, 7, 8, 9, 10, 11, 13, 23, 26, 29, 30, 31, 33, 34, 35, 36], "x_3": [8, 23, 26, 36], "x_4": [23, 36], "x_5": 36, "x_6": 18, "x_bin": [34, 35], "x_center": 11, "x_data": 1, "x_data_ful": 1, "x_hidden": 2, "x_i": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 23, 26, 29, 30, 31, 32, 33, 34, 35, 36], "x_input": 2, "x_ix_": [0, 29], "x_iy_i": 8, "x_j": [0, 2, 8, 9, 12, 16, 26, 30, 32, 35, 36], "x_jy_j": 8, "x_k": [12, 14, 23, 26, 30, 35], "x_l": [26, 36], "x_m": [6, 12, 23, 26, 33, 35], "x_mean": [18, 32], "x_multi": [34, 35], "x_n": [0, 2, 3, 6, 8, 11, 12, 13, 23, 26, 29, 31, 33, 35, 36], "x_new": [9, 10], "x_norm": [18, 32], "x_offset": [6, 30, 32], "x_output": 2, "x_p": [3, 7, 9, 34, 35], "x_poli": 9, "x_poly10": 9, "x_pred": 4, "x_prev": 2, "x_reduc": 11, "x_sampl": [], "x_scale": 8, "x_small": 13, "x_std": [18, 32], "x_t": 32, "x_test": [0, 1, 3, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 30, 31, 32, 33, 34, 35], "x_test_": 17, "x_test_own": 6, "x_test_scal": [0, 6, 7, 9, 10, 11, 30, 32], "x_tot": 4, "x_train": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34, 35], "x_train_": 17, "x_train_mean": [6, 30, 32], "x_train_own": 6, "x_train_r": 19, "x_train_scal": [0, 6, 7, 9, 10, 11, 30, 32], "x_val": 1, "xarrai": [22, 29], "xavier": 1, "xbnew": [13, 31, 32], "xcode": [0, 22, 24, 29], "xdclassiffierconfus": 10, "xdclassiffierroc": 10, "xg_clf": 10, "xgb": 10, "xgbclassifi": 10, "xgboost": 9, "xgboot": 10, "xgbregressor": 10, "xgparam": 10, "xgtree": 10, "xi": [8, 13, 32, 34, 35], "xi_": 8, "xi_1": 8, "xi_i": 8, "xinv": 35, "xk": 8, "xla": [13, 22, 29], "xlabel": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 21, 26, 29, 30, 31, 32, 33, 34], "xlim": [6, 10, 33, 34], "xm": 9, "xmesh": 13, "xnew": [0, 13, 29, 31, 32], "xp": 26, "xpanda": [0, 30], "xpd": [5, 11, 30], "xplot": 0, "xscale": [0, 30], "xsr": 9, "xt_x": [13, 31, 32], "xtest": [6, 33, 34], "xtick": [3, 6, 8, 9, 33, 34], "xtrain": [6, 33, 34], "xu": [0, 29], "xx": [0, 23, 29], "xy": [0, 6, 8, 23, 29], "xytext": 8, "xyz": [], "xz": [23, 29], "y": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "y1": 4, "y2": 4, "y3": 4, "y_": [0, 1, 5, 6, 10, 11, 23, 29, 30, 33, 34], "y_0": [0, 5, 11, 23, 29, 30, 33], "y_1": [0, 5, 8, 9, 11, 13, 23, 29, 30, 31, 32, 33], "y_1y_1": 8, "y_1y_1k": 8, "y_1y_2": 8, "y_1y_2k": 8, "y_1y_n": 8, "y_1y_nk": 8, "y_2": [0, 5, 8, 9, 11, 23, 29, 30], "y_2y_1": 8, "y_2y_1k": 8, "y_2y_2": 8, "y_2y_2k": 8, "y_3": [0, 9, 23], "y_4": 23, "y_bin": [34, 35], "y_binari": [34, 35], "y_center": [18, 32], "y_data": [0, 1, 5, 6, 29, 30, 31, 32], "y_data_ful": 1, "y_decis": 8, "y_fit": [0, 30], "y_i": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 19, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "y_if_": 10, "y_indic": [34, 35], "y_ix_": [0, 29], "y_ix_i": [7, 8, 13, 30, 31, 32, 34, 35], "y_iy_jk": 8, "y_j": [6, 8, 12, 24, 33, 34, 35, 36], "y_k": [12, 35], "y_m": 23, "y_mean": [18, 32], "y_model": [0, 4, 5, 6, 29, 30, 31, 32], "y_multi": [34, 35], "y_n": [8, 13, 31, 32], "y_ny_1": 8, "y_ny_1k": 8, "y_ny_2": 8, "y_ny_2k": 8, "y_ny_n": 8, "y_ny_nk": 8, "y_offset": [6, 17, 30, 32], "y_onehot": [34, 35], "y_plot": 9, "y_pred": [0, 1, 4, 6, 7, 8, 9, 10, 30, 32, 33, 34, 35], "y_pred1": 9, "y_pred2": 9, "y_pred_bin": [34, 35], "y_pred_multi": [34, 35], "y_pred_rf": 10, "y_pred_tre": 10, "y_prob": [34, 35], "y_prob_bin": [34, 35], "y_prob_multi": [34, 35], "y_proba": [7, 10, 35], "y_sampl": [], "y_scaler": [6, 30, 32], "y_test": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 30, 31, 32, 33, 34, 35], "y_test_onehot": 1, "y_test_predict": [], "y_tot": 4, "y_train": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 15, 16, 17, 19, 29, 30, 31, 32, 33, 34, 35], "y_train_mean": [6, 30, 32], "y_train_onehot": 1, "y_train_predict": [], "y_train_r": 19, "y_train_scal": [6, 30, 32], "y_true": [34, 35], "y_val": 1, "yand": 35, "ye": [3, 6, 7, 33, 34, 35], "year": [0, 22, 29], "yet": [0, 1, 6, 8, 11, 13, 20, 21, 29, 34, 36], "yi": [13, 32, 34, 35], "yield": [0, 2, 5, 6, 8, 10, 12, 13, 14, 23, 26, 29, 31, 32, 33, 35, 36], "yk": 8, "ylabel": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 21, 26, 29, 30, 31, 32, 33, 34], "ylim": [3, 6, 33, 34], "ym": 9, "ymesh": 13, "yn": 0, "yo": [8, 9, 10], "yor": 35, "yoshiki": [], "yoshua": [1, 28], "you": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36], "young": 0, "your": [1, 2, 4, 5, 6, 8, 11, 13, 15, 17, 19, 20, 21, 22, 23, 29, 31, 32, 33, 34, 35, 36], "your_model_object": 16, "yourself": [11, 13, 29, 31], "youtu": [30, 31, 33, 35], "youtub": [22, 31, 32, 33, 35, 36], "ypred": [6, 33, 34], "ypredict": [0, 13, 29, 30, 31, 32], "ypredict2": [13, 31, 32], "ypredictlasso": [5, 31], "ypredictol": [0, 5, 31], "ypredictown": [6, 30, 32], "ypredictownridg": [6, 30, 31, 32], "ypredictridg": [0, 5, 6, 30, 31, 32], "ypredictskl": [6, 30, 32], "ytest": [6, 33, 34], "ytick": [3, 6, 8, 9, 33, 34], "ytild": [0, 6, 29, 30, 33, 34], "ytildelasso": [5, 31], "ytildenp": [0, 29, 30], "ytildeol": [0, 5, 31], "ytildeownridg": [6, 30, 31, 32], "ytilderidg": [5, 6, 30, 31, 32], "ytrain": [6, 33, 34], "yuxi": 29, "yx": [23, 29], "yxor": 35, "yy": [23, 29], "yz": [23, 29], "z": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 21, 23, 26, 29, 30, 33, 34, 35, 36], "z1": 21, "z2": 21, "z_": [1, 2, 12, 23, 29, 36], "z_0": [23, 29, 36], "z_1": [23, 29, 36], "z_2": [23, 29, 36], "z_c": 1, "z_h": 1, "z_hidden": 2, "z_i": [1, 12, 35], "z_j": [1, 12], "z_k": [12, 30, 36], "z_m": 1, "z_mod": 9, "z_o": 1, "z_output": 2, "za": [], "zaman": 26, "zaxi": 6, "zero": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 21, 23, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "zeros_lik": [4, 34, 35], "zeroth": 30, "zfill": 4, "zip": [4, 6, 21, 34, 35], "zm_h": [0, 29], "zn": [], "zone": [], "zoom": 29, "zscout": [], "zx": [23, 29], "zy": [23, 29], "zz": [23, 29], "\u00f8yvind": [6, 30, 32]}, "titles": ["3. Linear Regression", "14. Building a Feed Forward Neural Network", "15. Solving Differential Equations with Deep Learning", "16. Convolutional Neural Networks", "17. Recurrent neural networks: Overarching view", "4. Ridge and Lasso Regression", "5. Resampling Methods", "6. Logistic Regression", "8. Support Vector Machines, overarching aims", "9. Decision trees, overarching aims", "10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods", "11. Basic ideas of the Principal Component Analysis (PCA)", "13. Neural networks", "7. Optimization, the central part of any Machine Learning algortithm", "12. Clustering and Unsupervised Learning", "Exercises week 34", "Exercises week 35", "Exercises week 36", "Exercises week 37", "Exercises week 38", "Exercises week 39", "Exercises week 41", "Applied Data Analysis and Machine Learning", "2. Linear Algebra, Handling of Arrays and more Python Features", "Project 1 on Machine Learning, deadline October 6 (midnight), 2025", "Course setting", "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: Linear Regression and Gradient descent", "Week 37: Gradient descent methods", "Week 38: Statistical analysis, bias-variance tradeoff and resampling methods", "Week 39: Resampling methods and logistic regression", "Week 40: Gradient descent methods (continued) and start Neural networks", "Week 41 Neural networks and constructing a neural network code"], "titleterms": {"": [8, 10, 31, 32, 33, 34, 35], "0": [], "04": [], "05": [], "06": [], "07": [], "1": [0, 15, 16, 17, 18, 19, 20, 21, 24, 30, 36], "10": 36, "11": [], "15": [19, 33], "19": 19, "1a": 18, "2": [0, 15, 16, 17, 18, 19, 20, 21, 29, 30, 31, 36], "20": [], "2017": [], "2018": [], "2019": [], "2023": 27, "2025": [24, 34, 35, 36], "22": 34, "26": 34, "27": [], "29": 35, "2a": [], "2b": [], "3": [0, 15, 16, 17, 18, 19, 20, 21, 30, 36], "34": [15, 29], "35": [16, 30], "36": [17, 31], "37": [18, 32], "38": [19, 33], "39": [20, 34], "3a": 18, "3b": 18, "4": [0, 15, 16, 17, 18, 19, 20, 21, 30], "40": 35, "41": [21, 36], "4a": 18, "4b": 18, "5": [0, 16, 18, 19, 20, 21], "6": [21, 24, 36], "7": 21, "8": 32, "A": [0, 1, 4, 8, 9, 29, 33, 34, 35], "AND": 35, "And": [29, 30, 32], "But": 32, "In": [27, 36], "Ising": 6, "OR": 35, "The": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 15, 22, 29, 30, 31, 32, 33, 34, 35, 36], "To": 29, "With": [4, 31], "a11i": [], "about": [29, 30, 31], "abov": [31, 36], "abstract": 20, "accuraci": 32, "across": 32, "activ": [1, 12, 21, 35, 36], "ad": [0, 6, 20, 24, 29, 30, 35, 36], "adaboost": 10, "adagrad": [13, 32], "adam": [13, 32], "adapt": [10, 32], "add": [], "adjust": 1, "advanc": 24, "adversari": 4, "again": [3, 9], "ai": [24, 29], "aim": [8, 9, 21, 29], "aka": 29, "al": 32, "algebra": [23, 29], "algorithm": [9, 10, 11, 12, 29, 30, 31, 32, 36], "algortithm": [13, 31, 34, 35], "all": [8, 36], "an": [0, 4, 10, 15, 20, 29, 36], "analys": [5, 30, 31], "analysi": [0, 5, 6, 11, 22, 24, 26, 29, 30, 31, 33, 34, 36], "analyt": [0, 16, 18], "analyz": 36, "ani": [13, 31, 34, 35], "anoth": [9, 31, 33, 34], "api": [], "appli": 22, "approach": [0, 8, 14, 29, 32, 33, 34], "approxim": [12, 36], "architectur": 1, "arrai": [23, 29], "artifici": [35, 36], "assist": 27, "assumpt": 33, "august": [], "author": [], "autocorrel": 26, "autograd": [2, 13, 32], "automat": [13, 32, 36], "avail": 20, "avali": [], "averag": 32, "b": 24, "back": [1, 11, 12, 30, 31, 36], "background": [22, 24, 33], "bag": 10, "base": [13, 32, 33], "basic": [0, 5, 7, 9, 10, 11, 23, 30, 31, 34, 35, 36], "batch": [1, 32], "bay": 5, "befor": 11, "beta": [], "better": [8, 35], "bia": [6, 19, 24, 32, 33, 34], "bias": 36, "binari": 1, "bind": 29, "bird": 10, "blind": [], "block": [], "boldsymbol": [18, 30, 33], "book": [19, 36], "boost": 10, "bootstrap": [6, 10, 33, 34], "boston": [], "breast": 1, "brief": [29, 33, 34], "bring": [12, 36], "browser": [], "bsd": [], "build": [1, 3, 9], "c": [24, 29], "calcul": [18, 30, 31], "can": [29, 32, 33, 34, 36], "cancer": [1, 7, 9, 11], "cart": 9, "case": [8, 10, 26, 30, 31, 32, 34, 35], "cdn": [], "cell": [], "central": [13, 22, 26, 31, 33, 34, 35], "chain": [12, 36], "challeng": 32, "chang": 10, "changelog": [], "channel": 29, "chi": [0, 29], "choic": 17, "choos": [1, 32], "cifar01": 3, "citat": [], "class": [34, 35, 36], "classic": 11, "classif": [1, 9, 10, 34, 35], "classifi": [8, 34], "claus": [], "clip": 1, "cluster": 14, "cnn": 3, "code": [1, 2, 5, 9, 11, 12, 13, 14, 15, 16, 20, 24, 29, 30, 31, 32, 33, 34, 35, 36], "collect": [1, 3], "color": [], "colorblind": [], "combin": 32, "commun": 29, "compact": [34, 35, 36], "compar": [2, 10, 16], "comparison": [31, 32], "compet": 32, "compil": [], "complet": [30, 36], "complex": [0, 6, 24, 30], "complic": [6, 36], "compon": 11, "comput": [9, 19, 32], "computation": [33, 34], "computerlab": 29, "con": [9, 32], "concept": 26, "condit": 31, "confid": 33, "conjug": 13, "consider": 36, "constraint": 32, "construct": 36, "contain": [], "content": [], "continu": 35, "contn": 29, "contrast": [], "contributor": [], "converg": 32, "convex": [8, 13, 31, 32], "convolut": [3, 12, 35, 36], "copyright": [], "core": [], "correct": 32, "correl": [11, 30, 35], "correspond": [], "cost": [1, 10, 30, 31, 32, 33, 34, 35, 36], "count": 36, "cours": [22, 25, 28, 29], "covari": [5, 11, 26, 30], "cover": 29, "creat": [16, 20], "creator": [], "cross": [6, 24, 33, 34, 35], "custom": 21, "cython": 29, "d": 24, "dark": [], "data": [0, 1, 3, 6, 7, 9, 11, 15, 17, 18, 21, 22, 26, 29, 30, 34, 35, 36], "dataset": [1, 3, 18], "david": 29, "deadlin": [24, 29], "deadllin": 27, "decai": [2, 32], "decis": [9, 10], "decomposit": [5, 11, 23, 30, 31], "deeep": [], "deep": [1, 2, 29, 32, 34, 35, 36], "defin": [1, 29, 36], "definit": [19, 36], "deflist": [], "degre": [0, 17, 30], "deliver": [15, 16, 19, 20, 24], "deliveri": 24, "delta": 33, "dens": 0, "depend": [], "deriv": [5, 12, 16, 17, 19, 30, 31, 32, 33, 36], "descent": [2, 10, 13, 18, 24, 31, 32, 35], "design": 30, "detail": [3, 29], "develop": 1, "diagon": 11, "differ": [8, 32], "differenti": [2, 13, 32, 36], "diffus": 2, "dimens": 32, "dimension": [2, 3, 8, 18], "direct": [], "disadvantag": 9, "discret": 26, "discrimin": 29, "discuss": 35, "distribut": [5, 26, 33], "do": [1, 32, 35], "document": 20, "doe": [30, 31, 35], "domain": 26, "down": 1, "dropout": 1, "e": 24, "each": [21, 34], "economi": [30, 31], "electron": 24, "element": [0, 26, 29], "elimin": 23, "empir": 32, "energi": 29, "ensembl": 10, "entri": 36, "entropi": [9, 34, 35], "environ": [0, 15], "equat": [0, 2, 12, 30, 31, 34, 35, 36], "error": [0, 10, 29, 30, 31, 33, 34], "essenti": 29, "estim": 33, "et": 32, "etc": 29, "euler": 2, "evalu": [1, 36], "evid": 32, "exampl": [1, 2, 3, 4, 6, 7, 8, 9, 10, 29, 30, 31, 32, 33, 34, 35, 36], "exercis": [0, 6, 15, 16, 17, 18, 19, 20, 21, 30, 36], "expect": [19, 26, 33], "expens": [33, 34], "experi": 26, "explicit": 36, "explor": 0, "exponenti": [2, 32], "express": [16, 17, 19, 30, 34, 35, 36], "extend": [31, 34, 35, 36], "extrapol": 4, "extrem": [10, 29], "ey": 10, "f": 24, "fall": 27, "famili": [1, 29], "famou": 23, "fantast": [30, 31], "faq": [], "featur": [9, 16, 23, 30], "februari": [], "feed": [1, 12, 35, 36], "figur": 20, "file": [], "fill": [], "final": [12, 30, 32, 36], "find": [16, 18, 33], "fine": 1, "first": [4, 12, 29, 31, 36], "fit": [0, 10, 15, 16, 29, 31], "fix": [30, 31, 32], "float": 36, "fold": [33, 34], "forc": 3, "forest": 10, "form": 18, "format": [24, 29], "formula": 18, "forward": [1, 2, 12, 35, 36], "foster": 29, "fourier": 3, "frank": 6, "freedom": [0, 17, 30], "frequent": [30, 32], "frequentist": [0, 29], "from": [5, 10, 12, 29, 30, 31, 32, 33, 34, 35, 36], "full": [2, 32], "function": [0, 1, 6, 7, 8, 10, 11, 12, 13, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36], "further": [3, 5, 30, 31], "g": 24, "gan": 4, "gate": 35, "gaussian": 23, "gd": [13, 32], "gener": [4, 9, 29, 34, 35, 36], "geometr": [11, 31], "get": [20, 36], "gini": 9, "github": 15, "goal": [15, 16, 17, 18, 19, 20], "good": [0, 20, 29], "goodfellow": 32, "gotthard": [], "grade": [27, 29], "gradient": [1, 2, 10, 13, 18, 24, 31, 32, 35, 36], "greativ": [], "group": 34, "growth": 2, "guid": [], "h": 24, "ha": 22, "hand": 36, "handl": [23, 29], "happen": [33, 34], "hessian": [30, 31, 32], "hidden": [2, 36], "high": [], "histogram": 33, "histori": [], "hous": [], "how": 16, "hyperbol": 35, "hyperparamet": [1, 17], "hyperplan": 8, "i": [0, 1, 29], "id3": 9, "idea": 11, "ideal": 31, "ident": 33, "identifi": 33, "ii": 29, "iid": 33, "illustr": [31, 35, 36], "implement": [1, 16, 17, 18], "implic": [5, 30, 31], "import": [5, 23, 29, 30, 31, 36], "improv": [1, 32], "includ": [13, 24, 32, 34, 35, 36], "incorpor": [], "increment": 11, "independ": 33, "index": 9, "inform": 27, "ingredi": 36, "input": [2, 21, 36], "instal": [22, 24, 29], "instructor": 27, "intermedi": 36, "interpret": [5, 11, 19, 29, 30, 31, 33], "interv": 33, "introduc": [11, 13, 30], "introduct": [0, 6, 20, 22, 23, 24, 29, 35, 36], "invers": [5, 23], "invert": [30, 31], "ipython": [], "iter": 10, "its": 30, "j": [], "jacobian": 30, "januari": [], "jax": 13, "job": 35, "julia": 29, "jungl": 10, "jupyt": [], "k": [33, 34, 36], "kera": [1, 3], "kernel": [8, 11], "l": 36, "lab": [31, 32, 33, 34, 35, 36], "lagrangian": 8, "lasso": [5, 6, 24, 30, 31], "last": [30, 32, 35, 36], "later": [5, 30, 31], "layer": [1, 2, 3, 12, 21, 36], "layout": 36, "learn": [0, 1, 2, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 29, 30, 31, 32, 33, 34, 35, 36], "least": [5, 6, 16, 19, 24, 29, 30, 31, 32], "lectur": [29, 31, 32, 33, 34, 35, 36], "level": 10, "librari": [22, 29], "licens": [], "light": [], "likelihood": [7, 33, 34, 35], "limit": [1, 13, 26, 31, 32, 33], "linear": [0, 8, 13, 15, 23, 29, 30, 31, 34], "link": [5, 11, 28, 30, 33], "list": 36, "literatur": 24, "logist": [7, 29, 34, 35], "loss": [30, 31, 32], "lu": 23, "ma": [], "machin": [0, 8, 13, 22, 24, 29, 31, 34, 35], "made": 33, "main": [26, 29], "make": [0, 9, 10, 20, 30], "mani": [10, 12], "markdown": [], "mask": [], "maskedarrai": [], "mass": 29, "materi": [24, 29, 30, 31, 32, 33, 34, 36], "math": [5, 30, 31], "mathemat": [3, 5, 8, 30, 31, 35, 36], "matplotlib": [], "matric": [5, 23, 29], "matrix": [1, 5, 11, 12, 16, 23, 29, 30, 31, 32, 35], "matter": 0, "max": 30, "maximum": [33, 34, 35], "me": [], "mean": [0, 30, 31, 34], "measur": 35, "meet": [5, 10, 26, 29, 30], "memori": 32, "mercer": 8, "metadata": [], "method": [6, 9, 10, 13, 24, 29, 31, 32, 33, 34, 35], "metric": 19, "midnight": 24, "min": 30, "mini": 32, "minibatch": 32, "minim": [29, 34, 35], "mit": [], "ml": 29, "mle": 33, "mlp": 12, "mnist": [3, 4], "mode": 36, "model": [0, 1, 4, 6, 12, 15, 17, 29, 35, 36], "moment": 32, "momentum": [13, 24, 32], "mondai": [31, 32, 33, 35, 36], "moon": [8, 9], "more": [3, 6, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36], "motiv": 32, "move": 32, "multi": [35, 36], "multilay": [12, 35, 36], "multipl": [1, 3, 17, 21], "multipli": 8, "multivari": 36, "myst": [], "ncsa": [], "need": [24, 29], "network": [1, 2, 3, 4, 7, 12, 29, 32, 34, 35, 36], "neural": [1, 2, 3, 4, 7, 12, 29, 32, 35, 36], "neuron": [35, 36], "new": [4, 18, 33, 36], "newton": [31, 32, 34, 35], "nn": 36, "node": 36, "non": [8, 32], "none": 32, "normal": [0, 1, 33], "notat": [12, 35], "note": [24, 30, 31], "notebook": [], "novemb": [], "now": [1, 9, 13, 31, 32, 33, 34], "nuclear": [0, 29], "nueral": 34, "numba": 29, "number": [0, 2, 26, 30, 32, 36], "numer": [2, 24, 26], "numpi": [23, 29], "object": 3, "observ": 36, "obtain": 11, "octob": [24, 36], "od": 2, "off": [6, 19, 24], "ol": [5, 6, 15, 16, 18, 24, 31, 33], "onc": 21, "one": [2, 12, 18, 31, 36], "ones": 35, "open": [], "oper": [23, 36], "optim": [1, 8, 13, 18, 22, 29, 30, 31, 32, 34, 35, 36], "option": 21, "order": [13, 18, 32], "ordinari": [5, 6, 16, 19, 24, 29, 30, 31, 32], "organ": [0, 29], "oslo": 28, "other": [4, 9, 11, 12, 23, 24, 29, 35, 36], "ouput": 36, "our": [0, 4, 5, 11, 13, 24, 29, 30, 31, 34, 35], "outcom": [22, 29], "output": [2, 36], "over": 36, "overarch": [0, 4, 8, 9, 21, 29, 30, 36], "overview": [10, 29, 32], "own": [0, 10, 11, 24, 29, 30], "packag": [23, 29], "panda": [29, 30], "parallel": 36, "paramet": [29, 30, 34, 35, 36], "paramt": 18, "part": [13, 22, 24, 31, 34, 35, 36], "partial": 2, "pass": 1, "pca": 11, "pdf": 26, "percepetron": 36, "perceptron": [12, 35, 36], "perform": [1, 9], "period": 3, "perspect": 1, "pitaya": [], "plan": [30, 31, 32, 33, 34, 36], "plethora": 29, "plot": [33, 34], "point": [4, 36], "poisson": 2, "polici": [], "polynomi": [3, 16, 18, 31], "popul": 2, "popular": 29, "practic": [13, 27, 29, 32], "pre": [1, 3], "preambl": 24, "predict": [4, 21], "predictor": [34, 35], "preprocess": [30, 32], "prerequisit": [3, 22, 29], "present": 20, "princip": 11, "principl": 3, "pro": [9, 32], "probabl": [5, 26, 33], "problem": [1, 2, 13, 29, 30, 31, 32, 34, 35, 36], "procedur": [9, 29], "process": [1, 3, 21], "program": [2, 13, 24, 31, 32, 36], "project": [6, 20, 24, 27, 29], "prop": 13, "propag": [1, 12, 36], "properti": [5, 26, 30, 31, 32, 34], "python": [0, 9, 15, 22, 23, 29], "quick": 8, "quickli": [], "r": 29, "random": [10, 11, 26], "raphson": [31, 34, 35], "rate": [24, 32], "read": [9, 29, 30, 32, 33, 34, 35, 36], "real": [6, 21, 29, 36], "recommend": [29, 30], "record": [], "recurr": [4, 12, 35, 36], "reduc": [0, 30, 36], "reduct": 3, "refer": 24, "referenc": 20, "reformul": 2, "regress": [0, 5, 6, 7, 9, 10, 13, 15, 17, 18, 19, 24, 29, 30, 31, 32, 33, 34, 35], "regular": 1, "relat": [], "relev": [28, 30, 35], "relu": 1, "remark": 3, "remind": [6, 8, 29, 30, 31, 32, 36], "replac": [13, 32], "report": [20, 24], "repositori": [15, 33, 34], "requir": [2, 22], "resampl": [6, 19, 24, 33, 34], "rescal": [6, 30], "residu": [30, 31], "resourc": 2, "result": [30, 31, 36], "revers": 36, "revis": [], "revisit": [13, 31, 32, 34, 35], "rewrit": [29, 30, 33], "rewritten": [34, 35], "ridg": [0, 5, 6, 17, 18, 19, 24, 30, 31, 32], "rm": 13, "rmsprop": 32, "role": [], "rule": [12, 32, 36], "rung": 24, "same": [13, 32, 33, 34], "sampl": 11, "scalabl": 32, "scale": [17, 18, 19, 30, 32], "schedul": 29, "schemat": 9, "scheme": 2, "scienc": 29, "scikit": [0, 1, 11, 29, 30, 31, 32, 33, 34, 35], "second": [13, 18, 32], "select": 34, "semest": 27, "sensit": 31, "septemb": [19, 31, 32, 33, 34, 35], "seriou": 36, "session": [31, 32, 33, 34, 35, 36], "set": [0, 2, 3, 9, 12, 15, 25, 29, 30, 31, 36], "setup": 15, "sgd": [13, 32], "should": 1, "show": [], "similar": [13, 32], "simpl": [0, 4, 9, 13, 18, 29, 30, 31, 32, 34, 36], "simpler": 36, "simplest": 18, "singl": [10, 35, 36], "singular": [5, 11, 30, 31], "size": [30, 31, 32], "sklearn": 16, "slightli": 32, "smarter": 36, "smoothi": [], "sneak": 32, "soft": 8, "softmax": 1, "softwar": [24, 29], "solv": [2, 31, 34, 35], "solver": 13, "some": [13, 23, 30, 31, 34, 36], "sourc": [], "specifi": 2, "speed": 32, "sphinx": [], "split": [0, 15, 30], "squar": [0, 5, 6, 10, 16, 19, 24, 29, 30, 31, 32], "standard": [13, 30, 33], "start": [20, 35], "state": 0, "statist": [5, 6, 22, 26, 29, 33, 34], "steepest": [10, 13, 31], "step": [32, 33, 34], "stochast": [13, 24, 26, 32], "stop": 32, "strongli": [29, 32], "structur": [], "studi": 35, "suggest": [29, 35], "sum": [33, 34, 36], "summari": [27, 29], "superposit": 3, "supervis": 1, "support": 8, "svd": [5, 30, 31], "synthet": [18, 34, 35], "systemat": 3, "t": 30, "take": 16, "taken": [29, 32], "teach": 27, "teacher": [27, 29], "team": [], "technic": 30, "techniqu": [6, 11, 24], "technologi": 22, "tensorflow": [1, 3], "tent": [27, 29], "term": [33, 36], "test": [0, 1, 15, 17, 30], "texmath": [], "text": 29, "textbook": [28, 29], "than": 31, "thank": [], "theorem": [5, 8, 11, 12, 26, 33, 36], "theoret": 32, "theori": 26, "theta": [18, 33], "thi": [21, 29, 36], "three": 36, "through": 36, "time": 32, "tip": [13, 32], "todo": [], "togeth": [12, 36], "tool": [24, 29], "top": 1, "topic": 29, "toward": 11, "trade": [6, 19, 24], "tradeoff": [6, 33, 34], "train": [0, 1, 4, 15, 21, 29, 30, 36], "transform": 3, "translat": [], "tree": [9, 10], "tuesdai": [31, 35, 36], "tune": 1, "two": [3, 8, 22, 34, 35, 36], "type": [2, 4, 12, 29, 35, 36], "uio": 29, "understand": [33, 34], "univers": [12, 28, 36], "unsupervis": 14, "up": [0, 2, 9, 12, 15, 29, 30, 31, 33, 34, 36], "updat": [24, 32, 36], "us": [0, 1, 2, 3, 7, 13, 16, 18, 19, 22, 24, 29, 30, 31, 32, 34, 35, 36], "usag": 32, "v": [3, 32], "valid": [6, 24, 33, 34], "valu": [5, 11, 19, 26, 30, 31, 33, 34], "vari": 32, "variabl": [26, 31], "varianc": [6, 19, 24, 33, 34], "variou": [0, 33, 34], "vector": [8, 12, 16, 23, 29, 30, 35], "versu": 29, "video": [32, 33, 34, 35, 36], "view": [0, 4, 10, 30, 36], "virtual": 15, "visual": [1, 9], "wai": [9, 24, 33, 34, 36], "wave": 2, "we": [29, 32, 36], "wednesdai": [31, 35, 36], "week": [15, 16, 17, 18, 19, 20, 21, 29, 30, 31, 32, 33, 34, 35, 36], "weekli": [], "welcom": [], "what": [0, 29, 30, 31, 33, 34], "when": 32, "which": [1, 32], "why": [29, 32, 33, 34, 35, 36], "wisconsin": 7, "word": 36, "workflow": [], "wrap": 33, "write": [4, 11, 20, 24, 31], "x": 30, "xgboost": 10, "xor": 35, "yaml": [], "yet": 31, "your": [0, 10, 16, 18, 24, 30], "z_j": 36}})
\ No newline at end of file
diff --git a/doc/LectureNotes/_build/html/statistics.html b/doc/LectureNotes/_build/html/statistics.html
index e6fa15e71..387099562 100644
--- a/doc/LectureNotes/_build/html/statistics.html
+++ b/doc/LectureNotes/_build/html/statistics.html
@@ -237,6 +237,15 @@
Week 39: Resampling methods and logistic regression
Week 40: Gradient descent methods (continued) and start Neural networks
Week 41 Neural networks and constructing a neural network code
+Exercises week 41
+
+
+
+
+
+
+
+
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
Projects
@@ -1886,11 +1895,11 @@ b_j^l \leftarrow b_j^l-\eta \frac{\partial {\cal C}}{\partial b_j^l}=b_j^l-\eta
next
-
Project 1 on Machine Learning, deadline October 6 (midnight), 2025
+
Exercises week 41
diff --git a/doc/LectureNotes/_build/jupyter_execute/exercisesweek41.ipynb b/doc/LectureNotes/_build/jupyter_execute/exercisesweek41.ipynb
new file mode 100644
index 000000000..57b063993
--- /dev/null
+++ b/doc/LectureNotes/_build/jupyter_execute/exercisesweek41.ipynb
@@ -0,0 +1,804 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "4b4c06bc",
+ "metadata": {},
+ "source": [
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bcb25e64",
+ "metadata": {},
+ "source": [
+ "# Exercises week 41\n",
+ "\n",
+ "**October 6-10, 2025**\n",
+ "\n",
+ "Date: **Deadline is Friday October 10 at midnight**\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bb01f126",
+ "metadata": {},
+ "source": [
+ "# Overarching aims of the exercises this week\n",
+ "\n",
+ "This week, you will implement the entire feed-forward pass of a neural network! Next week you will compute the gradient of the network by implementing back-propagation manually, and by using autograd which does back-propagation for you (much easier!). Next week, you will also use the gradient to optimize the network with a gradient method! However, there is an optional exercise this week to get started on training the network and getting good results!\n",
+ "\n",
+ "We recommend that you do the exercises this week by editing and running this notebook file, as it includes some checks along the way that you have implemented the pieces of the feed-forward pass correctly, and running small parts of the code at a time will be important for understanding the methods.\n",
+ "\n",
+ "If you have trouble running a notebook, you can run this notebook in google colab instead (https://colab.research.google.com/drive/1zKibVQf-iAYaAn2-GlKfgRjHtLnPlBX4#offline=true&sandboxMode=true), an updated link will be provided on the course discord (you can also send an email to k.h.fredly@fys.uio.no if you encounter any trouble), though we recommend that you set up VSCode and your python environment to run code like this locally.\n",
+ "\n",
+ "First, here are some functions you are going to need, don't change this cell. If you are unable to import autograd, just swap in normal numpy until you want to do the final optional exercise.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c6f61b09",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import autograd.numpy as np # We need to use this numpy wrapper to make automatic differentiation work later\n",
+ "from sklearn import datasets\n",
+ "import matplotlib.pyplot as plt\n",
+ "from sklearn.metrics import accuracy_score\n",
+ "\n",
+ "\n",
+ "# Defining some activation functions\n",
+ "def ReLU(z):\n",
+ " return np.where(z > 0, z, 0)\n",
+ "\n",
+ "\n",
+ "def sigmoid(z):\n",
+ " return 1 / (1 + np.exp(-z))\n",
+ "\n",
+ "\n",
+ "def softmax(z):\n",
+ " \"\"\"Compute softmax values for each set of scores in the rows of the matrix z.\n",
+ " Used with batched input data.\"\"\"\n",
+ " e_z = np.exp(z - np.max(z, axis=0))\n",
+ " return e_z / np.sum(e_z, axis=1)[:, np.newaxis]\n",
+ "\n",
+ "\n",
+ "def softmax_vec(z):\n",
+ " \"\"\"Compute softmax values for each set of scores in the vector z.\n",
+ " Use this function when you use the activation function on one vector at a time\"\"\"\n",
+ " e_z = np.exp(z - np.max(z))\n",
+ " return e_z / np.sum(e_z)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6248ec53",
+ "metadata": {},
+ "source": [
+ "# Exercise 1\n",
+ "\n",
+ "In this exercise you will compute the activation of the first layer. You only need to change the code in the cells right below an exercise, the rest works out of the box. Feel free to make changes and see how stuff works though!\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "37f30740",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(2024)\n",
+ "\n",
+ "x = np.random.randn(2) # network input. This is a single input with two features\n",
+ "W1 = np.random.randn(4, 2) # first layer weights"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4ed2cf3d",
+ "metadata": {},
+ "source": [
+ "**a)** Given the shape of the first layer weight matrix, what is the input shape of the neural network? What is the output shape of the first layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "edf7217b",
+ "metadata": {},
+ "source": [
+ "**b)** Define the bias of the first layer, `b1`with the correct shape. (Run the next cell right after the previous to get the random generated values to line up with the test solution below)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "2129c19f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "b1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "09e8d453",
+ "metadata": {},
+ "source": [
+ "**c)** Compute the intermediary `z1` for the first layer\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6837119b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "z1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6f71374e",
+ "metadata": {},
+ "source": [
+ "**d)** Compute the activation `a1` for the first layer using the ReLU activation function defined earlier.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "8d41ed19",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "a1 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "088710c0",
+ "metadata": {},
+ "source": [
+ "Confirm that you got the correct activation with the test below. Make sure that you define `b1` with the randn function right after you define `W1`.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "4d2f54b4",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sol1 = np.array([0.60610368, 4.0076268, 0.0, 0.56469864])\n",
+ "\n",
+ "print(np.allclose(a1, sol1))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7fb0cf46",
+ "metadata": {},
+ "source": [
+ "# Exercise 2\n",
+ "\n",
+ "Now we will add a layer to the network with an output of length 8 and ReLU activation.\n",
+ "\n",
+ "**a)** What is the input of the second layer? What is its shape?\n",
+ "\n",
+ "**b)** Define the weight and bias of the second layer with the right shapes.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "00063acf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "W2 = ...\n",
+ "b2 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5bd7d84b",
+ "metadata": {},
+ "source": [
+ "**c)** Compute the intermediary `z2` and activation `a2` for the second layer.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "2fd0383d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "z2 = ...\n",
+ "a2 = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1b5daae5",
+ "metadata": {},
+ "source": [
+ "Confirm that you got the correct activation shape with the test below.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f7f2f8a1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "print(\n",
+ " np.allclose(np.exp(len(a2)), 2980.9579870417283)\n",
+ ") # This should evaluate to True if a2 has the correct shape :)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3759620d",
+ "metadata": {},
+ "source": [
+ "# Exercise 3\n",
+ "\n",
+ "We often want our neural networks to have many layers of varying sizes. To avoid writing very long and error-prone code where we explicitly define and evaluate each layer we should keep all our layers in a single variable which is easy to create and use.\n",
+ "\n",
+ "**a)** Complete the function below so that it returns a list `layers` of weight and bias tuples `(W, b)` for each layer, in order, with the correct shapes that we can use later as our network parameters.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c58f10f9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def create_layers(network_input_size, layer_output_sizes):\n",
+ " layers = []\n",
+ "\n",
+ " i_size = network_input_size\n",
+ " for layer_output_size in layer_output_sizes:\n",
+ " W = ...\n",
+ " b = ...\n",
+ " layers.append((W, b))\n",
+ "\n",
+ " i_size = layer_output_size\n",
+ " return layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bdc0cda2",
+ "metadata": {},
+ "source": [
+ "**b)** Comple the function below so that it evaluates the intermediary `z` and activation `a` for each layer, with ReLU actication, and returns the final activation `a`. This is the complete feed-forward pass, a full neural network!\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5262df05",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def feed_forward_all_relu(layers, input):\n",
+ " a = input\n",
+ " for W, b in layers:\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "245adbcb",
+ "metadata": {},
+ "source": [
+ "**c)** Create a network with input size 8 and layers with output sizes 10, 16, 6, 2. Evaluate it and make sure that you get the correct size vectors along the way.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "89a8f70d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "\n",
+ "x = np.random.rand(input_size)\n",
+ "layers = ...\n",
+ "predict = ...\n",
+ "print(predict)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0da7fd52",
+ "metadata": {},
+ "source": [
+ "**d)** Why is a neural network with no activation functions always mathematically equivelent to a neural network with only one layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "306d8b7c",
+ "metadata": {},
+ "source": [
+ "# Exercise 4 - Custom activation for each layer\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "221c7b6c",
+ "metadata": {},
+ "source": [
+ "So far, every layer has used the same activation, ReLU. We often want to use other types of activation however, so we need to update our code to support multiple types of activation functions. Make sure that you have completed every previous exercise before trying this one.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10896d06",
+ "metadata": {},
+ "source": [
+ "**a)** Complete the `feed_forward` function which accepts a list of activation functions as an argument, and which evaluates these activation functions at each layer.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "de062369",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def feed_forward(input, layers, activation_funcs):\n",
+ " a = input\n",
+ " for (W, b), activation_func in zip(layers, activation_funcs):\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8f7df363",
+ "metadata": {},
+ "source": [
+ "**b)** You are now given a list with three activation functions, two ReLU and one sigmoid. (Don't call them yet! you can make a list with function names as elements, and then call these elements of the list later. If you add other functions than the ones defined at the start of the notebook, make sure everything is defined using autograd's numpy wrapper, like above, since we want to use automatic differentiation on all of these functions later.)\n",
+ "\n",
+ "Evaluate a network with three layers and these activation functions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "301b46dc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "network_input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "activation_funcs = [ReLU, ReLU, sigmoid]\n",
+ "layers = ...\n",
+ "\n",
+ "x = np.random.randn(network_input_size)\n",
+ "feed_forward(x, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9c914fd0",
+ "metadata": {},
+ "source": [
+ "**c)** How does the output of the network change if you use sigmoid in the hidden layers and ReLU in the output layer?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a8d6c425",
+ "metadata": {},
+ "source": [
+ "# Exercise 5 - Processing multiple inputs at once\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0f4330a4",
+ "metadata": {},
+ "source": [
+ "So far, the feed forward function has taken one input vector as an input. This vector then undergoes a linear transformation and then an element-wise non-linear operation for each layer. This approach of sending one vector in at a time is great for interpreting how the network transforms data with its linear and non-linear operations, but not the best for numerical efficiency. Now, we want to be able to send many inputs through the network at once. This will make the code a bit harder to understand, but it will make it faster, and more compact. It will be worth the trouble.\n",
+ "\n",
+ "To process multiple inputs at once, while still performing the same operations, you will only need to flip a couple things around.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "17023bb7",
+ "metadata": {},
+ "source": [
+ "**a)** Complete the function `create_layers_batch` so that the weight matrix is the transpose of what it was when you only sent in one input at a time.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "a241fd79",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def create_layers_batch(network_input_size, layer_output_sizes):\n",
+ " layers = []\n",
+ "\n",
+ " i_size = network_input_size\n",
+ " for layer_output_size in layer_output_sizes:\n",
+ " W = ...\n",
+ " b = ...\n",
+ " layers.append((W, b))\n",
+ "\n",
+ " i_size = layer_output_size\n",
+ " return layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a6349db6",
+ "metadata": {},
+ "source": [
+ "**b)** Make a matrix of inputs with the shape (number of features, number of inputs), you choose the number of inputs and features per input. Then complete the function `feed_forward_batch` so that you can process this matrix of inputs with only one matrix multiplication and one broadcasted vector addition per layer. (Hint: You will only need to swap two variable around from your previous implementation, but remember to test that you get the same results for equivelent inputs!)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "425f3bcc",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "inputs = np.random.rand(1000, 4)\n",
+ "\n",
+ "\n",
+ "def feed_forward_batch(inputs, layers, activation_funcs):\n",
+ " a = inputs\n",
+ " for (W, b), activation_func in zip(layers, activation_funcs):\n",
+ " z = ...\n",
+ " a = ...\n",
+ " return a"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "efd07b4e",
+ "metadata": {},
+ "source": [
+ "**c)** Create and evaluate a neural network with 4 inputs and layers with output sizes 12, 10, 3 and activations ReLU, ReLU, softmax.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ce6fcc2f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "network_input_size = ...\n",
+ "layer_output_sizes = [...]\n",
+ "activation_funcs = [...]\n",
+ "layers = create_layers_batch(network_input_size, layer_output_sizes)\n",
+ "\n",
+ "x = np.random.randn(network_input_size)\n",
+ "feed_forward_batch(inputs, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "87999271",
+ "metadata": {},
+ "source": [
+ "You should use this batched approach moving forward, as it will lead to much more compact code. However, remember that each input is still treated separately, and that you will need to keep in mind the transposed weight matrix and other details when implementing backpropagation.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "237eb782",
+ "metadata": {},
+ "source": [
+ "# Exercise 6 - Predicting on real data\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "54d5fde7",
+ "metadata": {},
+ "source": [
+ "You will now evaluate your neural network on the iris data set (https://scikit-learn.org/1.5/auto_examples/datasets/plot_iris_dataset.html).\n",
+ "\n",
+ "This dataset contains data on 150 flowers of 3 different types which can be separated pretty well using the four features given for each flower, which includes the width and length of their leaves. You are will later train your network to actually make good predictions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6bd4c148",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "iris = datasets.load_iris()\n",
+ "\n",
+ "_, ax = plt.subplots()\n",
+ "scatter = ax.scatter(iris.data[:, 0], iris.data[:, 1], c=iris.target)\n",
+ "ax.set(xlabel=iris.feature_names[0], ylabel=iris.feature_names[1])\n",
+ "_ = ax.legend(\n",
+ " scatter.legend_elements()[0], iris.target_names, loc=\"lower right\", title=\"Classes\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ed3e2fc9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "inputs = iris.data\n",
+ "\n",
+ "# Since each prediction is a vector with a score for each of the three types of flowers,\n",
+ "# we need to make each target a vector with a 1 for the correct flower and a 0 for the others.\n",
+ "targets = np.zeros((len(iris.data), 3))\n",
+ "for i, t in enumerate(iris.target):\n",
+ " targets[i, t] = 1\n",
+ "\n",
+ "\n",
+ "def accuracy(predictions, targets):\n",
+ " one_hot_predictions = np.zeros(predictions.shape)\n",
+ "\n",
+ " for i, prediction in enumerate(predictions):\n",
+ " one_hot_predictions[i, np.argmax(prediction)] = 1\n",
+ " return accuracy_score(one_hot_predictions, targets)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "0362c4a9",
+ "metadata": {},
+ "source": [
+ "**a)** What should the input size for the network be with this dataset? What should the output size of the last layer be?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bf62607e",
+ "metadata": {},
+ "source": [
+ "**b)** Create a network with two hidden layers, the first with sigmoid activation and the last with softmax, the first layer should have 8 \"nodes\", the second has the number of nodes you found in exercise a). Softmax returns a \"probability distribution\", in the sense that the numbers in the output are positive and add up to 1 and, their magnitude are in some sense relative to their magnitude before going through the softmax function. Remember to use the batched version of the create_layers and feed forward functions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5366d4ae",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "...\n",
+ "layers = ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "c528846f",
+ "metadata": {},
+ "source": [
+ "**c)** Evaluate your model on the entire iris dataset! For later purposes, we will split the data into train and test sets, and compute gradients on smaller batches of the training data. But for now, evaluate the network on the whole thing at once.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6c783105",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "predictions = feed_forward_batch(inputs, layers, activation_funcs)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "01a3caa8",
+ "metadata": {},
+ "source": [
+ "**d)** Compute the accuracy of your model using the accuracy function defined above. Recreate your model a couple times and see how the accuracy changes.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "a2612b82",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "print(accuracy(predictions, targets))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "334560b6",
+ "metadata": {},
+ "source": [
+ "# Exercise 7 - Training on real data (Optional)\n",
+ "\n",
+ "To be able to actually do anything useful with your neural network, you need to train it. For this, we need a cost function and a way to take the gradient of the cost function wrt. the network parameters. The following exercises guide you through taking the gradient using autograd, and updating the network parameters using the gradient. Feel free to implement gradient methods like ADAM if you finish everything.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "700cabe4",
+ "metadata": {},
+ "source": [
+ "Since we are doing a classification task with multiple output classes, we use the cross-entropy loss function, which can evaluate performance on classification tasks. It sees if your prediction is \"most certain\" on the correct target.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f30e6e2c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def cross_entropy(predict, target):\n",
+ " return np.sum(-target * np.log(predict))\n",
+ "\n",
+ "\n",
+ "def cost(input, layers, activation_funcs, target):\n",
+ " predict = feed_forward_batch(input, layers, activation_funcs)\n",
+ " return cross_entropy(predict, target)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7ea9c1a4",
+ "metadata": {},
+ "source": [
+ "To improve our network on whatever prediction task we have given it, we need to use a sensible cost function, take the gradient of that cost function with respect to our network parameters, the weights and biases, and then update the weights and biases using these gradients. To clarify, we need to find and use these\n",
+ "\n",
+ "$$\n",
+ "\\frac{\\partial C}{\\partial W}, \\frac{\\partial C}{\\partial b}\n",
+ "$$\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6c753e3b",
+ "metadata": {},
+ "source": [
+ "Now we need to compute these gradients. This is pretty hard to do for a neural network, we will use most of next week to do this, but we can also use autograd to just do it for us, which is what we always do in practice. With the code cell below, we create a function which takes all of these gradients for us.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "56bef776",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from autograd import grad\n",
+ "\n",
+ "\n",
+ "gradient_func = grad(\n",
+ " cost, 1\n",
+ ") # Taking the gradient wrt. the second input to the cost function, i.e. the layers"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7b1b74bc",
+ "metadata": {},
+ "source": [
+ "**a)** What shape should the gradient of the cost function wrt. weights and biases be?\n",
+ "\n",
+ "**b)** Use the `gradient_func` function to take the gradient of the cross entropy wrt. the weights and biases of the network. Check the shapes of what's inside. What does the `grad` func from autograd actually do?\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "841c9e87",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "layers_grad = gradient_func(\n",
+ " inputs, layers, activation_funcs, targets\n",
+ ") # Don't change this"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "adc9e9be",
+ "metadata": {},
+ "source": [
+ "**c)** Finish the `train_network` function.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "6e4d38d3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def train_network(\n",
+ " inputs, layers, activation_funcs, targets, learning_rate=0.001, epochs=100\n",
+ "):\n",
+ " for i in range(epochs):\n",
+ " layers_grad = gradient_func(inputs, layers, activation_funcs, targets)\n",
+ " for (W, b), (W_g, b_g) in zip(layers, layers_grad):\n",
+ " W -= ...\n",
+ " b -= ..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2f65d663",
+ "metadata": {},
+ "source": [
+ "**e)** What do we call the gradient method used above?\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7059dd8c",
+ "metadata": {},
+ "source": [
+ "**d)** Train your network and see how the accuracy changes! Make a plot if you want.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5027c7a5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "..."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3bc77016",
+ "metadata": {},
+ "source": [
+ "**e)** How high of an accuracy is it possible to acheive with a neural network on this dataset, if we use the whole thing as training data?\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
\ No newline at end of file