From deaae60a49d0e1177e16a6f364502807e1f3547c Mon Sep 17 00:00:00 2001 From: NeroBlackstone <NeroBlackstone@users.noreply.github.com> Date: Mon, 28 Oct 2024 05:44:39 +0000 Subject: [PATCH] deploy: 7bb4a632a31ff04dcdc388ffa89f416f23cd9bf0 --- .../Concise Implementation of Linear Regression.ipynb | 4 ++-- .../Concise Implementation of Linear Regression.html | 4 ++-- searchindex.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_sources/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb b/_sources/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb index c048797..080a5ef 100644 --- a/_sources/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb +++ b/_sources/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb @@ -147,7 +147,7 @@ "\n", "For standard operations, we can use a framework’s predefined layers, which allow us to focus on the layers used to construct the model rather than worrying about their implementation. Recall the architecture of a single-layer network as described in Fig. 3.1.2. The layer is called fully connected, since each of its inputs is connected to each of its outputs by means of a matrix-vector multiplication.\n", "\n", - "In Flux, a `Dense(2 => 1)` layer denotes a layer of one neuron with two inputs (two feature) and one output. " + "In Lux, a `Dense(2 => 1)` layer denotes a layer of one neuron with two inputs (two feature) and one output. " ] }, { @@ -187,7 +187,7 @@ "id": "c717e1ec-be46-4e88-b238-5a3b3dbc745a", "metadata": {}, "source": [ - "The `Flux.mse` function computes the mean squared error. By default, `Flux.mse` returns the average loss over examples. It is faster (and easier to use) than implementing our own." + "The `MSELoss()` function computes the mean squared error. By default, `MSELoss()` returns the average loss over examples. It is faster (and easier to use) than implementing our own." ] }, { diff --git a/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.html b/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.html index 82dd09e..e22aed6 100644 --- a/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.html +++ b/notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.html @@ -495,7 +495,7 @@ <h2><span class="section-number">8.2. </span>Reading the Dataset<a class="header <section id="defining-the-model"> <h2><span class="section-number">8.3. </span>Defining the Model<a class="headerlink" href="#defining-the-model" title="Link to this heading">#</a></h2> <p>For standard operations, we can use a framework’s predefined layers, which allow us to focus on the layers used to construct the model rather than worrying about their implementation. Recall the architecture of a single-layer network as described in Fig. 3.1.2. The layer is called fully connected, since each of its inputs is connected to each of its outputs by means of a matrix-vector multiplication.</p> -<p>In Flux, a <code class="docutils literal notranslate"><span class="pre">Dense(2</span> <span class="pre">=></span> <span class="pre">1)</span></code> layer denotes a layer of one neuron with two inputs (two feature) and one output.</p> +<p>In Lux, a <code class="docutils literal notranslate"><span class="pre">Dense(2</span> <span class="pre">=></span> <span class="pre">1)</span></code> layer denotes a layer of one neuron with two inputs (two feature) and one output.</p> <div class="cell docutils container"> <div class="cell_input docutils container"> <div class="highlight-julia notranslate"><div class="highlight"><pre><span></span><span class="k">using</span><span class="w"> </span><span class="n">Lux</span><span class="p">,</span><span class="n">Random</span> @@ -514,7 +514,7 @@ <h2><span class="section-number">8.3. </span>Defining the Model<a class="headerl </section> <section id="defining-the-loss-function"> <h2><span class="section-number">8.4. </span>Defining the Loss Function<a class="headerlink" href="#defining-the-loss-function" title="Link to this heading">#</a></h2> -<p>The <code class="docutils literal notranslate"><span class="pre">Flux.mse</span></code> function computes the mean squared error. By default, <code class="docutils literal notranslate"><span class="pre">Flux.mse</span></code> returns the average loss over examples. It is faster (and easier to use) than implementing our own.</p> +<p>The <code class="docutils literal notranslate"><span class="pre">MSELoss()</span></code> function computes the mean squared error. By default, <code class="docutils literal notranslate"><span class="pre">MSELoss()</span></code> returns the average loss over examples. It is faster (and easier to use) than implementing our own.</p> <div class="cell docutils container"> <div class="cell_input docutils container"> <div class="highlight-julia notranslate"><div class="highlight"><pre><span></span><span class="k">const</span><span class="w"> </span><span class="n">mse</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">MSELoss</span><span class="p">()</span> diff --git a/searchindex.js b/searchindex.js index e757733..10ba3ea 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"A Simple Example: Tossing Coins": [[18, "a-simple-example-tossing-coins"]], "A Simple Function": [[13, "a-simple-function"]], "Activation Functions": [[10, "activation-functions"]], "All Parameters at Once": [[1, "all-parameters-at-once"]], "Arrays": [[17, "arrays"]], "Automatic Differentiation": [[13, null]], "Backward for Non-Scalar Variables": [[13, "backward-for-non-scalar-variables"]], "Basic Properties of Array Arithmetic": [[17, "basic-properties-of-array-arithmetic"]], "Broadcasting": [[15, "broadcasting"]], "Calculus": [[14, null]], "Computing Devices": [[3, "computing-devices"]], "Concise Implementation": [[8, "concise-implementation"], [9, "concise-implementation"], [19, "concise-implementation"], [20, "concise-implementation"], [21, "concise-implementation"]], "Concise Implementation of Linear Regression": [[6, null]], "Concise Implementation of Recurrent Neural Networks": [[23, null]], "Concise Implementation of Softmax Regression": [[4, null]], "Contribution": [[0, "contribution"]], "Conversion to the Matrix": [[16, "conversion-to-the-matrix"]], "Data Manipulation": [[15, null]], "Data Preparation": [[16, "data-preparation"]], "Data Preprocessing": [[16, null]], "Decoding": [[23, "decoding"]], "Deep Recurrent Neural Networks": [[19, null]], "Defining the Loss Function": [[6, "defining-the-loss-function"]], "Defining the Model": [[4, "defining-the-model"], [6, "defining-the-model"]], "Defining the Optimization Algorithm": [[6, "defining-the-optimization-algorithm"]], "Derivatives and Differentiation": [[14, "derivatives-and-differentiation"]], "Detaching Computation": [[13, "detaching-computation"]], "Dive into Deep Learning - Julia": [[0, null]], "Dot Products": [[17, "dot-products"]], "Downloading Data": [[12, "downloading-data"]], "Dropout": [[8, null]], "Exploding Gradients": [[11, "exploding-gradients"]], "Exploratory Language Statistics": [[23, "exploratory-language-statistics"]], "File I/O": [[2, null]], "GPUs": [[3, null]], "Gated Recurrent Units (GRU)": [[20, null]], "Generating the Dataset": [[6, "generating-the-dataset"]], "Getting Started": [[15, "getting-started"]], "Gradients and Julia Control Flow": [[13, "gradients-and-julia-control-flow"]], "Implementation of Multilayer Perceptrons": [[9, null]], "Indexing and Slicing": [[15, "indexing-and-slicing"]], "Julia Code Implementation Standard": [[0, "julia-code-implementation-standard"]], "Linear Algebra": [[17, null]], "Linear Regression": [[7, null]], "Loading and Saving Model Parameters": [[2, "loading-and-saving-model-parameters"]], "Loading and Saving Vectors": [[2, "loading-and-saving-vectors"]], "Loading the Dataset": [[5, "loading-the-dataset"]], "Local installation Pre-requisites": [[0, "local-installation-pre-requisites"]], "Long Short-Term Memory (LSTM)": [[21, null]], "Matrices": [[17, "matrices"]], "Matrix-Matrix Multiplication": [[17, "matrix-matrix-multiplication"]], "Matrix-Vector Products": [[17, "matrix-vector-products"]], "Model": [[9, "model"]], "Multilayer Perceptrons": [[10, null]], "Neural Networks and GPUs": [[3, "neural-networks-and-gpus"]], "Non-Reduction Sum": [[17, "non-reduction-sum"]], "Norms": [[17, "norms"]], "Numerical Stability and Initialization": [[11, null]], "One-Hot Encoding": [[23, "one-hot-encoding"]], "Operations": [[15, "operations"]], "Parameter Access": [[1, "parameter-access"]], "Parameter Management": [[1, null]], "Predicting House Prices on Kaggle": [[12, null]], "Probability and Statistics": [[18, null]], "RNN-Based Language Model": [[23, "rnn-based-language-model"]], "ReLU Function": [[10, "relu-function"]], "Reading a Minibatch": [[5, "reading-a-minibatch"]], "Reading the Dataset": [[6, "reading-the-dataset"], [23, "reading-the-dataset"]], "Reading the Dataset\u00b6": [[16, "reading-the-dataset"]], "Recurrent Neural Networks with Hidden States": [[23, "recurrent-neural-networks-with-hidden-states"]], "Reduction": [[17, "reduction"]], "Saving Memory": [[15, "saving-memory"]], "Scalars": [[17, "scalars"]], "Sigmoid Function": [[10, "sigmoid-function"]], "Softmax Revisited": [[4, "softmax-revisited"]], "Storage on the GPU": [[3, "storage-on-the-gpu"]], "Tanh Function": [[10, "tanh-function"]], "The Image Classification Dataset": [[5, null]], "The Normal Distribution and Squared Loss": [[7, "the-normal-distribution-and-squared-loss"]], "Tied Parameters": [[1, "tied-parameters"]], "Tips": [[0, "tips"]], "Tokenization": [[23, "tokenization"]], "Training": [[4, "training"], [6, "training"], [9, "training"], [22, "training"]], "Training and Predicting": [[23, "training-and-predicting"]], "Vanishing Gradients": [[11, "vanishing-gradients"]], "Vanishing and Exploding Gradients": [[11, "vanishing-and-exploding-gradients"]], "Vectorization for Speed": [[7, "vectorization-for-speed"]], "Vectors": [[17, "vectors"]], "Vectors and GPUs": [[3, "vectors-and-gpus"]], "Visualization": [[5, "visualization"]], "Visualization Utilities": [[14, "visualization-utilities"]], "Vocabulary": [[23, "vocabulary"]], "WIP": [[22, "wip"]], "Warning \u26a0\ufe0f: All the contents of this book will be rewritten using Lux.jl soon after some Lux.jl functions are stabilized.": [[0, "warning-all-the-contents-of-this-book-will-be-rewritten-using-lux-jl-soon-after-some-lux-jl-functions-are-stabilized"]], "Working with Sequences": [[22, null]]}, "docnames": ["README", "notebooks/chapter_builders_guide/parameters", "notebooks/chapter_builders_guide/read-write", "notebooks/chapter_builders_guide/use-gpu", "notebooks/chapter_linear_classification/Concise Implementation of Softmax Regression", "notebooks/chapter_linear_classification/The Image Classification Dataset", "notebooks/chapter_linear_regression/Concise Implementation of Linear Regression", "notebooks/chapter_linear_regression/Linear Regression", "notebooks/chapter_multilayer_perceptrons/Dropout", "notebooks/chapter_multilayer_perceptrons/Implementation of Multilayer Perceptrons", "notebooks/chapter_multilayer_perceptrons/Multilayer Perceptrons", "notebooks/chapter_multilayer_perceptrons/Numerical Stability and Initialization", "notebooks/chapter_multilayer_perceptrons/Predicting House Prices on Kaggle", "notebooks/chapter_preliminaries/Automatic Differentiation", "notebooks/chapter_preliminaries/Calculus", "notebooks/chapter_preliminaries/Data Manipulation", "notebooks/chapter_preliminaries/Data Preprocessing", "notebooks/chapter_preliminaries/Linear Algebra", "notebooks/chapter_preliminaries/Probability and Statistics", "notebooks/chapter_recurrent_modern/deep-rnn", "notebooks/chapter_recurrent_modern/gru", "notebooks/chapter_recurrent_modern/lstm", "notebooks/chapter_recurrent_neural_networks/sequence", "notebooks/chapter_recurrent_neural_networks/text-sequence"], "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, "sphinxcontrib.bibtex": 9}, "filenames": ["README.md", "notebooks/chapter_builders_guide/parameters.ipynb", "notebooks/chapter_builders_guide/read-write.ipynb", "notebooks/chapter_builders_guide/use-gpu.ipynb", "notebooks/chapter_linear_classification/Concise Implementation of Softmax Regression.ipynb", "notebooks/chapter_linear_classification/The Image Classification Dataset.ipynb", "notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb", "notebooks/chapter_linear_regression/Linear Regression.ipynb", "notebooks/chapter_multilayer_perceptrons/Dropout.ipynb", "notebooks/chapter_multilayer_perceptrons/Implementation of Multilayer Perceptrons.ipynb", "notebooks/chapter_multilayer_perceptrons/Multilayer Perceptrons.ipynb", "notebooks/chapter_multilayer_perceptrons/Numerical Stability and Initialization.ipynb", "notebooks/chapter_multilayer_perceptrons/Predicting House Prices on Kaggle.ipynb", "notebooks/chapter_preliminaries/Automatic Differentiation.ipynb", "notebooks/chapter_preliminaries/Calculus.ipynb", "notebooks/chapter_preliminaries/Data Manipulation.ipynb", "notebooks/chapter_preliminaries/Data Preprocessing.ipynb", "notebooks/chapter_preliminaries/Linear Algebra.ipynb", "notebooks/chapter_preliminaries/Probability and Statistics.ipynb", "notebooks/chapter_recurrent_modern/deep-rnn.ipynb", "notebooks/chapter_recurrent_modern/gru.ipynb", "notebooks/chapter_recurrent_modern/lstm.ipynb", "notebooks/chapter_recurrent_neural_networks/sequence.ipynb", "notebooks/chapter_recurrent_neural_networks/text-sequence.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 5, 6, 10, 11, 13, 14, 15, 16, 17, 18, 22, 23], "0": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 22, 23], "000": [5, 7, 23], "00001": 14, "00003": 14, "000037": 7, "00010": 14, "000224": 6, "00030": 14, "00100": 14, "00134618": 2, "00300": 14, "0038477420806883877": 6, "004839897155761719": 6, "006815": 6, "01": [7, 22], "01000": 14, "010038566589355646": 6, "01f0": 6, "01time": 22, "0234257": 2, "0274887": 2, "028": 8, "03000": 14, "03047": 11, "034858026": 6, "03599": 2, "03892e23": 11, "05": 22, "052413": 7, "05678": 11, "05706e23": 11, "06": 5, "06923e22": 11, "07015736": 1, "0725183": 15, "07651e23": 11, "084": 15, "085537": 15, "0878646": 2, "0880216": 2, "090352": 5, "0954295": 3, "09805e23": 11, "0990227": 2, "0f0": [6, 15, 17], "0falsetrue43": 16, "0truefals": 16, "0truefalse22": 16, "0truefalse34": 16, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "10": [2, 4, 5, 6, 7, 8, 9, 10, 14, 15, 17, 20, 23], "100": [5, 6, 11, 14, 18, 23], "1000": [13, 22], "10000": [5, 7, 14, 18], "100b": 13, "10184": 23, "102": 23, "1024": [19, 20, 21, 23], "106000": 16, "107828": 6, "107866": 11, "108755": 6, "109": 23, "109138": 2, "1096": 15, "11": [0, 15, 17, 20], "11011e23": 11, "11012": 11, "111111": 17, "112": 23, "1155": 23, "12": [7, 13, 15, 17, 19, 20], "1245": 23, "126": 5, "1267": 23, "127500": 16, "13": [15, 17, 20, 23], "130": 23, "133812": 2, "1395958": 1, "14": [15, 16, 17, 20, 23], "140000": 16, "145477": 23, "148": 15, "15": [5, 15, 17, 20, 23], "151": 7, "15556e23": 11, "15837": 11, "15854": 23, "16": [13, 15, 17, 20, 22, 23], "162754": 15, "166667": 17, "168548": 2, "169": 23, "17": [5, 15, 17, 20], "174497": 2, "178100": 16, "18": [5, 15, 17, 20], "182": 5, "183537": 2, "1879": 16, "1898": 23, "189805": 11, "19": [17, 20], "1964": 13, "1965": 10, "1970": 10, "197464": 23, "1978": 12, "19783": 11, "1980": 13, "1988": 6, "1989": 13, "1990": 5, "1992": 10, "1995": 5, "1996": 5, "1998": 5, "1e": [19, 20, 21, 23], "1f0": 6, "1x3": 17, "2": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23], "20": [2, 15, 17, 20, 21, 23], "200": 22, "2000": 18, "2006": 12, "2009": 5, "200_960": [8, 9], "2010": [6, 12], "2011": 12, "2012": 6, "2014": 6, "2016": 13, "2017": 5, "203886": 2, "205375": 11, "20752": 23, "21": [15, 17, 20], "216745": 2, "22": [15, 17, 20], "22026": 15, "2261": 23, "23": [5, 15, 17, 20], "23098828": 6, "234": 7, "23638": 11, "24": [15, 17, 20, 23], "24637741": 6, "25": [5, 10, 15, 17, 20], "256": [2, 4, 8, 9, 23], "2566": 23, "26": [17, 20], "26077e20": 11, "263555": 11, "269618": 2, "269703": 23, "27": [15, 19, 20, 23], "270000": 16, "27737": 23, "28": [4, 5, 8, 9, 15, 17, 20], "289": [2, 9], "28x28": 5, "29": [15, 20], "2980": 15, "29992": 23, "2_570": [2, 8, 9], "2a": 13, "2b": 13, "2randn": 22, "2x": [13, 14], "3": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 20, 22, 23], "30": [15, 20, 23], "30000": 14, "300499": 15, "309": 23, "31": [2, 20], "32": [19, 20, 21, 23], "328809": 2, "33": [15, 20], "333333": 17, "335405": 2, "33734": 15, "34": [15, 20], "348163": 15, "34964567": 9, "35": [15, 20], "3582719": 9, "36": [15, 17, 20], "3682386": 9, "37": 20, "379": 7, "38": [20, 22], "38223523": 9, "383395": 15, "39": 20, "39717e23": 11, "3979724": 9, "39m": [2, 3, 4, 8, 9, 19], "39m1": 19, "39m12_955": 19, "39m203_530": 9, "39m269_322": 8, "39m7_946": 2, "3x": 14, "4": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 20, 22, 23], "40": 20, "403": 15, "408317": 6, "41": 20, "41316": 15, "4166209": 9, "42": 20, "4288": 15, "43": 20, "434612": 2, "43611e23": 11, "44": 20, "440": 23, "44151744": 4, "44179": 2, "443": 23, "4439846": 6, "44557437": 9, "44613948": 4, "45": [18, 20], "45155552": 4, "4579": 15, "45803085": 4, "46": 20, "4659756": 4, "467": 15, "47": 20, "47606862": 4, "48": [18, 20], "4889": 18, "4895458": 4, "49": 20, "49360403": 9, "4x": [13, 14], "4x3": 15, "5": [1, 4, 5, 6, 8, 9, 10, 14, 15, 17, 18, 20, 22, 23], "50": [19, 20, 21], "501898": 23, "5049412": 6, "50599": 15, "507334": 11, "5090037": 4, "51073": 15, "5111": 18, "52": 18, "52311933": 1, "52477": 23, "54": 15, "540": 5, "541": 23, "5413316": 4, "55": 18, "552": 23, "555556": 17, "557541": 6, "56": 5, "56064373": 1, "56865656": 9, "58002": 15, "582175": 23, "582191": 2, "5881851": 1, "59": 23, "5925564": 6, "59815": 15, "59874": 15, "5_376": 2, "5_792": 19, "5f": 14, "5f0": 17, "6": [5, 7, 8, 11, 13, 15, 17, 20, 23], "60": [5, 23], "600": 22, "60000": 5, "600773": 15, "6151819": 4, "6160638": 1, "62": 7, "628987": 11, "6332": 15, "64": [5, 15, 19], "64mb": 5, "65_792": 8, "662": [19, 20, 21, 23], "675443": 11, "68244076": 6, "68355e23": 11, "68876016": 9, "695": 23, "69729e20": 11, "6_272": 19, "7": [7, 11, 15, 17, 20, 23], "7182817": 15, "73": 23, "7447525": 6, "74673": 15, "7515991": 1, "752": 9, "7616638": 6, "7618166666666667": 9, "78": [7, 15, 23], "7829": 4, "784": [4, 8, 9], "78449243": 1, "791": 9, "795": 9, "79765": 4, "7_850": 4, "8": [1, 6, 10, 11, 13, 15, 17, 20, 23], "8034333333333333": 9, "8083": 4, "8103": 15, "8153": 9, "816": 23, "8187": 4, "8203666666666667": 4, "8246": 4, "8269": 4, "82741e20": 11, "8281e23": 11, "8282": 4, "8288e20": 11, "8294": 9, "8302166666666667": 4, "8304": 9, "8309": 4, "8326": 4, "8342": 4, "8345": 4, "836": 4, "8398": 4, "8402": 9, "8427333333333333": 4, "8449": 9, "8449666666666666": 9, "84545": 4, "84745": 4, "8488333333333333": 4, "849": 9, "85": 23, "85015": 4, "8544833333333334": 9, "8545": 9, "8566": 9, "8581": 9, "8608833333333333": 9, "86575": 9, "8708833333333333": 9, "87141": 15, "8740666666666667": 9, "8769666666666667": 9, "88": 7, "891": 19, "9": [4, 5, 8, 9, 15, 17, 20, 23], "90m": [2, 3, 4, 8, 9, 19], "9118508": 6, "917991": 11, "9225617": 6, "938": [5, 19], "95": 5, "958": 15, "960691": 11, "970": 3, "9852763": 6, "98534": 11, "98955e22": 11, "99": 23, "A": [5, 15, 16, 17, 19, 20, 21, 23], "AT": 5, "And": [10, 15, 18], "As": [4, 5, 7, 9, 10, 11, 13, 18], "At": [5, 15], "But": 23, "By": [5, 6, 17, 18], "For": [0, 2, 3, 5, 6, 13, 15, 16, 17, 18, 23], "If": [0, 15, 17, 18], "In": [1, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 17, 18, 20, 22, 23], "It": [0, 5, 6, 10, 12], "Not": [7, 16], "One": [5, 13, 17, 18], "Or": [18, 23], "That": [10, 15, 18], "The": [0, 1, 2, 3, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 21, 23], "There": [3, 10], "These": [6, 16, 23], "To": [2, 5, 6, 7, 10, 11, 13, 15, 16, 17, 18, 22, 23], "With": 8, "_": [1, 2, 6, 18], "_download": 23, "_toc": 0, "about": [0, 6, 10, 15, 18, 23], "abov": [20, 21, 23], "abstractstr": 23, "acceler": [19, 20, 21, 23], "access": [6, 15, 17], "accomplish": 16, "accord": [8, 11, 15], "accuraci": 5, "achiev": 5, "across": 1, "act": 18, "action": 18, "activ": [0, 5, 11], "actual": [6, 10, 23], "ad": [7, 9, 10, 17, 23], "adag": 10, "adam": [19, 20, 21, 23], "add": [0, 7, 8, 9, 10], "addit": [5, 17, 22, 23], "adher": 18, "adjoint": 17, "adopt": 6, "advanc": 13, "advantag": [5, 6], "ae": 7, "after": [2, 8, 11, 15, 17, 18, 23], "ag": 7, "against": [5, 6], "agent": 18, "al": [5, 6, 13], "albert": 16, "algebra": 7, "algorithm": [5, 10, 11, 13], "alia": 15, "all": [2, 5, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 23], "alloc": [1, 5, 6, 7, 15], "allow": [5, 6, 10, 15, 17, 18], "almalinidenapi": 23, "along": [10, 15, 17, 23], "alreadi": 23, "also": [11, 15, 16, 17, 23], "alter": 15, "altern": 7, "although": [10, 17], "am": 12, "amazonaw": [19, 20, 21, 23], "among": [7, 13, 23], "an": [0, 1, 2, 5, 7, 10, 13, 14, 15, 16, 17, 18, 19, 21, 23], "analog": 17, "analyz": 18, "ancestor": 13, "ani": [1, 5, 15, 17, 18, 23], "ankl": 5, "anomal": 18, "anoth": [0, 1, 13, 18], "api": [6, 8, 9, 10, 19, 20, 21, 23], "appeal": 11, "append": 16, "appli": [10, 13, 15, 18, 22], "applic": [6, 23], "apply_append": 16, "approach": [10, 12], "appropri": [10, 17], "ar": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 23], "arbitrari": [2, 13, 17], "arbitrarli": 4, "architectur": [2, 6], "area": 7, "arguabl": 6, "argument": [8, 15, 18], "arrai": [2, 5, 8, 9, 15, 18, 19], "art": 5, "artifact": 18, "artifici": 11, "ascii": 23, "aspect": 5, "assign": [13, 15, 17, 18], "assist": 23, "associ": 5, "atom": 23, "attack": 18, "attempt": 18, "attent": 22, "attribut": 17, "audio": 12, "autocomplet": 23, "autograd": 13, "autom": [5, 6], "automat": [6, 15], "autos": [1, 2], "autozygot": 6, "auxiliari": 13, "avail": [3, 18, 19], "averag": [6, 17], "avoid": 0, "awai": 10, "ax": [4, 7, 8, 9, 11, 14, 17, 18, 20, 21, 22, 23], "ax2": [22, 23], "ax3": 23, "axi": [4, 5, 7, 8, 9, 10, 14, 15, 17, 18, 20, 21, 22, 23], "axislegend": [4, 7, 8, 9, 11, 14, 18, 22, 23], "b": [6, 7, 13, 15, 17, 23], "babi": 23, "back": [2, 13, 18, 23], "backend": [19, 20, 21, 23], "backpropag": [11, 13], "backward": 18, "bag": 5, "base": [6, 7, 15, 16], "basic": [12, 23], "batch": 13, "batch_num": 5, "batch_siz": [6, 19, 20, 21, 22, 23], "batchseq": [19, 20, 21, 23], "batchsiz": [4, 5, 6, 8, 9, 22], "bayesian": 18, "becaus": [6, 10, 15, 18], "becom": [13, 17], "bed": 16, "been": [13, 18, 23], "befor": [13, 15, 21, 22], "began": 23, "begin": [15, 18, 19, 20, 21, 22, 23], "behav": 23, "behavior": 17, "behind": 13, "belief": 18, "bell": 5, "below": [1, 5, 6, 10, 13, 15, 16, 17, 23], "benchmark": [5, 7], "benefit": 13, "bergstra": 6, "best": 0, "better": [0, 11, 23], "between": [5, 15], "beyond": [11, 23], "bia": [1, 6, 10], "bias": 1, "bigram": 23, "binari": [5, 15], "binomi": 18, "biolog": 11, "bit": [5, 11], "bitmatrix": 15, "black": [5, 18], "blazingli": 5, "blister": 5, "block": 15, "blue": 5, "boast": [11, 12], "book": [5, 10, 23], "bool": 23, "boolbool1missingtruefalse22truefalse34falsetrue4missingtruefals": 16, "boot": 5, "boston": 12, "both": [2, 6, 11, 12, 13, 15, 17, 23], "bottou": 6, "boundari": [5, 10], "break": 23, "briefli": 10, "broadcast": 17, "broader": 18, "broadli": 18, "brows": 0, "buf": [19, 20, 21, 23], "bug": 16, "build": [0, 6, 12, 13, 17, 18], "built": [0, 2, 4, 5, 17, 19], "c": [7, 13, 19, 20, 21, 23], "caff": 6, "cairomaki": [4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 21, 22, 23], "calcul": [3, 7, 10, 13, 17], "call": [6, 7, 13, 15, 16, 17, 18, 23], "cambrian": 6, "came": 23, "can": [0, 1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 21, 23], "cannot": 2, "capabl": 10, "capit": 23, "care": [11, 18], "career": [11, 12, 16, 18], "cartesianindic": 5, "case": [10, 13, 15], "cat": [15, 23], "categor": 16, "categori": [5, 7, 10, 16], "caus": [11, 15], "cdot": 17, "ceil": 5, "cell": 0, "centuri": 13, "certain": 15, "chain": [1, 2, 3, 4, 8, 9, 13, 19, 20, 21, 23], "challeng": 5, "chang": [0, 15, 18], "channel": 5, "chapter": 0, "char": [19, 20, 21, 23], "charact": 23, "character": 18, "check": [5, 6, 23], "chees": 18, "choic": [0, 11, 13, 23], "choos": 11, "chunk": [19, 20, 21, 23], "ci": 0, "class": [10, 23], "class_nam": 5, "classic": [6, 7], "classif": 7, "classifi": [4, 5, 8, 9, 10], "clean": 5, "clearer": 13, "clone": [0, 2], "close": [0, 6, 10, 11], "closer": 11, "cloth": [5, 10], "coat": 5, "cock": 12, "code": [2, 3, 5, 6, 7, 13, 15, 17, 21], "coerc": 10, "col": 16, "collect": [12, 13, 15, 17, 18, 19, 20, 21, 22, 23], "color": 18, "column": [15, 16, 17, 23], "column_num": 5, "com": [19, 20, 21, 23], "combin": [6, 23], "come": 5, "comma": 16, "command": 3, "common": [6, 7, 10, 13, 16], "commonli": 13, "compani": 18, "compar": [5, 6, 9, 10, 23], "competit": 12, "compil": [5, 7, 21], "complet": 17, "complex": [1, 6, 9, 13], "compon": [5, 6, 13, 17], "compos": 23, "composit": 15, "compris": 23, "comput": [2, 6, 7, 15, 17, 23], "concaten": [9, 15, 23], "concept": 17, "conceptu": 9, "concern": [10, 13, 18, 23], "condit": [10, 13, 15, 23], "conduct": 18, "configur": [20, 21], "conflict": 23, "confront": 16, "confus": 17, "connect": [1, 4, 6, 8, 9], "consecut": 23, "consequ": [5, 11], "consid": [5, 7, 13], "consider": [6, 12], "consist": [0, 5, 7, 16, 22], "const": 6, "constitut": 23, "constrain": [5, 10], "construct": [4, 6, 15, 17, 23], "constructor": 8, "consum": 3, "contain": [1, 2, 5, 7, 13, 15, 16, 23], "context": [10, 16], "continu": [22, 23], "contrari": 11, "contrast": [6, 18], "convei": 13, "conveni": [2, 4, 5, 6], "convent": [5, 10], "converg": [11, 18], "convert": [5, 16, 23], "convert2imag": 5, "coordin": [7, 10], "copi": [15, 17], "core": 13, "corpu": 23, "correct": 23, "correctr": [4, 8, 9], "correspond": [1, 5, 7, 10, 15, 16, 17, 18, 23], "corrupt": 22, "costli": 7, "could": [13, 15, 23], "count": [18, 23], "counterpart": 6, "countless": 7, "cours": 18, "covari": 7, "cover": [0, 12, 22], "cpu": [19, 20, 21, 23], "creat": [0, 3, 13, 15, 16, 17, 22], "crp": 23, "crucial": [11, 13], "csv": 16, "csv_data": 16, "cu": 3, "cuarrai": 3, "cuda": [3, 19, 20, 21, 23], "cum_count": 18, "cumsum": [17, 18], "cumul": 17, "cun": 6, "curv": 18, "cut": 11, "d": [7, 19, 20, 21, 23], "d2l": [19, 20, 21, 23], "d2ljulia": 0, "dash": [4, 8, 9, 11, 14, 18, 22, 23], "dashdot": [4, 8, 9, 23], "data": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 18, 19, 20, 21, 22, 23], "dataaspect": 5, "datadeps_always_accept": [4, 5, 8, 9], "datafram": 16, "dataframerownumroomsrooftype_missingrooftype_slatefloat64boolbool13": 16, "dataframerownumroomsrooftype_missingrooftype_slateint64": 16, "dataframerownumroomsrooftypepriceint64": 16, "dataload": [4, 5, 6, 8, 9, 22], "dataset": [7, 12, 17, 18], "date": 13, "de": 12, "deal": 15, "dean": 6, "decad": [5, 6, 13], "decai": 12, "decid": 10, "deep": [2, 4, 5, 6, 10, 11, 12, 13], "default": [6, 10, 11, 13, 17], "defin": [13, 15, 23], "degre": 18, "delet": 16, "delv": 11, "demand": 7, "demonstr": [1, 15, 16, 23], "deng": 5, "denot": 6, "dens": [1, 2, 3, 4, 6, 8, 9, 19, 20, 21, 22, 23], "depart": 18, "depend": [0, 13, 16, 18], "derefer": 15, "deriv": [10, 13], "descent": [4, 6, 8, 9, 22], "describ": [6, 18], "deseri": 2, "design": [5, 12, 16, 17, 23], "desir": 17, "desktop": 0, "destroi": 11, "detail": [2, 11, 12, 19, 20, 21], "determin": [11, 18], "develop": [5, 7, 13, 14, 18, 23], "deviat": [7, 15, 18], "devic": [19, 20, 21, 23], "devicebuff": 3, "deviceiter": 3, "devot": 18, "diagon": 15, "dict": [2, 5, 23], "dictionari": 2, "did": [6, 18, 23], "die": 18, "differ": [9, 15, 18, 23], "differenti": [6, 10], "digit": 5, "dim": [5, 15, 17, 23], "dimens": [4, 15, 17, 23], "dimension": [4, 6, 7, 15, 17], "dir_path": 16, "direct": [10, 13], "directli": [2, 20, 21], "directori": 0, "discard": [10, 16], "discuss": [5, 11, 15], "disk": 2, "displai": [11, 16, 17], "distanc": [5, 18], "distbelief": 6, "distinct": [16, 17, 23], "distinguish": 5, "distribut": [6, 10, 11, 15, 18, 23], "diverg": 10, "divid": [17, 18], "divis": 17, "do": [1, 3, 4, 7, 8, 9, 10, 12, 13, 23], "document": [0, 23], "doe": 17, "dollar": 7, "don": 0, "dot": 15, "down": 23, "download": [5, 19, 20, 21, 23], "dramat": 7, "draw": [11, 18], "drawn": [6, 15], "dress": 5, "drew": 18, "drop": [8, 16, 17], "dropdim": 17, "dropout": 12, "dropout1": 8, "dropout2": 8, "due": 6, "dure": 8, "dwowleu": 21, "dynam": 13, "e": [1, 13, 15, 16, 18, 23], "each": [1, 5, 6, 7, 8, 11, 13, 15, 16, 17, 18, 22, 23], "eachslic": 5, "earli": 11, "earlier": 6, "earliest": 13, "easi": 0, "easier": [4, 6], "easili": 23, "effici": 7, "einstein": 16, "either": [10, 11, 15, 16], "elegantli": 1, "element": [1, 2, 4, 5, 9, 10, 13, 15, 16, 17, 18, 22, 23], "elementwis": [7, 15, 17], "ell_1": 17, "ell_2": 17, "eltyp": [15, 17, 23], "email": 23, "emerg": 11, "emit": 23, "emploi": [13, 18], "empti": 16, "encapsul": [20, 21], "encod": 16, "encount": [11, 18], "end": [1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 15, 19, 20, 21, 22, 23], "engin": [10, 23], "enough": 5, "ensur": 23, "entir": [1, 2], "entri": [0, 2, 5, 6, 15, 16], "enumer": 1, "env": [4, 5, 8, 9], "environ": 18, "epoch": [4, 6, 8, 9, 19, 20, 21, 23], "equal": [10, 15, 23], "equip": 5, "equival": [8, 15, 17], "error": [5, 6, 7, 13], "especi": [1, 11], "essenti": 17, "estim": [6, 7, 16, 18], "et": [5, 6, 13], "etc": 7, "evalu": [0, 5, 13, 15, 23], "even": [2, 5, 9, 11, 13, 15, 18], "event": 18, "everi": [7, 11, 15], "evid": 18, "evolv": 18, "exact": 15, "exactli": 9, "exampl": [2, 3, 5, 6, 7, 12, 13, 14, 15, 17, 22, 23], "exce": 3, "excess": [5, 11], "execut": 0, "exhibit": [10, 12], "exist": 23, "exot": 12, "exp": 15, "expand": 15, "expect": [9, 13, 18], "experi": [5, 6, 14, 18], "explain": 0, "explicit": [20, 21], "explor": [10, 13], "explos": 6, "exponenti": 17, "express": [6, 17], "extract": [1, 22], "f": [4, 6, 7, 8, 9, 11, 13, 14], "face": 11, "facilit": 0, "fact": [10, 13, 17, 18], "factor": 6, "fair": 18, "fairli": [12, 18], "fals": [5, 15, 16], "famili": 5, "familiar": [2, 17], "famou": 12, "far": [6, 11, 13, 23], "fashion": [4, 5, 13], "fashionmnist": [4, 5, 8, 9], "fast": [5, 7, 23], "faster": [0, 6, 7, 21], "featur": [4, 5, 6, 7, 8, 9, 12, 18, 19, 20, 21, 22, 23], "featuretransform": 16, "fed": 23, "feder": 16, "feed": 23, "feet": 7, "few": [0, 5, 17], "fewer": 6, "fg": [14, 18, 20, 21, 22, 23], "fg2": [22, 23], "fg3": 23, "field": [16, 18], "fig": [5, 6], "figur": [5, 7, 23], "file": [0, 16], "file_path": [16, 19, 20, 21, 23], "final": [13, 15], "find": 11, "finit": [6, 18], "fire": 11, "first": [3, 5, 6, 7, 9, 13, 15, 16, 17, 18, 22], "five": 23, "fix": 17, "flatten": [4, 8, 9], "float": 18, "float32": [1, 2, 3, 4, 5, 6, 9, 15, 17], "float64": [2, 11, 13, 15, 16, 17, 22, 23], "flux": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 19, 20, 21, 22, 23], "fluxcudadevic": 23, "fluxml": 0, "focu": [5, 6, 13, 22], "focus": [0, 1], "folder": 0, "follow": [1, 3, 5, 6, 13, 15, 17, 22, 23], "forecast": 7, "form": [13, 15], "formal": 18, "formid": 5, "fortuit": 6, "fortun": [13, 19], "forward": [13, 23], "found": 6, "foundat": 18, "framework": [2, 4, 5, 6, 13], "free": 6, "freedom": 13, "frequenc": [18, 23], "frequent": [5, 23], "frequentist": 18, "frobeniu": 17, "from": [2, 5, 6, 10, 12, 13, 15, 17, 18, 22, 23], "full": 13, "fulli": [1, 4, 6, 8, 9, 11], "function": [2, 4, 5, 11, 14, 15, 17, 18, 19, 20, 21, 22, 23], "functor": [19, 20, 21, 23], "fundament": [10, 17], "further": [10, 13], "furthermor": 23, "fuse": 15, "g": [1, 13, 15, 16, 18, 23], "gain": [10, 12], "gaussian": [11, 15], "gc": 5, "geforc": 3, "gener": [2, 3, 4, 5, 12, 13, 14, 17, 18, 19, 20, 21, 23], "genericlossfunct": 6, "gentl": 17, "get": [2, 7, 10, 16, 18, 23], "get_devic": [19, 20, 21, 23], "get_fashion_mnist_label": 5, "getdata": [19, 20, 21, 23], "getindex": [4, 8, 9], "give": [18, 23], "given": [6, 15, 16, 18, 23], "gloss": 11, "go": [11, 23], "goal": 7, "goldilock": 11, "good": [0, 5], "gotten": 11, "grad": [10, 13], "gradient": 6, "grant": 11, "graph": 13, "gravit": 16, "great": [0, 12], "greater": [11, 18], "green": 5, "griewank": 13, "ground": 6, "group": [2, 18], "grow": [1, 6, 13, 17, 18], "gruv3": [19, 20], "gruv3cel": 19, "gtx": 3, "guid": 12, "h": [5, 14, 23], "ha": [5, 6, 13, 17, 20, 21, 23], "had": [5, 23], "hadamard": 17, "half": 13, "hand": [7, 10, 12, 13], "handi": 17, "handl": 16, "handwritten": 5, "happen": [15, 16, 18], "hardli": 11, "harrison": 12, "hasdgpbmyhpqxjlgmewm": 23, "have": [0, 2, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 23], "havermaglen": 23, "hcat": [15, 22], "head": 18, "header": 16, "heart": 18, "height": 5, "help": [0, 18], "henc": [2, 5, 23], "here": [4, 5, 10, 11, 13, 15, 16, 17, 18, 22, 23], "heurist": [11, 16], "hidden": [1, 9], "high": [4, 5, 6, 8, 9, 10, 19, 20, 21, 23], "higher": [13, 15], "histori": 13, "hline": 18, "hold": 16, "home": [7, 16, 19, 20, 21, 23], "hood": 21, "hope": [12, 18], "hospit": 7, "host": 15, "hot": [13, 16], "hous": 7, "house_tini": 16, "how": [1, 5, 6, 10, 11, 13, 16, 18], "howev": [15, 23], "http": [19, 20, 21, 23], "human": 5, "hundr": [2, 23], "hunt": 18, "hymap": 5, "hyperparamet": 12, "hyperspectr": 5, "i": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23], "ia": 12, "idea": [5, 11, 13, 23], "ident": [13, 15, 18], "identifi": 23, "ignor": 23, "ii": [11, 15, 18], "illustr": [5, 7, 11, 13], "imag": [4, 10], "imagenet": 5, "imageshow": 5, "implement": [10, 11, 17, 18], "import": [2, 11, 16], "imposs": [11, 13], "impress": 11, "imput": 16, "includ": [7, 12, 15], "increas": 7, "inde": [11, 14], "independ": 15, "index": [1, 16, 17], "indic": [17, 23], "indices_dict": 23, "individu": [2, 6, 13, 17, 18], "indivis": 23, "infer": 18, "influenc": 13, "info": [19, 20, 21, 23], "inform": [10, 23], "infrequ": 23, "ingest": 23, "initi": [2, 13, 15], "input": [2, 3, 4, 6, 8, 10, 11, 13, 16, 17, 23], "inspect": [1, 5, 6, 15, 23], "inspir": 11, "instanc": [2, 7, 13, 15, 17], "instanti": [0, 2, 7, 20, 21], "instead": [2, 15], "institut": 18, "int": [5, 6, 15, 19, 20, 21, 23], "int64": [2, 5, 15, 16, 17, 23], "int641missingmissing12750022missing10600034slate1781004missingmissing140000": 16, "integ": 16, "intellig": 18, "intend": 18, "interact": 5, "interest": [11, 18, 22], "intermedi": 13, "interpret": [13, 18], "introduc": [7, 10, 12], "introduct": 17, "intuit": [6, 10, 12, 14, 18], "invari": 5, "invok": [2, 5, 15, 17], "involv": 23, "io": [5, 19, 20, 21, 23], "iobuff": [16, 19, 20, 21, 23], "ipynb": 0, "issu": 15, "iter": [6, 13, 22], "itertool": [19, 20, 21, 22, 23], "its": [1, 5, 6, 8, 11, 13, 15, 17, 23], "j": 15, "jacobian": 13, "jia": 6, "jl": [5, 16, 18, 19, 20, 21, 23], "jl_76lotklqf4": 23, "jld2": 2, "jldsave": 2, "join": 23, "joinpath": 16, "julia": [6, 7, 15, 17, 19, 20, 21, 23], "juliaml": 0, "julian": 0, "jupyt": 0, "jupyterlab": 0, "just": [0, 4, 13, 15, 17, 18, 23], "k": [5, 7], "kalman": 10, "keep": [17, 23], "kei": [5, 9], "kib": [2, 7, 9, 19], "know": [0, 13, 18], "knowledg": [0, 12], "known": [18, 23], "kwasni": 10, "l": 23, "l2_distance_loss": 6, "label": [4, 5, 6, 7, 8, 9, 11, 14, 18, 22, 23], "laboratori": 5, "lack": 14, "laid": 15, "languag": [0, 13, 15, 18], "larg": [5, 11, 23], "larger": [12, 15, 23], "last": [4, 15, 23], "late": 13, "later": [2, 6, 7], "launch": 10, "law": 23, "layer": [1, 2, 4, 6, 8, 9, 11, 19], "le": 6, "lead": 13, "learn": [2, 4, 5, 6, 7, 10, 11, 13, 16, 18, 23], "least": 10, "lecun": 5, "left": 10, "lenet": 5, "length": [1, 5, 6, 7, 13, 14, 15, 17, 19, 20, 21, 23], "less": 11, "let": [1, 2, 5, 6, 10, 11, 13, 14, 16, 18, 22, 23], "letter": 5, "level": [4, 5, 6, 8, 9, 10, 19, 20, 21, 23], "leverag": [7, 23], "lex_dict": 23, "lexicon": 23, "librari": [0, 6, 7, 13], "light": 18, "like": [6, 11, 15, 16, 18, 23], "likelihood": 18, "likewis": [0, 6, 13, 17], "limit": [3, 14], "line": [4, 6, 7, 8, 9, 10, 11, 14, 16, 18, 20, 21, 22, 23], "linear": [4, 9, 10, 22], "linearalgebra": [13, 17], "linestyl": [4, 8, 9, 11, 14, 18, 22, 23], "lisp": 6, "list": [2, 15, 23], "litt": 23, "littl": [0, 22], "ll": [0, 5], "load": [16, 17], "loader": 5, "loadmodel": 2, "locat": [15, 16], "log10": 23, "logic": 15, "logist": 19, "logitcrossentropi": [4, 8, 9, 19, 20, 21, 23], "long": [5, 13], "longer": [5, 23], "look": [0, 5, 6, 11], "loop": [7, 9, 13, 23], "loot": 23, "loss": [4, 8, 9, 10, 13, 19, 20, 21, 22, 23], "loss_train": [19, 20, 21, 23], "lossfunctionimpl": 6, "lost": 23, "lot": 13, "low": [0, 6, 10], "lowercas": [19, 20, 21, 23], "lt": [7, 11, 14], "lux": 6, "m": [11, 17, 23], "machin": [5, 7, 13, 18, 23], "made": [4, 11, 18, 20, 21], "magnitud": [7, 11], "mai": [0, 10, 11, 15, 18], "main": 23, "mainli": 0, "maintain": 11, "major": [5, 15, 18], "make": [0, 3, 5, 13, 22], "maki": 14, "man": 23, "mangasarian": 10, "mani": [0, 5, 7, 11, 15, 19, 21], "manipul": 17, "manner": 23, "map": [2, 4, 8, 9, 11, 22], "march": 16, "master": [10, 13], "match": 6, "mathemat": [7, 10, 14, 17, 18], "mathematician": 10, "matric": [11, 15, 23], "matrix": [2, 4, 6, 11, 13, 15, 22, 23], "matter": [7, 10, 17], "maximum": 10, "maze": 13, "me": 23, "mean": [0, 6, 7, 15, 16, 17], "measur": [10, 18], "mechan": [10, 15, 17], "medic": 23, "mem": 3, "membership": 7, "memori": [2, 3, 5], "menac": 16, "metadata": 5, "method": [4, 5, 6, 7, 13, 14, 17, 19, 20, 21, 23], "mflop": 5, "mib": [5, 7, 8], "might": [2, 6, 9, 11, 12, 13, 16, 18], "minibatch": [6, 7], "minim": 10, "minut": 0, "miss": 16, "mistak": 5, "mkpath": 16, "ml": 0, "mlbase": [0, 4, 8, 9], "mldataset": [4, 5, 8, 9], "mlp": [1, 2, 9], "mlutil": [0, 4, 5, 6, 8, 9, 22], "mnist": [4, 5], "mnist_accuraci": [4, 8, 9], "mnist_test": [4, 5, 8, 9], "mnist_train": [4, 5, 8, 9], "mode": 8, "model": [1, 3, 5, 7, 8, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22], "model_st": 2, "modern": [5, 6, 13], "modul": [1, 23], "modular": 6, "moon": 18, "more": [1, 5, 6, 7, 9, 11, 12, 13, 15, 18, 22], "moreov": [7, 11, 18], "most": [0, 5, 10, 13, 15, 17, 18, 23], "move": [10, 11, 13], "mse": [6, 22], "mseloss": 6, "much": [0, 5, 6, 7, 9, 23], "multi": [15, 17], "multipl": [1, 6, 9, 15, 18, 19], "multipli": [11, 17, 23], "must": [5, 17], "mutabl": 15, "my": 23, "mydict": 2, "mydict2": 2, "n": [6, 7, 14, 17, 18, 19, 20, 21, 23], "name": [0, 2, 5, 16], "namedtupl": 6, "natur": [2, 13], "nears": 10, "need": [0, 1, 2, 3, 6, 7, 8, 13, 15, 17, 18, 23], "neg": 10, "nero": [19, 20, 21, 23], "nest": 1, "net": 2, "network": [2, 5, 6, 10, 11, 12, 13, 15], "neural": [6, 10, 11, 15], "neuristiqu": 6, "neuron": [6, 10, 11], "never": 10, "new": [13, 15, 18, 23], "newli": 15, "next": [2, 3, 4, 8, 18, 23], "ngram": 23, "ni": 23, "nine": 23, "nnlib": [2, 8, 9], "nois": 22, "non": [10, 18, 19], "nondifferenti": 10, "nonetheless": 5, "nonlinear": 11, "nonsens": 23, "norm": 13, "normal": [6, 11, 15], "notabl": 23, "note": [2, 5, 6, 10, 13, 15, 17, 18, 23], "notebook": 0, "notic": [6, 15, 16], "now": [2, 7, 9, 10, 11, 12, 13, 16, 17, 23], "nthe": 23, "num_epoch": [4, 6, 8, 9], "num_exampl": 6, "num_pr": [19, 20, 21, 23], "num_toss": 18, "num_train": 22, "number": [2, 3, 6, 13, 15, 16, 17, 18], "numer": [5, 7, 14, 16, 23], "numroom": 16, "nvidia": 3, "object": [15, 18], "objectid": 15, "observ": 18, "obtain": [17, 23], "occur": 23, "occurr": 18, "off": [11, 13, 18], "offer": [6, 13, 17], "often": [1, 7, 13, 15, 17, 18, 23], "old": 10, "omit": 18, "onc": [6, 23], "one": [1, 6, 7, 9, 15, 16, 17, 18, 23], "onehot": [19, 20, 21, 23], "onehotbatch": [4, 8, 9, 19, 20, 21, 23], "onehotencod": 16, "onehotmatrix": 23, "ones": [3, 5, 7, 15, 17, 18], "onli": [3, 8, 9, 10, 13, 15, 17, 18, 23], "open": [6, 16, 19, 20, 21, 23], "oper": [1, 6, 7, 10, 13, 17, 21], "operand": 17, "opposit": 11, "opt": 6, "opt_stat": [19, 20, 21, 23], "optim": [10, 11, 13], "optimis": 6, "option": 13, "order": [2, 7, 13, 15], "organ": [0, 18], "origin": [0, 2, 5, 10, 15, 16, 17, 23], "other": [0, 7, 13, 15, 23], "otherwis": 15, "our": [2, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 18, 19, 22, 23], "ourselv": [7, 18], "out": [8, 13, 15, 16, 18, 21, 22, 23], "outcom": 18, "output": [4, 6, 8, 9, 10, 13, 17, 23], "outsid": 13, "over": [5, 6, 7, 11, 13, 17, 23], "overal": 11, "overestim": 23, "own": 6, "p": [6, 7, 18], "packag": [0, 13, 14, 17, 19, 20, 21, 23], "pair": [7, 23], "param": [1, 2, 7], "paramet": [3, 4, 6, 8, 9, 10, 11, 15, 17, 19], "params_vec": 1, "pars": 15, "part": 17, "partial": 13, "particip": 12, "partit": [19, 20, 21, 22, 23], "pass": [8, 13, 17, 23], "past": [6, 13], "path": 13, "patient": [7, 18], "pattern": 18, "paus": 23, "peear": 20, "perform": [0, 1, 5, 10, 15, 17], "period": [12, 22, 23], "permut": 15, "permutedim": 15, "perplex": 23, "persist": [13, 16], "perspect": 5, "phd": 13, "physic": 16, "piecewis": 10, "pipelin": 23, "pixel": 5, "pkg": 0, "place": [12, 15], "plagu": 11, "plai": 11, "plate": 13, "plausibl": 11, "pleas": 0, "plot": [8, 10, 23], "plu": [5, 19], "plugin": 0, "point": [5, 7, 10, 15], "polytechn": 16, "poor": 11, "pop": 7, "popul": 18, "port": 0, "portabl": 7, "pose": [5, 11], "posit": [4, 7, 8, 9, 10, 11, 14, 15, 22, 23], "possibl": [0, 18], "potenti": 7, "power": [6, 23], "practic": [0, 6, 12], "practition": 11, "pre": 11, "precis": [10, 23], "predefin": 6, "predict": [7, 16, 18, 19, 20, 21], "prefix": [19, 20, 21, 23], "preliminari": 0, "prepar": [4, 8, 9], "preprocess": [5, 12, 23], "preserv": 4, "previou": [6, 8, 18], "previous": [9, 23], "price": [7, 16], "primarili": 10, "principl": 0, "print": [18, 23], "printf": [6, 14], "println": [1, 6, 11, 23], "prior": 18, "priori": 13, "probabilist": 18, "probabl": [8, 10, 15], "problem": [5, 7, 11, 13, 22], "procedur": [13, 15], "process": [0, 5, 7, 13, 16, 18], "produc": [17, 23], "product": [11, 15, 23], "program": [0, 6, 13, 15], "progress": 6, "project": 0, "prone": 13, "proof": 14, "propag": 13, "proven": 13, "provid": [2, 5, 6, 15, 18, 23], "pullov": 5, "punctuat": 23, "pure": 0, "purpos": 17, "push": [1, 7, 19, 20, 21, 22, 23], "put": [3, 5, 12], "python": 21, "qualit": 5, "qualiti": 0, "quantifi": 18, "quantiti": 17, "queri": 3, "quickli": 11, "quit": 5, "r": [19, 20, 21, 23], "ram": 5, "ramp": 17, "rand": [1, 2, 6, 11, 18], "randn": [6, 13, 15, 23], "random": [6, 11, 13, 18], "randomli": [2, 8, 15], "rang": [14, 15], "rank": 23, "rate": 5, "rather": [0, 6, 7, 13, 21], "raw": 23, "raw_text": [19, 20, 21, 23], "rc": [4, 8, 9], "re": 5, "reach": [5, 10], "read": [0, 2, 19, 20, 21], "readi": [12, 23], "readili": 19, "real": [5, 6, 10, 23], "realiti": 15, "reason": [2, 18], "recal": [6, 13, 17], "receiv": 18, "recogn": 10, "recognit": 5, "record": [13, 16, 17], "recov": 2, "recur": 19, "recurs": 1, "red": [5, 23], "reduc": [7, 11, 15, 17], "ref": [19, 20, 21, 23], "refer": [0, 5, 13], "regress": [9, 10, 22], "regular": 12, "reinforc": 18, "reinstat": 2, "relat": 17, "releas": 5, "relev": [5, 23], "reli": [7, 9], "reload": 7, "relu": [1, 2, 8, 9, 11], "render": 11, "repeat": 18, "repetit": 6, "repl": 17, "replac": [16, 19, 20, 21, 23], "repres": [5, 6, 13, 16, 17, 23], "represent": [11, 23], "requir": [2, 6, 7, 11, 12, 13, 18, 19], "reset": [19, 20, 21, 23], "reshap": [4, 6, 15, 17], "resolut": [5, 10], "respect": [1, 2, 5, 10, 13, 16, 23], "respons": 18, "result": [0, 2, 3, 4, 8, 9, 13, 15, 17, 23], "retail": 7, "retain": [10, 15], "return": [6, 13, 15, 18, 19, 20, 21, 23], "rev": 23, "revel": 13, "review": 13, "reward": 18, "rich": 10, "right": 0, "rigor": 14, "risk": 11, "rng": 6, "rnn": 19, "rockafellar": 10, "role": 11, "roll": 18, "roof": 16, "roof_typ": 16, "rooftyp": 16, "rooftype_": 16, "rooftype_miss": 16, "rooftype_sl": 16, "room": 16, "rore": 20, "rotr90": 5, "roughli": 0, "row": [7, 15, 16, 17, 23], "row_num": 5, "rt": [22, 23], "rubinfeld": 12, "rule": [13, 18], "run": [5, 7, 15, 18], "s3": [19, 20, 21, 23], "safeguard": 5, "sai": [10, 13, 17], "sale": 7, "same": [0, 2, 3, 9, 13, 15, 17, 20, 23], "sampl": [7, 15, 18, 22], "sandal": 5, "saniti": 5, "save": 0, "saw": [10, 18, 23], "scheme": 11, "scholar": 18, "school": 16, "sch\u00f6lkopf": 5, "scienc": 16, "scientist": 12, "scratch": [10, 18], "sd": 23, "search": 23, "second": [1, 5, 7, 9, 15, 17, 18], "section": [4, 5, 6, 9, 10, 11, 12, 13, 16, 17, 18], "see": [1, 4, 5, 10, 11, 14, 18, 23], "seek": 5, "seem": [11, 23], "seen": 5, "select": [12, 15, 16], "semin": 6, "sensor": 5, "sentenc": 23, "separ": [2, 13, 16], "seq_length": [19, 20, 21, 23], "sequenc": 23, "serial": 2, "serv": 5, "set": [1, 5, 7, 10, 15, 16, 18, 23], "setup": [6, 19, 20, 21, 23], "sever": [3, 16], "shape": [4, 6, 10, 13, 15, 17, 23], "share": 1, "sheer": 6, "shirt": 5, "shoe": 23, "shorten": 13, "shorthand": 15, "should": [2, 10, 17, 18, 23], "show": [1, 6, 13, 15, 19, 23], "show_imag": 5, "shuffl": [5, 6], "side": 10, "sigmoid": 11, "signal": 10, "signific": [11, 15], "significantli": [21, 23], "simard": 5, "similar": [5, 10], "similarli": [3, 4, 11, 15], "simpl": [5, 9, 10], "simpli": [8, 16, 17], "simplic": 23, "simplifi": 17, "simul": 18, "simulateur": 6, "simultan": 7, "sin": 22, "sinc": [1, 2, 5, 6, 11, 13, 16, 17], "singl": [6, 7, 11, 15, 23], "single_train_step": 6, "singleton": 17, "situat": 1, "size": [1, 2, 4, 5, 6, 15, 17, 18, 19, 20, 21, 23], "skew": 5, "skipmiss": 16, "slate": 16, "slice": 5, "slightli": 18, "slope": 14, "small": [11, 18], "smaller": [5, 23], "smallest": 18, "smi": 3, "sn2": 6, "sneaker": 5, "snippet": [6, 13, 15, 17], "so": [5, 6, 7, 13, 15, 23], "softmax": [9, 10, 19, 20, 21, 23], "solid": 18, "some": [6, 10, 11, 12, 13, 14, 16, 17, 18, 22], "someth": 18, "sometim": [13, 15, 17, 18, 23], "soon": 14, "sophist": 17, "sort": [5, 6, 23], "sourc": 6, "sparcstat": 5, "special": [12, 16], "specif": [0, 1, 5, 17, 18, 23], "specifi": [2, 3, 8, 11, 15, 17, 23], "speedup": 7, "speelpen": 13, "spell": 21, "split": [5, 15], "spot": 5, "spreadsheet": 16, "sprinkl": 2, "squar": 6, "src": [19, 20, 21, 23], "st": 6, "stabl": 11, "stack": 15, "stai": 7, "standard": [5, 6, 7, 15, 22], "start": [1, 2, 6, 7, 12, 13, 17, 18, 19, 20, 23], "state": [2, 5], "statement": [13, 15], "statist": [13, 16, 17], "statsbas": [19, 20, 21, 23], "std": 7, "step": [13, 15, 16, 22, 23], "still": [13, 15], "stock": 7, "stop": 23, "store": [2, 3, 5, 15, 16], "str": [19, 20, 21, 23], "straightforward": 13, "string": [2, 5, 16, 19, 20, 21, 23], "string7": 16, "stringdocu": 23, "stronger": 5, "struct": 2, "structur": 12, "studi": 18, "sub": 1, "subject": 18, "subsequ": [0, 8, 23], "substitut": 5, "subtl": 10, "success": [13, 18], "succinct": 6, "suffer": 18, "suffici": [5, 23], "sum": [7, 10, 13, 15, 18, 19, 20, 21, 23], "sum_a": 17, "summarys": 19, "sun": [5, 23], "supervis": [16, 18], "suppli": [2, 15, 23], "support": 5, "suppos": [7, 13], "sure": 3, "surfac": 18, "surpass": 6, "survei": 10, "symmetr": 17, "symmetri": 10, "syntax": 15, "synthet": 22, "synthetic_data": 6, "system": [10, 15], "t": [0, 5, 22, 23], "tab": 17, "tabular": 16, "tail": [18, 23], "take": [0, 5, 10, 11, 13, 15, 16, 19, 20, 21, 23], "tangent": [5, 14], "target": [4, 5, 7, 8, 9, 16, 18], "tau": 22, "techniqu": [6, 12, 13], "tediou": [1, 2, 13], "tell": [15, 18], "ten": [18, 23], "tend": 23, "tensor": [3, 13], "term": [13, 17], "terminologi": 7, "test": [4, 5, 8, 9, 18], "test_acc": [4, 8, 9], "text": [5, 13, 22, 23], "textanalysi": 23, "than": [0, 5, 6, 7, 9, 12, 13, 15, 18, 21], "theano": 6, "thei": [2, 4, 10, 11, 13, 16, 18, 20, 23], "them": [1, 2, 7, 10, 11, 12, 13, 15, 23], "themselv": 2, "theses": 18, "thesi": 13, "thi": [1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23], "thing": [0, 5, 7, 23], "think": [17, 18], "third": 15, "those": [1, 16], "though": [5, 18, 23], "thought": 23, "thousand": 23, "threaten": 11, "three": 23, "through": [1, 6, 8, 11, 12, 13, 23], "throughout": [2, 11, 16], "thu": [2, 11, 13, 15], "ti": 11, "time": [5, 7, 15, 18, 22, 23], "timemachin": [19, 20, 21, 23], "titl": 5, "tmp": 23, "to_indic": 23, "to_vocab": 23, "todai": 5, "togeth": 15, "toi": 13, "token": [19, 20, 21], "too": [0, 5], "took": 11, "tool": [0, 6, 12, 17], "topic": 11, "total": [2, 8, 9, 15, 17, 19], "toward": [5, 18], "tra": 23, "track": 13, "train": [5, 7, 8, 10, 11, 12, 13, 16, 19, 20, 21], "train_acc": [4, 8, 9], "train_load": [4, 5, 6, 8, 9, 22], "train_loss": [4, 8, 9, 22], "train_stat": 6, "trainabl": 19, "trainstat": 6, "transform": [10, 15], "transpos": [15, 17], "travel": 23, "treat": [16, 23], "tree": 1, "trial": 18, "trigonometr": 22, "trigram": 23, "trouser": 5, "true": [1, 2, 4, 5, 6, 8, 9, 13, 15, 16, 17, 18, 19, 20, 21, 23], "true_b": 6, "true_w": 6, "truth": 6, "try": [7, 22], "tupl": [5, 15, 17, 19, 20, 21, 22, 23], "turn": 18, "tutori": 0, "two": [1, 6, 7, 9, 15, 16, 17, 18, 23], "txt": [19, 20, 21, 23], "type": [15, 16, 17, 18], "typeof": 6, "typic": [5, 7, 17, 23], "u": [6, 10, 11, 13, 17, 18, 23], "ubiquit": 16, "uint32": 23, "ulm": 16, "unal": 23, "unambigu": 18, "unari": 15, "uncertainti": 18, "unchang": 17, "uncontroversi": 18, "under": [15, 18], "underli": 18, "understand": [0, 5], "unfair": 18, "unfold": 15, "unfortun": 5, "unigram": 23, "uniqu": [16, 18, 19, 20, 21, 23], "unit": 23, "unitrang": [15, 17], "unknown": 18, "unless": 11, "unpredict": 11, "unstabl": 11, "unsuit": 5, "unsupervis": 18, "until": 11, "unusu": 5, "unwieldi": 1, "up": [7, 11, 13, 17, 18, 23], "updat": [11, 15, 18], "update_lexicon": 23, "upon": [7, 16], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "usag": 3, "user": 23, "usp": 5, "v": [0, 23], "val": 22, "val_loss": 22, "valid": 10, "vals_label": 22, "valu": [6, 7, 10, 13, 15, 16, 17, 18, 22], "variabl": [0, 2, 3, 7, 18], "variou": 18, "vcat": 15, "vec": [6, 22], "vector": [1, 4, 5, 6, 9, 13, 15, 16, 19, 20, 21, 22, 23], "verbos": [19, 20, 21, 23], "veri": [2, 5, 13], "verifi": [2, 13], "version": [0, 5], "versu": 16, "vex": 11, "via": [13, 15, 16, 17], "video": 12, "view": [3, 15], "visual": [7, 23], "vital": 13, "vocab": [19, 20, 21, 23], "vocab_dict": 23, "vocab_len": [19, 20, 21, 23], "vscode": 0, "w": [5, 6, 23], "w_hh": 23, "w_xh": 23, "wa": [5, 13, 18, 21, 23], "wai": [0, 3, 10, 11, 18], "walk": 12, "want": [1, 2, 7, 13, 15, 17, 18, 23], "warm": 23, "warn": 23, "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23], "weaker": 5, "websit": 0, "weight": [1, 2, 6, 10, 12], "welcom": 0, "well": [6, 13, 23], "wengert": 13, "were": [11, 13, 18, 23], "what": [13, 15, 18, 23], "when": [1, 2, 3, 7, 8, 9, 10, 11, 13, 15, 17, 18, 23], "whenev": [7, 16, 18], "where": [7, 9, 11, 13, 15, 16, 17, 18, 23], "whether": [10, 18, 23], "which": [0, 5, 6, 7, 10, 11, 13, 15, 17, 23], "while": [5, 10, 11, 13, 14, 15, 16, 18, 23], "white": 5, "whole": [7, 15], "whop": 5, "whose": [13, 15, 16, 23], "why": [7, 11], "wide": 5, "widespread": 6, "width": 5, "wipe": 13, "wisdom": 10, "wish": [7, 13, 15, 17, 18], "wit": 6, "without": [7, 15], "word": 23, "work": [1, 5, 6, 13, 15, 23], "workload": 7, "worri": 6, "would": [1, 5, 10, 18, 23], "wrangl": 10, "write": [0, 2, 7, 15, 16, 19, 20, 21, 23], "written": 23, "wsampl": [19, 20, 21, 23], "wz6d4": [19, 20, 21, 23], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "x2": [2, 15], "xiao": 5, "xlabel": [4, 7, 8, 9, 10, 14, 18, 20, 21, 22, 23], "xoshiro": 6, "xscale": 23, "xtick": [7, 18, 22], "xticklabelsvis": 5, "xticksvis": 5, "y": [2, 4, 5, 6, 8, 9, 13, 15, 16, 17, 19, 20, 21, 22, 23], "y2": 2, "y_clone": 2, "year": [7, 18], "yield": [7, 13], "ylabel": [7, 10, 14, 18, 20, 21, 22, 23], "yml": 0, "you": [0, 5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18], "your": [0, 11, 12, 16], "yscale": 23, "ytick": [18, 22], "yticklabelsvis": 5, "yticksvis": 5, "z": [13, 19, 20, 21, 23], "za": [19, 20, 21, 23], "zero": [2, 10, 11, 15], "zip": [5, 7, 19, 20, 21, 23], "zipfian": 23, "zone": 11, "zygot": [6, 10, 13], "\u03bc": 7, "\u03c3": 7}, "titles": ["Dive into Deep Learning - Julia", "<span class=\"section-number\">15. </span>Parameter Management", "<span class=\"section-number\">16. </span>File I/O", "<span class=\"section-number\">17. </span>GPUs", "<span class=\"section-number\">10. </span>Concise Implementation of Softmax Regression", "<span class=\"section-number\">9. </span>The Image Classification Dataset", "<span class=\"section-number\">8. </span>Concise Implementation of Linear Regression", "<span class=\"section-number\">7. </span>Linear Regression", "<span class=\"section-number\">14. </span>Dropout", "<span class=\"section-number\">12. </span>Implementation of Multilayer Perceptrons", "<span class=\"section-number\">11. </span>Multilayer Perceptrons", "<span class=\"section-number\">13. </span>Numerical Stability and Initialization", "Predicting House Prices on Kaggle", "<span class=\"section-number\">5. </span>Automatic Differentiation", "<span class=\"section-number\">4. </span>Calculus", "<span class=\"section-number\">1. </span>Data Manipulation", "<span class=\"section-number\">2. </span>Data Preprocessing", "<span class=\"section-number\">3. </span>Linear Algebra", "<span class=\"section-number\">6. </span>Probability and Statistics", "<span class=\"section-number\">22. </span>Deep Recurrent Neural Networks", "<span class=\"section-number\">21. </span>Gated Recurrent Units (GRU)", "<span class=\"section-number\">20. </span>Long Short-Term Memory (LSTM)", "<span class=\"section-number\">18. </span>Working with Sequences", "<span class=\"section-number\">19. </span>Concise Implementation of Recurrent Neural Networks"], "titleterms": {"A": [13, 18], "One": 23, "The": [5, 7], "access": 1, "activ": 10, "after": 0, "algebra": 17, "algorithm": 6, "all": [0, 1], "ar": 0, "arithmet": 17, "arrai": 17, "automat": 13, "backward": 13, "base": 23, "basic": 17, "book": 0, "broadcast": 15, "calculu": 14, "classif": 5, "code": 0, "coin": 18, "comput": [3, 13], "concis": [4, 6, 8, 9, 19, 20, 21, 23], "content": 0, "contribut": 0, "control": 13, "convers": 16, "data": [12, 15, 16], "dataset": [5, 6, 16, 23], "decod": 23, "deep": [0, 19], "defin": [4, 6], "deriv": 14, "detach": 13, "devic": 3, "differenti": [13, 14], "distribut": 7, "dive": 0, "dot": 17, "download": 12, "dropout": 8, "encod": 23, "exampl": 18, "explod": 11, "exploratori": 23, "file": 2, "flow": 13, "function": [0, 6, 10, 13], "gate": 20, "gener": 6, "get": 15, "gpu": 3, "gradient": [11, 13], "gru": 20, "hidden": 23, "hot": 23, "hous": 12, "i": 2, "imag": 5, "implement": [0, 4, 6, 8, 9, 19, 20, 21, 23], "index": 15, "initi": 11, "instal": 0, "jl": 0, "julia": [0, 13], "kaggl": 12, "languag": 23, "learn": 0, "linear": [6, 7, 17], "load": [2, 5], "local": 0, "long": 21, "loss": [6, 7], "lstm": 21, "lux": 0, "manag": 1, "manipul": 15, "matric": 17, "matrix": [16, 17], "memori": [15, 21], "minibatch": 5, "model": [2, 4, 6, 9, 23], "multilay": [9, 10], "multipl": 17, "network": [3, 19, 23], "neural": [3, 19, 23], "non": [13, 17], "norm": 17, "normal": 7, "numer": 11, "o": 2, "onc": 1, "oper": 15, "optim": 6, "paramet": [1, 2], "perceptron": [9, 10], "pre": 0, "predict": [12, 23], "prepar": 16, "preprocess": 16, "price": 12, "probabl": 18, "product": 17, "properti": 17, "read": [5, 6, 16, 23], "recurr": [19, 20, 23], "reduct": 17, "regress": [4, 6, 7], "relu": 10, "requisit": 0, "revisit": 4, "rewritten": 0, "rnn": 23, "save": [2, 15], "scalar": [13, 17], "sequenc": 22, "short": 21, "sigmoid": 10, "simpl": [13, 18], "slice": 15, "softmax": 4, "some": 0, "soon": 0, "speed": 7, "squar": 7, "stabil": [0, 11], "standard": 0, "start": 15, "state": 23, "statist": [18, 23], "storag": 3, "sum": 17, "tanh": 10, "term": 21, "thi": 0, "ti": 1, "tip": 0, "token": 23, "toss": 18, "train": [4, 6, 9, 22, 23], "unit": 20, "us": 0, "util": 14, "vanish": 11, "variabl": 13, "vector": [2, 3, 7, 17], "visual": [5, 14], "vocabulari": 23, "warn": 0, "wip": 22, "work": 22}}) \ No newline at end of file +Search.setIndex({"alltitles": {"A Simple Example: Tossing Coins": [[18, "a-simple-example-tossing-coins"]], "A Simple Function": [[13, "a-simple-function"]], "Activation Functions": [[10, "activation-functions"]], "All Parameters at Once": [[1, "all-parameters-at-once"]], "Arrays": [[17, "arrays"]], "Automatic Differentiation": [[13, null]], "Backward for Non-Scalar Variables": [[13, "backward-for-non-scalar-variables"]], "Basic Properties of Array Arithmetic": [[17, "basic-properties-of-array-arithmetic"]], "Broadcasting": [[15, "broadcasting"]], "Calculus": [[14, null]], "Computing Devices": [[3, "computing-devices"]], "Concise Implementation": [[8, "concise-implementation"], [9, "concise-implementation"], [19, "concise-implementation"], [20, "concise-implementation"], [21, "concise-implementation"]], "Concise Implementation of Linear Regression": [[6, null]], "Concise Implementation of Recurrent Neural Networks": [[23, null]], "Concise Implementation of Softmax Regression": [[4, null]], "Contribution": [[0, "contribution"]], "Conversion to the Matrix": [[16, "conversion-to-the-matrix"]], "Data Manipulation": [[15, null]], "Data Preparation": [[16, "data-preparation"]], "Data Preprocessing": [[16, null]], "Decoding": [[23, "decoding"]], "Deep Recurrent Neural Networks": [[19, null]], "Defining the Loss Function": [[6, "defining-the-loss-function"]], "Defining the Model": [[4, "defining-the-model"], [6, "defining-the-model"]], "Defining the Optimization Algorithm": [[6, "defining-the-optimization-algorithm"]], "Derivatives and Differentiation": [[14, "derivatives-and-differentiation"]], "Detaching Computation": [[13, "detaching-computation"]], "Dive into Deep Learning - Julia": [[0, null]], "Dot Products": [[17, "dot-products"]], "Downloading Data": [[12, "downloading-data"]], "Dropout": [[8, null]], "Exploding Gradients": [[11, "exploding-gradients"]], "Exploratory Language Statistics": [[23, "exploratory-language-statistics"]], "File I/O": [[2, null]], "GPUs": [[3, null]], "Gated Recurrent Units (GRU)": [[20, null]], "Generating the Dataset": [[6, "generating-the-dataset"]], "Getting Started": [[15, "getting-started"]], "Gradients and Julia Control Flow": [[13, "gradients-and-julia-control-flow"]], "Implementation of Multilayer Perceptrons": [[9, null]], "Indexing and Slicing": [[15, "indexing-and-slicing"]], "Julia Code Implementation Standard": [[0, "julia-code-implementation-standard"]], "Linear Algebra": [[17, null]], "Linear Regression": [[7, null]], "Loading and Saving Model Parameters": [[2, "loading-and-saving-model-parameters"]], "Loading and Saving Vectors": [[2, "loading-and-saving-vectors"]], "Loading the Dataset": [[5, "loading-the-dataset"]], "Local installation Pre-requisites": [[0, "local-installation-pre-requisites"]], "Long Short-Term Memory (LSTM)": [[21, null]], "Matrices": [[17, "matrices"]], "Matrix-Matrix Multiplication": [[17, "matrix-matrix-multiplication"]], "Matrix-Vector Products": [[17, "matrix-vector-products"]], "Model": [[9, "model"]], "Multilayer Perceptrons": [[10, null]], "Neural Networks and GPUs": [[3, "neural-networks-and-gpus"]], "Non-Reduction Sum": [[17, "non-reduction-sum"]], "Norms": [[17, "norms"]], "Numerical Stability and Initialization": [[11, null]], "One-Hot Encoding": [[23, "one-hot-encoding"]], "Operations": [[15, "operations"]], "Parameter Access": [[1, "parameter-access"]], "Parameter Management": [[1, null]], "Predicting House Prices on Kaggle": [[12, null]], "Probability and Statistics": [[18, null]], "RNN-Based Language Model": [[23, "rnn-based-language-model"]], "ReLU Function": [[10, "relu-function"]], "Reading a Minibatch": [[5, "reading-a-minibatch"]], "Reading the Dataset": [[6, "reading-the-dataset"], [23, "reading-the-dataset"]], "Reading the Dataset\u00b6": [[16, "reading-the-dataset"]], "Recurrent Neural Networks with Hidden States": [[23, "recurrent-neural-networks-with-hidden-states"]], "Reduction": [[17, "reduction"]], "Saving Memory": [[15, "saving-memory"]], "Scalars": [[17, "scalars"]], "Sigmoid Function": [[10, "sigmoid-function"]], "Softmax Revisited": [[4, "softmax-revisited"]], "Storage on the GPU": [[3, "storage-on-the-gpu"]], "Tanh Function": [[10, "tanh-function"]], "The Image Classification Dataset": [[5, null]], "The Normal Distribution and Squared Loss": [[7, "the-normal-distribution-and-squared-loss"]], "Tied Parameters": [[1, "tied-parameters"]], "Tips": [[0, "tips"]], "Tokenization": [[23, "tokenization"]], "Training": [[4, "training"], [6, "training"], [9, "training"], [22, "training"]], "Training and Predicting": [[23, "training-and-predicting"]], "Vanishing Gradients": [[11, "vanishing-gradients"]], "Vanishing and Exploding Gradients": [[11, "vanishing-and-exploding-gradients"]], "Vectorization for Speed": [[7, "vectorization-for-speed"]], "Vectors": [[17, "vectors"]], "Vectors and GPUs": [[3, "vectors-and-gpus"]], "Visualization": [[5, "visualization"]], "Visualization Utilities": [[14, "visualization-utilities"]], "Vocabulary": [[23, "vocabulary"]], "WIP": [[22, "wip"]], "Warning \u26a0\ufe0f: All the contents of this book will be rewritten using Lux.jl soon after some Lux.jl functions are stabilized.": [[0, "warning-all-the-contents-of-this-book-will-be-rewritten-using-lux-jl-soon-after-some-lux-jl-functions-are-stabilized"]], "Working with Sequences": [[22, null]]}, "docnames": ["README", "notebooks/chapter_builders_guide/parameters", "notebooks/chapter_builders_guide/read-write", "notebooks/chapter_builders_guide/use-gpu", "notebooks/chapter_linear_classification/Concise Implementation of Softmax Regression", "notebooks/chapter_linear_classification/The Image Classification Dataset", "notebooks/chapter_linear_regression/Concise Implementation of Linear Regression", "notebooks/chapter_linear_regression/Linear Regression", "notebooks/chapter_multilayer_perceptrons/Dropout", "notebooks/chapter_multilayer_perceptrons/Implementation of Multilayer Perceptrons", "notebooks/chapter_multilayer_perceptrons/Multilayer Perceptrons", "notebooks/chapter_multilayer_perceptrons/Numerical Stability and Initialization", "notebooks/chapter_multilayer_perceptrons/Predicting House Prices on Kaggle", "notebooks/chapter_preliminaries/Automatic Differentiation", "notebooks/chapter_preliminaries/Calculus", "notebooks/chapter_preliminaries/Data Manipulation", "notebooks/chapter_preliminaries/Data Preprocessing", "notebooks/chapter_preliminaries/Linear Algebra", "notebooks/chapter_preliminaries/Probability and Statistics", "notebooks/chapter_recurrent_modern/deep-rnn", "notebooks/chapter_recurrent_modern/gru", "notebooks/chapter_recurrent_modern/lstm", "notebooks/chapter_recurrent_neural_networks/sequence", "notebooks/chapter_recurrent_neural_networks/text-sequence"], "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, "sphinxcontrib.bibtex": 9}, "filenames": ["README.md", "notebooks/chapter_builders_guide/parameters.ipynb", "notebooks/chapter_builders_guide/read-write.ipynb", "notebooks/chapter_builders_guide/use-gpu.ipynb", "notebooks/chapter_linear_classification/Concise Implementation of Softmax Regression.ipynb", "notebooks/chapter_linear_classification/The Image Classification Dataset.ipynb", "notebooks/chapter_linear_regression/Concise Implementation of Linear Regression.ipynb", "notebooks/chapter_linear_regression/Linear Regression.ipynb", "notebooks/chapter_multilayer_perceptrons/Dropout.ipynb", "notebooks/chapter_multilayer_perceptrons/Implementation of Multilayer Perceptrons.ipynb", "notebooks/chapter_multilayer_perceptrons/Multilayer Perceptrons.ipynb", "notebooks/chapter_multilayer_perceptrons/Numerical Stability and Initialization.ipynb", "notebooks/chapter_multilayer_perceptrons/Predicting House Prices on Kaggle.ipynb", "notebooks/chapter_preliminaries/Automatic Differentiation.ipynb", "notebooks/chapter_preliminaries/Calculus.ipynb", "notebooks/chapter_preliminaries/Data Manipulation.ipynb", "notebooks/chapter_preliminaries/Data Preprocessing.ipynb", "notebooks/chapter_preliminaries/Linear Algebra.ipynb", "notebooks/chapter_preliminaries/Probability and Statistics.ipynb", "notebooks/chapter_recurrent_modern/deep-rnn.ipynb", "notebooks/chapter_recurrent_modern/gru.ipynb", "notebooks/chapter_recurrent_modern/lstm.ipynb", "notebooks/chapter_recurrent_neural_networks/sequence.ipynb", "notebooks/chapter_recurrent_neural_networks/text-sequence.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 5, 6, 10, 11, 13, 14, 15, 16, 17, 18, 22, 23], "0": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 22, 23], "000": [5, 7, 23], "00001": 14, "00003": 14, "000037": 7, "00010": 14, "000224": 6, "00030": 14, "00100": 14, "00134618": 2, "00300": 14, "0038477420806883877": 6, "004839897155761719": 6, "006815": 6, "01": [7, 22], "01000": 14, "010038566589355646": 6, "01f0": 6, "01time": 22, "0234257": 2, "0274887": 2, "028": 8, "03000": 14, "03047": 11, "034858026": 6, "03599": 2, "03892e23": 11, "05": 22, "052413": 7, "05678": 11, "05706e23": 11, "06": 5, "06923e22": 11, "07015736": 1, "0725183": 15, "07651e23": 11, "084": 15, "085537": 15, "0878646": 2, "0880216": 2, "090352": 5, "0954295": 3, "09805e23": 11, "0990227": 2, "0f0": [6, 15, 17], "0falsetrue43": 16, "0truefals": 16, "0truefalse22": 16, "0truefalse34": 16, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "10": [2, 4, 5, 6, 7, 8, 9, 10, 14, 15, 17, 20, 23], "100": [5, 6, 11, 14, 18, 23], "1000": [13, 22], "10000": [5, 7, 14, 18], "100b": 13, "10184": 23, "102": 23, "1024": [19, 20, 21, 23], "106000": 16, "107828": 6, "107866": 11, "108755": 6, "109": 23, "109138": 2, "1096": 15, "11": [0, 15, 17, 20], "11011e23": 11, "11012": 11, "111111": 17, "112": 23, "1155": 23, "12": [7, 13, 15, 17, 19, 20], "1245": 23, "126": 5, "1267": 23, "127500": 16, "13": [15, 17, 20, 23], "130": 23, "133812": 2, "1395958": 1, "14": [15, 16, 17, 20, 23], "140000": 16, "145477": 23, "148": 15, "15": [5, 15, 17, 20, 23], "151": 7, "15556e23": 11, "15837": 11, "15854": 23, "16": [13, 15, 17, 20, 22, 23], "162754": 15, "166667": 17, "168548": 2, "169": 23, "17": [5, 15, 17, 20], "174497": 2, "178100": 16, "18": [5, 15, 17, 20], "182": 5, "183537": 2, "1879": 16, "1898": 23, "189805": 11, "19": [17, 20], "1964": 13, "1965": 10, "1970": 10, "197464": 23, "1978": 12, "19783": 11, "1980": 13, "1988": 6, "1989": 13, "1990": 5, "1992": 10, "1995": 5, "1996": 5, "1998": 5, "1e": [19, 20, 21, 23], "1f0": 6, "1x3": 17, "2": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23], "20": [2, 15, 17, 20, 21, 23], "200": 22, "2000": 18, "2006": 12, "2009": 5, "200_960": [8, 9], "2010": [6, 12], "2011": 12, "2012": 6, "2014": 6, "2016": 13, "2017": 5, "203886": 2, "205375": 11, "20752": 23, "21": [15, 17, 20], "216745": 2, "22": [15, 17, 20], "22026": 15, "2261": 23, "23": [5, 15, 17, 20], "23098828": 6, "234": 7, "23638": 11, "24": [15, 17, 20, 23], "24637741": 6, "25": [5, 10, 15, 17, 20], "256": [2, 4, 8, 9, 23], "2566": 23, "26": [17, 20], "26077e20": 11, "263555": 11, "269618": 2, "269703": 23, "27": [15, 19, 20, 23], "270000": 16, "27737": 23, "28": [4, 5, 8, 9, 15, 17, 20], "289": [2, 9], "28x28": 5, "29": [15, 20], "2980": 15, "29992": 23, "2_570": [2, 8, 9], "2a": 13, "2b": 13, "2randn": 22, "2x": [13, 14], "3": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 20, 22, 23], "30": [15, 20, 23], "30000": 14, "300499": 15, "309": 23, "31": [2, 20], "32": [19, 20, 21, 23], "328809": 2, "33": [15, 20], "333333": 17, "335405": 2, "33734": 15, "34": [15, 20], "348163": 15, "34964567": 9, "35": [15, 20], "3582719": 9, "36": [15, 17, 20], "3682386": 9, "37": 20, "379": 7, "38": [20, 22], "38223523": 9, "383395": 15, "39": 20, "39717e23": 11, "3979724": 9, "39m": [2, 3, 4, 8, 9, 19], "39m1": 19, "39m12_955": 19, "39m203_530": 9, "39m269_322": 8, "39m7_946": 2, "3x": 14, "4": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 20, 22, 23], "40": 20, "403": 15, "408317": 6, "41": 20, "41316": 15, "4166209": 9, "42": 20, "4288": 15, "43": 20, "434612": 2, "43611e23": 11, "44": 20, "440": 23, "44151744": 4, "44179": 2, "443": 23, "4439846": 6, "44557437": 9, "44613948": 4, "45": [18, 20], "45155552": 4, "4579": 15, "45803085": 4, "46": 20, "4659756": 4, "467": 15, "47": 20, "47606862": 4, "48": [18, 20], "4889": 18, "4895458": 4, "49": 20, "49360403": 9, "4x": [13, 14], "4x3": 15, "5": [1, 4, 5, 6, 8, 9, 10, 14, 15, 17, 18, 20, 22, 23], "50": [19, 20, 21], "501898": 23, "5049412": 6, "50599": 15, "507334": 11, "5090037": 4, "51073": 15, "5111": 18, "52": 18, "52311933": 1, "52477": 23, "54": 15, "540": 5, "541": 23, "5413316": 4, "55": 18, "552": 23, "555556": 17, "557541": 6, "56": 5, "56064373": 1, "56865656": 9, "58002": 15, "582175": 23, "582191": 2, "5881851": 1, "59": 23, "5925564": 6, "59815": 15, "59874": 15, "5_376": 2, "5_792": 19, "5f": 14, "5f0": 17, "6": [5, 7, 8, 11, 13, 15, 17, 20, 23], "60": [5, 23], "600": 22, "60000": 5, "600773": 15, "6151819": 4, "6160638": 1, "62": 7, "628987": 11, "6332": 15, "64": [5, 15, 19], "64mb": 5, "65_792": 8, "662": [19, 20, 21, 23], "675443": 11, "68244076": 6, "68355e23": 11, "68876016": 9, "695": 23, "69729e20": 11, "6_272": 19, "7": [7, 11, 15, 17, 20, 23], "7182817": 15, "73": 23, "7447525": 6, "74673": 15, "7515991": 1, "752": 9, "7616638": 6, "7618166666666667": 9, "78": [7, 15, 23], "7829": 4, "784": [4, 8, 9], "78449243": 1, "791": 9, "795": 9, "79765": 4, "7_850": 4, "8": [1, 6, 10, 11, 13, 15, 17, 20, 23], "8034333333333333": 9, "8083": 4, "8103": 15, "8153": 9, "816": 23, "8187": 4, "8203666666666667": 4, "8246": 4, "8269": 4, "82741e20": 11, "8281e23": 11, "8282": 4, "8288e20": 11, "8294": 9, "8302166666666667": 4, "8304": 9, "8309": 4, "8326": 4, "8342": 4, "8345": 4, "836": 4, "8398": 4, "8402": 9, "8427333333333333": 4, "8449": 9, "8449666666666666": 9, "84545": 4, "84745": 4, "8488333333333333": 4, "849": 9, "85": 23, "85015": 4, "8544833333333334": 9, "8545": 9, "8566": 9, "8581": 9, "8608833333333333": 9, "86575": 9, "8708833333333333": 9, "87141": 15, "8740666666666667": 9, "8769666666666667": 9, "88": 7, "891": 19, "9": [4, 5, 8, 9, 15, 17, 20, 23], "90m": [2, 3, 4, 8, 9, 19], "9118508": 6, "917991": 11, "9225617": 6, "938": [5, 19], "95": 5, "958": 15, "960691": 11, "970": 3, "9852763": 6, "98534": 11, "98955e22": 11, "99": 23, "A": [5, 15, 16, 17, 19, 20, 21, 23], "AT": 5, "And": [10, 15, 18], "As": [4, 5, 7, 9, 10, 11, 13, 18], "At": [5, 15], "But": 23, "By": [5, 6, 17, 18], "For": [0, 2, 3, 5, 6, 13, 15, 16, 17, 18, 23], "If": [0, 15, 17, 18], "In": [1, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 17, 18, 20, 22, 23], "It": [0, 5, 6, 10, 12], "Not": [7, 16], "One": [5, 13, 17, 18], "Or": [18, 23], "That": [10, 15, 18], "The": [0, 1, 2, 3, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 21, 23], "There": [3, 10], "These": [6, 16, 23], "To": [2, 5, 6, 7, 10, 11, 13, 15, 16, 17, 18, 22, 23], "With": 8, "_": [1, 2, 6, 18], "_download": 23, "_toc": 0, "about": [0, 6, 10, 15, 18, 23], "abov": [20, 21, 23], "abstractstr": 23, "acceler": [19, 20, 21, 23], "access": [6, 15, 17], "accomplish": 16, "accord": [8, 11, 15], "accuraci": 5, "achiev": 5, "across": 1, "act": 18, "action": 18, "activ": [0, 5, 11], "actual": [6, 10, 23], "ad": [7, 9, 10, 17, 23], "adag": 10, "adam": [19, 20, 21, 23], "add": [0, 7, 8, 9, 10], "addit": [5, 17, 22, 23], "adher": 18, "adjoint": 17, "adopt": 6, "advanc": 13, "advantag": [5, 6], "ae": 7, "after": [2, 8, 11, 15, 17, 18, 23], "ag": 7, "against": [5, 6], "agent": 18, "al": [5, 6, 13], "albert": 16, "algebra": 7, "algorithm": [5, 10, 11, 13], "alia": 15, "all": [2, 5, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 23], "alloc": [1, 5, 6, 7, 15], "allow": [5, 6, 10, 15, 17, 18], "almalinidenapi": 23, "along": [10, 15, 17, 23], "alreadi": 23, "also": [11, 15, 16, 17, 23], "alter": 15, "altern": 7, "although": [10, 17], "am": 12, "amazonaw": [19, 20, 21, 23], "among": [7, 13, 23], "an": [0, 1, 2, 5, 7, 10, 13, 14, 15, 16, 17, 18, 19, 21, 23], "analog": 17, "analyz": 18, "ancestor": 13, "ani": [1, 5, 15, 17, 18, 23], "ankl": 5, "anomal": 18, "anoth": [0, 1, 13, 18], "api": [6, 8, 9, 10, 19, 20, 21, 23], "appeal": 11, "append": 16, "appli": [10, 13, 15, 18, 22], "applic": [6, 23], "apply_append": 16, "approach": [10, 12], "appropri": [10, 17], "ar": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 23], "arbitrari": [2, 13, 17], "arbitrarli": 4, "architectur": [2, 6], "area": 7, "arguabl": 6, "argument": [8, 15, 18], "arrai": [2, 5, 8, 9, 15, 18, 19], "art": 5, "artifact": 18, "artifici": 11, "ascii": 23, "aspect": 5, "assign": [13, 15, 17, 18], "assist": 23, "associ": 5, "atom": 23, "attack": 18, "attempt": 18, "attent": 22, "attribut": 17, "audio": 12, "autocomplet": 23, "autograd": 13, "autom": [5, 6], "automat": [6, 15], "autos": [1, 2], "autozygot": 6, "auxiliari": 13, "avail": [3, 18, 19], "averag": [6, 17], "avoid": 0, "awai": 10, "ax": [4, 7, 8, 9, 11, 14, 17, 18, 20, 21, 22, 23], "ax2": [22, 23], "ax3": 23, "axi": [4, 5, 7, 8, 9, 10, 14, 15, 17, 18, 20, 21, 22, 23], "axislegend": [4, 7, 8, 9, 11, 14, 18, 22, 23], "b": [6, 7, 13, 15, 17, 23], "babi": 23, "back": [2, 13, 18, 23], "backend": [19, 20, 21, 23], "backpropag": [11, 13], "backward": 18, "bag": 5, "base": [6, 7, 15, 16], "basic": [12, 23], "batch": 13, "batch_num": 5, "batch_siz": [6, 19, 20, 21, 22, 23], "batchseq": [19, 20, 21, 23], "batchsiz": [4, 5, 6, 8, 9, 22], "bayesian": 18, "becaus": [6, 10, 15, 18], "becom": [13, 17], "bed": 16, "been": [13, 18, 23], "befor": [13, 15, 21, 22], "began": 23, "begin": [15, 18, 19, 20, 21, 22, 23], "behav": 23, "behavior": 17, "behind": 13, "belief": 18, "bell": 5, "below": [1, 5, 6, 10, 13, 15, 16, 17, 23], "benchmark": [5, 7], "benefit": 13, "bergstra": 6, "best": 0, "better": [0, 11, 23], "between": [5, 15], "beyond": [11, 23], "bia": [1, 6, 10], "bias": 1, "bigram": 23, "binari": [5, 15], "binomi": 18, "biolog": 11, "bit": [5, 11], "bitmatrix": 15, "black": [5, 18], "blazingli": 5, "blister": 5, "block": 15, "blue": 5, "boast": [11, 12], "book": [5, 10, 23], "bool": 23, "boolbool1missingtruefalse22truefalse34falsetrue4missingtruefals": 16, "boot": 5, "boston": 12, "both": [2, 6, 11, 12, 13, 15, 17, 23], "bottou": 6, "boundari": [5, 10], "break": 23, "briefli": 10, "broadcast": 17, "broader": 18, "broadli": 18, "brows": 0, "buf": [19, 20, 21, 23], "bug": 16, "build": [0, 6, 12, 13, 17, 18], "built": [0, 2, 4, 5, 17, 19], "c": [7, 13, 19, 20, 21, 23], "caff": 6, "cairomaki": [4, 5, 7, 8, 9, 10, 11, 14, 18, 20, 21, 22, 23], "calcul": [3, 7, 10, 13, 17], "call": [6, 7, 13, 15, 16, 17, 18, 23], "cambrian": 6, "came": 23, "can": [0, 1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 21, 23], "cannot": 2, "capabl": 10, "capit": 23, "care": [11, 18], "career": [11, 12, 16, 18], "cartesianindic": 5, "case": [10, 13, 15], "cat": [15, 23], "categor": 16, "categori": [5, 7, 10, 16], "caus": [11, 15], "cdot": 17, "ceil": 5, "cell": 0, "centuri": 13, "certain": 15, "chain": [1, 2, 3, 4, 8, 9, 13, 19, 20, 21, 23], "challeng": 5, "chang": [0, 15, 18], "channel": 5, "chapter": 0, "char": [19, 20, 21, 23], "charact": 23, "character": 18, "check": [5, 6, 23], "chees": 18, "choic": [0, 11, 13, 23], "choos": 11, "chunk": [19, 20, 21, 23], "ci": 0, "class": [10, 23], "class_nam": 5, "classic": [6, 7], "classif": 7, "classifi": [4, 5, 8, 9, 10], "clean": 5, "clearer": 13, "clone": [0, 2], "close": [0, 6, 10, 11], "closer": 11, "cloth": [5, 10], "coat": 5, "cock": 12, "code": [2, 3, 5, 6, 7, 13, 15, 17, 21], "coerc": 10, "col": 16, "collect": [12, 13, 15, 17, 18, 19, 20, 21, 22, 23], "color": 18, "column": [15, 16, 17, 23], "column_num": 5, "com": [19, 20, 21, 23], "combin": [6, 23], "come": 5, "comma": 16, "command": 3, "common": [6, 7, 10, 13, 16], "commonli": 13, "compani": 18, "compar": [5, 6, 9, 10, 23], "competit": 12, "compil": [5, 7, 21], "complet": 17, "complex": [1, 6, 9, 13], "compon": [5, 6, 13, 17], "compos": 23, "composit": 15, "compris": 23, "comput": [2, 6, 7, 15, 17, 23], "concaten": [9, 15, 23], "concept": 17, "conceptu": 9, "concern": [10, 13, 18, 23], "condit": [10, 13, 15, 23], "conduct": 18, "configur": [20, 21], "conflict": 23, "confront": 16, "confus": 17, "connect": [1, 4, 6, 8, 9], "consecut": 23, "consequ": [5, 11], "consid": [5, 7, 13], "consider": [6, 12], "consist": [0, 5, 7, 16, 22], "const": 6, "constitut": 23, "constrain": [5, 10], "construct": [4, 6, 15, 17, 23], "constructor": 8, "consum": 3, "contain": [1, 2, 5, 7, 13, 15, 16, 23], "context": [10, 16], "continu": [22, 23], "contrari": 11, "contrast": [6, 18], "convei": 13, "conveni": [2, 4, 5, 6], "convent": [5, 10], "converg": [11, 18], "convert": [5, 16, 23], "convert2imag": 5, "coordin": [7, 10], "copi": [15, 17], "core": 13, "corpu": 23, "correct": 23, "correctr": [4, 8, 9], "correspond": [1, 5, 7, 10, 15, 16, 17, 18, 23], "corrupt": 22, "costli": 7, "could": [13, 15, 23], "count": [18, 23], "counterpart": 6, "countless": 7, "cours": 18, "covari": 7, "cover": [0, 12, 22], "cpu": [19, 20, 21, 23], "creat": [0, 3, 13, 15, 16, 17, 22], "crp": 23, "crucial": [11, 13], "csv": 16, "csv_data": 16, "cu": 3, "cuarrai": 3, "cuda": [3, 19, 20, 21, 23], "cum_count": 18, "cumsum": [17, 18], "cumul": 17, "cun": 6, "curv": 18, "cut": 11, "d": [7, 19, 20, 21, 23], "d2l": [19, 20, 21, 23], "d2ljulia": 0, "dash": [4, 8, 9, 11, 14, 18, 22, 23], "dashdot": [4, 8, 9, 23], "data": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 18, 19, 20, 21, 22, 23], "dataaspect": 5, "datadeps_always_accept": [4, 5, 8, 9], "datafram": 16, "dataframerownumroomsrooftype_missingrooftype_slatefloat64boolbool13": 16, "dataframerownumroomsrooftype_missingrooftype_slateint64": 16, "dataframerownumroomsrooftypepriceint64": 16, "dataload": [4, 5, 6, 8, 9, 22], "dataset": [7, 12, 17, 18], "date": 13, "de": 12, "deal": 15, "dean": 6, "decad": [5, 6, 13], "decai": 12, "decid": 10, "deep": [2, 4, 5, 6, 10, 11, 12, 13], "default": [6, 10, 11, 13, 17], "defin": [13, 15, 23], "degre": 18, "delet": 16, "delv": 11, "demand": 7, "demonstr": [1, 15, 16, 23], "deng": 5, "denot": 6, "dens": [1, 2, 3, 4, 6, 8, 9, 19, 20, 21, 22, 23], "depart": 18, "depend": [0, 13, 16, 18], "derefer": 15, "deriv": [10, 13], "descent": [4, 6, 8, 9, 22], "describ": [6, 18], "deseri": 2, "design": [5, 12, 16, 17, 23], "desir": 17, "desktop": 0, "destroi": 11, "detail": [2, 11, 12, 19, 20, 21], "determin": [11, 18], "develop": [5, 7, 13, 14, 18, 23], "deviat": [7, 15, 18], "devic": [19, 20, 21, 23], "devicebuff": 3, "deviceiter": 3, "devot": 18, "diagon": 15, "dict": [2, 5, 23], "dictionari": 2, "did": [6, 18, 23], "die": 18, "differ": [9, 15, 18, 23], "differenti": [6, 10], "digit": 5, "dim": [5, 15, 17, 23], "dimens": [4, 15, 17, 23], "dimension": [4, 6, 7, 15, 17], "dir_path": 16, "direct": [10, 13], "directli": [2, 20, 21], "directori": 0, "discard": [10, 16], "discuss": [5, 11, 15], "disk": 2, "displai": [11, 16, 17], "distanc": [5, 18], "distbelief": 6, "distinct": [16, 17, 23], "distinguish": 5, "distribut": [6, 10, 11, 15, 18, 23], "diverg": 10, "divid": [17, 18], "divis": 17, "do": [1, 3, 4, 7, 8, 9, 10, 12, 13, 23], "document": [0, 23], "doe": 17, "dollar": 7, "don": 0, "dot": 15, "down": 23, "download": [5, 19, 20, 21, 23], "dramat": 7, "draw": [11, 18], "drawn": [6, 15], "dress": 5, "drew": 18, "drop": [8, 16, 17], "dropdim": 17, "dropout": 12, "dropout1": 8, "dropout2": 8, "due": 6, "dure": 8, "dwowleu": 21, "dynam": 13, "e": [1, 13, 15, 16, 18, 23], "each": [1, 5, 6, 7, 8, 11, 13, 15, 16, 17, 18, 22, 23], "eachslic": 5, "earli": 11, "earlier": 6, "earliest": 13, "easi": 0, "easier": [4, 6], "easili": 23, "effici": 7, "einstein": 16, "either": [10, 11, 15, 16], "elegantli": 1, "element": [1, 2, 4, 5, 9, 10, 13, 15, 16, 17, 18, 22, 23], "elementwis": [7, 15, 17], "ell_1": 17, "ell_2": 17, "eltyp": [15, 17, 23], "email": 23, "emerg": 11, "emit": 23, "emploi": [13, 18], "empti": 16, "encapsul": [20, 21], "encod": 16, "encount": [11, 18], "end": [1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 15, 19, 20, 21, 22, 23], "engin": [10, 23], "enough": 5, "ensur": 23, "entir": [1, 2], "entri": [0, 2, 5, 6, 15, 16], "enumer": 1, "env": [4, 5, 8, 9], "environ": 18, "epoch": [4, 6, 8, 9, 19, 20, 21, 23], "equal": [10, 15, 23], "equip": 5, "equival": [8, 15, 17], "error": [5, 6, 7, 13], "especi": [1, 11], "essenti": 17, "estim": [6, 7, 16, 18], "et": [5, 6, 13], "etc": 7, "evalu": [0, 5, 13, 15, 23], "even": [2, 5, 9, 11, 13, 15, 18], "event": 18, "everi": [7, 11, 15], "evid": 18, "evolv": 18, "exact": 15, "exactli": 9, "exampl": [2, 3, 5, 6, 7, 12, 13, 14, 15, 17, 22, 23], "exce": 3, "excess": [5, 11], "execut": 0, "exhibit": [10, 12], "exist": 23, "exot": 12, "exp": 15, "expand": 15, "expect": [9, 13, 18], "experi": [5, 6, 14, 18], "explain": 0, "explicit": [20, 21], "explor": [10, 13], "explos": 6, "exponenti": 17, "express": [6, 17], "extract": [1, 22], "f": [4, 6, 7, 8, 9, 11, 13, 14], "face": 11, "facilit": 0, "fact": [10, 13, 17, 18], "factor": 6, "fair": 18, "fairli": [12, 18], "fals": [5, 15, 16], "famili": 5, "familiar": [2, 17], "famou": 12, "far": [6, 11, 13, 23], "fashion": [4, 5, 13], "fashionmnist": [4, 5, 8, 9], "fast": [5, 7, 23], "faster": [0, 6, 7, 21], "featur": [4, 5, 6, 7, 8, 9, 12, 18, 19, 20, 21, 22, 23], "featuretransform": 16, "fed": 23, "feder": 16, "feed": 23, "feet": 7, "few": [0, 5, 17], "fewer": 6, "fg": [14, 18, 20, 21, 22, 23], "fg2": [22, 23], "fg3": 23, "field": [16, 18], "fig": [5, 6], "figur": [5, 7, 23], "file": [0, 16], "file_path": [16, 19, 20, 21, 23], "final": [13, 15], "find": 11, "finit": [6, 18], "fire": 11, "first": [3, 5, 6, 7, 9, 13, 15, 16, 17, 18, 22], "five": 23, "fix": 17, "flatten": [4, 8, 9], "float": 18, "float32": [1, 2, 3, 4, 5, 6, 9, 15, 17], "float64": [2, 11, 13, 15, 16, 17, 22, 23], "flux": [0, 1, 2, 3, 4, 8, 9, 10, 11, 19, 20, 21, 22, 23], "fluxcudadevic": 23, "fluxml": 0, "focu": [5, 6, 13, 22], "focus": [0, 1], "folder": 0, "follow": [1, 3, 5, 6, 13, 15, 17, 22, 23], "forecast": 7, "form": [13, 15], "formal": 18, "formid": 5, "fortuit": 6, "fortun": [13, 19], "forward": [13, 23], "found": 6, "foundat": 18, "framework": [2, 4, 5, 6, 13], "free": 6, "freedom": 13, "frequenc": [18, 23], "frequent": [5, 23], "frequentist": 18, "frobeniu": 17, "from": [2, 5, 6, 10, 12, 13, 15, 17, 18, 22, 23], "full": 13, "fulli": [1, 4, 6, 8, 9, 11], "function": [2, 4, 5, 11, 14, 15, 17, 18, 19, 20, 21, 22, 23], "functor": [19, 20, 21, 23], "fundament": [10, 17], "further": [10, 13], "furthermor": 23, "fuse": 15, "g": [1, 13, 15, 16, 18, 23], "gain": [10, 12], "gaussian": [11, 15], "gc": 5, "geforc": 3, "gener": [2, 3, 4, 5, 12, 13, 14, 17, 18, 19, 20, 21, 23], "genericlossfunct": 6, "gentl": 17, "get": [2, 7, 10, 16, 18, 23], "get_devic": [19, 20, 21, 23], "get_fashion_mnist_label": 5, "getdata": [19, 20, 21, 23], "getindex": [4, 8, 9], "give": [18, 23], "given": [6, 15, 16, 18, 23], "gloss": 11, "go": [11, 23], "goal": 7, "goldilock": 11, "good": [0, 5], "gotten": 11, "grad": [10, 13], "gradient": 6, "grant": 11, "graph": 13, "gravit": 16, "great": [0, 12], "greater": [11, 18], "green": 5, "griewank": 13, "ground": 6, "group": [2, 18], "grow": [1, 6, 13, 17, 18], "gruv3": [19, 20], "gruv3cel": 19, "gtx": 3, "guid": 12, "h": [5, 14, 23], "ha": [5, 6, 13, 17, 20, 21, 23], "had": [5, 23], "hadamard": 17, "half": 13, "hand": [7, 10, 12, 13], "handi": 17, "handl": 16, "handwritten": 5, "happen": [15, 16, 18], "hardli": 11, "harrison": 12, "hasdgpbmyhpqxjlgmewm": 23, "have": [0, 2, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 23], "havermaglen": 23, "hcat": [15, 22], "head": 18, "header": 16, "heart": 18, "height": 5, "help": [0, 18], "henc": [2, 5, 23], "here": [4, 5, 10, 11, 13, 15, 16, 17, 18, 22, 23], "heurist": [11, 16], "hidden": [1, 9], "high": [4, 5, 6, 8, 9, 10, 19, 20, 21, 23], "higher": [13, 15], "histori": 13, "hline": 18, "hold": 16, "home": [7, 16, 19, 20, 21, 23], "hood": 21, "hope": [12, 18], "hospit": 7, "host": 15, "hot": [13, 16], "hous": 7, "house_tini": 16, "how": [1, 5, 6, 10, 11, 13, 16, 18], "howev": [15, 23], "http": [19, 20, 21, 23], "human": 5, "hundr": [2, 23], "hunt": 18, "hymap": 5, "hyperparamet": 12, "hyperspectr": 5, "i": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23], "ia": 12, "idea": [5, 11, 13, 23], "ident": [13, 15, 18], "identifi": 23, "ignor": 23, "ii": [11, 15, 18], "illustr": [5, 7, 11, 13], "imag": [4, 10], "imagenet": 5, "imageshow": 5, "implement": [10, 11, 17, 18], "import": [2, 11, 16], "imposs": [11, 13], "impress": 11, "imput": 16, "includ": [7, 12, 15], "increas": 7, "inde": [11, 14], "independ": 15, "index": [1, 16, 17], "indic": [17, 23], "indices_dict": 23, "individu": [2, 6, 13, 17, 18], "indivis": 23, "infer": 18, "influenc": 13, "info": [19, 20, 21, 23], "inform": [10, 23], "infrequ": 23, "ingest": 23, "initi": [2, 13, 15], "input": [2, 3, 4, 6, 8, 10, 11, 13, 16, 17, 23], "inspect": [1, 5, 6, 15, 23], "inspir": 11, "instanc": [2, 7, 13, 15, 17], "instanti": [0, 2, 7, 20, 21], "instead": [2, 15], "institut": 18, "int": [5, 6, 15, 19, 20, 21, 23], "int64": [2, 5, 15, 16, 17, 23], "int641missingmissing12750022missing10600034slate1781004missingmissing140000": 16, "integ": 16, "intellig": 18, "intend": 18, "interact": 5, "interest": [11, 18, 22], "intermedi": 13, "interpret": [13, 18], "introduc": [7, 10, 12], "introduct": 17, "intuit": [6, 10, 12, 14, 18], "invari": 5, "invok": [2, 5, 15, 17], "involv": 23, "io": [5, 19, 20, 21, 23], "iobuff": [16, 19, 20, 21, 23], "ipynb": 0, "issu": 15, "iter": [6, 13, 22], "itertool": [19, 20, 21, 22, 23], "its": [1, 5, 6, 8, 11, 13, 15, 17, 23], "j": 15, "jacobian": 13, "jia": 6, "jl": [5, 16, 18, 19, 20, 21, 23], "jl_76lotklqf4": 23, "jld2": 2, "jldsave": 2, "join": 23, "joinpath": 16, "julia": [6, 7, 15, 17, 19, 20, 21, 23], "juliaml": 0, "julian": 0, "jupyt": 0, "jupyterlab": 0, "just": [0, 4, 13, 15, 17, 18, 23], "k": [5, 7], "kalman": 10, "keep": [17, 23], "kei": [5, 9], "kib": [2, 7, 9, 19], "know": [0, 13, 18], "knowledg": [0, 12], "known": [18, 23], "kwasni": 10, "l": 23, "l2_distance_loss": 6, "label": [4, 5, 6, 7, 8, 9, 11, 14, 18, 22, 23], "laboratori": 5, "lack": 14, "laid": 15, "languag": [0, 13, 15, 18], "larg": [5, 11, 23], "larger": [12, 15, 23], "last": [4, 15, 23], "late": 13, "later": [2, 6, 7], "launch": 10, "law": 23, "layer": [1, 2, 4, 6, 8, 9, 11, 19], "le": 6, "lead": 13, "learn": [2, 4, 5, 6, 7, 10, 11, 13, 16, 18, 23], "least": 10, "lecun": 5, "left": 10, "lenet": 5, "length": [1, 5, 6, 7, 13, 14, 15, 17, 19, 20, 21, 23], "less": 11, "let": [1, 2, 5, 6, 10, 11, 13, 14, 16, 18, 22, 23], "letter": 5, "level": [4, 5, 6, 8, 9, 10, 19, 20, 21, 23], "leverag": [7, 23], "lex_dict": 23, "lexicon": 23, "librari": [0, 6, 7, 13], "light": 18, "like": [6, 11, 15, 16, 18, 23], "likelihood": 18, "likewis": [0, 6, 13, 17], "limit": [3, 14], "line": [4, 6, 7, 8, 9, 10, 11, 14, 16, 18, 20, 21, 22, 23], "linear": [4, 9, 10, 22], "linearalgebra": [13, 17], "linestyl": [4, 8, 9, 11, 14, 18, 22, 23], "lisp": 6, "list": [2, 15, 23], "litt": 23, "littl": [0, 22], "ll": [0, 5], "load": [16, 17], "loader": 5, "loadmodel": 2, "locat": [15, 16], "log10": 23, "logic": 15, "logist": 19, "logitcrossentropi": [4, 8, 9, 19, 20, 21, 23], "long": [5, 13], "longer": [5, 23], "look": [0, 5, 6, 11], "loop": [7, 9, 13, 23], "loot": 23, "loss": [4, 8, 9, 10, 13, 19, 20, 21, 22, 23], "loss_train": [19, 20, 21, 23], "lossfunctionimpl": 6, "lost": 23, "lot": 13, "low": [0, 6, 10], "lowercas": [19, 20, 21, 23], "lt": [7, 11, 14], "lux": 6, "m": [11, 17, 23], "machin": [5, 7, 13, 18, 23], "made": [4, 11, 18, 20, 21], "magnitud": [7, 11], "mai": [0, 10, 11, 15, 18], "main": 23, "mainli": 0, "maintain": 11, "major": [5, 15, 18], "make": [0, 3, 5, 13, 22], "maki": 14, "man": 23, "mangasarian": 10, "mani": [0, 5, 7, 11, 15, 19, 21], "manipul": 17, "manner": 23, "map": [2, 4, 8, 9, 11, 22], "march": 16, "master": [10, 13], "match": 6, "mathemat": [7, 10, 14, 17, 18], "mathematician": 10, "matric": [11, 15, 23], "matrix": [2, 4, 6, 11, 13, 15, 22, 23], "matter": [7, 10, 17], "maximum": 10, "maze": 13, "me": 23, "mean": [0, 6, 7, 15, 16, 17], "measur": [10, 18], "mechan": [10, 15, 17], "medic": 23, "mem": 3, "membership": 7, "memori": [2, 3, 5], "menac": 16, "metadata": 5, "method": [4, 5, 6, 7, 13, 14, 17, 19, 20, 21, 23], "mflop": 5, "mib": [5, 7, 8], "might": [2, 6, 9, 11, 12, 13, 16, 18], "minibatch": [6, 7], "minim": 10, "minut": 0, "miss": 16, "mistak": 5, "mkpath": 16, "ml": 0, "mlbase": [0, 4, 8, 9], "mldataset": [4, 5, 8, 9], "mlp": [1, 2, 9], "mlutil": [0, 4, 5, 6, 8, 9, 22], "mnist": [4, 5], "mnist_accuraci": [4, 8, 9], "mnist_test": [4, 5, 8, 9], "mnist_train": [4, 5, 8, 9], "mode": 8, "model": [1, 3, 5, 7, 8, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22], "model_st": 2, "modern": [5, 6, 13], "modul": [1, 23], "modular": 6, "moon": 18, "more": [1, 5, 6, 7, 9, 11, 12, 13, 15, 18, 22], "moreov": [7, 11, 18], "most": [0, 5, 10, 13, 15, 17, 18, 23], "move": [10, 11, 13], "mse": [6, 22], "mseloss": 6, "much": [0, 5, 6, 7, 9, 23], "multi": [15, 17], "multipl": [1, 6, 9, 15, 18, 19], "multipli": [11, 17, 23], "must": [5, 17], "mutabl": 15, "my": 23, "mydict": 2, "mydict2": 2, "n": [6, 7, 14, 17, 18, 19, 20, 21, 23], "name": [0, 2, 5, 16], "namedtupl": 6, "natur": [2, 13], "nears": 10, "need": [0, 1, 2, 3, 6, 7, 8, 13, 15, 17, 18, 23], "neg": 10, "nero": [19, 20, 21, 23], "nest": 1, "net": 2, "network": [2, 5, 6, 10, 11, 12, 13, 15], "neural": [6, 10, 11, 15], "neuristiqu": 6, "neuron": [6, 10, 11], "never": 10, "new": [13, 15, 18, 23], "newli": 15, "next": [2, 3, 4, 8, 18, 23], "ngram": 23, "ni": 23, "nine": 23, "nnlib": [2, 8, 9], "nois": 22, "non": [10, 18, 19], "nondifferenti": 10, "nonetheless": 5, "nonlinear": 11, "nonsens": 23, "norm": 13, "normal": [6, 11, 15], "notabl": 23, "note": [2, 5, 6, 10, 13, 15, 17, 18, 23], "notebook": 0, "notic": [6, 15, 16], "now": [2, 7, 9, 10, 11, 12, 13, 16, 17, 23], "nthe": 23, "num_epoch": [4, 6, 8, 9], "num_exampl": 6, "num_pr": [19, 20, 21, 23], "num_toss": 18, "num_train": 22, "number": [2, 3, 6, 13, 15, 16, 17, 18], "numer": [5, 7, 14, 16, 23], "numroom": 16, "nvidia": 3, "object": [15, 18], "objectid": 15, "observ": 18, "obtain": [17, 23], "occur": 23, "occurr": 18, "off": [11, 13, 18], "offer": [6, 13, 17], "often": [1, 7, 13, 15, 17, 18, 23], "old": 10, "omit": 18, "onc": [6, 23], "one": [1, 6, 7, 9, 15, 16, 17, 18, 23], "onehot": [19, 20, 21, 23], "onehotbatch": [4, 8, 9, 19, 20, 21, 23], "onehotencod": 16, "onehotmatrix": 23, "ones": [3, 5, 7, 15, 17, 18], "onli": [3, 8, 9, 10, 13, 15, 17, 18, 23], "open": [6, 16, 19, 20, 21, 23], "oper": [1, 6, 7, 10, 13, 17, 21], "operand": 17, "opposit": 11, "opt": 6, "opt_stat": [19, 20, 21, 23], "optim": [10, 11, 13], "optimis": 6, "option": 13, "order": [2, 7, 13, 15], "organ": [0, 18], "origin": [0, 2, 5, 10, 15, 16, 17, 23], "other": [0, 7, 13, 15, 23], "otherwis": 15, "our": [2, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 18, 19, 22, 23], "ourselv": [7, 18], "out": [8, 13, 15, 16, 18, 21, 22, 23], "outcom": 18, "output": [4, 6, 8, 9, 10, 13, 17, 23], "outsid": 13, "over": [5, 6, 7, 11, 13, 17, 23], "overal": 11, "overestim": 23, "own": 6, "p": [6, 7, 18], "packag": [0, 13, 14, 17, 19, 20, 21, 23], "pair": [7, 23], "param": [1, 2, 7], "paramet": [3, 4, 6, 8, 9, 10, 11, 15, 17, 19], "params_vec": 1, "pars": 15, "part": 17, "partial": 13, "particip": 12, "partit": [19, 20, 21, 22, 23], "pass": [8, 13, 17, 23], "past": [6, 13], "path": 13, "patient": [7, 18], "pattern": 18, "paus": 23, "peear": 20, "perform": [0, 1, 5, 10, 15, 17], "period": [12, 22, 23], "permut": 15, "permutedim": 15, "perplex": 23, "persist": [13, 16], "perspect": 5, "phd": 13, "physic": 16, "piecewis": 10, "pipelin": 23, "pixel": 5, "pkg": 0, "place": [12, 15], "plagu": 11, "plai": 11, "plate": 13, "plausibl": 11, "pleas": 0, "plot": [8, 10, 23], "plu": [5, 19], "plugin": 0, "point": [5, 7, 10, 15], "polytechn": 16, "poor": 11, "pop": 7, "popul": 18, "port": 0, "portabl": 7, "pose": [5, 11], "posit": [4, 7, 8, 9, 10, 11, 14, 15, 22, 23], "possibl": [0, 18], "potenti": 7, "power": [6, 23], "practic": [0, 6, 12], "practition": 11, "pre": 11, "precis": [10, 23], "predefin": 6, "predict": [7, 16, 18, 19, 20, 21], "prefix": [19, 20, 21, 23], "preliminari": 0, "prepar": [4, 8, 9], "preprocess": [5, 12, 23], "preserv": 4, "previou": [6, 8, 18], "previous": [9, 23], "price": [7, 16], "primarili": 10, "principl": 0, "print": [18, 23], "printf": [6, 14], "println": [1, 6, 11, 23], "prior": 18, "priori": 13, "probabilist": 18, "probabl": [8, 10, 15], "problem": [5, 7, 11, 13, 22], "procedur": [13, 15], "process": [0, 5, 7, 13, 16, 18], "produc": [17, 23], "product": [11, 15, 23], "program": [0, 6, 13, 15], "progress": 6, "project": 0, "prone": 13, "proof": 14, "propag": 13, "proven": 13, "provid": [2, 5, 6, 15, 18, 23], "pullov": 5, "punctuat": 23, "pure": 0, "purpos": 17, "push": [1, 7, 19, 20, 21, 22, 23], "put": [3, 5, 12], "python": 21, "qualit": 5, "qualiti": 0, "quantifi": 18, "quantiti": 17, "queri": 3, "quickli": 11, "quit": 5, "r": [19, 20, 21, 23], "ram": 5, "ramp": 17, "rand": [1, 2, 6, 11, 18], "randn": [6, 13, 15, 23], "random": [6, 11, 13, 18], "randomli": [2, 8, 15], "rang": [14, 15], "rank": 23, "rate": 5, "rather": [0, 6, 7, 13, 21], "raw": 23, "raw_text": [19, 20, 21, 23], "rc": [4, 8, 9], "re": 5, "reach": [5, 10], "read": [0, 2, 19, 20, 21], "readi": [12, 23], "readili": 19, "real": [5, 6, 10, 23], "realiti": 15, "reason": [2, 18], "recal": [6, 13, 17], "receiv": 18, "recogn": 10, "recognit": 5, "record": [13, 16, 17], "recov": 2, "recur": 19, "recurs": 1, "red": [5, 23], "reduc": [7, 11, 15, 17], "ref": [19, 20, 21, 23], "refer": [0, 5, 13], "regress": [9, 10, 22], "regular": 12, "reinforc": 18, "reinstat": 2, "relat": 17, "releas": 5, "relev": [5, 23], "reli": [7, 9], "reload": 7, "relu": [1, 2, 8, 9, 11], "render": 11, "repeat": 18, "repetit": 6, "repl": 17, "replac": [16, 19, 20, 21, 23], "repres": [5, 6, 13, 16, 17, 23], "represent": [11, 23], "requir": [2, 6, 7, 11, 12, 13, 18, 19], "reset": [19, 20, 21, 23], "reshap": [4, 6, 15, 17], "resolut": [5, 10], "respect": [1, 2, 5, 10, 13, 16, 23], "respons": 18, "result": [0, 2, 3, 4, 8, 9, 13, 15, 17, 23], "retail": 7, "retain": [10, 15], "return": [6, 13, 15, 18, 19, 20, 21, 23], "rev": 23, "revel": 13, "review": 13, "reward": 18, "rich": 10, "right": 0, "rigor": 14, "risk": 11, "rng": 6, "rnn": 19, "rockafellar": 10, "role": 11, "roll": 18, "roof": 16, "roof_typ": 16, "rooftyp": 16, "rooftype_": 16, "rooftype_miss": 16, "rooftype_sl": 16, "room": 16, "rore": 20, "rotr90": 5, "roughli": 0, "row": [7, 15, 16, 17, 23], "row_num": 5, "rt": [22, 23], "rubinfeld": 12, "rule": [13, 18], "run": [5, 7, 15, 18], "s3": [19, 20, 21, 23], "safeguard": 5, "sai": [10, 13, 17], "sale": 7, "same": [0, 2, 3, 9, 13, 15, 17, 20, 23], "sampl": [7, 15, 18, 22], "sandal": 5, "saniti": 5, "save": 0, "saw": [10, 18, 23], "scheme": 11, "scholar": 18, "school": 16, "sch\u00f6lkopf": 5, "scienc": 16, "scientist": 12, "scratch": [10, 18], "sd": 23, "search": 23, "second": [1, 5, 7, 9, 15, 17, 18], "section": [4, 5, 6, 9, 10, 11, 12, 13, 16, 17, 18], "see": [1, 4, 5, 10, 11, 14, 18, 23], "seek": 5, "seem": [11, 23], "seen": 5, "select": [12, 15, 16], "semin": 6, "sensor": 5, "sentenc": 23, "separ": [2, 13, 16], "seq_length": [19, 20, 21, 23], "sequenc": 23, "serial": 2, "serv": 5, "set": [1, 5, 7, 10, 15, 16, 18, 23], "setup": [6, 19, 20, 21, 23], "sever": [3, 16], "shape": [4, 6, 10, 13, 15, 17, 23], "share": 1, "sheer": 6, "shirt": 5, "shoe": 23, "shorten": 13, "shorthand": 15, "should": [2, 10, 17, 18, 23], "show": [1, 6, 13, 15, 19, 23], "show_imag": 5, "shuffl": [5, 6], "side": 10, "sigmoid": 11, "signal": 10, "signific": [11, 15], "significantli": [21, 23], "simard": 5, "similar": [5, 10], "similarli": [3, 4, 11, 15], "simpl": [5, 9, 10], "simpli": [8, 16, 17], "simplic": 23, "simplifi": 17, "simul": 18, "simulateur": 6, "simultan": 7, "sin": 22, "sinc": [1, 2, 5, 6, 11, 13, 16, 17], "singl": [6, 7, 11, 15, 23], "single_train_step": 6, "singleton": 17, "situat": 1, "size": [1, 2, 4, 5, 6, 15, 17, 18, 19, 20, 21, 23], "skew": 5, "skipmiss": 16, "slate": 16, "slice": 5, "slightli": 18, "slope": 14, "small": [11, 18], "smaller": [5, 23], "smallest": 18, "smi": 3, "sn2": 6, "sneaker": 5, "snippet": [6, 13, 15, 17], "so": [5, 6, 7, 13, 15, 23], "softmax": [9, 10, 19, 20, 21, 23], "solid": 18, "some": [6, 10, 11, 12, 13, 14, 16, 17, 18, 22], "someth": 18, "sometim": [13, 15, 17, 18, 23], "soon": 14, "sophist": 17, "sort": [5, 6, 23], "sourc": 6, "sparcstat": 5, "special": [12, 16], "specif": [0, 1, 5, 17, 18, 23], "specifi": [2, 3, 8, 11, 15, 17, 23], "speedup": 7, "speelpen": 13, "spell": 21, "split": [5, 15], "spot": 5, "spreadsheet": 16, "sprinkl": 2, "squar": 6, "src": [19, 20, 21, 23], "st": 6, "stabl": 11, "stack": 15, "stai": 7, "standard": [5, 6, 7, 15, 22], "start": [1, 2, 6, 7, 12, 13, 17, 18, 19, 20, 23], "state": [2, 5], "statement": [13, 15], "statist": [13, 16, 17], "statsbas": [19, 20, 21, 23], "std": 7, "step": [13, 15, 16, 22, 23], "still": [13, 15], "stock": 7, "stop": 23, "store": [2, 3, 5, 15, 16], "str": [19, 20, 21, 23], "straightforward": 13, "string": [2, 5, 16, 19, 20, 21, 23], "string7": 16, "stringdocu": 23, "stronger": 5, "struct": 2, "structur": 12, "studi": 18, "sub": 1, "subject": 18, "subsequ": [0, 8, 23], "substitut": 5, "subtl": 10, "success": [13, 18], "succinct": 6, "suffer": 18, "suffici": [5, 23], "sum": [7, 10, 13, 15, 18, 19, 20, 21, 23], "sum_a": 17, "summarys": 19, "sun": [5, 23], "supervis": [16, 18], "suppli": [2, 15, 23], "support": 5, "suppos": [7, 13], "sure": 3, "surfac": 18, "surpass": 6, "survei": 10, "symmetr": 17, "symmetri": 10, "syntax": 15, "synthet": 22, "synthetic_data": 6, "system": [10, 15], "t": [0, 5, 22, 23], "tab": 17, "tabular": 16, "tail": [18, 23], "take": [0, 5, 10, 11, 13, 15, 16, 19, 20, 21, 23], "tangent": [5, 14], "target": [4, 5, 7, 8, 9, 16, 18], "tau": 22, "techniqu": [6, 12, 13], "tediou": [1, 2, 13], "tell": [15, 18], "ten": [18, 23], "tend": 23, "tensor": [3, 13], "term": [13, 17], "terminologi": 7, "test": [4, 5, 8, 9, 18], "test_acc": [4, 8, 9], "text": [5, 13, 22, 23], "textanalysi": 23, "than": [0, 5, 6, 7, 9, 12, 13, 15, 18, 21], "theano": 6, "thei": [2, 4, 10, 11, 13, 16, 18, 20, 23], "them": [1, 2, 7, 10, 11, 12, 13, 15, 23], "themselv": 2, "theses": 18, "thesi": 13, "thi": [1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23], "thing": [0, 5, 7, 23], "think": [17, 18], "third": 15, "those": [1, 16], "though": [5, 18, 23], "thought": 23, "thousand": 23, "threaten": 11, "three": 23, "through": [1, 6, 8, 11, 12, 13, 23], "throughout": [2, 11, 16], "thu": [2, 11, 13, 15], "ti": 11, "time": [5, 7, 15, 18, 22, 23], "timemachin": [19, 20, 21, 23], "titl": 5, "tmp": 23, "to_indic": 23, "to_vocab": 23, "todai": 5, "togeth": 15, "toi": 13, "token": [19, 20, 21], "too": [0, 5], "took": 11, "tool": [0, 6, 12, 17], "topic": 11, "total": [2, 8, 9, 15, 17, 19], "toward": [5, 18], "tra": 23, "track": 13, "train": [5, 7, 8, 10, 11, 12, 13, 16, 19, 20, 21], "train_acc": [4, 8, 9], "train_load": [4, 5, 6, 8, 9, 22], "train_loss": [4, 8, 9, 22], "train_stat": 6, "trainabl": 19, "trainstat": 6, "transform": [10, 15], "transpos": [15, 17], "travel": 23, "treat": [16, 23], "tree": 1, "trial": 18, "trigonometr": 22, "trigram": 23, "trouser": 5, "true": [1, 2, 4, 5, 6, 8, 9, 13, 15, 16, 17, 18, 19, 20, 21, 23], "true_b": 6, "true_w": 6, "truth": 6, "try": [7, 22], "tupl": [5, 15, 17, 19, 20, 21, 22, 23], "turn": 18, "tutori": 0, "two": [1, 6, 7, 9, 15, 16, 17, 18, 23], "txt": [19, 20, 21, 23], "type": [15, 16, 17, 18], "typeof": 6, "typic": [5, 7, 17, 23], "u": [6, 10, 11, 13, 17, 18, 23], "ubiquit": 16, "uint32": 23, "ulm": 16, "unal": 23, "unambigu": 18, "unari": 15, "uncertainti": 18, "unchang": 17, "uncontroversi": 18, "under": [15, 18], "underli": 18, "understand": [0, 5], "unfair": 18, "unfold": 15, "unfortun": 5, "unigram": 23, "uniqu": [16, 18, 19, 20, 21, 23], "unit": 23, "unitrang": [15, 17], "unknown": 18, "unless": 11, "unpredict": 11, "unstabl": 11, "unsuit": 5, "unsupervis": 18, "until": 11, "unusu": 5, "unwieldi": 1, "up": [7, 11, 13, 17, 18, 23], "updat": [11, 15, 18], "update_lexicon": 23, "upon": [7, 16], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "usag": 3, "user": 23, "usp": 5, "v": [0, 23], "val": 22, "val_loss": 22, "valid": 10, "vals_label": 22, "valu": [6, 7, 10, 13, 15, 16, 17, 18, 22], "variabl": [0, 2, 3, 7, 18], "variou": 18, "vcat": 15, "vec": [6, 22], "vector": [1, 4, 5, 6, 9, 13, 15, 16, 19, 20, 21, 22, 23], "verbos": [19, 20, 21, 23], "veri": [2, 5, 13], "verifi": [2, 13], "version": [0, 5], "versu": 16, "vex": 11, "via": [13, 15, 16, 17], "video": 12, "view": [3, 15], "visual": [7, 23], "vital": 13, "vocab": [19, 20, 21, 23], "vocab_dict": 23, "vocab_len": [19, 20, 21, 23], "vscode": 0, "w": [5, 6, 23], "w_hh": 23, "w_xh": 23, "wa": [5, 13, 18, 21, 23], "wai": [0, 3, 10, 11, 18], "walk": 12, "want": [1, 2, 7, 13, 15, 17, 18, 23], "warm": 23, "warn": 23, "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23], "weaker": 5, "websit": 0, "weight": [1, 2, 6, 10, 12], "welcom": 0, "well": [6, 13, 23], "wengert": 13, "were": [11, 13, 18, 23], "what": [13, 15, 18, 23], "when": [1, 2, 3, 7, 8, 9, 10, 11, 13, 15, 17, 18, 23], "whenev": [7, 16, 18], "where": [7, 9, 11, 13, 15, 16, 17, 18, 23], "whether": [10, 18, 23], "which": [0, 5, 6, 7, 10, 11, 13, 15, 17, 23], "while": [5, 10, 11, 13, 14, 15, 16, 18, 23], "white": 5, "whole": [7, 15], "whop": 5, "whose": [13, 15, 16, 23], "why": [7, 11], "wide": 5, "widespread": 6, "width": 5, "wipe": 13, "wisdom": 10, "wish": [7, 13, 15, 17, 18], "wit": 6, "without": [7, 15], "word": 23, "work": [1, 5, 6, 13, 15, 23], "workload": 7, "worri": 6, "would": [1, 5, 10, 18, 23], "wrangl": 10, "write": [0, 2, 7, 15, 16, 19, 20, 21, 23], "written": 23, "wsampl": [19, 20, 21, 23], "wz6d4": [19, 20, 21, 23], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "x2": [2, 15], "xiao": 5, "xlabel": [4, 7, 8, 9, 10, 14, 18, 20, 21, 22, 23], "xoshiro": 6, "xscale": 23, "xtick": [7, 18, 22], "xticklabelsvis": 5, "xticksvis": 5, "y": [2, 4, 5, 6, 8, 9, 13, 15, 16, 17, 19, 20, 21, 22, 23], "y2": 2, "y_clone": 2, "year": [7, 18], "yield": [7, 13], "ylabel": [7, 10, 14, 18, 20, 21, 22, 23], "yml": 0, "you": [0, 5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18], "your": [0, 11, 12, 16], "yscale": 23, "ytick": [18, 22], "yticklabelsvis": 5, "yticksvis": 5, "z": [13, 19, 20, 21, 23], "za": [19, 20, 21, 23], "zero": [2, 10, 11, 15], "zip": [5, 7, 19, 20, 21, 23], "zipfian": 23, "zone": 11, "zygot": [6, 10, 13], "\u03bc": 7, "\u03c3": 7}, "titles": ["Dive into Deep Learning - Julia", "<span class=\"section-number\">15. </span>Parameter Management", "<span class=\"section-number\">16. </span>File I/O", "<span class=\"section-number\">17. </span>GPUs", "<span class=\"section-number\">10. </span>Concise Implementation of Softmax Regression", "<span class=\"section-number\">9. </span>The Image Classification Dataset", "<span class=\"section-number\">8. </span>Concise Implementation of Linear Regression", "<span class=\"section-number\">7. </span>Linear Regression", "<span class=\"section-number\">14. </span>Dropout", "<span class=\"section-number\">12. </span>Implementation of Multilayer Perceptrons", "<span class=\"section-number\">11. </span>Multilayer Perceptrons", "<span class=\"section-number\">13. </span>Numerical Stability and Initialization", "Predicting House Prices on Kaggle", "<span class=\"section-number\">5. </span>Automatic Differentiation", "<span class=\"section-number\">4. </span>Calculus", "<span class=\"section-number\">1. </span>Data Manipulation", "<span class=\"section-number\">2. </span>Data Preprocessing", "<span class=\"section-number\">3. </span>Linear Algebra", "<span class=\"section-number\">6. </span>Probability and Statistics", "<span class=\"section-number\">22. </span>Deep Recurrent Neural Networks", "<span class=\"section-number\">21. </span>Gated Recurrent Units (GRU)", "<span class=\"section-number\">20. </span>Long Short-Term Memory (LSTM)", "<span class=\"section-number\">18. </span>Working with Sequences", "<span class=\"section-number\">19. </span>Concise Implementation of Recurrent Neural Networks"], "titleterms": {"A": [13, 18], "One": 23, "The": [5, 7], "access": 1, "activ": 10, "after": 0, "algebra": 17, "algorithm": 6, "all": [0, 1], "ar": 0, "arithmet": 17, "arrai": 17, "automat": 13, "backward": 13, "base": 23, "basic": 17, "book": 0, "broadcast": 15, "calculu": 14, "classif": 5, "code": 0, "coin": 18, "comput": [3, 13], "concis": [4, 6, 8, 9, 19, 20, 21, 23], "content": 0, "contribut": 0, "control": 13, "convers": 16, "data": [12, 15, 16], "dataset": [5, 6, 16, 23], "decod": 23, "deep": [0, 19], "defin": [4, 6], "deriv": 14, "detach": 13, "devic": 3, "differenti": [13, 14], "distribut": 7, "dive": 0, "dot": 17, "download": 12, "dropout": 8, "encod": 23, "exampl": 18, "explod": 11, "exploratori": 23, "file": 2, "flow": 13, "function": [0, 6, 10, 13], "gate": 20, "gener": 6, "get": 15, "gpu": 3, "gradient": [11, 13], "gru": 20, "hidden": 23, "hot": 23, "hous": 12, "i": 2, "imag": 5, "implement": [0, 4, 6, 8, 9, 19, 20, 21, 23], "index": 15, "initi": 11, "instal": 0, "jl": 0, "julia": [0, 13], "kaggl": 12, "languag": 23, "learn": 0, "linear": [6, 7, 17], "load": [2, 5], "local": 0, "long": 21, "loss": [6, 7], "lstm": 21, "lux": 0, "manag": 1, "manipul": 15, "matric": 17, "matrix": [16, 17], "memori": [15, 21], "minibatch": 5, "model": [2, 4, 6, 9, 23], "multilay": [9, 10], "multipl": 17, "network": [3, 19, 23], "neural": [3, 19, 23], "non": [13, 17], "norm": 17, "normal": 7, "numer": 11, "o": 2, "onc": 1, "oper": 15, "optim": 6, "paramet": [1, 2], "perceptron": [9, 10], "pre": 0, "predict": [12, 23], "prepar": 16, "preprocess": 16, "price": 12, "probabl": 18, "product": 17, "properti": 17, "read": [5, 6, 16, 23], "recurr": [19, 20, 23], "reduct": 17, "regress": [4, 6, 7], "relu": 10, "requisit": 0, "revisit": 4, "rewritten": 0, "rnn": 23, "save": [2, 15], "scalar": [13, 17], "sequenc": 22, "short": 21, "sigmoid": 10, "simpl": [13, 18], "slice": 15, "softmax": 4, "some": 0, "soon": 0, "speed": 7, "squar": 7, "stabil": [0, 11], "standard": 0, "start": 15, "state": 23, "statist": [18, 23], "storag": 3, "sum": 17, "tanh": 10, "term": 21, "thi": 0, "ti": 1, "tip": 0, "token": 23, "toss": 18, "train": [4, 6, 9, 22, 23], "unit": 20, "us": 0, "util": 14, "vanish": 11, "variabl": 13, "vector": [2, 3, 7, 17], "visual": [5, 14], "vocabulari": 23, "warn": 0, "wip": 22, "work": 22}}) \ No newline at end of file