diff --git a/doc/LectureNotes/.DS_Store b/doc/LectureNotes/.DS_Store index 510782495..cb7504035 100644 Binary files a/doc/LectureNotes/.DS_Store and b/doc/LectureNotes/.DS_Store differ diff --git a/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/ma/README.doctree b/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/ma/README.doctree new file mode 100644 index 000000000..237a4fd91 Binary files /dev/null and b/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/ma/README.doctree differ diff --git a/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.doctree b/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.doctree new file mode 100644 index 000000000..f87551977 Binary files /dev/null and b/doc/LectureNotes/_build/.doctrees/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.doctree differ diff --git a/doc/LectureNotes/_build/.doctrees/environment.pickle b/doc/LectureNotes/_build/.doctrees/environment.pickle index c07eecc8a..0a8d38f7a 100644 Binary files a/doc/LectureNotes/_build/.doctrees/environment.pickle and b/doc/LectureNotes/_build/.doctrees/environment.pickle differ diff --git a/doc/LectureNotes/_build/.doctrees/exercisesweek38.doctree b/doc/LectureNotes/_build/.doctrees/exercisesweek38.doctree index 75813620b..9569a898f 100644 Binary files a/doc/LectureNotes/_build/.doctrees/exercisesweek38.doctree and b/doc/LectureNotes/_build/.doctrees/exercisesweek38.doctree differ diff --git a/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/ma/README.html b/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/ma/README.html new file mode 100644 index 000000000..ef39c7305 --- /dev/null +++ b/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/ma/README.html @@ -0,0 +1,764 @@ + + + + + + + + + + + A guide to masked arrays in NumPy — Applied Data Analysis and Machine Learning + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+ +
+ + + + + +
+
+ + + + + +
+ + + + + + + + + + + + + +
+ +
+ + + +
+ +
+
+ +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ + + + + + + + +
+ +
+

A guide to masked arrays in NumPy#

+ +

See http://www.scipy.org/scipy/numpy/wiki/MaskedArray (dead link) +for updates of this document.

+
+

History#

+

As a regular user of MaskedArray, I (Pierre G.F. Gerard-Marchant) became +increasingly frustrated with the subclassing of masked arrays (even if +I can only blame my inexperience). I needed to develop a class of arrays +that could store some additional information along with numerical values, +while keeping the possibility for missing data (picture storing a series +of dates along with measurements, what would later become the TimeSeries +Scikit +(dead link).

+

I started to implement such a class, but then quickly realized that +any additional information disappeared when processing these subarrays +(for example, adding a constant value to a subarray would erase its +dates). I ended up writing the equivalent of numpy.core.ma for my +particular class, ufuncs included. Everything went fine until I needed to +subclass my new class, when more problems showed up: some attributes of +the new subclass were lost during processing. I identified the culprit as +MaskedArray, which returns masked ndarrays when I expected masked +arrays of my class. I was preparing myself to rewrite numpy.core.ma +when I forced myself to learn how to subclass ndarrays. As I became more +familiar with the __new__ and __array_finalize__ methods, +I started to wonder why masked arrays were objects, and not ndarrays, +and whether it wouldn’t be more convenient for subclassing if they did +behave like regular ndarrays.

+

The new maskedarray is what I eventually come up with. The +main differences with the initial numpy.core.ma package are +that MaskedArray is now a subclass of ndarray and that the +_data section can now be any subclass of ndarray. Apart from a +couple of issues listed below, the behavior of the new MaskedArray +class reproduces the old one. Initially the maskedarray +implementation was marginally slower than numpy.ma in some areas, +but work is underway to speed it up; the expectation is that it can be +made substantially faster than the present numpy.ma.

+

Note that if the subclass has some special methods and +attributes, they are not propagated to the masked version: +this would require a modification of the __getattribute__ +method (first trying ndarray.__getattribute__, then trying +self._data.__getattribute__ if an exception is raised in the first +place), which really slows things down.

+
+
+

Main differences#

+
+
    +
  • The _data part of the masked array can be any subclass of ndarray (but not recarray, cf below).

  • +
  • fill_value is now a property, not a function.

  • +
  • in the majority of cases, the mask is forced to nomask when no value is actually masked. A notable exception is when a masked array (with no masked values) has just been unpickled.

  • +
  • I got rid of the share_mask flag, I never understood its purpose.

  • +
  • put, putmask and take now mimic the ndarray methods, to avoid unpleasant surprises. Moreover, put and putmask both update the mask when needed. * if a is a masked array, bool(a) raises a ValueError, as it does with ndarrays.

  • +
  • in the same way, the comparison of two masked arrays is a masked array, not a boolean

  • +
  • filled(a) returns an array of the same subclass as a._data, and no test is performed on whether it is contiguous or not.

  • +
  • the mask is always printed, even if it’s nomask, which makes things easy (for me at least) to remember that a masked array is used.

  • +
  • cumsum works as if the _data array was filled with 0. The mask is preserved, but not updated.

  • +
  • cumprod works as if the _data array was filled with 1. The mask is preserved, but not updated.

  • +
+
+
+
+

New features#

+

This list is non-exhaustive…

+
+
    +
  • the mr_ function mimics r_ for masked arrays.

  • +
  • the anom method returns the anomalies (deviations from the average)

  • +
+
+
+
+

Using the new package with numpy.core.ma#

+

I tried to make sure that the new package can understand old masked +arrays. Unfortunately, there’s no upward compatibility.

+

For example:

+
>>> import numpy.core.ma as old_ma
+>>> import maskedarray as new_ma
+>>> x = old_ma.array([1,2,3,4,5], mask=[0,0,1,0,0])
+>>> x
+array(data =
+ [     1      2 999999      4      5],
+      mask =
+ [False False True False False],
+      fill_value=999999)
+>>> y = new_ma.array([1,2,3,4,5], mask=[0,0,1,0,0])
+>>> y
+array(data = [1 2 -- 4 5],
+      mask = [False False True False False],
+      fill_value=999999)
+>>> x==y
+array(data =
+ [True True True True True],
+      mask =
+ [False False True False False],
+      fill_value=?)
+>>> old_ma.getmask(x) == new_ma.getmask(x)
+array([True, True, True, True, True])
+>>> old_ma.getmask(y) == new_ma.getmask(y)
+array([True, True, False, True, True])
+>>> old_ma.getmask(y)
+False
+
+
+
+
+

Using maskedarray with matplotlib#

+

Starting with matplotlib 0.91.2, the masked array importing will work with +the maskedarray branch) as well as with earlier versions.

+

By default matplotlib still uses numpy.ma, but there is an rcParams setting +that you can use to select maskedarray instead. In the matplotlibrc file +you will find:

+
#maskedarray : False       # True to use external maskedarray module
+                           # instead of numpy.ma; this is a temporary #
+                           setting for testing maskedarray.
+
+
+

Uncomment and set to True to select maskedarray everywhere. +Alternatively, you can test a script with maskedarray by using a +command-line option, e.g.:

+
python simple_plot.py --maskedarray
+
+
+
+
+

Masked records#

+

Like numpy.ma.core, the ndarray-based implementation +of MaskedArray is limited when working with records: you can +mask any record of the array, but not a field in a record. If you +need this feature, you may want to give the mrecords package +a try (available in the maskedarray directory in the scipy +sandbox). This module defines a new class, MaskedRecord. An +instance of this class accepts a recarray as data, and uses two +masks: the fieldmask has as many entries as records in the array, +each entry with the same fields as a record, but of boolean types: +they indicate whether the field is masked or not; a record entry +is flagged as masked in the mask array if all the fields are +masked. A few examples in the file should give you an idea of what +can be done. Note that mrecords is still experimental…

+
+
+

Optimizing maskedarray#

+
+
+

Should masked arrays be filled before processing or not?#

+

In the current implementation, most operations on masked arrays involve +the following steps:

+
+
    +
  • the input arrays are filled

  • +
  • the operation is performed on the filled arrays

  • +
  • the mask is set for the results, from the combination of the input masks and the mask corresponding to the domain of the operation.

  • +
+
+

For example, consider the division of two masked arrays:

+
import numpy
+import maskedarray as ma
+x = ma.array([1,2,3,4],mask=[1,0,0,0], dtype=numpy.float64)
+y = ma.array([-1,0,1,2], mask=[0,0,0,1], dtype=numpy.float64)
+
+
+

The division of x by y is then computed as:

+
d1 = x.filled(0) # d1 = array([0., 2., 3., 4.])
+d2 = y.filled(1) # array([-1.,  0.,  1.,  1.])
+m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m =
+array([True,False,False,True])
+dm = ma.divide.domain(d1,d2) # array([False,  True, False, False])
+result = (d1/d2).view(MaskedArray) # masked_array([-0. inf, 3., 4.])
+result._mask = logical_or(m, dm)
+
+
+

Note that a division by zero takes place. To avoid it, we can consider +to fill the input arrays, taking the domain mask into account, so that:

+
d1 = x._data.copy() # d1 = array([1., 2., 3., 4.])
+d2 = y._data.copy() # array([-1.,  0.,  1.,  2.])
+dm = ma.divide.domain(d1,d2) # array([False,  True, False, False])
+numpy.putmask(d2, dm, 1) # d2 = array([-1.,  1.,  1.,  2.])
+m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m =
+array([True,False,False,True])
+result = (d1/d2).view(MaskedArray) # masked_array([-1. 0., 3., 2.])
+result._mask = logical_or(m, dm)
+
+
+

Note that the .copy() is required to avoid updating the inputs with +putmask. The .filled() method also involves a .copy().

+

A third possibility consists in avoid filling the arrays:

+
d1 = x._data # d1 = array([1., 2., 3., 4.])
+d2 = y._data # array([-1.,  0.,  1.,  2.])
+dm = ma.divide.domain(d1,d2) # array([False,  True, False, False])
+m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m =
+array([True,False,False,True])
+result = (d1/d2).view(MaskedArray) # masked_array([-1. inf, 3., 2.])
+result._mask = logical_or(m, dm)
+
+
+

Note that here again the division by zero takes place.

+

A quick benchmark gives the following results:

+
+
    +
  • numpy.ma.divide : 2.69 ms per loop

  • +
  • classical division : 2.21 ms per loop

  • +
  • division w/ prefilling : 2.34 ms per loop

  • +
  • division w/o filling : 1.55 ms per loop

  • +
+
+

So, is it worth filling the arrays beforehand ? Yes, if we are interested +in avoiding floating-point exceptions that may fill the result with infs +and nans. No, if we are only interested into speed…

+
+
+

Thanks#

+

I’d like to thank Paul Dubois, Travis Oliphant and Sasha for the +original masked array package: without you, I would never have started +that (it might be argued that I shouldn’t have anyway, but that’s +another story…). I also wish to extend these thanks to Reggie Dugard +and Eric Firing for their suggestions and numerous improvements.

+
+
+

Revision notes#

+
+
    +
  • 08/25/2007 : Creation of this page

  • +
  • 01/23/2007 : The package has been moved to the SciPy sandbox, and is regularly updated: please check out your SVN version!

  • +
+
+
+
+ + + + +
+ + + + + + +
+ +
+
+
+ +
+ + + + + + +
+ + + +
+
+
+ + + + + + + + \ No newline at end of file diff --git a/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.html b/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.html new file mode 100644 index 000000000..0225663bb --- /dev/null +++ b/doc/LectureNotes/_build/html/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.html @@ -0,0 +1,569 @@ + + + + + + + + + + + NCSA Open Source License — Applied Data Analysis and Machine Learning + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+
+
+
+
+ +
+ +
+ + + + + +
+
+ + + + + +
+ + + + + + + + + + + + + +
+ +
+ + + +
+ +
+
+ +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ + + +
+

NCSA Open Source License

+ +
+
+ +
+

Contents

+
+ +
+
+
+ + + + +
+ +

This software is dual-licensed under the The University of Illinois/NCSA +Open Source License (NCSA) and The 3-Clause BSD License

+
+

NCSA Open Source License#

+

Copyright (c) 2019 Kevin Sheppard. All rights reserved.

+

Developed by: Kevin Sheppard (kevin.sheppard@economics.ox.ac.uk, +kevin.k.sheppard@gmail.com) +http://www.kevinsheppard.com

+

Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions:

+

Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimers.

+

Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimers in the documentation and/or +other materials provided with the distribution.

+

Neither the names of Kevin Sheppard, nor the names of any contributors may be +used to endorse or promote products derived from this Software without specific +prior written permission.

+

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH +THE SOFTWARE.

+
+
+

3-Clause BSD License#

+

Copyright (c) 2019 Kevin Sheppard. All rights reserved.

+

Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met:

+
    +
  1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer.

  2. +
  3. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution.

  4. +
  5. Neither the name of the copyright holder nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission.

  6. +
+

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE.

+
+
+

Components#

+

Many parts of this module have been derived from original sources, +often the algorithm’s designer. Component licenses are located with +the component code.

+
+ + + + +
+ + + + + + +
+ +
+
+
+ +
+ + + +
+ + +
+ + + +
+
+
+ + + + + + + + \ No newline at end of file diff --git a/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/ma/README.rst b/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/ma/README.rst new file mode 100644 index 000000000..cd1010329 --- /dev/null +++ b/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/ma/README.rst @@ -0,0 +1,236 @@ +================================== +A guide to masked arrays in NumPy +================================== + +.. Contents:: + +See http://www.scipy.org/scipy/numpy/wiki/MaskedArray (dead link) +for updates of this document. + + +History +------- + +As a regular user of MaskedArray, I (Pierre G.F. Gerard-Marchant) became +increasingly frustrated with the subclassing of masked arrays (even if +I can only blame my inexperience). I needed to develop a class of arrays +that could store some additional information along with numerical values, +while keeping the possibility for missing data (picture storing a series +of dates along with measurements, what would later become the `TimeSeries +Scikit `__ +(dead link). + +I started to implement such a class, but then quickly realized that +any additional information disappeared when processing these subarrays +(for example, adding a constant value to a subarray would erase its +dates). I ended up writing the equivalent of *numpy.core.ma* for my +particular class, ufuncs included. Everything went fine until I needed to +subclass my new class, when more problems showed up: some attributes of +the new subclass were lost during processing. I identified the culprit as +MaskedArray, which returns masked ndarrays when I expected masked +arrays of my class. I was preparing myself to rewrite *numpy.core.ma* +when I forced myself to learn how to subclass ndarrays. As I became more +familiar with the *__new__* and *__array_finalize__* methods, +I started to wonder why masked arrays were objects, and not ndarrays, +and whether it wouldn't be more convenient for subclassing if they did +behave like regular ndarrays. + +The new *maskedarray* is what I eventually come up with. The +main differences with the initial *numpy.core.ma* package are +that MaskedArray is now a subclass of *ndarray* and that the +*_data* section can now be any subclass of *ndarray*. Apart from a +couple of issues listed below, the behavior of the new MaskedArray +class reproduces the old one. Initially the *maskedarray* +implementation was marginally slower than *numpy.ma* in some areas, +but work is underway to speed it up; the expectation is that it can be +made substantially faster than the present *numpy.ma*. + + +Note that if the subclass has some special methods and +attributes, they are not propagated to the masked version: +this would require a modification of the *__getattribute__* +method (first trying *ndarray.__getattribute__*, then trying +*self._data.__getattribute__* if an exception is raised in the first +place), which really slows things down. + +Main differences +---------------- + + * The *_data* part of the masked array can be any subclass of ndarray (but not recarray, cf below). + * *fill_value* is now a property, not a function. + * in the majority of cases, the mask is forced to *nomask* when no value is actually masked. A notable exception is when a masked array (with no masked values) has just been unpickled. + * I got rid of the *share_mask* flag, I never understood its purpose. + * *put*, *putmask* and *take* now mimic the ndarray methods, to avoid unpleasant surprises. Moreover, *put* and *putmask* both update the mask when needed. * if *a* is a masked array, *bool(a)* raises a *ValueError*, as it does with ndarrays. + * in the same way, the comparison of two masked arrays is a masked array, not a boolean + * *filled(a)* returns an array of the same subclass as *a._data*, and no test is performed on whether it is contiguous or not. + * the mask is always printed, even if it's *nomask*, which makes things easy (for me at least) to remember that a masked array is used. + * *cumsum* works as if the *_data* array was filled with 0. The mask is preserved, but not updated. + * *cumprod* works as if the *_data* array was filled with 1. The mask is preserved, but not updated. + +New features +------------ + +This list is non-exhaustive... + + * the *mr_* function mimics *r_* for masked arrays. + * the *anom* method returns the anomalies (deviations from the average) + +Using the new package with numpy.core.ma +---------------------------------------- + +I tried to make sure that the new package can understand old masked +arrays. Unfortunately, there's no upward compatibility. + +For example: + +>>> import numpy.core.ma as old_ma +>>> import maskedarray as new_ma +>>> x = old_ma.array([1,2,3,4,5], mask=[0,0,1,0,0]) +>>> x +array(data = + [ 1 2 999999 4 5], + mask = + [False False True False False], + fill_value=999999) +>>> y = new_ma.array([1,2,3,4,5], mask=[0,0,1,0,0]) +>>> y +array(data = [1 2 -- 4 5], + mask = [False False True False False], + fill_value=999999) +>>> x==y +array(data = + [True True True True True], + mask = + [False False True False False], + fill_value=?) +>>> old_ma.getmask(x) == new_ma.getmask(x) +array([True, True, True, True, True]) +>>> old_ma.getmask(y) == new_ma.getmask(y) +array([True, True, False, True, True]) +>>> old_ma.getmask(y) +False + + +Using maskedarray with matplotlib +--------------------------------- + +Starting with matplotlib 0.91.2, the masked array importing will work with +the maskedarray branch) as well as with earlier versions. + +By default matplotlib still uses numpy.ma, but there is an rcParams setting +that you can use to select maskedarray instead. In the matplotlibrc file +you will find:: + + #maskedarray : False # True to use external maskedarray module + # instead of numpy.ma; this is a temporary # + setting for testing maskedarray. + + +Uncomment and set to True to select maskedarray everywhere. +Alternatively, you can test a script with maskedarray by using a +command-line option, e.g.:: + + python simple_plot.py --maskedarray + + +Masked records +-------------- + +Like *numpy.ma.core*, the *ndarray*-based implementation +of MaskedArray is limited when working with records: you can +mask any record of the array, but not a field in a record. If you +need this feature, you may want to give the *mrecords* package +a try (available in the *maskedarray* directory in the scipy +sandbox). This module defines a new class, *MaskedRecord*. An +instance of this class accepts a *recarray* as data, and uses two +masks: the *fieldmask* has as many entries as records in the array, +each entry with the same fields as a record, but of boolean types: +they indicate whether the field is masked or not; a record entry +is flagged as masked in the *mask* array if all the fields are +masked. A few examples in the file should give you an idea of what +can be done. Note that *mrecords* is still experimental... + +Optimizing maskedarray +---------------------- + +Should masked arrays be filled before processing or not? +-------------------------------------------------------- + +In the current implementation, most operations on masked arrays involve +the following steps: + + * the input arrays are filled + * the operation is performed on the filled arrays + * the mask is set for the results, from the combination of the input masks and the mask corresponding to the domain of the operation. + +For example, consider the division of two masked arrays:: + + import numpy + import maskedarray as ma + x = ma.array([1,2,3,4],mask=[1,0,0,0], dtype=numpy.float64) + y = ma.array([-1,0,1,2], mask=[0,0,0,1], dtype=numpy.float64) + +The division of x by y is then computed as:: + + d1 = x.filled(0) # d1 = array([0., 2., 3., 4.]) + d2 = y.filled(1) # array([-1., 0., 1., 1.]) + m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m = + array([True,False,False,True]) + dm = ma.divide.domain(d1,d2) # array([False, True, False, False]) + result = (d1/d2).view(MaskedArray) # masked_array([-0. inf, 3., 4.]) + result._mask = logical_or(m, dm) + +Note that a division by zero takes place. To avoid it, we can consider +to fill the input arrays, taking the domain mask into account, so that:: + + d1 = x._data.copy() # d1 = array([1., 2., 3., 4.]) + d2 = y._data.copy() # array([-1., 0., 1., 2.]) + dm = ma.divide.domain(d1,d2) # array([False, True, False, False]) + numpy.putmask(d2, dm, 1) # d2 = array([-1., 1., 1., 2.]) + m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m = + array([True,False,False,True]) + result = (d1/d2).view(MaskedArray) # masked_array([-1. 0., 3., 2.]) + result._mask = logical_or(m, dm) + +Note that the *.copy()* is required to avoid updating the inputs with +*putmask*. The *.filled()* method also involves a *.copy()*. + +A third possibility consists in avoid filling the arrays:: + + d1 = x._data # d1 = array([1., 2., 3., 4.]) + d2 = y._data # array([-1., 0., 1., 2.]) + dm = ma.divide.domain(d1,d2) # array([False, True, False, False]) + m = ma.mask_or(ma.getmask(x), ma.getmask(y)) # m = + array([True,False,False,True]) + result = (d1/d2).view(MaskedArray) # masked_array([-1. inf, 3., 2.]) + result._mask = logical_or(m, dm) + +Note that here again the division by zero takes place. + +A quick benchmark gives the following results: + + * *numpy.ma.divide* : 2.69 ms per loop + * classical division : 2.21 ms per loop + * division w/ prefilling : 2.34 ms per loop + * division w/o filling : 1.55 ms per loop + +So, is it worth filling the arrays beforehand ? Yes, if we are interested +in avoiding floating-point exceptions that may fill the result with infs +and nans. No, if we are only interested into speed... + + +Thanks +------ + +I'd like to thank Paul Dubois, Travis Oliphant and Sasha for the +original masked array package: without you, I would never have started +that (it might be argued that I shouldn't have anyway, but that's +another story...). I also wish to extend these thanks to Reggie Dugard +and Eric Firing for their suggestions and numerous improvements. + + +Revision notes +-------------- + + * 08/25/2007 : Creation of this page + * 01/23/2007 : The package has been moved to the SciPy sandbox, and is regularly updated: please check out your SVN version! diff --git a/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.md b/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.md new file mode 100644 index 000000000..a6cf1b17e --- /dev/null +++ b/doc/LectureNotes/_build/html/_sources/.venv/lib/python3.13/site-packages/numpy/random/LICENSE.md @@ -0,0 +1,71 @@ +**This software is dual-licensed under the The University of Illinois/NCSA +Open Source License (NCSA) and The 3-Clause BSD License** + +# NCSA Open Source License +**Copyright (c) 2019 Kevin Sheppard. All rights reserved.** + +Developed by: Kevin Sheppard (, +) +[http://www.kevinsheppard.com](http://www.kevinsheppard.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimers. + +Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimers in the documentation and/or +other materials provided with the distribution. + +Neither the names of Kevin Sheppard, nor the names of any contributors may be +used to endorse or promote products derived from this Software without specific +prior written permission. + +**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH +THE SOFTWARE.** + + +# 3-Clause BSD License +**Copyright (c) 2019 Kevin Sheppard. All rights reserved.** + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +**THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE.** + +# Components + +Many parts of this module have been derived from original sources, +often the algorithm's designer. Component licenses are located with +the component code. diff --git a/doc/LectureNotes/_build/html/_sources/exercisesweek38.ipynb b/doc/LectureNotes/_build/html/_sources/exercisesweek38.ipynb index f58edd704..c26fbccf9 100644 --- a/doc/LectureNotes/_build/html/_sources/exercisesweek38.ipynb +++ b/doc/LectureNotes/_build/html/_sources/exercisesweek38.ipynb @@ -402,13 +402,15 @@ "# for p in range(1, 5):\n", "# predictions = ...\n", "# targets = ...\n", + "#\n", + "# X = ...\n", + "# X_train, X_test, y_train, y_test = ...\n", "# for b in range(bootstraps):\n", - "# x_sample, y_sample = ...\n", - "# X = ...\n", - "# X_train, X_test, y_train, y_test = ...\n", + "# X_train_re, y_train_re = ...\n", "#\n", - "# #this is where you fit your model on the sampled data\n", + "# # fit your model on the sampled data\n", "#\n", + "# # make predictions on the test data\n", "# predictions[b, :] =\n", "# targets[b, :] =\n", "#\n", diff --git a/doc/LectureNotes/_build/html/exercisesweek38.html b/doc/LectureNotes/_build/html/exercisesweek38.html index 5f3ebf6aa..71e284911 100644 --- a/doc/LectureNotes/_build/html/exercisesweek38.html +++ b/doc/LectureNotes/_build/html/exercisesweek38.html @@ -572,13 +572,15 @@ C(\boldsymbol{X},\boldsymbol{\beta}) =\frac{1}{n}\sum_{i=0}^{n-1}(y_i-\tilde{y}_ # for p in range(1, 5): # predictions = ... # targets = ... +# +# X = ... +# X_train, X_test, y_train, y_test = ... # for b in range(bootstraps): -# x_sample, y_sample = ... -# X = ... -# X_train, X_test, y_train, y_test = ... +# X_train_re, y_train_re = ... # -# #this is where you fit your model on the sampled data +# # fit your model on the sampled data # +# # make predictions on the test data # predictions[b, :] = # targets[b, :] = # diff --git a/doc/LectureNotes/_build/html/objects.inv b/doc/LectureNotes/_build/html/objects.inv index a5449a431..22fe8987f 100644 Binary files a/doc/LectureNotes/_build/html/objects.inv and b/doc/LectureNotes/_build/html/objects.inv differ diff --git a/doc/LectureNotes/_build/html/searchindex.js b/doc/LectureNotes/_build/html/searchindex.js index c8a1266dc..6b25a97a0 100644 --- a/doc/LectureNotes/_build/html/searchindex.js +++ b/doc/LectureNotes/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"1a)": [[60, "a"]], "3a)": [[60, "id1"]], "3b)": [[60, "b"]], "4a)": [[60, "id2"]], "4b)": [[60, "id3"]], "A Classification Tree": [[51, "a-classification-tree"]], "A Frequentist approach to data analysis": [[42, "a-frequentist-approach-to-data-analysis"], [70, "a-frequentist-approach-to-data-analysis"]], "A better approach": [[50, "a-better-approach"]], "A first summary": [[70, "a-first-summary"]], "A quick Reminder on Lagrangian Multipliers": [[50, "a-quick-reminder-on-lagrangian-multipliers"]], "A simple example": [[46, "a-simple-example"]], "A soft classifier": [[50, "a-soft-classifier"]], "A top-down perspective on Neural networks": [[43, "a-top-down-perspective-on-neural-networks"]], "A11Y Dark": [[0, null]], "A11Y High Contrast Dark": [[1, null]], "A11Y High Contrast Light": [[2, null]], "A11Y Light": [[3, null]], "ADAM algorithm, taken from Goodfellow et al": [[73, "adam-algorithm-taken-from-goodfellow-et-al"]], "ADAM optimizer": [[55, "adam-optimizer"], [73, "id2"]], "API": [[27, "api"]], "About the IPython Development Team": [[20, "about-the-ipython-development-team"]], "Accuracy": [[73, "accuracy"]], "Activation functions": [[54, "activation-functions"]], "AdaGrad Properties": [[73, "adagrad-properties"]], "AdaGrad Update Rule Derivation": [[73, "adagrad-update-rule-derivation"]], "AdaGrad algorithm, taken from Goodfellow et al": [[73, "adagrad-algorithm-taken-from-goodfellow-et-al"]], "Adam Optimizer": [[73, "adam-optimizer"]], "Adam vs. AdaGrad and RMSProp": [[73, "adam-vs-adagrad-and-rmsprop"]], "Adam: Bias Correction": [[73, "adam-bias-correction"]], "Adam: Exponential Moving Averages (Moments)": [[73, "adam-exponential-moving-averages-moments"]], "Adam: Update Rule Derivation": [[73, "adam-update-rule-derivation"]], "Adaptive boosting: AdaBoost, Basic Algorithm": [[52, "adaptive-boosting-adaboost-basic-algorithm"]], "Adaptivity Across Dimensions": [[73, "adaptivity-across-dimensions"]], "Adding error analysis and training set up": [[70, "adding-error-analysis-and-training-set-up"], [71, "adding-error-analysis-and-training-set-up"]], "Adjust hyperparameters": [[43, "adjust-hyperparameters"]], "Algorithms and codes for Adagrad, RMSprop and Adam": [[73, "algorithms-and-codes-for-adagrad-rmsprop-and-adam"]], "Algorithms for Setting up Decision Trees": [[51, "algorithms-for-setting-up-decision-trees"]], "An Overview of Ensemble Methods": [[52, "an-overview-of-ensemble-methods"]], "An example cell": [[23, "an-example-cell"]], "An extrapolation example": [[46, "an-extrapolation-example"]], "An optimization/minimization problem": [[70, "an-optimization-minimization-problem"]], "And finally \\boldsymbol{X}\\boldsymbol{X}^T": [[71, "and-finally-boldsymbol-x-boldsymbol-x-t"]], "And finally ADAM": [[73, "and-finally-adam"]], "And what about using neural networks?": [[70, "and-what-about-using-neural-networks"]], "Another Example, now with a polynomial fit": [[72, "another-example-now-with-a-polynomial-fit"]], "Another example, the moons again": [[51, "another-example-the-moons-again"]], "Applied Data Analysis and Machine Learning": [[63, null]], "Authors": [[31, null]], "Autocorrelation function": [[67, "autocorrelation-function"]], "Automatic differentiation": [[55, "automatic-differentiation"]], "Back to Ridge and LASSO Regression": [[71, "back-to-ridge-and-lasso-regression"], [72, "back-to-ridge-and-lasso-regression"]], "Back to the Cancer Data": [[53, "back-to-the-cancer-data"]], "Background literature": [[65, "background-literature"]], "Bagging": [[52, "bagging"]], "Bagging Examples": [[52, "bagging-examples"]], "Basic Matrix Features": [[64, "basic-matrix-features"]], "Basic ideas of the Principal Component Analysis (PCA)": [[53, null]], "Basic math of the SVD": [[47, "basic-math-of-the-svd"], [71, "basic-math-of-the-svd"], [72, "basic-math-of-the-svd"]], "Basics": [[49, "basics"]], "Basics of a tree": [[51, "basics-of-a-tree"]], "Batch Normalization": [[43, "batch-normalization"]], "Batches and mini-batches": [[73, "batches-and-mini-batches"]], "Bayes\u2019 Theorem and Ridge and Lasso Regression": [[47, "bayes-theorem-and-ridge-and-lasso-regression"]], "Blinds Dark": [[4, null]], "Blinds Light": [[5, null]], "Boosting, a Bird\u2019s Eye View": [[52, "boosting-a-bird-s-eye-view"]], "Bootstrap": [[48, "bootstrap"]], "Bringing it together, first back propagation equation": [[54, "bringing-it-together-first-back-propagation-equation"]], "Building a Feed Forward Neural Network": [[43, null]], "Building a tree, regression": [[51, "building-a-tree-regression"]], "Building neural networks in Tensorflow and Keras": [[43, "building-neural-networks-in-tensorflow-and-keras"]], "But none of these can compete with Newton\u2019s method": [[73, "but-none-of-these-can-compete-with-newton-s-method"]], "CDN": [[29, "cdn"]], "CHANGELOG": [[29, "changelog"]], "CNNs in more detail, building convolutional neural networks in Tensorflow and Keras": [[45, "cnns-in-more-detail-building-convolutional-neural-networks-in-tensorflow-and-keras"]], "Cancer Data again now with Decision Trees and other Methods": [[51, "cancer-data-again-now-with-decision-trees-and-other-methods"]], "Challenge: Choosing a Fixed Learning Rate": [[73, "challenge-choosing-a-fixed-learning-rate"]], "Choose cost function and optimizer": [[43, "choose-cost-function-and-optimizer"]], "Citations": [[22, "citations"]], "Classical PCA Theorem": [[53, "classical-pca-theorem"]], "Clustering and Unsupervised Learning": [[56, null]], "Code blocks and outputs": [[24, "code-blocks-and-outputs"]], "Code for SVD and Inversion of Matrices": [[47, "code-for-svd-and-inversion-of-matrices"]], "Code with a Number of Minibatches which varies": [[73, "code-with-a-number-of-minibatches-which-varies"]], "Codes and Approaches": [[56, "codes-and-approaches"]], "Codes for the SVD": [[47, "codes-for-the-svd"], [71, "codes-for-the-svd"], [72, "codes-for-the-svd"]], "Coding Setup and Linear Regression": [[57, "coding-setup-and-linear-regression"]], "Collect and pre-process data": [[43, "collect-and-pre-process-data"]], "Colors": [[0, "colors"], [1, "colors"], [2, "colors"], [3, "colors"], [4, "colors"], [5, "colors"], [6, "colors"], [7, "colors"], [8, "colors"], [9, "colors"], [10, "colors"], [11, "colors"], [12, "colors"], [13, "colors"], [14, "colors"], [15, "colors"]], "Communication channels": [[70, "communication-channels"]], "Compare Bagging on Trees with Random Forests": [[52, "compare-bagging-on-trees-with-random-forests"]], "Comparing with a numerical scheme": [[44, "comparing-with-a-numerical-scheme"]], "Comparison with OLS": [[72, "comparison-with-ols"]], "Compiled translation files": [[39, "compiled-translation-files"]], "Computation of gradients": [[73, "computation-of-gradients"]], "Computing the Gini index": [[51, "computing-the-gini-index"]], "Conditions on convex functions": [[72, "conditions-on-convex-functions"]], "Conjugate gradient method": [[55, "conjugate-gradient-method"]], "Content with notebooks": [[24, null]], "Contributors": [[31, "contributors"]], "Convergence rates": [[73, "convergence-rates"]], "Convex function": [[72, "convex-function"]], "Convex functions": [[55, "convex-functions"], [72, "convex-functions"]], "Convolution Examples: Polynomial multiplication": [[45, "convolution-examples-polynomial-multiplication"]], "Convolution Examples: Principle of Superposition and Periodic Forces (Fourier Transforms)": [[45, "convolution-examples-principle-of-superposition-and-periodic-forces-fourier-transforms"]], "Convolutional Neural Network": [[54, "convolutional-neural-network"]], "Convolutional Neural Networks": [[45, null]], "Correlation Function and Design/Feature Matrix": [[71, "correlation-function-and-design-feature-matrix"]], "Correlation Matrix": [[53, "correlation-matrix"], [71, "correlation-matrix"]], "Correlation Matrix with Pandas": [[71, "correlation-matrix-with-pandas"]], "Course Format": [[70, "course-format"]], "Course setting": [[66, null]], "Covariance Matrix Examples": [[71, "covariance-matrix-examples"]], "Covariance and Correlation Matrix": [[71, "covariance-and-correlation-matrix"]], "Create a notebook with MyST Markdown": [[23, "create-a-notebook-with-myst-markdown"]], "Creator": [[31, "creator"]], "Cross-validation": [[48, "cross-validation"]], "Deadlines for projects (tentative)": [[70, "deadlines-for-projects-tentative"]], "Decision trees, overarching aims": [[51, null]], "Deep Neural Networks": [[73, "deep-neural-networks"]], "Deep learning methods": [[70, "deep-learning-methods"]], "Define model and architecture": [[43, "define-model-and-architecture"]], "Defining the cost function": [[43, "defining-the-cost-function"]], "Definitions": [[61, "definitions"]], "Deliverables": [[57, "deliverables"], [58, "deliverables"], [61, "deliverables"], [62, "deliverables"]], "Dependencies": [[29, "dependencies"]], "Derivation of the AdaGrad Algorithm": [[73, "derivation-of-the-adagrad-algorithm"]], "Derivatives and the chain rule": [[54, "derivatives-and-the-chain-rule"]], "Derivatives, example 1": [[71, "derivatives-example-1"]], "Deriving OLS from a probability distribution": [[47, "deriving-ols-from-a-probability-distribution"]], "Deriving and Implementing Ordinary Least Squares": [[58, "deriving-and-implementing-ordinary-least-squares"]], "Deriving and Implementing Ridge Regression": [[59, "deriving-and-implementing-ridge-regression"]], "Deriving the Lasso Regression Equations": [[71, "deriving-the-lasso-regression-equations"], [72, "deriving-the-lasso-regression-equations"], [72, "id6"]], "Deriving the Ridge Regression Equations": [[71, "deriving-the-ridge-regression-equations"], [72, "deriving-the-ridge-regression-equations"], [72, "id3"]], "Deriving the back propagation code for a multilayer perceptron model": [[54, "deriving-the-back-propagation-code-for-a-multilayer-perceptron-model"]], "Developing a code for doing neural networks with back propagation": [[43, "developing-a-code-for-doing-neural-networks-with-back-propagation"]], "Diagonalize the sample covariance matrix to obtain the principal components": [[53, "diagonalize-the-sample-covariance-matrix-to-obtain-the-principal-components"]], "Different kernels and Mercer\u2019s theorem": [[50, "different-kernels-and-mercer-s-theorem"]], "Disadvantages": [[51, "disadvantages"]], "Discriminative Modeling": [[70, "discriminative-modeling"]], "Domains and probabilities": [[67, "domains-and-probabilities"]], "Dropout": [[43, "dropout"]], "Economy-size SVD": [[71, "economy-size-svd"], [72, "economy-size-svd"]], "Elements of Probability Theory and Statistical Data Analysis": [[67, null]], "Empirical Evidence: Convergence Time and Memory in Practice": [[73, "empirical-evidence-convergence-time-and-memory-in-practice"]], "Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods": [[52, null]], "Entropy and the ID3 algorithm": [[51, "entropy-and-the-id3-algorithm"]], "Essential elements of ML": [[70, "essential-elements-of-ml"]], "Evaluate model performance on test data": [[43, "evaluate-model-performance-on-test-data"]], "Example": [[27, "example"]], "Example 2": [[71, "example-2"]], "Example 3": [[71, "example-3"]], "Example 4": [[71, "example-4"]], "Example Matrix": [[71, "example-matrix"], [72, "example-matrix"]], "Example of discriminative modeling, taken from Generative Deep Learning by David Foster": [[70, "example-of-discriminative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of generative modeling, taken from Generative Deep Learning by David Foster": [[70, "example-of-generative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of own Standard scaling": [[71, "example-of-own-standard-scaling"]], "Example relevant for the exercises": [[71, "example-relevant-for-the-exercises"]], "Example: Exponential decay": [[44, "example-exponential-decay"]], "Example: Population growth": [[44, "example-population-growth"]], "Example: The diffusion equation": [[44, "example-the-diffusion-equation"]], "Example: binary classification problem": [[43, "example-binary-classification-problem"]], "Examples": [[70, "examples"]], "Examples of likelihood functions used in logistic regression and neural networks": [[49, "examples-of-likelihood-functions-used-in-logistic-regression-and-neural-networks"]], "Exercise 1 - Choice of model and degrees of freedom": [[59, "exercise-1-choice-of-model-and-degrees-of-freedom"]], "Exercise 1 - Finding the derivative of Matrix-Vector expressions": [[58, "exercise-1-finding-the-derivative-of-matrix-vector-expressions"]], "Exercise 1 - Github Setup": [[57, "exercise-1-github-setup"]], "Exercise 1, scale your data": [[60, "exercise-1-scale-your-data"]], "Exercise 1: Creating the report document": [[62, "exercise-1-creating-the-report-document"]], "Exercise 1: Expectation values for ordinary least squares expressions": [[61, "exercise-1-expectation-values-for-ordinary-least-squares-expressions"]], "Exercise 1: Setting up various Python environments": [[42, "exercise-1-setting-up-various-python-environments"]], "Exercise 2 - Deriving the expression for OLS": [[58, "exercise-2-deriving-the-expression-for-ols"]], "Exercise 2 - Deriving the expression for Ridge Regression": [[59, "exercise-2-deriving-the-expression-for-ridge-regression"]], "Exercise 2 - Setting up a Github repository": [[57, "exercise-2-setting-up-a-github-repository"]], "Exercise 2, calculate the gradients": [[60, "exercise-2-calculate-the-gradients"]], "Exercise 2: Adding good figures": [[62, "exercise-2-adding-good-figures"]], "Exercise 2: Expectation values for Ridge regression": [[61, "exercise-2-expectation-values-for-ridge-regression"]], "Exercise 2: making your own data and exploring scikit-learn": [[42, "exercise-2-making-your-own-data-and-exploring-scikit-learn"]], "Exercise 3 - Creating feature matrix and implementing OLS using the analytical expression": [[58, "exercise-3-creating-feature-matrix-and-implementing-ols-using-the-analytical-expression"]], "Exercise 3 - Fitting an OLS model to data": [[57, "exercise-3-fitting-an-ols-model-to-data"]], "Exercise 3 - Scaling data": [[59, "exercise-3-scaling-data"]], "Exercise 3 - Setting up a Python virtual environment": [[57, "exercise-3-setting-up-a-python-virtual-environment"]], "Exercise 3, using the analytical formulae for OLS and Ridge regression to find the optimal paramters \\boldsymbol{\\theta}": [[60, "exercise-3-using-the-analytical-formulae-for-ols-and-ridge-regression-to-find-the-optimal-paramters-boldsymbol-theta"]], "Exercise 3: Deriving the expression for the Bias-Variance Trade-off": [[61, "exercise-3-deriving-the-expression-for-the-bias-variance-trade-off"]], "Exercise 3: Normalizing our data": [[42, "exercise-3-normalizing-our-data"]], "Exercise 3: Writing an abstract and introduction": [[62, "exercise-3-writing-an-abstract-and-introduction"]], "Exercise 4 - Fitting a polynomial": [[58, "exercise-4-fitting-a-polynomial"]], "Exercise 4 - Implementing Ridge Regression": [[59, "exercise-4-implementing-ridge-regression"]], "Exercise 4 - Testing multiple hyperparameters": [[59, "exercise-4-testing-multiple-hyperparameters"]], "Exercise 4 - The train-test split": [[57, "exercise-4-the-train-test-split"]], "Exercise 4, Implementing the simplest form for gradient descent": [[60, "exercise-4-implementing-the-simplest-form-for-gradient-descent"]], "Exercise 4: Adding Ridge Regression": [[42, "exercise-4-adding-ridge-regression"]], "Exercise 4: Computing the Bias and Variance": [[61, "exercise-4-computing-the-bias-and-variance"]], "Exercise 4: Making the code available and presentable": [[62, "exercise-4-making-the-code-available-and-presentable"]], "Exercise 5 - Comparing your code with sklearn": [[58, "exercise-5-comparing-your-code-with-sklearn"]], "Exercise 5, Ridge regression and a new Synthetic Dataset": [[60, "exercise-5-ridge-regression-and-a-new-synthetic-dataset"]], "Exercise 5: Analytical exercises": [[42, "exercise-5-analytical-exercises"]], "Exercise 5: Interpretation of scaling and metrics": [[61, "exercise-5-interpretation-of-scaling-and-metrics"]], "Exercise 5: Referencing": [[62, "exercise-5-referencing"]], "Exercise: Cross-validation as resampling techniques, adding more complexity": [[48, "exercise-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Exercise: Analysis of real data": [[48, "exercise-analysis-of-real-data"]], "Exercise: Bias-variance trade-off and resampling techniques": [[48, "exercise-bias-variance-trade-off-and-resampling-techniques"]], "Exercise: Lasso Regression on the Franke function with resampling": [[48, "exercise-lasso-regression-on-the-franke-function-with-resampling"]], "Exercise: Ordinary Least Square (OLS) on the Franke function": [[48, "exercise-ordinary-least-square-ols-on-the-franke-function"]], "Exercise: Ridge Regression on the Franke function with resampling": [[48, "exercise-ridge-regression-on-the-franke-function-with-resampling"]], "Exercises": [[42, "exercises"]], "Exercises and Projects": [[48, "exercises-and-projects"]], "Exercises week 34": [[57, null]], "Exercises week 35": [[58, null]], "Exercises week 36": [[59, null]], "Exercises week 37": [[60, null]], "Exercises week 38": [[61, null]], "Exercises week 39": [[62, null]], "Expectation values": [[67, "expectation-values"]], "Extending to more than one variable": [[72, "extending-to-more-than-one-variable"]], "Extremely useful tools, strongly recommended": [[70, "extremely-useful-tools-strongly-recommended"]], "FAQ": [[29, "faq"]], "Features": [[29, "features"]], "Feed-forward neural networks": [[54, "feed-forward-neural-networks"]], "Feed-forward pass": [[43, "feed-forward-pass"]], "Final back propagating equation": [[54, "final-back-propagating-equation"]], "Fine-tuning neural network hyperparameters": [[43, "fine-tuning-neural-network-hyperparameters"]], "Fitting an Equation of State for Dense Nuclear Matter": [[42, "fitting-an-equation-of-state-for-dense-nuclear-matter"]], "Fixing the singularity": [[71, "fixing-the-singularity"], [72, "fixing-the-singularity"]], "Format for electronic delivery of report and programs": [[65, "format-for-electronic-delivery-of-report-and-programs"]], "Frequently used scaling functions": [[71, "frequently-used-scaling-functions"], [73, "frequently-used-scaling-functions"]], "From OLS to Ridge and Lasso": [[72, "from-ols-to-ridge-and-lasso"]], "From one to many layers, the universal approximation theorem": [[54, "from-one-to-many-layers-the-universal-approximation-theorem"]], "Functionality in Scikit-Learn": [[71, "functionality-in-scikit-learn"], [73, "functionality-in-scikit-learn"]], "Further Dimensionality Remarks": [[45, "further-dimensionality-remarks"]], "Further properties (important for our analyses later)": [[47, "further-properties-important-for-our-analyses-later"], [71, "further-properties-important-for-our-analyses-later"], [72, "further-properties-important-for-our-analyses-later"]], "Gaussian Elimination": [[64, "gaussian-elimination"]], "General Features": [[51, "general-features"]], "General linear models and linear algebra": [[70, "general-linear-models-and-linear-algebra"]], "Generalizing the fitting procedure as a linear algebra problem": [[70, "generalizing-the-fitting-procedure-as-a-linear-algebra-problem"], [70, "id1"]], "Generative Adversarial Networks": [[46, "generative-adversarial-networks"]], "Generative Models": [[46, "generative-models"]], "Generative Versus Discriminative Modeling": [[70, "generative-versus-discriminative-modeling"]], "Geometric Interpretation and link with Singular Value Decomposition": [[53, "geometric-interpretation-and-link-with-singular-value-decomposition"]], "Getting started with project 1": [[62, "getting-started-with-project-1"]], "Github Dark": [[6, null]], "Github Dark Colorblind": [[7, null]], "Github Dark High Contrast": [[8, null]], "Github Light": [[9, null]], "Github Light Colorblind": [[10, null]], "Github Light High Contrast": [[11, null]], "Gotthard Dark": [[12, null]], "Gotthard Light": [[13, null]], "Gradient Boosting, Classification Example": [[52, "gradient-boosting-classification-example"]], "Gradient Boosting, Examples of Regression": [[52, "gradient-boosting-examples-of-regression"]], "Gradient Clipping": [[43, "gradient-clipping"]], "Gradient Descent Example": [[72, "id1"], [73, "id1"]], "Gradient boosting: Basics with Steepest Descent/Functional Gradient Descent": [[52, "gradient-boosting-basics-with-steepest-descent-functional-gradient-descent"]], "Gradient descent": [[44, "gradient-descent"]], "Gradient descent and Ridge": [[72, "gradient-descent-and-ridge"], [73, "gradient-descent-and-ridge"]], "Gradient descent and revisiting Ordinary Least Squares from last week": [[73, "gradient-descent-and-revisiting-ordinary-least-squares-from-last-week"]], "Gradient descent example": [[72, "gradient-descent-example"], [73, "gradient-descent-example"]], "Grading": [[68, "grading"], [68, "id2"], [70, "grading"]], "Greative": [[14, null]], "How to take derivatives of Matrix-Vector expressions": [[58, "how-to-take-derivatives-of-matrix-vector-expressions"]], "Hyperplanes and all that": [[50, "hyperplanes-and-all-that"]], "Important Matrix and vector handling packages": [[64, "important-matrix-and-vector-handling-packages"]], "Important technicalities: More on Rescaling data": [[71, "important-technicalities-more-on-rescaling-data"]], "Improving gradient descent with momentum": [[73, "improving-gradient-descent-with-momentum"]], "Improving performance": [[43, "improving-performance"]], "In summary": [[68, "in-summary"]], "Including Stochastic Gradient Descent with Autograd": [[55, "including-stochastic-gradient-descent-with-autograd"], [73, "including-stochastic-gradient-descent-with-autograd"]], "Incremental PCA": [[53, "incremental-pca"]], "Install": [[28, "install"]], "Installation": [[27, "installation"]], "Installing R, C++, cython or Julia": [[70, "installing-r-c-cython-or-julia"]], "Installing R, C++, cython, Numba etc": [[70, "installing-r-c-cython-numba-etc"]], "Instructor information": [[68, "instructor-information"]], "Interpretations and optimizing our parameters": [[70, "interpretations-and-optimizing-our-parameters"], [70, "id2"], [70, "id3"], [71, "interpretations-and-optimizing-our-parameters"], [71, "id1"], [71, "id2"]], "Interpreting the Ridge results": [[71, "interpreting-the-ridge-results"], [72, "interpreting-the-ridge-results"], [72, "id4"]], "Introducing JAX": [[55, "introducing-jax"]], "Introducing the Covariance and Correlation functions": [[53, "introducing-the-covariance-and-correlation-functions"], [71, "introducing-the-covariance-and-correlation-functions"]], "Introduction": [[42, "introduction"], [48, "introduction"], [63, "introduction"], [64, "introduction"]], "Introduction to numerical projects": [[65, "introduction-to-numerical-projects"]], "Iterative Fitting, Classification and AdaBoost": [[52, "iterative-fitting-classification-and-adaboost"]], "Iterative Fitting, Regression and Squared-error Cost Function": [[52, "iterative-fitting-regression-and-squared-error-cost-function"]], "Kernel PCA": [[53, "kernel-pca"]], "Kernels and non-linearity": [[50, "kernels-and-non-linearity"]], "LU Decomposition, the inverse of a matrix": [[64, "lu-decomposition-the-inverse-of-a-matrix"]], "Lasso Regression": [[72, "lasso-regression"]], "Lasso case": [[72, "lasso-case"]], "Layers": [[43, "layers"]], "Layers used to build CNNs": [[45, "layers-used-to-build-cnns"]], "Learn more": [[22, "learn-more"]], "Learning goals": [[57, "learning-goals"], [58, "learning-goals"], [59, "learning-goals"], [60, "learning-goals"], [61, "learning-goals"], [62, "learning-goals"]], "Learning outcomes": [[63, "learning-outcomes"], [70, "learning-outcomes"]], "Lectures and ComputerLab": [[70, "lectures-and-computerlab"]], "License": [[27, "license"], [28, "license"], [29, "license"]], "License for Sphinx": [[35, null]], "Licenses for incorporated software": [[35, "licenses-for-incorporated-software"]], "Limitations of supervised learning with deep networks": [[43, "limitations-of-supervised-learning-with-deep-networks"]], "Linear Algebra, Handling of Arrays and more Python Features": [[64, null]], "Linear Regression": [[42, null]], "Linear Regression Problems": [[71, "linear-regression-problems"], [72, "linear-regression-problems"]], "Linear Regression and the SVD": [[72, "linear-regression-and-the-svd"]], "Linear Regression, basic elements": [[42, "linear-regression-basic-elements"]], "Linking Bayes\u2019 Theorem with Ridge and Lasso Regression": [[47, "linking-bayes-theorem-with-ridge-and-lasso-regression"]], "Linking the regression analysis with a statistical interpretation": [[47, "linking-the-regression-analysis-with-a-statistical-interpretation"]], "Linking with the SVD": [[47, "linking-with-the-svd"], [71, "linking-with-the-svd"]], "Links to relevant courses at the University of Oslo": [[69, "links-to-relevant-courses-at-the-university-of-oslo"]], "Logistic Regression": [[49, null], [49, "id1"]], "MNIST and GANs": [[46, "mnist-and-gans"]], "Machine Learning": [[70, "machine-learning"]], "Machine learning": [[63, "machine-learning"]], "Main textbooks": [[70, "main-textbooks"]], "Making a tree": [[51, "making-a-tree"]], "Making your own Bootstrap: Changing the Level of the Decision Tree": [[52, "making-your-own-bootstrap-changing-the-level-of-the-decision-tree"]], "Making your own test-train splitting": [[71, "making-your-own-test-train-splitting"]], "Markdown + notebooks": [[24, "markdown-notebooks"]], "Markdown Files": [[22, null]], "Material for exercises week 35": [[71, "material-for-exercises-week-35"]], "Material for lab sessions sessions Tuesday and Wednesday": [[72, "material-for-lab-sessions-sessions-tuesday-and-wednesday"]], "Material for lecture Monday September 2": [[72, "material-for-lecture-monday-september-2"]], "Material for lecture Monday September 8": [[73, "material-for-lecture-monday-september-8"]], "Material for the lab sessions": [[73, "material-for-the-lab-sessions"]], "Mathematical Interpretation of Ordinary Least Squares": [[47, "mathematical-interpretation-of-ordinary-least-squares"], [71, "mathematical-interpretation-of-ordinary-least-squares"], [72, "mathematical-interpretation-of-ordinary-least-squares"]], "Mathematical optimization of convex functions": [[50, "mathematical-optimization-of-convex-functions"]], "Mathematics of CNNs": [[45, "mathematics-of-cnns"]], "Mathematics of the SVD and implications": [[47, "mathematics-of-the-svd-and-implications"], [71, "mathematics-of-the-svd-and-implications"], [72, "mathematics-of-the-svd-and-implications"]], "Matrices in Python": [[70, "matrices-in-python"]], "Matrix multiplication": [[43, "matrix-multiplication"]], "Matrix-vector notation and activation": [[54, "matrix-vector-notation-and-activation"]], "Meet the covariance!": [[67, "meet-the-covariance"]], "Meet the Covariance Matrix": [[47, "meet-the-covariance-matrix"], [71, "meet-the-covariance-matrix"]], "Meet the Hessian Matrix": [[71, "meet-the-hessian-matrix"]], "Meet the Pandas": [[70, "meet-the-pandas"]], "Memory Usage and Scalability": [[73, "memory-usage-and-scalability"]], "Memory constraints": [[73, "memory-constraints"]], "Min-Max Scaling": [[71, "min-max-scaling"]], "Momentum based GD": [[55, "momentum-based-gd"], [73, "momentum-based-gd"]], "More complicated Example: The Ising model": [[48, "more-complicated-example-the-ising-model"]], "More interpretations": [[71, "more-interpretations"], [72, "more-interpretations"], [72, "id5"]], "More on Dimensionalities": [[45, "more-on-dimensionalities"]], "More on Rescaling data": [[48, "more-on-rescaling-data"]], "More on Steepest descent": [[72, "more-on-steepest-descent"]], "More on convex functions": [[72, "more-on-convex-functions"]], "More preprocessing": [[71, "more-preprocessing"], [73, "more-preprocessing"]], "Motivation for Adaptive Step Sizes": [[73, "motivation-for-adaptive-step-sizes"]], "Multilayer perceptrons": [[54, "multilayer-perceptrons"]], "MyST markdown": [[24, "myst-markdown"]], "Network requirements": [[44, "network-requirements"]], "Neural Networks vs CNNs": [[45, "neural-networks-vs-cnns"]], "Neural networks": [[54, null]], "Non-Convex Problems": [[73, "non-convex-problems"]], "Note about SVD Calculations": [[71, "note-about-svd-calculations"], [72, "note-about-svd-calculations"]], "Note on Scikit-Learn": [[72, "note-on-scikit-learn"]], "Notebooks with MyST Markdown": [[23, null]], "Numerical experiments and the covariance, central limit theorem": [[67, "numerical-experiments-and-the-covariance-central-limit-theorem"]], "Numpy and arrays": [[64, "numpy-and-arrays"], [70, "numpy-and-arrays"]], "Numpy examples and Important Matrix and vector handling packages": [[70, "numpy-examples-and-important-matrix-and-vector-handling-packages"]], "Optimization and gradient descent, the central part of any Machine Learning algortithm": [[72, "optimization-and-gradient-descent-the-central-part-of-any-machine-learning-algortithm"]], "Optimization, the central part of any Machine Learning algortithm": [[55, null]], "Optimizing our parameters": [[70, "optimizing-our-parameters"]], "Optimizing our parameters, more details": [[70, "optimizing-our-parameters-more-details"]], "Optimizing the cost function": [[43, "optimizing-the-cost-function"]], "Organizing our data": [[42, "organizing-our-data"], [70, "organizing-our-data"]], "Other Matrix and Vector Operations": [[64, "other-matrix-and-vector-operations"]], "Other Types of Recurrent Neural Networks": [[46, "other-types-of-recurrent-neural-networks"]], "Other courses on Data science and Machine Learning at UiO": [[70, "other-courses-on-data-science-and-machine-learning-at-uio"]], "Other courses on Data science and Machine Learning at UiO, contn": [[70, "other-courses-on-data-science-and-machine-learning-at-uio-contn"]], "Other popular texts": [[70, "other-popular-texts"]], "Other techniques": [[53, "other-techniques"]], "Other types of networks": [[54, "other-types-of-networks"]], "Other ways of visualizing the trees": [[51, "other-ways-of-visualizing-the-trees"]], "Our Copyright Policy": [[20, "our-copyright-policy"]], "Our model for the nuclear binding energies": [[70, "our-model-for-the-nuclear-binding-energies"]], "Overview of first week": [[70, "overview-of-first-week"]], "Overview video on Stochastic Gradient Descent (SGD)": [[73, "overview-video-on-stochastic-gradient-descent-sgd"]], "Own code for Ordinary Least Squares": [[70, "own-code-for-ordinary-least-squares"], [71, "own-code-for-ordinary-least-squares"]], "PCA and scikit-learn": [[53, "pca-and-scikit-learn"]], "Pandas AI": [[70, "pandas-ai"]], "Part a : Ordinary Least Square (OLS) for the Runge function": [[65, "part-a-ordinary-least-square-ols-for-the-runge-function"]], "Part b: Adding Ridge regression for the Runge function": [[65, "part-b-adding-ridge-regression-for-the-runge-function"]], "Part c: Writing your own gradient descent code": [[65, "part-c-writing-your-own-gradient-descent-code"]], "Part d: Including momentum and more advanced ways to update the learning the rate": [[65, "part-d-including-momentum-and-more-advanced-ways-to-update-the-learning-the-rate"]], "Part e: Writing our own code for Lasso regression": [[65, "part-e-writing-our-own-code-for-lasso-regression"]], "Part f: Stochastic gradient descent": [[65, "part-f-stochastic-gradient-descent"]], "Part g: Bias-variance trade-off and resampling techniques": [[65, "part-g-bias-variance-trade-off-and-resampling-techniques"]], "Part h): Cross-validation as resampling techniques, adding more complexity": [[65, "part-h-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Partial Differential Equations": [[44, "partial-differential-equations"]], "Pitaya Smoothie": [[15, null]], "Plans for week 35": [[71, "plans-for-week-35"]], "Plans for week 36": [[72, "plans-for-week-36"]], "Plans for week 37, lecture Monday": [[73, "plans-for-week-37-lecture-monday"]], "Practical tips": [[55, "practical-tips"], [73, "practical-tips"]], "Practicalities": [[68, "practicalities"], [68, "id1"]], "Preamble: Note on writing reports, using reference material, AI and other tools": [[65, "preamble-note-on-writing-reports-using-reference-material-ai-and-other-tools"]], "Predicting New Points With A Trained Recurrent Neural Network": [[46, "predicting-new-points-with-a-trained-recurrent-neural-network"]], "Preprocessing our data": [[71, "preprocessing-our-data"]], "Prerequisites": [[70, "prerequisites"]], "Prerequisites and background": [[63, "prerequisites-and-background"]], "Prerequisites: Collect and pre-process data": [[45, "prerequisites-collect-and-pre-process-data"]], "Probability Distribution Functions": [[67, "probability-distribution-functions"]], "Program example for gradient descent with Ridge Regression": [[72, "program-example-for-gradient-descent-with-ridge-regression"], [73, "program-example-for-gradient-descent-with-ridge-regression"]], "Program for stochastic gradient": [[55, "program-for-stochastic-gradient"]], "Project 1 on Machine Learning, deadline October 6 (midnight), 2025": [[65, null]], "Properties of PDFs": [[67, "properties-of-pdfs"]], "Pros and cons": [[73, "pros-and-cons"]], "Pros and cons of trees, pros": [[51, "pros-and-cons-of-trees-pros"]], "Python installers": [[63, "python-installers"], [70, "python-installers"]], "Quickly add YAML metadata for MyST Notebooks": [[23, "quickly-add-yaml-metadata-for-myst-notebooks"]], "RMS prop": [[55, "rms-prop"]], "RMSProp algorithm, taken from Goodfellow et al": [[73, "rmsprop-algorithm-taken-from-goodfellow-et-al"]], "RMSProp: Adaptive Learning Rates": [[73, "rmsprop-adaptive-learning-rates"]], "RMSprop for adaptive learning rate with Stochastic Gradient Descent": [[73, "rmsprop-for-adaptive-learning-rate-with-stochastic-gradient-descent"]], "Random Numbers": [[67, "random-numbers"]], "Random forests": [[52, "random-forests"]], "Randomized PCA": [[53, "randomized-pca"]], "Reading material": [[70, "reading-material"]], "Reading recommendations:": [[71, "reading-recommendations"]], "Reading suggestions week 34": [[70, "reading-suggestions-week-34"]], "Readings and Videos:": [[73, "readings-and-videos"]], "Recurrent neural networks": [[54, "recurrent-neural-networks"]], "Recurrent neural networks: Overarching view": [[46, null]], "Reducing the number of degrees of freedom, overarching view": [[42, "reducing-the-number-of-degrees-of-freedom-overarching-view"], [71, "reducing-the-number-of-degrees-of-freedom-overarching-view"]], "Reformulating the problem": [[44, "reformulating-the-problem"]], "Regression Case": [[52, "regression-case"]], "Regression analysis and resampling methods": [[65, "regression-analysis-and-resampling-methods"]], "Regression analysis, overarching aims": [[70, "regression-analysis-overarching-aims"]], "Regression analysis, overarching aims II": [[70, "regression-analysis-overarching-aims-ii"]], "Regularization": [[43, "regularization"]], "Reminder from last week": [[71, "reminder-from-last-week"]], "Reminder on Newton-Raphson\u2019s method": [[72, "reminder-on-newton-raphson-s-method"]], "Reminder on Statistics": [[48, "reminder-on-statistics"]], "Reminder on different scaling methods": [[73, "reminder-on-different-scaling-methods"]], "Replace or not": [[55, "replace-or-not"], [73, "replace-or-not"]], "Required Technologies": [[63, "required-technologies"]], "Resampling Methods": [[48, null]], "Resampling and the Bias-Variance Trade-off": [[61, "resampling-and-the-bias-variance-trade-off"]], "Resampling methods": [[48, "id1"]], "Residual Error": [[71, "residual-error"], [72, "residual-error"]], "Resources on differential equations and deep learning": [[44, "resources-on-differential-equations-and-deep-learning"]], "Revisiting Ordinary Least Squares": [[72, "revisiting-ordinary-least-squares"]], "Revisiting our Linear Regression Solvers": [[55, "revisiting-our-linear-regression-solvers"]], "Rewriting the Covariance and/or Correlation Matrix": [[71, "rewriting-the-covariance-and-or-correlation-matrix"]], "Rewriting the fitting procedure as a linear algebra problem": [[70, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem"]], "Rewriting the fitting procedure as a linear algebra problem, more details": [[70, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem-more-details"]], "Ridge Regression": [[72, "ridge-regression"]], "Ridge and LASSO Regression": [[71, "ridge-and-lasso-regression"], [72, "ridge-and-lasso-regression"], [72, "id2"]], "Ridge and Lasso Regression": [[47, null], [47, "id1"]], "SGD example": [[73, "sgd-example"]], "SGD vs Full-Batch GD: Convergence Speed and Memory Comparison": [[73, "sgd-vs-full-batch-gd-convergence-speed-and-memory-comparison"]], "SVD analysis": [[72, "svd-analysis"]], "Same code but now with momentum gradient descent": [[55, "same-code-but-now-with-momentum-gradient-descent"], [73, "same-code-but-now-with-momentum-gradient-descent"], [73, "id3"], [73, "id4"]], "Sample Roles and Directives": [[22, "sample-roles-and-directives"]], "Schedule first week": [[70, "schedule-first-week"]], "Schematic Regression Procedure": [[51, "schematic-regression-procedure"]], "Second moment of the gradient": [[73, "second-moment-of-the-gradient"]], "September 15-19": [[61, "september-15-19"]], "Setting up the Back propagation algorithm": [[54, "setting-up-the-back-propagation-algorithm"]], "Setting up the Matrix to be inverted": [[71, "setting-up-the-matrix-to-be-inverted"], [72, "setting-up-the-matrix-to-be-inverted"]], "Setting up the network using Autograd; The full program": [[44, "setting-up-the-network-using-autograd-the-full-program"]], "Show me": [[29, "show-me"]], "Similar (second order function now) problem but now with AdaGrad": [[55, "similar-second-order-function-now-problem-but-now-with-adagrad"], [73, "similar-second-order-function-now-problem-but-now-with-adagrad"]], "Simple Python Code to read in Data and perform Classification": [[51, "simple-python-code-to-read-in-data-and-perform-classification"]], "Simple case": [[71, "simple-case"], [72, "simple-case"]], "Simple code for solving the above problem": [[72, "simple-code-for-solving-the-above-problem"]], "Simple example code": [[73, "simple-example-code"]], "Simple example to illustrate Ordinary Least Squares, Ridge and Lasso Regression": [[72, "simple-example-to-illustrate-ordinary-least-squares-ridge-and-lasso-regression"]], "Simple geometric interpretation": [[72, "simple-geometric-interpretation"]], "Simple linear regression model using scikit-learn": [[42, "simple-linear-regression-model-using-scikit-learn"], [70, "simple-linear-regression-model-using-scikit-learn"]], "Simple one-dimensional second-order polynomial": [[60, "simple-one-dimensional-second-order-polynomial"]], "Simple program": [[72, "simple-program"], [73, "simple-program"]], "Slightly different approach": [[73, "slightly-different-approach"]], "Sneaking in automatic differentiation using Autograd": [[73, "sneaking-in-automatic-differentiation-using-autograd"]], "Software and needed installations": [[65, "software-and-needed-installations"], [70, "software-and-needed-installations"]], "Solving Differential Equations with Deep Learning": [[44, null]], "Solving the one dimensional Poisson equation": [[44, "solving-the-one-dimensional-poisson-equation"]], "Solving the wave equation with Neural Networks": [[44, "solving-the-wave-equation-with-neural-networks"]], "Some famous Matrices": [[64, "some-famous-matrices"]], "Some simple problems": [[55, "some-simple-problems"], [72, "some-simple-problems"]], "Some useful matrix and vector expressions": [[71, "some-useful-matrix-and-vector-expressions"]], "Splitting our Data in Training and Test data": [[42, "splitting-our-data-in-training-and-test-data"], [71, "splitting-our-data-in-training-and-test-data"]], "Standard steepest descent": [[55, "standard-steepest-descent"]], "Statistical analysis and optimization of data": [[63, "statistical-analysis-and-optimization-of-data"], [70, "statistical-analysis-and-optimization-of-data"]], "Steepest descent": [[55, "steepest-descent"], [72, "steepest-descent"]], "Stochastic Gradient Descent": [[73, "stochastic-gradient-descent"]], "Stochastic Gradient Descent (SGD)": [[55, "stochastic-gradient-descent-sgd"], [73, "stochastic-gradient-descent-sgd"]], "Stochastic variables and the main concepts, the discrete case": [[67, "stochastic-variables-and-the-main-concepts-the-discrete-case"]], "Strongly Convex Case": [[73, "strongly-convex-case"]], "Structure of translation files": [[39, "structure-of-translation-files"]], "Support Vector Machines, overarching aims": [[50, null]], "Systematic reduction": [[45, "systematic-reduction"]], "Teachers": [[70, "teachers"]], "Teachers and Grading": [[68, null]], "Teaching Assistants Fall semester 2023": [[68, "teaching-assistants-fall-semester-2023"]], "Tentative deadllines for projects": [[68, "tentative-deadllines-for-projects"]], "Testing the Means Squared Error as function of Complexity": [[42, "testing-the-means-squared-error-as-function-of-complexity"], [71, "testing-the-means-squared-error-as-function-of-complexity"]], "Textbooks": [[69, null]], "The Algorithm before theorem": [[53, "the-algorithm-before-theorem"]], "The Breast Cancer Data, now with Keras": [[43, "the-breast-cancer-data-now-with-keras"]], "The CART algorithm for Classification": [[51, "the-cart-algorithm-for-classification"]], "The CART algorithm for Regression": [[51, "the-cart-algorithm-for-regression"]], "The CIFAR01 data set": [[45, "the-cifar01-data-set"]], "The Hessian matrix": [[72, "the-hessian-matrix"], [73, "the-hessian-matrix"]], "The Hessian matrix for Ridge Regression": [[72, "the-hessian-matrix-for-ridge-regression"], [73, "the-hessian-matrix-for-ridge-regression"]], "The IPython licensing terms": [[20, null]], "The Jacobian": [[71, "the-jacobian"]], "The MIT License (MIT)": [[19, null]], "The MNIST dataset again": [[45, "the-mnist-dataset-again"]], "The OLS case": [[72, "the-ols-case"]], "The RELU function family": [[43, "the-relu-function-family"]], "The Ridge case": [[72, "the-ridge-case"]], "The SVD, a Fantastic Algorithm": [[71, "the-svd-a-fantastic-algorithm"], [72, "the-svd-a-fantastic-algorithm"]], "The Softmax function": [[43, "the-softmax-function"]], "The \\chi^2 function": [[42, "the-chi-2-function"], [70, "the-chi-2-function"], [70, "id4"], [70, "id5"], [70, "id6"], [70, "id7"], [70, "id8"]], "The bias-variance tradeoff": [[48, "the-bias-variance-tradeoff"]], "The code for solving the ODE": [[44, "the-code-for-solving-the-ode"]], "The complete code with a simple data set": [[71, "the-complete-code-with-a-simple-data-set"]], "The cost/loss function": [[71, "the-cost-loss-function"]], "The course has two central parts": [[63, "the-course-has-two-central-parts"]], "The derivative of the cost/loss function": [[72, "the-derivative-of-the-cost-loss-function"], [73, "the-derivative-of-the-cost-loss-function"]], "The equations": [[72, "the-equations"]], "The equations for ordinary least squares": [[71, "the-equations-for-ordinary-least-squares"]], "The first Case": [[72, "the-first-case"]], "The gradient step": [[73, "the-gradient-step"]], "The ideal": [[72, "the-ideal"]], "The logistic function": [[49, "the-logistic-function"]], "The mean squared error and its derivative": [[71, "the-mean-squared-error-and-its-derivative"]], "The moons example": [[50, "the-moons-example"]], "The multilayer perceptron (MLP)": [[54, "the-multilayer-perceptron-mlp"]], "The network with one input layer, specified number of hidden layers, and one output layer": [[44, "the-network-with-one-input-layer-specified-number-of-hidden-layers-and-one-output-layer"]], "The plethora of machine learning algorithms/methods": [[70, "the-plethora-of-machine-learning-algorithms-methods"]], "The sensitiveness of the gradient descent": [[72, "the-sensitiveness-of-the-gradient-descent"]], "The singular value decomposition": [[47, "the-singular-value-decomposition"], [71, "the-singular-value-decomposition"], [72, "the-singular-value-decomposition"]], "The two-dimensional case": [[50, "the-two-dimensional-case"]], "Theoretical Convergence Speed and convex optimization": [[73, "theoretical-convergence-speed-and-convex-optimization"]], "Time decay rate": [[73, "time-decay-rate"]], "To our real data: nuclear binding energies. Brief reminder on masses and binding energies": [[70, "to-our-real-data-nuclear-binding-energies-brief-reminder-on-masses-and-binding-energies"]], "To update a translation": [[39, "to-update-a-translation"]], "ToDo": [[29, "todo"]], "Topics covered in this course: Statistical analysis and optimization of data": [[70, "topics-covered-in-this-course-statistical-analysis-and-optimization-of-data"]], "Towards the PCA theorem": [[53, "towards-the-pca-theorem"]], "Train and test datasets": [[43, "train-and-test-datasets"]], "Translation source files": [[39, "translation-source-files"]], "Translation workflow": [[39, null]], "Two-dimensional Objects": [[45, "two-dimensional-objects"]], "Type of problem": [[44, "type-of-problem"]], "Types of Machine Learning": [[70, "types-of-machine-learning"]], "Use": [[28, "use"]], "Use in Browser": [[29, "use-in-browser"]], "Use the books!": [[61, "use-the-books"]], "Use with node.js": [[29, "use-with-node-js"]], "Useful Python libraries": [[63, "useful-python-libraries"], [70, "useful-python-libraries"]], "Using Autograd": [[55, "using-autograd"]], "Using forward Euler to solve the ODE": [[44, "using-forward-euler-to-solve-the-ode"]], "Using gradient descent methods, limitations": [[55, "using-gradient-descent-methods-limitations"], [72, "using-gradient-descent-methods-limitations"], [73, "using-gradient-descent-methods-limitations"]], "Visualization": [[43, "visualization"], [43, "id1"]], "Visualizing the Tree, Classification": [[51, "visualizing-the-tree-classification"]], "Week 34: Introduction to the course, Logistics and Practicalities": [[70, null]], "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression": [[71, null]], "Week 36: Linear Regression and Gradient descent": [[72, null]], "Week 37: Gradient descent methods": [[73, null]], "Welcome to your Jupyter Book": [[21, null]], "What Is Generative Modeling?": [[70, "what-is-generative-modeling"]], "What does it mean?": [[71, "what-does-it-mean"], [72, "what-does-it-mean"]], "What is Machine Learning?": [[42, "what-is-machine-learning"]], "What is MyST?": [[22, "what-is-myst"]], "What is a good model?": [[42, "what-is-a-good-model"], [70, "what-is-a-good-model"]], "What is a good model? Can we define it?": [[70, "what-is-a-good-model-can-we-define-it"]], "When do we stop?": [[73, "when-do-we-stop"]], "Which activation function should I use?": [[43, "which-activation-function-should-i-use"]], "Why Combine Momentum and RMSProp?": [[73, "why-combine-momentum-and-rmsprop"]], "Why Linear Regression (aka Ordinary Least Squares and family)": [[70, "why-linear-regression-aka-ordinary-least-squares-and-family"]], "Wisconsin Cancer Data": [[49, "wisconsin-cancer-data"]], "With Lasso Regression": [[72, "with-lasso-regression"]], "Workflow of translations": [[39, "workflow-of-translations"]], "Writing Our First Generative Adversarial Network": [[46, "writing-our-first-generative-adversarial-network"]], "Writing our own PCA code": [[53, "writing-our-own-pca-code"]], "Writing the Cost Function": [[72, "writing-the-cost-function"]], "XGBoost: Extreme Gradient Boosting": [[52, "xgboost-extreme-gradient-boosting"]], "Yet another Example": [[72, "yet-another-example"]], "[0.4.4] on September 27, 2017": [[29, "on-september-27-2017"]], "[0.4.5] on November 06, 2017": [[29, "on-november-06-2017"]], "[0.4.6] on January 05, 2018": [[29, "on-january-05-2018"]], "[0.5.0] on August 15, 2018": [[29, "on-august-15-2018"]], "[0.5.2] on September 07, 2018": [[29, "on-september-07-2018"]], "[0.5.3] on November 11, 2018": [[29, "on-november-11-2018"]], "[0.5.4] on January 20, 2019": [[29, "on-january-20-2019"]], "[0.5.5] on February 07, 2019": [[29, "on-february-07-2019"]], "[0.6.0] on October 04, 2019": [[29, "on-october-04-2019"]], "a) Expression for Ridge regression": [[59, "a-expression-for-ridge-regression"]], "markdown-it-container": [[27, null]], "markdown-it-deflist": [[28, null]], "markdown-it-texmath": [[29, null]], "scikit-learn implementation": [[43, "scikit-learn-implementation"]]}, "docnames": [".venv/lib/python3.13/site-packages/a11y_pygments/a11y_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_colorblind/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_high_contrast/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_colorblind/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_high_contrast/README", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/greative/README", ".venv/lib/python3.13/site-packages/a11y_pygments/pitaya_smoothie/README", ".venv/lib/python3.13/site-packages/alabaster-0.7.16.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README", ".venv/lib/python3.13/site-packages/idna-3.10.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/ipython-9.5.0.dist-info/licenses/COPYING", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/intro", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/notebooks", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/AUTHORS", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/mdit_py_plugins/container/README", ".venv/lib/python3.13/site-packages/mdit_py_plugins/deflist/README", ".venv/lib/python3.13/site-packages/mdit_py_plugins/texmath/README", ".venv/lib/python3.13/site-packages/pip-25.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE", ".venv/lib/python3.13/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/AUTHORS", ".venv/lib/python3.13/site-packages/pybtex_docutils-1.0.3.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/pyzmq-27.0.2.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/soupsieve-2.8.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/sphinx-7.4.7.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module", ".venv/lib/python3.13/site-packages/sphinx_book_theme/assets/translations/README", ".venv/lib/python3.13/site-packages/sphinxcontrib_bibtex-2.6.5.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/zmq/backend/cffi/README", "chapter1", "chapter10", "chapter11", "chapter12", "chapter13", "chapter2", "chapter3", "chapter4", "chapter5", "chapter6", "chapter7", "chapter8", "chapter9", "chapteroptimization", "clustering", "exercisesweek34", "exercisesweek35", "exercisesweek36", "exercisesweek37", "exercisesweek38", "exercisesweek39", "intro", "linalg", "project1", "schedule", "statistics", "teachers", "textbooks", "week34", "week35", "week36", "week37"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": [".venv/lib/python3.13/site-packages/a11y_pygments/a11y_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_colorblind/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_high_contrast/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_colorblind/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_high_contrast/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/greative/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/pitaya_smoothie/README.md", ".venv/lib/python3.13/site-packages/alabaster-0.7.16.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README.md", ".venv/lib/python3.13/site-packages/idna-3.10.dist-info/LICENSE.md", ".venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/ipython-9.5.0.dist-info/licenses/COPYING.rst", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/intro.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/notebooks.ipynb", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/AUTHORS.rst", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/LICENSE.rst", ".venv/lib/python3.13/site-packages/mdit_py_plugins/container/README.md", ".venv/lib/python3.13/site-packages/mdit_py_plugins/deflist/README.md", ".venv/lib/python3.13/site-packages/mdit_py_plugins/texmath/README.md", ".venv/lib/python3.13/site-packages/pip-25.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md", ".venv/lib/python3.13/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/AUTHORS.rst", ".venv/lib/python3.13/site-packages/pybtex_docutils-1.0.3.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/pyzmq-27.0.2.dist-info/licenses/LICENSE.md", ".venv/lib/python3.13/site-packages/soupsieve-2.8.dist-info/licenses/LICENSE.md", ".venv/lib/python3.13/site-packages/sphinx-7.4.7.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst", ".venv/lib/python3.13/site-packages/sphinx_book_theme/assets/translations/README.md", ".venv/lib/python3.13/site-packages/sphinxcontrib_bibtex-2.6.5.dist-info/licenses/LICENSE.rst", ".venv/lib/python3.13/site-packages/zmq/backend/cffi/README.md", "chapter1.ipynb", "chapter10.ipynb", "chapter11.ipynb", "chapter12.ipynb", "chapter13.ipynb", "chapter2.ipynb", "chapter3.ipynb", "chapter4.ipynb", "chapter5.ipynb", "chapter6.ipynb", "chapter7.ipynb", "chapter8.ipynb", "chapter9.ipynb", "chapteroptimization.ipynb", "clustering.ipynb", "exercisesweek34.ipynb", "exercisesweek35.ipynb", "exercisesweek36.ipynb", "exercisesweek37.ipynb", "exercisesweek38.ipynb", "exercisesweek39.ipynb", "intro.md", "linalg.ipynb", "project1.ipynb", "schedule.md", "statistics.ipynb", "teachers.md", "textbooks.md", "week34.ipynb", "week35.ipynb", "week36.ipynb", "week37.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 15, 22, 23, 24, 27, 29, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 57, 58, 59, 61, 63, 64, 65, 67, 68, 70, 71], "0": [0, 4, 8, 9, 10, 11, 15, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 68, 70, 71, 72, 73], "00": [42, 43, 47, 53, 70, 71], "000": [43, 45], "000000": [5, 12], "00000000e": [], "001": [44, 50, 55, 72, 73], "004": 47, "004113634617443131": 71, "004113634617443139": 71, "00411363461744314": 71, "004113634617443147": 71, "005b82": 2, "00622f": 2, "00727646693": [42, 70], "0072b2": 5, "00749c": 3, "008561": 5, "0086649156": [42, 70], "00e0e0": [0, 1], "01": [42, 43, 44, 47, 51, 53, 55, 59, 69, 70, 71, 73], "010726": 14, "0110": 67, "01719003e": [], "02": [42, 46, 49, 54, 70], "02334824": [], "023b95": 11, "024c1a": 11, "02857": 46, "02f": 48, "03077640549": 46, "03097597e": [], "031": 47, "04": 53, "0458": 51, "05": [46, 48], "0550ae": [9, 10], "062292565": 46, "062435": [], "06730814": [], "07": [], "0713": [42, 70], "07285": 45, "08": 67, "08078025e": [], "080808": 2, "08336233266": 46, "08376632": 71, "083766322923899": 71, "0837663229239043": 71, "0917": 51, "0969da4a": [9, 10, 11], "0d1117": [6, 7, 8], "0n": [42, 70], "0x113e21950": 59, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 24, 27, 29, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 66, 67, 68, 69, 70, 72, 73], "10": [0, 1, 7, 11, 14, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 64, 66, 67, 68, 70, 71, 72, 73], "100": [24, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 64, 67, 68, 70, 71, 72, 73], "1000": [42, 43, 44, 46, 47, 50, 53, 55, 56, 60, 61, 63, 67, 70, 72, 73], "10000": [44, 47, 48, 52, 53, 55, 67], "100000": 50, "10001": 52, "1001": 67, "1002": 67, "1003": 67, "1005": 67, "1009": 67, "101": 58, "1011": 67, "1013": 67, "1013904243": 67, "1015": 67, "102": 58, "1023": 67, "1024": 45, "1026": 67, "1027": 67, "103": 43, "1030": 67, "1037": 67, "1038": 67, "1040": 67, "1047": 67, "107": 58, "108": [], "10th": 51, "10x": [42, 70], "11": [8, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 64, 65, 67, 69, 70, 71, 72, 73], "110": [], "1100": 67, "1101": 67, "111": [43, 49, 54], "112": 58, "11340253": [], "11590451": [], "116": 58, "116329": 9, "116633": 3, "117": 58, "118": 58, "12": [6, 7, 8, 15, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 54, 60, 64, 67, 69, 70, 71, 72, 73], "120": 45, "121": [50, 51, 52, 58], "1215pm": [68, 70], "122": [50, 51, 52], "124": [42, 70], "125": 58, "127": [46, 58], "128": [45, 46, 55, 73], "129": 58, "1298": 51, "12pm": [68, 70], "13": [0, 1, 8, 14, 42, 44, 51, 54, 64, 67, 70], "131": 58, "133": 49, "135": 58, "136": 58, "14": [3, 8, 9, 10, 11, 42, 44, 46, 48, 50, 51, 52, 54, 64, 67, 69, 71], "141": 58, "1412": 73, "141414": 13, "143": 58, "1446729567": 46, "149": 58, "14g": 48, "15": [42, 44, 46, 48, 49, 50, 51, 54, 55, 65, 67, 70, 72, 73], "150": [46, 50], "152": 58, "153760": [], "156": 58, "157": [], "158": [], "159": 58, "15g": 48, "15pm": 70, "16": [13, 43, 44, 45, 46, 47, 50, 51, 52, 67, 70, 72], "160": 58, "1603": 45, "161": 58, "162": 58, "16231451": 46, "163": 58, "16384": 45, "164": 58, "167": 58, "17": [15, 43, 44, 50, 67], "172": 58, "173": 58, "176": 58, "178": 58, "179": 58, "1797": 43, "18": [44, 48, 49, 50, 51, 52, 67, 70], "1807": 46, "181036": 15, "18392847": [], "18c1c4": 15, "19": [2, 12, 44, 67, 70], "1940": [], "1943": 54, "19569961": 71, "19680801": 24, "1970": [64, 70], "1973": 51, "1979": 48, "1_1": 54, "1_2": 54, "1_3": 54, "1cm": [42, 50, 52, 67, 70], "1d": [43, 44, 45], "1e": [44, 46, 55, 56, 73], "1e10": 56, "1e1e1": 3, "1e4": 48, "1f": 43, "1k": 64, "1n": [42, 70], "1x": [42, 70], "2": [1, 6, 11, 13, 15, 23, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 63, 64, 65, 67, 69, 73], "20": [5, 42, 43, 44, 48, 49, 50, 58, 59, 67, 68, 70, 71, 72, 73], "200": [42, 44, 45, 46, 50, 51, 52], "2000": [42, 71], "2001": 20, "2004": [55, 72], "2006": 69, "2007": 35, "20072279": [], "2008": [35, 70, 73], "2009": 33, "2010": [16, 43], "2011": [16, 26, 40, 43, 73], "2012": [33, 73], "2013": [18, 30, 32], "2014": [46, 73], "2015": 43, "2016": [19, 42, 70], "2018": [34, 42, 48, 71], "2020": [16, 26], "2021": [32, 48, 56, 71, 73], "2022": 70, "2024": [18, 30, 35, 40], "2025": [34, 60, 70, 71, 72, 73], "21": [42, 43, 47, 49, 51, 54, 64, 70, 71, 72], "2116753732": 46, "215pm": [68, 70], "2167072": [], "22": [42, 43, 47, 54, 55, 64, 70, 71, 72], "221": 50, "225": 46, "22948497": [], "23": [43, 54, 64], "24": [42, 43, 64, 70], "242424": 4, "24292f": [9, 10, 11], "25": [44, 45, 46, 47, 48, 50, 51, 53, 71], "250": [44, 46, 49, 51], "25000": [], "250154": [], "252124": 25, "253775": [], "255": 45, "256": [46, 73], "25x": 65, "26": 29, "26303845": [], "264": [], "265": [], "265109911": 46, "266": [], "269": [], "27": 43, "270": [], "278": [72, 73], "27n_": 67, "28": [43, 45, 46], "283": [72, 73], "2830637392": 46, "2861": 67, "2873": 51, "2882": 67, "2886": 67, "2890": [42, 70], "2892": 67, "29": 71, "2915": 67, "2931": 70, "29364655": [], "294399745619595": [], "296247": [], "2968": 70, "2980": 70, "298273": [], "298375": [], "2990": 70, "2_": 54, "2_1": 54, "2_2": 54, "2_3": 54, "2_i": 54, "2_m": [48, 67], "2_t": 55, "2_x": 67, "2a": 59, "2a1968": 15, "2b": 67, "2b2b2b": [0, 1], "2c8f433990d1": 73, "2cm": 50, "2d": [43, 45, 53, 54, 63, 70], "2e": 48, "2f": [42, 49, 51, 52, 53, 54, 70], "2g": 44, "2g_i": 44, "2k": 45, "2m": 48, "2mvizaqfst8": 71, "2n": [42, 44, 45, 70, 71], "2nd": 51, "2p": 67, "2pt": 46, "2x": [42, 45, 50, 55, 70], "2x_ix_jy_iy_j": 50, "2x_j": 50, "2y_i": 52, "2y_j": 50, "3": [0, 1, 3, 6, 7, 8, 12, 14, 18, 20, 30, 33, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 63, 64, 65, 66, 67, 68, 70, 72, 73], "30": [42, 43, 46, 48, 49, 52, 55, 68, 73], "30000": [42, 70], "3072": 45, "31": [54, 64, 67], "315": [48, 71, 73], "3155": [42, 47, 48, 71, 72, 73], "32": [45, 46, 48, 54, 55, 64, 67, 73], "3200": 43, "3250": 43, "3297": [], "33": [54, 64, 68], "3303": [], "3310": [], "332331": [], "333": 49, "3331": [], "3337": [], "34": 64, "3436": [42, 70], "3437": [42, 70], "35": [42, 48, 65, 70, 72, 73], "3581341341": 46, "359": [47, 72], "36": [42, 47, 48, 60, 65, 67], "37": [65, 72], "370782966": 46, "38": [65, 67], "39": [42, 68, 70], "3d": [44, 45, 46, 48, 55, 58], "3d73a9": 13, "3f": [43, 45, 51], "3n": 64, "3x": [44, 50], "3x_i": 44, "3y": 50, "4": [2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 24, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 65, 67, 70, 72, 73], "40": [43, 48, 68, 70], "400": 46, "4000": 70, "40008b9a5380fcacce3976bf7c08af5b": 73, "4050": [69, 70], "41": 64, "4155": [44, 57], "41589548": [], "42": [43, 46, 50, 51, 52, 64], "43": [42, 49, 64], "4310": 70, "436462435": 46, "437a6b": 13, "44": [42, 64, 72, 73], "45": [68, 70], "46": [68, 70], "462": 49, "47": [68, 70], "473d18": 14, "479465113": 46, "47958494": [], "48": [], "48257387": [68, 70], "49": [47, 48, 53], "49152": 45, "4940954": [42, 70], "4990": 67, "4992": 67, "4997": 67, "4c4b4be8": 12, "4c4c7f": [51, 52], "4d": 45, "4f": 48, "4pm": [68, 70], "4y": 50, "4y_i": 52, "5": [2, 4, 5, 6, 9, 10, 11, 13, 14, 15, 24, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 64, 65, 67, 70, 71, 72, 73], "50": [43, 44, 45, 46, 48, 49, 50, 52, 55, 70, 71, 73], "500": [43, 45, 46, 48, 51, 52, 55, 73], "5018": 67, "506": [], "507d50": [51, 52], "50j": 55, "50x10": 43, "51": 52, "510": 43, "512132": [], "515151": [2, 3], "5177783846": 46, "53": 51, "5391cf": 4, "54": [48, 67], "5411205": [], "54894451": [], "55": 43, "56": 43, "56536": [42, 70], "569": 43, "57": [42, 50, 68, 70], "571": [47, 72], "58": [52, 68, 70], "58a6ff70": [7, 8], "591317992": 46, "5ca7e4": 14, "5cm": 67, "5f": [50, 73], "5x": [50, 60], "5y": 50, "6": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 60, 64, 67, 68, 70, 71, 72, 73], "60": [43, 45], "60000": 46, "6019067271": 46, "606439": [], "622cbc": 11, "625": 49, "63": 43, "64": [43, 45, 46, 55, 64, 70, 73], "64x50": 43, "65": [43, 50, 51], "66666691": 4, "66707b": 11, "66ccee": 4, "66e9ec": 15, "6730c5": 2, "6887363571": 46, "69": [58, 67], "69069n_": 67, "691": [], "6980": 73, "6e7681": 6, "6e7781": [9, 10], "6f98b3": 12, "6n_": 67, "7": [0, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 64, 65, 67, 69, 70, 71, 73], "70": [43, 49], "702c00": 11, "70653767": 46, "71": 43, "724": 45, "72f088": 8, "73": [], "7304881": [], "737373": 5, "75": [47, 48, 50, 53], "76": [68, 70], "765": 49, "77": [68, 70], "7718": 51, "7782028952": 46, "77893972": [], "78": [], "797979": 14, "7998f2": 15, "79c0ff": [6, 7], "7d7d58": [51, 52], "7ee787": 6, "7f4707": [2, 3], "8": [0, 1, 3, 4, 6, 8, 10, 11, 12, 14, 15, 29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 60, 61, 64, 67, 68, 70, 72], "80": [42, 43, 47, 50, 59, 71], "800": [46, 49], "8045e5": 3, "81": 43, "815am": [68, 70], "81b19b": 12, "8250df": [9, 10], "85": 43, "8702784034": 46, "8786ac": 15, "88": 70, "8a4600": 10, "8b949e": 6, "8c8c8c": 4, "8f": 48, "8g": 48, "8n": 64, "8x8": 43, "9": [0, 1, 2, 3, 6, 7, 8, 12, 13, 14, 15, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 64, 67, 70, 73], "90": 43, "9040": 51, "91": [68, 70], "912583": 2, "91cbff": 8, "92": [68, 70], "93": 58, "931": [42, 70], "933": [47, 72], "937": 67, "938": 67, "939": [42, 67, 70], "94": 67, "95": [43, 53], "953800": 9, "954": 67, "955820c21e8b": 46, "96": 48, "960": 67, "961": 67, "962": 67, "9649652536": 46, "96611194e": [], "974eb7": 13, "9780387310732": 69, "9780387848570": 69, "9781098134174": 70, "9781492032632": 69, "9781801819312": 70, "97898392": 71, "98": [42, 43, 58], "985": 67, "986": 67, "98661b": 13, "989": 67, "9898ff": [51, 52], "99": [55, 58, 73], "991": 67, "992": 67, "993": 67, "996": 47, "996b00": 5, "999": [51, 67, 73], "9e86c8": 14, "9e8741": 14, "9f4e55": 13, "9x": 48, "9y": 48, "A": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 44, 45, 47, 48, 49, 52, 53, 54, 55, 57, 58, 61, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73], "AND": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 44], "AS": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "AT": 31, "And": [42, 45, 46, 47, 48, 51, 55, 62, 63, 65, 67, 72], "As": [24, 42, 43, 44, 45, 46, 47, 48, 50, 52, 54, 55, 57, 58, 64, 65, 67, 70, 71, 72, 73], "At": [42, 46, 48, 55, 62, 70, 73], "BE": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 70], "BUT": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "BY": [16, 18, 30, 33, 35, 40], "Be": [44, 60, 63, 70], "Being": 55, "But": [20, 24, 42, 43, 44, 45, 47, 48, 51, 52, 58, 67, 71], "By": [42, 45, 47, 48, 54, 55, 59, 61, 64, 70, 71, 72, 73], "FOR": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "For": [22, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 63, 64, 65, 67, 69, 70, 71, 72, 73], "IF": [16, 18, 30, 33, 35, 40, 48, 71, 73], "IN": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 69], "If": [20, 23, 27, 28, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 63, 64, 65, 67, 70, 71, 72, 73], "In": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 67, 69, 70, 71, 72, 73], "Ising": [47, 54, 71, 72], "It": [21, 22, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 62, 63, 64, 65, 67, 70, 71, 72, 73], "Its": [43, 44, 46, 53], "NO": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "NOT": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "No": [48, 51, 70, 71, 73], "Not": [42, 43, 47, 48, 71, 72, 73], "OF": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "ON": [16, 18, 30, 33, 35, 40], "OR": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 67], "Of": 67, "On": [42, 45, 65, 67, 68, 69, 70, 73], "One": [42, 43, 45, 46, 47, 48, 49, 50, 53, 54, 55, 59, 67, 71, 72, 73], "Or": [42, 43, 48, 70], "SUCH": [16, 18, 30, 33, 35, 40], "Such": [42, 48, 54, 58, 67, 73], "THE": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "TO": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "That": [23, 42, 47, 49, 52, 53, 54, 56, 65, 67, 70], "The": [16, 17, 22, 23, 26, 29, 32, 34, 35, 39, 46, 52, 55, 56, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69], "Then": [42, 43, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 64, 70, 72, 73], "There": [24, 42, 45, 46, 47, 48, 50, 51, 53, 54, 56, 57, 64, 65, 67, 68, 70, 71, 72, 73], "These": [39, 42, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 59, 60, 64, 65, 67, 68, 70, 71, 72, 73], "To": [17, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 62, 64, 67, 71, 72, 73], "WITH": [19, 26, 32, 34], "With": [20, 23, 27, 42, 47, 48, 50, 51, 52, 53, 54, 56, 58, 61, 64, 65, 67, 70, 71], "_": [42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 64, 65, 70, 71, 72, 73], "_0": [47, 50, 52, 53, 55, 71, 72], "_1": [44, 47, 48, 50, 52, 53, 54, 55, 56, 64, 71, 72, 73], "_2": [44, 47, 50, 53, 54, 55, 64, 71, 73], "_3": 64, "_4": 64, "_9": [55, 73], "__class__": 52, "__doc__": 48, "__future__": [50, 51], "__import__": 17, "__init__": [17, 43], "__main__": 44, "__name__": [17, 44, 52], "__path__": 17, "_auto1": [44, 45, 46, 47, 48, 49, 54, 55, 64, 67, 71, 72], "_auto10": [48, 54], "_auto11": 48, "_auto12": 48, "_auto2": [44, 45, 46, 47, 48, 54, 55, 64, 67], "_auto3": [45, 46, 47, 48, 54, 55, 64], "_auto4": [46, 48, 54, 55, 64], "_auto5": [46, 48, 54, 55, 64], "_auto6": [46, 48, 54, 64], "_auto7": [46, 48, 54, 64], "_auto8": [48, 54], "_auto9": [48, 54], "_build": [42, 63, 65, 69, 70], "_c": 43, "_center": [], "_compile_transl": 39, "_compon": 53, "_depth": 51, "_export": [57, 58, 61], "_fraction": 51, "_i": [42, 43, 44, 47, 48, 49, 50, 53, 54, 55, 61, 65, 70, 71, 72, 73], "_j": [42, 43, 44, 45, 47, 48, 50, 55, 61, 65, 71, 72, 73], "_k": [55, 72, 73], "_l": 54, "_lambda": 48, "_leaf": 51, "_m": 52, "_multilayer_perceptron": [], "_n": [44, 47, 50, 53, 55, 71, 72, 73], "_node": 51, "_norm": [], "_p": [47, 50, 71, 72], "_parse_numpydoc_see_also_sect": 35, "_pydevd_bundl": 17, "_ratio": 53, "_sampl": 51, "_split": [48, 51, 65], "_t": [55, 73], "_test": [48, 65], "_varianc": 53, "_weight": 51, "a0": 45, "a0111f": 11, "a0faa0": [51, 52], "a1": [42, 70], "a11": [1, 15], "a12236": 2, "a2": [42, 70], "a25e53": 13, "a2bffc": 14, "a3": [42, 70], "a4": [42, 70], "a5d6ff": 7, "a_": [42, 43, 58, 64, 70, 71], "a_0": [42, 70], "a_1a": [42, 70], "a_2a": [42, 70], "a_3": [42, 70], "a_3a": [42, 70], "a_4": [42, 70], "a_4a": [42, 70], "a_h": 43, "a_i": [42, 43, 44, 54, 70], "a_j": [43, 54], "a_k": [42, 43, 54], "aa": [3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15], "aaa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "aaron": 69, "ab": [42, 44, 47, 55, 56, 70, 71, 73], "ab6369": 12, "ab_channel": 63, "abandon": 43, "abe338": [0, 1], "abid": 67, "abil": [42, 52], "abl": [42, 43, 46, 47, 48, 49, 52, 54, 55, 58, 60, 62, 65, 71, 72, 73], "about": [22, 23, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 61, 62, 63, 64, 65, 68, 73], "abov": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 67, 69, 70, 71, 73], "abovement": [48, 65, 70], "abscissa": [55, 72], "absent": 73, "absolut": [42, 44, 47, 48, 55, 70, 71, 72], "absorb": [71, 72], "abstract": [17, 43, 73], "abund": 73, "acceler": [55, 73], "accept": [22, 42, 45, 48, 51, 65, 71, 73], "access": [0, 1, 2, 3, 15, 45, 53, 67, 70, 73], "accid": [46, 48], "accompani": [42, 70, 71], "accomplish": [50, 51, 55, 73], "accord": [42, 43, 44, 47, 48, 51, 54, 55, 56, 67, 70, 72, 73], "accordingli": 53, "account": [42, 45, 47, 55, 57, 58, 62, 67, 70, 73], "accumul": [54, 55, 67, 73], "accur": [42, 45, 46, 48, 52, 55, 73], "accuraci": [42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 54, 70, 71, 72], "accuracy_scor": [42, 43, 52, 70], "accuracy_score_numpi": 43, "achiev": [42, 43, 47, 48, 50, 54, 64, 70, 73], "aco": 67, "acquaint": 63, "acquir": [43, 63, 70], "acr": [], "across": [43, 45, 48, 51, 59, 63, 70], "act": [43, 45, 64, 73], "action": [19, 26, 32, 34, 67], "activ": [42, 44, 45, 46, 51, 57, 66, 68, 70, 73], "activest": 25, "actual": [42, 43, 46, 47, 48, 50, 53, 57, 58, 60, 64, 67, 70, 71, 72, 73], "ad": [43, 45, 46, 47, 50, 55, 57, 58, 64, 72, 73], "ada_clf": 52, "adaboostclassifi": 52, "adadelta": [55, 73], "adagrad": 65, "adam": [43, 45, 46, 65, 70], "adapt": [46, 48, 55, 59, 69, 72], "add": [17, 28, 29, 39, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 57, 58, 59, 60, 62, 67, 68, 70, 71, 72, 73], "add6ff": 5, "add_": 24, "add_subplot": [43, 49, 54, 56], "addendum": 47, "addeventlisten": 29, "addit": [42, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 57, 63, 64, 65, 67, 68, 69, 70, 71], "addition": [54, 55, 72, 73], "address": [43, 51, 53, 55, 70, 73], "adjac": [45, 54], "adjoint": [47, 71], "adjust": [42, 47, 54, 55, 72, 73], "admir": [42, 70], "advanc": [46, 48, 54, 69, 70, 73], "advantag": [43, 45, 47, 48, 52, 55, 61, 64, 72, 73], "adversari": 70, "advis": [16, 18, 30, 33, 35, 40], "afecionado": 70, "affect": [45, 57, 61], "affin": [42, 45, 50, 53, 71], "afford": 45, "aficionado": 70, "aforement": 56, "african": [], "after": [27, 42, 43, 44, 46, 47, 48, 51, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73], "afterward": [42, 70], "ag": [42, 49, 70, 71], "ag_0": 44, "again": [42, 43, 46, 47, 48, 49, 50, 52, 53, 54, 55, 65, 67, 70, 71, 72], "against": [43, 46, 49, 52], "agegroup": 49, "agegroupmean": 49, "aggreg": [51, 52, 73], "agorithm": 52, "agre": [47, 48, 67, 71, 72, 73], "agreement": [55, 73], "ahead": 51, "ai": [42, 69], "aid": [53, 62, 73], "aim": [42, 43, 46, 48, 49, 53, 56, 58, 59, 61, 62, 63, 64, 65, 71], "ainv": 47, "airplan": 45, "aka": 47, "al": [42, 44, 46, 58, 59, 62, 69, 70, 71, 72], "alarm": [47, 49], "aldo": 71, "algebra": [42, 45, 47, 55, 63, 71, 72], "algorithm": [42, 43, 44, 46, 47, 48, 49, 50, 55, 56, 58, 63, 64, 65, 67, 69], "align": [24, 42, 44, 47, 48, 49, 50, 55, 67, 70, 71, 72], "all": [18, 19, 20, 22, 23, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "allevi": [43, 55, 72], "alloc": [45, 64], "allow": [17, 22, 42, 43, 44, 45, 47, 48, 50, 52, 55, 57, 63, 64, 65, 70, 71, 72, 73], "almost": [42, 43, 48, 50, 53, 55, 67, 72, 73], "alon": [44, 51, 73], "along": [44, 45, 46, 47, 48, 51, 52, 53, 57, 62, 63, 64, 70, 71, 72], "alpha": [42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 55, 56, 67, 70, 71, 72, 73], "alpha_": [52, 73], "alpha_0": 45, "alpha_1": 45, "alpha_2": 45, "alpha_i": [45, 55], "alpha_k": 55, "alpha_m": 52, "alpha_n": 45, "alpha_opt": 55, "alreadi": [29, 44, 45, 46, 47, 48, 52, 54, 57, 63, 64, 67, 70, 71, 72], "also": [20, 22, 23, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 67, 70, 71, 72, 73], "alter": 43, "altern": [42, 43, 46, 47, 48, 50, 51, 53, 55, 57, 60, 64, 65, 70, 71, 73], "although": [42, 43, 47, 48, 50, 52, 55, 58, 61, 62, 70, 73], "alwai": [42, 45, 47, 48, 54, 55, 58, 61, 65, 67, 70, 71, 72, 73], "am": 46, "ame2016": [42, 70], "american": [], "amjith": 31, "among": [42, 45, 47, 51, 52, 54, 64, 70, 71], "amongst": 47, "amount": [42, 43, 45, 46, 48, 50, 52, 56, 63], "an": [19, 22, 26, 29, 32, 34, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 65, 67, 68, 69, 71, 72, 73], "an_": 67, "anaconda": [42, 43, 63, 65, 70], "analogi": 55, "analys": 48, "analysi": [43, 45, 46, 49, 56, 61, 64, 69, 73], "analyt": [44, 45, 47, 48, 49, 54, 55, 59, 63, 65, 70, 71, 72, 73], "analyz": [42, 43, 45, 46, 47, 48, 58, 65, 67, 71, 72, 73], "andrew": 43, "angl": [42, 45, 51, 71, 73], "anharmon": 45, "ani": [16, 18, 19, 20, 21, 23, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 57, 58, 61, 67, 70, 71, 73], "anim": [46, 54], "ann": 54, "annot": [42, 43, 45, 49, 50, 70], "announc": 70, "anonym": 60, "anoth": [27, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 57, 64, 65, 67, 70, 71, 73], "ansatz": [42, 60, 70], "answer": [42, 43, 45, 47, 48, 61, 64, 65, 68, 70], "antialias": [44, 48], "anticip": 46, "anymor": [43, 50], "anyon": [46, 50, 57], "anyth": [43, 57, 58, 67], "anytim": [68, 70], "apach": 43, "apart": [53, 55, 72, 73], "api": [43, 63, 70], "appar": 44, "appear": [42, 43, 45, 55, 64, 67], "append": [43, 45, 46, 50, 51, 55, 61, 70, 73], "appendix": 65, "appli": [42, 43, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 60, 65, 67, 69, 70, 71, 73], "applic": [42, 43, 45, 46, 47, 48, 49, 51, 54, 55, 58, 64, 67, 69, 70, 71, 72, 73], "apply_gradi": 46, "approach": [43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 57, 58, 60, 63, 65, 67, 69, 71, 72], "approch": 65, "appropri": [44, 48, 51, 54, 55, 59, 63, 67, 73], "approv": 70, "approx": [42, 44, 45, 48, 52, 53, 55, 60, 65, 67, 70, 72, 73], "approxim": [42, 43, 44, 45, 46, 47, 48, 49, 52, 53, 55, 61, 65, 67, 70, 71, 72, 73], "apt": [42, 63, 65, 70], "aq": 67, "ar": [16, 18, 20, 22, 23, 30, 33, 35, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "aragorn": 70, "arang": [43, 45, 46, 48, 49, 51, 52, 54, 55, 70, 73], "arbitrari": [43, 46, 48, 50, 54, 55, 67, 72], "arbitrarili": [42, 43, 53, 70, 73], "arc": 48, "architectur": [45, 46, 54], "archiv": 65, "area": [42, 45, 48, 69, 70], "argmax": [43, 53], "argmin": [46, 52, 56], "argsort": 53, "argu": [43, 55], "arguement": 61, "argument": [42, 44, 45, 47, 53, 54, 55, 59, 70, 71, 73], "aris": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 48, 54, 55, 67, 70, 72], "arithmet": [42, 55, 64, 70], "arm": [48, 71, 73], "armadillo": 64, "armin": 16, "around": [42, 43, 46, 47, 48, 53, 60, 65, 67, 70], "arrai": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 56, 58, 60, 63, 65, 67, 71, 72, 73], "arrang": [45, 70], "arraybox": 55, "arriv": [42, 48, 51, 53, 64, 67, 70], "arrow": 54, "arrowprop": 50, "art": [42, 43, 63], "articl": [42, 45, 46, 48, 52, 61, 70, 71, 72, 73], "artifici": [42, 44, 49, 54, 69, 70], "artificialneuron": 54, "arug": 55, "arxiv": [45, 46, 73], "asarrai": [42, 48, 51, 71, 73], "asid": 71, "ask": [47, 48, 53, 54, 57, 61, 65], "aspect": [42, 48, 63, 70, 71], "assembl": 45, "assembli": [42, 70], "assert": 46, "assess": [42, 48, 65, 70, 71], "asset": 39, "assici": 46, "assign": [42, 49, 50, 51, 54, 55, 56, 57, 66, 68, 69, 70], "associ": [19, 26, 32, 34, 42, 48, 51, 54, 56, 67, 70], "assum": [39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 61, 64, 65, 67, 70, 71, 72, 73], "assumpt": [42, 45, 47, 48, 51, 53, 67, 70, 71], "ast": [42, 47, 48, 70], "astyp": [46, 51, 52], "asymmetri": [42, 70], "asymptot": [46, 48, 73], "atom": [42, 70], "attain": 73, "attempt": [42, 46, 48, 49, 50, 52, 70, 71, 73], "attend": 70, "attent": [42, 64, 70], "attract": [42, 52, 70], "attribut": [42, 51, 70], "audi": [42, 70], "audio": [45, 46], "august": [70, 71], "aurelien": [42, 69, 70], "austfjel": 48, "auth": 57, "authent": 57, "author": [19, 25, 26, 29, 32, 34, 35, 42, 43, 52, 67], "authour": 70, "auto": [39, 51, 52, 67], "auto_exampl": [65, 71], "autocor": 67, "autocorrelation_tim": 67, "autocorrelform": 67, "autocovari": 67, "autoencod": [46, 63, 70], "autoencond": 63, "autograd": [63, 70], "autom": [42, 63, 69, 70], "automac": 64, "automag": 70, "automat": [39, 42, 43, 44, 45, 46, 53, 58, 63, 64, 70], "automobil": 45, "autonom": 46, "avail": [42, 43, 46, 48, 52, 53, 63, 64, 65, 66, 68, 69, 70], "avali": 62, "averag": [42, 43, 45, 48, 51, 52, 55, 56, 67, 68, 70, 71], "avoid": [29, 42, 46, 47, 48, 51, 53, 55, 60, 64, 71, 73], "awai": [44, 45, 48, 71, 73], "awar": [44, 52], "award": [68, 70], "ax": [24, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 62, 64, 65, 70], "axes3d": [44, 48, 55, 72, 73], "axes_grid1": 48, "axhlin": 50, "axi": [42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 64, 67, 70, 71, 72, 73], "axiom": 47, "axvlin": [46, 50], "axvspan": 46, "b": [42, 43, 45, 46, 47, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 62, 67, 68, 70, 71, 72, 73], "b1": 50, "b19db4": 12, "b1bac4": 7, "b2": 50, "b3": 50, "b35900": 10, "b89784": 12, "b_": [42, 43, 64], "b_0": 42, "b_1": [42, 44, 54, 55, 73], "b_2": [42, 55], "b_5": [55, 73], "b_group": 51, "b_i": [42, 43, 44, 54, 70], "b_ia_": [42, 70], "b_ia_i": 42, "b_index": 51, "b_j": [43, 54], "b_k": [42, 43, 54, 55, 73], "b_m": 54, "b_score": 51, "b_valu": 51, "ba": 73, "babcock": 70, "bach": 73, "bachelor": [66, 68], "back": [42, 45, 46, 47, 48, 50, 51, 52, 57, 58, 64, 67, 70, 73], "backbon": 64, "backend": [32, 43, 46], "background": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 69, 70], "backpropag": [43, 73], "backslash": 29, "backtrack": 51, "backup": 64, "backward": [43, 44, 46, 54, 64, 73], "bad": [48, 59, 71], "badli": 67, "bag": [51, 63, 70], "bag_clf": 52, "baggin": 70, "baggingboot": 52, "baggingclassifi": 52, "baggingtre": 52, "bailei": [0, 1, 2, 3, 15], "balanc": [48, 73], "ballpark": 60, "band": 64, "bandwidth": 64, "banner": 20, "bar": [42, 48, 53, 65, 70], "barber": 69, "bare": [46, 52], "base": [16, 17, 20, 23, 28, 42, 43, 45, 46, 47, 49, 50, 51, 52, 56, 57, 58, 59, 63, 67, 68, 69, 70, 71, 72], "basi": [47, 49, 50, 52, 53, 54, 55, 64, 71, 72], "basic": [48, 50, 54, 55, 56, 57, 63, 65, 67, 70], "basin": 73, "batch": [45, 46, 53, 54, 55, 72], "batch_shap": 46, "batch_siz": [43, 45, 46], "batchnorm": 46, "bay": 49, "bayesian": [47, 63, 69, 70], "bbbbbb": 4, "beauti": 29, "becaus": [42, 43, 44, 45, 46, 47, 48, 50, 51, 54, 55, 56, 70, 71, 72, 73], "becom": [42, 43, 44, 47, 48, 49, 51, 54, 55, 61, 67, 70, 71, 72, 73], "been": [42, 43, 44, 45, 46, 47, 48, 53, 54, 55, 62, 63, 64, 65, 70, 71, 73], "befor": [42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 58, 59, 60, 61, 62, 64, 65, 67, 70, 71, 73], "beforehand": [42, 67, 70], "began": 20, "begin": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 64, 67, 68, 70, 71, 72, 73], "behav": [43, 48, 55, 72], "behavior": [42, 43, 55, 70, 72, 73], "behaviour": [54, 73], "behind": [42, 43, 48, 50, 55, 70, 72], "being": [22, 42, 43, 44, 45, 46, 47, 49, 50, 52, 53, 54, 55, 59, 62, 67, 70, 71, 72, 73], "believ": [51, 64], "belong": [49, 50, 51, 55, 56, 72], "below": [17, 35, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 64, 65, 67, 70, 71, 72, 73], "benchmark": 52, "benefici": [43, 55], "benefit": [42, 43, 46, 53, 55, 63, 70, 72, 73], "bengio": [43, 69, 70, 71, 73], "benign": [43, 49], "besid": [46, 47, 72], "bessel": [47, 71], "best": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 57, 58, 60, 68, 70, 71, 72, 73], "beta": [43, 45, 52, 53, 55, 58, 59, 61, 70, 71, 72], "beta1": [], "beta2": [], "beta_": [45, 55, 59, 71], "beta_0": [43, 45, 55, 71], "beta_1": [43, 45, 52, 55, 71, 73], "beta_1m_": 73, "beta_1x_i": 55, "beta_2": [45, 55, 73], "beta_2v_": 73, "beta_3": 45, "beta_i": [45, 73], "beta_j": [55, 71], "beta_k": 55, "beta_linreg": 55, "beta_m": 52, "beta_mg_m": 52, "beta_n": 45, "better": [42, 43, 44, 45, 46, 48, 51, 52, 53, 54, 55, 61, 62, 70, 71, 73], "between": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 65, 67, 70, 71, 72, 73], "beyond": [42, 43, 47, 48, 50, 55, 70, 71, 72, 73], "bf": [55, 56, 64, 67, 72], "bf5400": 5, "bg": 70, "bgd": [55, 73], "bia": [42, 43, 44, 45, 47, 50, 51, 52, 54, 55, 62, 70, 71, 72], "bias": [43, 44, 45, 47, 48, 51, 54, 61, 73], "bib": 22, "bibliographi": [22, 65], "bibtex": [22, 40], "big": [42, 43, 44, 47, 48, 56, 61, 73], "bigger": [43, 48, 71], "bigr": 54, "bike": 51, "bilbo": 70, "billion": [45, 54, 63, 73], "bin": [49, 67], "binari": [16, 18, 30, 33, 35, 40, 42, 45, 47, 49, 51, 52, 54, 70], "binarycrossentropi": 46, "bind": 42, "binomi": [63, 67, 70], "binsboot": 48, "bioinformat": 42, "biolog": [43, 54], "bios1100": [63, 70], "bird": [42, 45], "birth": 70, "bishop": [69, 70], "bit": [43, 46, 61, 64, 67, 70], "bitwis": 67, "bivari": 44, "bk": [55, 73], "bla": [64, 70], "black": [50, 51, 56], "block": [23, 27, 29, 38, 48, 52, 63, 64, 67, 70], "blockquot": 29, "blog": 70, "blogpost": 46, "blue": [42, 45], "bm": [], "bmatrix": [42, 43, 45, 47, 49, 50, 53, 55, 64, 70, 71, 72, 73], "bmi": 43, "bodi": [29, 42, 43, 46, 54], "bold": 43, "boldfac": [42, 47, 58, 71, 72], "boldsymbol": [42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 55, 56, 58, 59, 61, 65, 70, 72, 73], "boltzmann": [54, 63, 70], "book": [22, 23, 24, 59, 65, 69, 70, 71], "book1": 69, "boolean": [46, 59], "boost": [43, 51, 63, 70], "boostrap": 52, "bootstrap": [43, 55, 61, 63, 65, 70, 73], "born": 73, "borrow": 70, "boston_dataset": [], "bot": 50, "both": [22, 42, 43, 46, 47, 48, 50, 51, 52, 55, 56, 57, 58, 59, 61, 63, 64, 65, 67, 68, 70, 71, 72, 73], "bottl": 49, "bottou": 73, "bound": [50, 54, 73], "boundari": [44, 46, 50, 53, 54], "bousquet": 73, "bower": [27, 28], "box": [22, 46, 51], "boyd": [50, 55, 72], "bracket": [29, 46, 67], "brain": [43, 49, 54], "branch": [51, 70], "break": [42, 46, 48, 53, 56, 70, 73], "breast": [47, 49, 53], "breviti": 55, "brew": [42, 63, 65, 70], "brg": 50, "brian": 33, "brief": [39, 65, 71], "briefli": [42, 58, 61, 70], "bring": [42, 47, 48, 52, 71, 73], "britt": [68, 70], "broad": 42, "broadli": 70, "brought": [55, 63, 70], "brownle": 46, "browser": [27, 28, 57, 70], "brute": [45, 47, 53, 71], "bsd": [18, 20, 30, 33, 35], "budget": 73, "buffer_s": 46, "bug": 29, "bugfix": 25, "bui": 46, "build": [22, 39, 42, 46, 47, 48, 52, 58, 64, 67, 70], "built": [23, 43, 45, 46, 48], "bunch": [39, 53], "bundl": [21, 39], "busi": [16, 18, 30, 33, 35, 40], "byte": [64, 70], "c": [16, 18, 20, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73], "c1": [50, 53], "c2": [50, 53], "c4a2f5": 15, "c5e478": 14, "c9d1d9": [6, 7, 8], "c_": [50, 51, 52, 55, 67, 72, 73], "c_0": 67, "c_1": 54, "c_2": 54, "c_3": 54, "c_4": 54, "c_i": [54, 55, 73], "c_k": 67, "ca": [43, 70], "caab6d": 12, "cach": 52, "cal": [42, 50, 52, 54, 55, 72, 73], "calcul": [42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 61, 64, 67, 70, 73], "california": 65, "call": [22, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 63, 64, 65, 67, 68, 70, 71, 72, 73], "calor": [42, 71], "caltech": 20, "cambridg": [55, 69, 72], "can": [17, 20, 22, 23, 24, 27, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 71, 72], "cancel": [42, 55, 70, 71], "cancer": [47, 52], "cancerpd": 49, "candid": [50, 51, 52, 73], "cannot": [29, 42, 43, 46, 47, 48, 49, 50, 51, 65, 67, 71, 72, 73], "canopi": [42, 63, 65, 70], "canva": [57, 58, 61, 62, 65, 70], "cap": 47, "capabl": [42, 43, 50, 55, 63, 70], "capac": [44, 68], "capita": [], "caption": [62, 65], "captur": [46, 53, 54, 70], "car": [45, 46], "card": [42, 49, 70], "cardin": 43, "care": [53, 57, 61, 73], "carefulli": [55, 73], "carlo": [42, 48, 63, 67, 69, 70], "carri": [44, 48, 49, 65], "cart": 52, "case": [42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 63, 64, 65, 70], "casella": 69, "cast": 43, "cat": [45, 46], "catch": 42, "categor": [42, 43, 45, 51, 53, 70], "categori": [42, 43, 45, 49, 52, 54, 56, 70], "categorical_crossentropi": [43, 45], "caus": [16, 18, 30, 33, 35, 40, 42, 47, 48, 67, 70, 71, 72, 73], "causal": 42, "causat": [42, 70], "cax": 43, "cb": [48, 70], "cbar": 43, "cc": [42, 43, 47, 55, 70, 71, 72, 73], "cc398b": 5, "ccbb44": 4, "ccc": [47, 54, 72], "cdf": 67, "cdot": [42, 44, 48, 54, 55, 56, 64, 67, 70, 72, 73], "celebr": [55, 72], "cell": 46, "center": [42, 43, 48, 49, 50, 51, 53, 56, 60, 65, 67, 70, 71, 73], "central": [42, 45, 47, 48, 50, 58, 62, 64, 70, 71], "centroid": [56, 67], "centroid_differ": 56, "centuri": 45, "certain": [42, 45, 48, 49, 51, 67, 70, 71], "cf222e": 9, "cffi": 41, "cg": 55, "cha": [], "chain": [42, 43, 55, 63, 67, 70], "challeng": 57, "chanc": [43, 47, 55, 67, 73], "chang": [20, 39, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 54, 55, 56, 57, 58, 61, 64, 65, 67, 70, 71, 72, 73], "changelog": [27, 28], "channel": 45, "chapter": [42, 48, 52, 53, 58, 59, 61, 64, 65, 69, 70, 71, 72, 73], "chapter3": [42, 65], "charact": [27, 42, 45, 47, 70, 71, 72], "character": [50, 51, 52, 54, 67], "characterist": [42, 43, 45, 52, 55, 70], "charg": [19, 26, 32, 34, 42, 70], "charl": [], "charset": 29, "chase": 46, "chatgpt": [57, 65], "chd": 49, "chddata": 49, "cheap": [47, 71, 72, 73], "cheaper": [43, 55, 73], "check": [21, 24, 39, 43, 45, 46, 47, 53, 55, 57, 58, 61, 64, 70, 73], "checkmark": 45, "checkpoint": 46, "checkpoint_dir": 46, "checkpoint_prefix": 46, "chen": 52, "cheng": 71, "chiaramont": 44, "childcar": 58, "children": 58, "choic": [29, 42, 43, 44, 45, 46, 48, 51, 54, 55, 56, 62, 64, 70, 71, 72, 73], "choleski": [47, 64, 71, 72], "choos": [44, 45, 48, 51, 52, 53, 55, 56, 57, 60, 61, 65, 72], "chosen": [42, 43, 44, 48, 50, 51, 52, 55, 58, 67, 70, 72, 73], "chosen_datapoint": 43, "christian": 69, "christoph": [69, 70], "chunk": 73, "cifar": 45, "cifar10": 45, "circ": [43, 54, 73], "circl": [42, 50, 54, 71, 73], "circuit": 45, "circumfer": 51, "circumv": [43, 47, 55, 71, 72, 73], "citat": 40, "cite": [22, 62, 65], "ckpt": 46, "claim": [19, 26, 32, 34], "clariti": 67, "class": [17, 27, 42, 43, 45, 46, 48, 49, 50, 51, 53, 54, 55, 67, 70], "class_nam": [45, 51], "class_val": 51, "class_valu": 51, "classic": [49, 51, 55], "classif": [42, 45, 47, 48, 49, 50, 53, 54, 63, 65, 69, 70, 71], "classifi": [42, 43, 46, 49, 51, 52, 53, 70], "classificaton": 43, "classifii": 52, "claus": [18, 20, 30, 33, 35], "clean": 43, "clear": [43, 47, 52, 54, 55, 73], "clearli": [42, 45, 47, 48, 49, 50, 67, 71, 72], "clever": [43, 52], "clf": [42, 48, 50, 51, 52, 70, 71], "clf3": 42, "clf_lasso": 48, "clf_ridg": 48, "cli": 57, "click": [27, 39], "clip": [45, 67, 73], "clock": 73, "clone": [57, 68], "close": [27, 42, 43, 44, 46, 48, 50, 51, 53, 54, 55, 56, 60, 67, 69, 70, 72, 73], "closer": [45, 47, 55, 71, 72, 73], "closest": [50, 53, 55, 56], "closur": [63, 70], "cloud": [63, 70], "cluster": [42, 43, 46, 48, 53, 63, 70], "cluster_label": 56, "cm": [24, 43, 44, 45, 48, 50, 55, 72, 73], "cmap": [24, 42, 43, 44, 45, 46, 48, 50, 51, 52, 70], "cmap_arg": 48, "cmd": [51, 57], "cn_": 67, "cnn": 54, "cnn_kera": 45, "cntk": [63, 70], "co": [42, 44, 45, 48, 51, 55, 70], "code": [6, 8, 16, 17, 18, 20, 23, 25, 26, 27, 30, 33, 35, 39, 40, 42, 45, 46, 48, 49, 50, 60, 61, 63, 64, 67, 69], "codec": [25, 26], "coef": [42, 70], "coef0": 50, "coef_": [42, 47, 48, 50, 51, 55, 58, 70, 71, 72, 73], "coeff": 47, "coeffici": [42, 45, 47, 48, 49, 50, 51, 55, 60, 64, 70, 71, 73], "coerc": [42, 48, 70], "coin": [52, 67], "coin_toss": 52, "col": [42, 53, 70, 71], "colab": [63, 70], "cold": [24, 51], "colinear": [], "collabor": [62, 65], "collaps": 50, "collect": [20, 39, 44, 48, 52, 53, 59, 63, 67, 69, 70], "collinear": [47, 71, 72], "color": [24, 42, 45, 46, 48, 50, 51, 52, 67, 73], "color_channel": 45, "color_cod": 48, "colorbar": [43, 48, 62], "colsample_bytre": 52, "colsaobject": 52, "column": [42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 58, 59, 60, 61, 64, 70, 71, 72, 73], "columntransform": 51, "com": [25, 31, 34, 46, 48, 57, 58, 61, 62, 63, 65, 69, 70, 72, 73], "combin": [43, 44, 47, 48, 49, 52, 57, 60, 67], "come": [42, 43, 45, 46, 47, 54, 55, 56, 57, 70, 71, 72, 73], "comfort": 29, "command": [23, 42, 43, 57], "comment": [42, 46, 47, 48, 62, 65], "commerci": [42, 63, 65, 70], "commit": [20, 57], "commod": [42, 70], "common": [42, 43, 45, 47, 48, 49, 51, 53, 55, 56, 58, 65, 67, 70, 71, 72, 73], "commonli": [42, 43, 46, 48, 49, 51, 55, 56, 71, 73], "commonmark": 22, "commun": [42, 54, 57, 65], "commut": 45, "commutatitav": 45, "compact": [42, 43, 45, 47, 48, 49, 51, 53, 54, 55, 56, 70, 71], "compair": 42, "compar": [42, 45, 46, 47, 48, 53, 55, 60, 64, 65, 70, 71, 72, 73], "comparison": [44, 46, 55], "compat": [29, 49], "compens": 73, "compet": 42, "competit": 52, "compil": [42, 43, 45, 46, 55, 63, 64, 70], "complet": [42, 44, 45, 46, 51, 54, 57, 58, 59, 60, 61, 62, 70], "completenn": 54, "complex": [43, 47, 50, 51, 53, 54, 55, 58, 61, 70, 72, 73], "complianc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "complic": [42, 43, 51, 55, 65, 70, 72, 73], "compoment": 71, "compon": [42, 43, 45, 46, 47, 48, 49, 51, 56, 58, 63, 70, 71, 72], "components_": 53, "compos": [51, 54, 55, 56, 63, 70], "compphys": [42, 48, 58, 62, 63, 65, 66, 68, 69, 70, 71, 72], "compress": [42, 70, 71], "compris": 48, "compromis": [47, 71, 72], "compulsori": [63, 70], "comput": [42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 63, 64, 65, 66, 67, 69, 70, 71, 72], "computation": [42, 45, 48, 51, 55, 67, 70, 72, 73], "computationalscienceuio": 70, "computerlab": 65, "concaten": [44, 46, 48, 56], "concav": [43, 55, 71, 72], "concentr": 52, "concept": [42, 44, 63, 70, 71], "conceptu": [54, 55, 72], "concern": [42, 43, 46, 49, 70, 72], "concic": 70, "conclud": [42, 47, 55, 73], "conclus": 43, "cond": 44, "conda": [42, 43, 63, 65, 70], "condis": 71, "condit": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 44, 46, 47, 48, 50, 51, 53, 55, 67, 70, 71, 73], "conduct": 63, "condwav": 44, "confid": [42, 47, 48, 49, 50, 61, 70, 71], "configur": 45, "confirm": [47, 54], "conform": 41, "confus": [47, 48, 49, 52, 64, 71], "confusion_matrix": 51, "congruenti": 67, "conjug": [46, 50], "conjugaci": 55, "conjunct": 45, "connect": [19, 26, 32, 34, 42, 43, 45, 46, 51, 53, 54, 55, 64, 70, 71, 72], "consensu": 73, "consequ": [47, 48, 50, 52, 54, 55, 71, 72, 73], "consequenti": [16, 18, 30, 33, 35, 40], "conserv": [47, 56, 71, 72], "consid": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 58, 61, 64, 65, 67, 70, 71, 72, 73], "consider": [42, 43, 47, 55, 70, 71, 72], "consist": [43, 44, 45, 46, 48, 54, 55, 65, 67, 71, 72], "consol": 27, "const": 29, "constant": [42, 44, 46, 47, 48, 50, 54, 55, 58, 60, 67, 70, 71, 72, 73], "constitu": [42, 70], "constitut": [44, 48], "constrain": [43, 45, 47, 49, 53, 72], "constraint": [47, 48, 50, 55, 71, 72], "construct": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 64, 67, 70, 71], "constructor": 29, "consum": 73, "contact": [42, 70], "contain": [17, 25, 29, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 60, 61, 64, 65, 67, 69, 70, 71, 72, 73], "contemporari": 70, "content": [21, 22, 23, 27, 39, 43, 57, 62, 63, 64, 70, 72, 73], "context": [48, 52, 55, 65, 72, 73], "contigu": 64, "contin": 61, "continu": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 61, 64, 65, 67, 70, 71, 72, 73], "contour": [51, 52, 55], "contourf": [50, 51, 52], "contract": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "contrast": [43, 46, 51, 52, 54, 70, 73], "contribut": [20, 42, 45, 47, 55, 60, 67, 70, 71, 72, 73], "contributor": [16, 18, 20, 25, 30, 33, 35, 40, 42, 65], "control": [42, 43, 45, 51, 55, 57, 63, 70], "conv": [45, 46], "conv2d": [45, 46], "conv2dtranspos": 46, "convei": 70, "conveni": [47, 48, 54, 55, 64, 65, 70, 72, 73], "convent": [54, 71], "converg": [43, 44, 46, 47, 50, 55, 56, 60, 71, 72], "convergencewarn": [], "convers": [62, 73], "convert": [23, 39, 42, 43, 46, 47, 51, 53, 55, 64, 70, 71, 72], "converttomatrix": 46, "convex": [46, 47, 49, 71], "convinc": [55, 72], "convolut": [43, 46, 63, 70], "cool": [46, 51], "coolwarm": [24, 48], "coordin": [20, 47, 54, 56, 71, 72, 73], "coorel": [], "copi": [19, 26, 32, 34, 42, 43, 56, 57, 71], "copyright": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "core": [20, 52], "corel": 70, "coronari": 49, "corr": [47, 49, 53, 71], "correalt": [53, 63], "correct": [42, 43, 44, 45, 46, 47, 49, 55, 57, 61, 62, 64, 67, 70, 71, 72], "correctli": [43, 44, 48, 49, 52, 60, 61, 65], "correl": [42, 43, 45, 47, 48, 49, 52, 54, 55, 63, 67, 70, 72, 73], "correlation_matrix": [47, 49, 53, 71], "correspond": [42, 45, 47, 48, 50, 51, 53, 54, 63, 64, 65, 67, 70, 71, 72], "cortex": 54, "cosin": [45, 48], "cost": [42, 44, 45, 47, 48, 49, 50, 51, 54, 55, 58, 59, 60, 61, 65, 70], "cost_deep_grad": 44, "cost_funct": 44, "cost_function_deep": 44, "cost_function_deep_grad": 44, "cost_function_grad": 44, "cost_grad": 44, "cost_histori": [], "cost_ol": [], "cost_ridg": [], "cost_sum": 44, "costli": 73, "costol": [55, 73], "could": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 64, 65, 67, 70, 71, 72, 73], "coulomb": [42, 70], "count": [42, 51, 57, 66, 67, 68, 70], "counteract": 73, "counterpart": 70, "countor": 55, "coupl": [46, 47, 48], "cours": [42, 43, 45, 47, 53, 57, 58, 59, 61, 62, 65, 68, 71], "coursework": 57, "courvil": [69, 70, 71, 73], "cov": [47, 48, 53, 64, 67, 70, 71], "cov_xi": [47, 53, 71], "cov_xx": [47, 53, 71], "cov_yi": [47, 53, 71], "covari": [42, 49, 63, 64, 70, 72], "covariance_matrix": [47, 53, 56], "cover": [42, 47, 63, 68, 69, 71, 72], "covert": [42, 70], "covxi": 67, "covxx": 67, "covxz": 67, "covyi": 67, "covyz": 67, "covzz": 67, "cpu": 43, "craft": 45, "crash": 73, "creat": [24, 27, 39, 43, 45, 46, 47, 51, 52, 53, 54, 57, 60, 61, 63, 70, 73], "create_biases_and_weight": 43, "create_convolutional_neural_network_kera": 45, "create_neural_network_kera": 43, "create_x": [47, 53], "credit": [29, 42, 49, 68, 70], "crim": [], "crime": [], "criteria": [42, 46, 51, 52, 56, 67, 70], "criterion": [51, 52, 55, 60, 72, 73], "critic": [48, 65, 71], "critiqu": 65, "cross": [42, 43, 45, 49, 51, 52, 55, 57, 63, 67, 70, 71, 72, 73], "cross_entropi": 46, "cross_val_scor": 48, "cross_valid": [49, 52], "crossvalid": 48, "crucial": [43, 67, 73], "cs231": 45, "csr_matrix": [64, 70], "css": 29, "csv": [42, 46, 48, 49, 51], "ctnk": 43, "cubic": 42, "cumbersom": 47, "cumsum": [52, 53, 70], "cumul": [49, 52, 67, 73], "cumulative_heads_ratio": 52, "cup": 47, "current": [43, 44, 45, 46, 55, 56, 57, 58, 69, 72, 73], "curs": [42, 71], "curv": [48, 49, 52, 54, 65], "curvatur": [55, 72, 73], "custom": [27, 48, 56], "custom_cmap": [51, 52], "custom_cmap2": [51, 52], "custom_lin": 24, "cutpoint": 51, "cv": [48, 49, 52], "cvxbook": [55, 72], "cvxopt": [47, 50, 71], "cycl": [43, 54], "cycler": 24, "d": [23, 39, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 61, 62, 64, 67, 68, 70, 71, 72, 73], "d166a3": 4, "d2_g_t": 44, "d2a8ff": [6, 7], "d4d0ab": 0, "d71835": 3, "d9dee3": 8, "d_f": [55, 72], "d_g_t": 44, "d_net_out": 44, "da": 45, "dagger": [47, 64, 71, 72], "dai": [43, 51, 63], "damag": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "damp": 45, "darget": 51, "darkr": 67, "dat": [42, 70], "dat_id": [42, 48, 49, 51, 70], "data": [16, 18, 24, 30, 33, 35, 40, 44, 46, 47, 50, 52, 54, 55, 56, 58, 61, 62, 64, 65, 69, 72, 73], "data1": 56, "data2": 56, "data3": 56, "data4": 56, "data_id": [42, 48, 49, 51, 70], "data_indic": 43, "data_panda": 70, "data_path": [42, 48, 49, 51, 70], "databas": 43, "datafil": [42, 48, 49, 51, 70], "datafram": [42, 46, 47, 49, 51, 53, 70, 71], "datapoint": [43, 47, 48, 49, 53, 55, 58, 72, 73], "datasci": [57, 58, 61], "dataset": [42, 46, 48, 49, 50, 51, 52, 53, 55, 56, 58, 65, 70, 72, 73], "datatyp": 46, "date": [57, 60, 65, 70, 71, 72, 73], "daughter": 52, "davi": [18, 30], "david": [25, 69], "dbb7ff": 8, "dbh": 43, "dbo": 43, "dcc6e0": [0, 1], "dcomposit": 64, "ddot": 44, "de": [20, 73], "dead": 43, "deadlin": [57, 62], "deal": [19, 26, 32, 34, 42, 43, 45, 47, 48, 50, 53, 55, 56, 61, 64, 67, 70, 71, 72, 73], "dealt": 42, "debt": 49, "debug": [42, 47, 48, 71, 72, 73], "debugg": 17, "decad": [42, 45, 73], "decai": [42, 55, 67, 70], "decemb": [68, 70], "decent": 52, "decid": [42, 44, 45, 47, 48, 51, 60, 71, 72, 73], "decim": [42, 70], "decis": [42, 43, 50, 53, 63, 69, 70], "decision_funct": 50, "decision_tre": 51, "decisiontreeclassifi": [51, 52], "decisiontreeregressor": [42, 51, 52], "declar": [42, 46, 62, 64, 70], "declare_namespac": 17, "decompos": [47, 48, 64, 71, 72], "decomposit": [42, 48, 54, 70], "decompost": [47, 71, 72], "deconvolut": 45, "decorrel": [52, 55, 73], "decreas": [43, 44, 46, 47, 48, 52, 53, 55, 61, 72, 73], "dedic": 62, "deduc": [42, 70], "deep": [45, 49, 54, 55, 63, 69, 71, 72], "deep_neural_network": 44, "deep_param": 44, "deep_tree_clf": [51, 52], "deep_tree_clf1": 51, "deep_tree_clf2": 51, "deepen": [47, 63, 70], "deeper": [42, 45, 46, 70], "deeplearningbook": [69, 70, 72, 73], "deer": 45, "def": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 59, 67, 70, 71, 72, 73], "def_covari": 67, "default": [6, 23, 29, 42, 43, 44, 46, 48, 49, 64, 70, 71], "default_tim": 46, "defect": [47, 71, 72], "defici": [47, 71, 72], "defin": [17, 23, 27, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 64, 65, 67, 71, 72, 73], "definit": [28, 43, 44, 47, 48, 49, 50, 52, 53, 54, 55, 64, 67, 71, 72, 73], "defint": 67, "degre": [45, 47, 48, 50, 51, 52, 53, 57, 58, 61, 62, 65, 67, 70, 72, 73], "deisenroth": 71, "del": 43, "delet": [48, 57], "delimit": [27, 29, 46], "deliv": [57, 66, 70], "delta": [42, 44, 45, 48, 50, 54, 55, 56, 70, 73], "delta_": [43, 64], "delta_0": 45, "delta_1": 45, "delta_2": 45, "delta_3": 45, "delta_4": 45, "delta_5": 45, "delta_h": [42, 43, 70], "delta_j": [45, 54], "delta_k": 54, "delta_l": [43, 45], "delta_momentum": [55, 73], "delta_n": [42, 45, 70], "delug": 63, "delv": 42, "demand": [55, 72], "demonstr": [42, 45, 47, 48, 49, 53, 54, 61, 63, 70, 71, 72, 73], "den": 46, "denomin": [43, 47, 73], "denot": [43, 44, 48, 49, 55, 67, 72, 73], "dens": [43, 45, 46], "densiti": [42, 44, 48, 67], "depart": [68, 70, 71, 72, 73], "depend": [22, 42, 43, 44, 46, 47, 48, 49, 50, 53, 54, 55, 57, 58, 63, 64, 65, 67, 70, 71, 72, 73], "depict": 67, "deploy": [42, 63, 65, 70], "depth": [21, 42, 45, 51, 52, 64], "der": 35, "deriv": [16, 18, 30, 33, 35, 42, 43, 44, 48, 49, 50, 52, 53, 55, 60, 63, 65, 70], "derivati": 55, "derivative_fn": 55, "descend": [47, 51, 53, 71, 72], "descent": [42, 43, 45, 49, 50, 54, 70, 71], "describ": [42, 44, 46, 47, 48, 50, 52, 53, 54, 55, 61, 62, 64, 65, 70, 73], "descript": [42, 50, 51, 62, 65, 70], "design": [25, 41, 42, 43, 45, 46, 47, 48, 49, 52, 53, 54, 55, 59, 60, 65, 70, 72, 73], "designmatrix": [42, 70], "desir": [42, 44, 46, 47, 55, 56, 70, 71, 72, 73], "desktop": 57, "despit": [43, 54, 73], "destroi": 64, "det": [47, 64, 71, 72], "detail": [23, 27, 39, 42, 48, 53, 55, 56, 60, 64, 65, 71, 72, 73], "detect": [45, 50, 54], "determin": [42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 60, 64, 67, 70, 71, 72, 73], "determinist": [49, 55, 67, 72, 73], "dev": [43, 65], "develop": [42, 45, 47, 50, 52, 53, 54, 63, 64, 65, 70, 71], "deviat": [42, 43, 44, 46, 47, 48, 59, 60, 61, 65, 67, 70, 71, 73], "devis": 54, "df": [46, 50, 53, 55, 70], "df1": 70, "di": [], "diag": [47, 50, 71, 72, 73], "diagnost": [43, 52], "diagon": [42, 47, 49, 55, 60, 61, 64, 67, 70, 71, 72, 73], "diagonaliz": [47, 71, 72], "diagram": 52, "diagsvd": 48, "dice": [48, 67], "dict": [48, 50], "dictionari": [], "did": [42, 43, 47, 48, 49, 52, 53, 56, 58, 65, 70], "die": 43, "diff": 44, "diff1": 44, "diff2": 44, "diff_ag": 44, "diffeent": 50, "differ": [22, 27, 28, 39, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 67, 69, 70, 71, 72], "differenti": [42, 45, 58, 63, 64, 70, 71, 72], "difficult": [42, 43, 48, 52, 55, 67, 70, 73], "difficulti": [42, 43, 55, 70, 72, 73], "diffonedim": 44, "digit": [42, 43, 45, 46, 48, 68, 70], "dilemma": [55, 73], "dilut": 43, "dim": [46, 53, 56, 64], "dimens": [42, 43, 44, 45, 46, 47, 50, 53, 56, 58, 64, 70, 71, 72], "dimension": [42, 46, 47, 48, 51, 53, 55, 56, 61, 63, 64, 65, 70, 71, 72, 73], "dimensionless": [42, 45, 70], "diment": 64, "diminish": 73, "dimnsion": 46, "diod": 45, "direct": [16, 18, 23, 30, 33, 35, 40, 42, 43, 44, 46, 53, 54, 55, 56, 70, 71, 72, 73], "directli": [28, 43, 46, 47, 48, 60, 67, 71, 72], "directori": 17, "disadvantag": [42, 70, 73], "disappear": [45, 48], "disc_loss": 46, "disc_tap": 46, "discard": [48, 53, 73], "disciplin": [42, 45, 54], "disclaim": [16, 18, 30, 33, 35, 40, 67], "discord": 70, "discourag": [55, 57, 72], "discov": [42, 70], "discover": 47, "discret": [43, 45, 47, 49, 55], "discrimin": [46, 49, 52, 53], "discriminator_loss": 46, "discriminator_loss_list": 46, "discriminator_model": 46, "discriminator_optim": 46, "discuss": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 67, 69, 70, 71, 72, 73], "diseas": 49, "disguis": [48, 71, 73], "disk": 73, "disord": [43, 49], "displai": [23, 29, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 65, 67, 70, 71, 73], "displaystyl": [42, 47, 59, 70, 71, 72, 73], "disregard": [42, 70], "dissimilar": [53, 56], "dist": 56, "distanc": [50, 51, 53, 56, 67], "distance_list": 51, "distinct": [45, 49, 50, 51, 52, 56], "distinctli": 50, "distinguish": [42, 46, 49, 50, 67, 70], "distplot": [], "distribut": [16, 18, 19, 20, 26, 30, 32, 33, 34, 35, 39, 40, 42, 43, 46, 48, 49, 52, 53, 55, 56, 60, 61, 63, 64, 65, 70, 71, 72, 73], "distrubut": [42, 63, 65, 70], "div": [27, 29], "dive": [42, 50, 64, 70], "diverg": [43, 55, 72, 73], "divid": [42, 43, 45, 47, 48, 49, 50, 51, 53, 54, 60, 61, 67, 70, 71, 73], "divis": [48, 50, 51, 55, 60, 64, 67, 73], "dl": 28, "dna": 49, "dnn": [42, 43, 44, 46, 54, 70], "dnn1": 46, "dnn2_gru2": 46, "dnn_kera": 43, "dnn_model": 43, "dnn_numpi": 43, "dnn_scikit": [42, 43, 70], "do": [19, 22, 24, 26, 32, 34, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 64, 65, 70, 71, 72], "doc": [29, 42, 57, 58, 61, 63, 65, 66, 68, 69, 70], "document": [16, 18, 19, 21, 22, 23, 24, 26, 29, 30, 32, 33, 34, 35, 39, 40, 46, 55, 57], "docutil": 32, "doe": [21, 29, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 57, 58, 59, 60, 61, 64, 65, 67, 70, 73], "doesn": [29, 45, 51, 54, 70, 73], "dog": [43, 45, 46], "dollar": [24, 29], "domain": [47, 50, 55, 65, 72], "domcontentload": 29, "domin": [42, 70], "don": [42, 43, 45, 47, 48, 50, 53, 55, 57, 58, 63, 65, 70, 71, 73], "done": [17, 29, 42, 44, 45, 46, 47, 48, 51, 52, 53, 55, 58, 62, 64, 65, 70, 71, 72, 73], "dot": [42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 60, 64, 65, 67, 70, 71, 72, 73], "doubl": [45, 46, 58, 64, 70], "doubli": 43, "doubt": 65, "down": [42, 45, 48, 51, 53, 54, 55, 72, 73], "download": [39, 42, 43, 45, 47, 48, 57, 62, 64, 69, 70], "downsampl": 45, "dozen": 43, "dq": 48, "draft": 62, "drag": 55, "dragon": 27, "dramat": 53, "drastic": 46, "draw": [46, 48, 52, 55, 72], "drawback": [42, 43, 45, 55, 71, 72, 73], "drawn": [43, 46, 48, 49, 53, 67, 70], "drive": [45, 46], "driven": 45, "drop": [42, 43, 47, 48, 53, 55, 67, 70, 71, 72], "dropna": [42, 48, 70], "dropout": 46, "dt": [44, 45, 55, 67], "dtype": [42, 43, 45, 46, 56, 64, 70], "dub": [42, 70], "due": [43, 44, 47, 48, 50, 52, 54, 55, 60, 68, 70, 71, 72, 73], "dummi": [], "dure": [42, 43, 45, 46, 50, 51, 53, 62, 63, 65, 70, 73], "dwell": [], "dwh": 43, "dwo": 43, "dx": [44, 45, 50, 67], "dx_1": 67, "dx_1p": 48, "dx_2p": 48, "dx_mp": 48, "dx_n": 67, "dxp": 48, "dy": [43, 50, 67], "dynam": 46, "dz": 50, "e": [29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 67, 68, 70, 71, 72, 73], "e1e1e1": 13, "e_": [42, 44, 70], "each": [20, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 63, 64, 66, 67, 68, 70, 71, 72, 73], "eapprox": [42, 70], "earli": [43, 55, 73], "earlier": [42, 47, 49, 50, 51, 53, 54, 55, 62, 70, 71], "earthexplor": 48, "eas": [48, 51, 56], "easi": [29, 42, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 63, 64, 70, 71, 72, 73], "easier": [39, 47, 48, 50, 51, 55, 57, 62, 65, 67, 70, 71, 72], "easiest": [55, 60], "easili": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 64, 65, 70, 71, 72, 73], "eastern": [68, 70], "ebind": [42, 70], "eblock": 51, "ec8e2c": 7, "econometr": 70, "economi": 47, "ecosystem": [22, 63, 70], "ect": 66, "edg": 45, "edgecolor": 48, "edit": 39, "editor": [57, 62], "edu": [20, 55, 65, 72], "educ": [42, 65, 70], "ee6677": 4, "eff": 67, "effect": [25, 43, 46, 52, 55, 58, 59, 60, 67, 73], "effic": 43, "effici": [42, 45, 52, 55, 63, 64, 67, 70, 73], "effort": 61, "efron": 48, "egrad": 55, "eig": [47, 53, 55, 64, 67, 70, 71, 72, 73], "eigen": 67, "eigenpair": [47, 53, 71, 72], "eigenvalu": [42, 47, 50, 53, 55, 64, 70, 71, 72, 73], "eigenvector": [47, 53, 55, 71, 72], "eight": [64, 70], "eigval": [64, 67, 70], "eigvalu": [53, 55, 72, 73], "eigvec": [64, 67, 70], "eigvector": [53, 55, 72, 73], "eir": [68, 70], "eispack": [64, 70], "either": [17, 43, 47, 48, 49, 50, 51, 52, 53, 55, 60, 61, 65, 67, 70, 71, 72, 73], "eivind": 68, "eivinsto": 68, "ekstr\u00f8m": 46, "elabor": 67, "elarn": 45, "electr": [42, 45, 54, 70], "electron": 70, "eleg": 53, "element": [43, 44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 61, 62, 63, 64, 65, 69, 71, 73], "elementari": [52, 55, 64], "elementwis": [45, 55], "elementwise_grad": [44, 55], "elessar": 70, "elif": 56, "elim": 64, "elimin": [45, 50], "elin": [68, 70], "ell_": [], "ellipsi": 58, "els": [17, 27, 43, 45, 46, 49, 51, 54, 55, 58, 64], "elu": 43, "elus": [42, 70], "em": 27, "email": [62, 66, 68, 70], "emb": 24, "embed": [42, 53, 71], "embodi": [48, 65], "emit": 67, "emner": 69, "emph": 73, "emphas": [42, 52, 63, 70], "emphasi": [42, 63, 69, 70], "empir": [43, 53, 67], "emploi": [42, 43, 47, 48, 53, 55, 67, 70, 71, 72], "employ": 42, "empti": [48, 52, 57], "emul": 54, "en": [63, 65, 69], "enabl": [53, 73], "enbodi": 48, "encod": [25, 42, 45, 47, 51, 53, 56, 70, 71, 72], "encompass": [42, 65, 67], "encount": [42, 43, 47, 49, 55, 57, 65, 67, 70, 71, 72, 73], "encourag": [57, 65], "end": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 62, 64, 67, 68, 70, 71, 72, 73], "endblock": 38, "endfor": 38, "endif": 38, "endors": [16, 18, 30, 33], "endpoint": [45, 48], "energi": [42, 46, 48], "enforc": 54, "eng": 69, "engin": [29, 42, 43, 45, 46, 63, 70], "english": [39, 65], "enjoi": 73, "enocurag": 65, "enorm": 45, "enough": [42, 48, 55, 70, 72, 73], "ensembl": [43, 51, 70], "ensur": [17, 42, 43, 44, 45, 47, 48, 53, 55, 60, 67, 71, 72, 73], "entail": 70, "enter": [47, 48, 71, 72, 73], "enthought": [42, 63, 65, 70], "entir": [20, 43, 45, 49, 51, 63, 67, 70, 73], "entireti": 20, "entiti": [51, 54, 64, 70], "entri": [39, 42, 47, 50, 53, 54, 64, 70, 71, 73], "entropi": [43, 45, 49, 52, 55, 70, 72, 73], "enumer": [42, 43, 44, 45, 46, 48, 50, 70, 71, 73], "env": 67, "environ": [44, 63, 65, 70], "environemnt": 57, "eo": [42, 48], "eol": 42, "eosfit": 42, "epoch": [42, 43, 45, 46, 54, 55, 70, 73], "eppstein": 25, "epsilon": [42, 47, 48, 49, 55, 65, 70, 71, 72, 73], "epsilon_": [42, 70], "epsilon_0": [42, 70], "epsilon_1": [42, 70], "epsilon_2": [42, 70], "epsilon_i": [42, 70, 71], "eq": [45, 55, 56, 64, 67, 72], "eqnarrai": [45, 47, 48], "equal": [42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 54, 55, 56, 58, 60, 64, 65, 67, 70, 71, 72, 73], "equat": [29, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 59, 61, 64, 67, 70, 73], "equilibrium": [44, 54], "equiv": [45, 55, 64, 67, 72, 73], "equival": [42, 43, 47, 49, 50, 53, 55, 63, 64, 70, 71, 72, 73], "equivel": 61, "erf": 67, "eriador": 70, "eric": [0, 1, 2, 3, 15], "err": [42, 52], "err_": 48, "err_sqr": 44, "errat": [55, 72, 73], "erron": 44, "error": [29, 43, 44, 46, 47, 48, 49, 51, 53, 54, 55, 57, 58, 59, 60, 61, 63, 64, 65, 67, 73], "error_estimate_corr_tim": 67, "error_hidden": 43, "error_output": 43, "escap": [24, 29, 36, 37, 38, 55, 72, 73], "escapehtml": 27, "especi": [43, 45, 51, 54, 55, 57, 60, 65, 73], "essenti": [42, 47, 48, 51, 52, 54, 56, 57, 65, 67, 71, 72, 73], "establish": [42, 48, 52, 53, 58, 65], "estim": [42, 43, 47, 48, 49, 52, 53, 55, 61, 63, 67, 70, 71, 72, 73], "estimated_mse_fold": 48, "estimated_mse_kfold": 48, "estimated_mse_sklearn": 48, "et": [42, 44, 46, 58, 59, 62, 69, 70, 71, 72], "eta": [42, 43, 45, 50, 54, 55, 60, 70, 72, 73], "eta0": [50, 55], "eta_": 55, "eta_j": 73, "eta_t": [55, 73], "eta_v": [42, 43, 45, 70], "etc": [24, 42, 43, 45, 47, 49, 50, 51, 53, 54, 55, 56, 63, 64, 65, 67, 71, 72, 73], "ethic": 63, "euclidean": [42, 56, 71, 73], "euler": 29, "evalu": [42, 44, 45, 46, 47, 48, 51, 55, 57, 58, 59, 61, 65, 67, 70, 71, 72, 73], "evalut": [55, 65], "even": [16, 18, 30, 33, 35, 40, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 63, 64, 67, 70, 71, 72, 73], "evenli": 46, "event": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 47, 49, 52, 67], "eventu": [42, 47, 48, 53, 54, 55, 65, 68, 71, 72, 73], "everi": [42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 63, 67, 68, 70, 71, 72, 73], "everyth": [46, 54, 58, 60], "everywher": [46, 55, 72], "evolv": 42, "exact": [42, 47, 53, 54, 55, 64, 67, 70, 71, 73], "exactli": [42, 45, 46, 48, 54, 60, 63, 71, 73], "exam": 70, "examin": 48, "exampl": [22, 24, 42, 47, 53, 54, 55, 57, 58, 60, 62, 63, 64, 65, 67, 69], "exce": [43, 54, 55, 73], "exceed": 73, "excel": [42, 43, 46, 47, 52, 62, 65, 70, 71], "except": [17, 45, 46, 48, 50, 51, 64], "excess": [42, 70], "exchang": 73, "excit": 42, "exclud": [43, 48, 54, 71, 73], "exclus": [42, 43, 45, 48, 67, 70], "execut": [23, 39, 44, 47, 55, 57, 71, 72, 73], "exemplari": [16, 18, 30, 33, 35, 40], "exemplifi": [55, 73], "exercic": [68, 70], "exercis": [47, 63, 65, 66, 68, 70, 72, 73], "exhaust": [48, 73], "exhibit": [42, 47, 48, 50, 70, 71], "exist": [42, 43, 44, 45, 47, 48, 49, 50, 51, 55, 61, 64, 65, 70, 72, 73], "exit": [47, 64, 71, 72], "exp": [42, 43, 44, 47, 48, 49, 50, 52, 53, 54, 55, 58, 59, 61, 67, 71, 72, 73], "exp_term": 43, "expand": [47, 49, 53, 55, 72], "expans": [42, 45, 47, 50, 52, 54, 55, 70, 71, 72], "expect": [42, 43, 47, 48, 49, 53, 54, 55, 57, 60, 63, 65, 70, 71, 73], "expectation_value_of_h_wrt_p": 67, "expens": [48, 52, 55, 58, 72, 73], "experi": [42, 43, 48, 50, 55, 57, 63, 65, 70, 71, 72, 73], "experiment": [42, 46, 48, 51, 67, 70], "expert": [43, 51], "explain": [42, 48, 51, 52, 53, 55, 58, 61, 65, 70, 72], "explained_variance_ratio_": 53, "explan": 39, "explanatori": [42, 70], "explicit": [17, 42, 45, 48, 55, 64, 65, 70, 71, 72, 73], "explicitli": [42, 46], "explod": 43, "exploit": [42, 45, 54, 55, 70, 73], "explor": [43, 46, 48, 50, 55, 60, 63, 65, 70, 72, 73], "expon": 43, "exponenti": [42, 43, 47, 48, 52, 55, 67, 70, 72], "export": [51, 57, 58, 61, 62], "export_graphviz": 51, "export_text": 51, "exporttext": 51, "expos": 63, "express": [16, 18, 19, 26, 29, 30, 32, 33, 34, 35, 40, 42, 44, 45, 47, 48, 49, 52, 54, 55, 60, 64, 65, 67, 70, 72, 73], "exptmean": 67, "exptvari": 67, "extend": [17, 29, 42, 44, 49, 53, 55, 63, 70, 73], "extend_path": 17, "extens": [17, 22, 29, 40, 42, 54, 57, 63, 70], "extent": [42, 43, 48, 69], "extern": [45, 48, 51], "extra": [43, 45, 47, 57, 68, 70, 71, 72], "extract": [42, 45, 47, 48, 49, 50, 53, 55, 58, 59, 64, 70, 71], "extrapol": [42, 70], "extrem": [42, 43, 46, 47, 48, 49, 50, 51, 55, 57, 58, 64, 71, 72, 73], "extremum": [55, 72], "extrins": 53, "ey": [42, 47, 48, 55, 56, 60, 64, 70, 71, 72, 73], "f": [42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 59, 60, 61, 64, 67, 68, 70, 71, 72, 73], "f1": 55, "f11": [42, 70], "f12": [42, 70], "f13": [42, 70], "f1_grad": 55, "f1d": 55, "f2": 55, "f26196": 15, "f2_grad_x1": 55, "f2_grad_x1_analyt": 55, "f2_grad_x2": 55, "f2_grad_x2_analyt": 55, "f2f2f2": 3, "f3": 55, "f3_grad": 55, "f3_grad_analyt": 55, "f4": 55, "f4_grad": 55, "f4_grad_analyt": 55, "f5": 55, "f5_grad": 55, "f5a394": 15, "f5ab35": 0, "f5f5f5": [12, 13], "f6": 55, "f6_for": 55, "f6_for_grad": 55, "f6_grad_analyt": 55, "f6_while": 55, "f6_while_grad": 55, "f7": 55, "f78c6c": 14, "f7_grad": 55, "f7_grad_analyt": 55, "f8": 55, "f8_grad": 55, "f8f8f2": [0, 1], "f9": [42, 55, 70], "f9_altern": 55, "f9_alternative_grad": 55, "f9_grad": 55, "f_": 52, "f_0": [45, 52], "f_1": [52, 55, 72], "f_2": [54, 55, 72], "f_3": 54, "f_d": 67, "f_grad": 55, "f_grad_analyt": 55, "f_i": [42, 48, 54, 58], "f_m": [45, 52], "f_n": 45, "f_vec": 44, "face": [55, 70, 72], "facecolor": [48, 50, 67], "facil": [42, 63], "facilit": 54, "fact": [42, 43, 45, 47, 51, 53, 54, 55, 70, 71, 72, 73], "facto": 73, "factor": [42, 43, 45, 47, 48, 51, 52, 53, 55, 64, 67, 70, 71, 72], "factori": 55, "fad000": 15, "fade": 48, "fae4c2": 2, "fafab0": [51, 52], "fail": [42, 48, 55, 68, 70, 72], "failur": 49, "fairli": [43, 44, 60, 67, 73], "faisal": [58, 71], "fake": 46, "fake_loss": 46, "fake_output": 46, "fall": [50, 51, 66], "fals": [42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 56, 58, 59, 64, 70, 71, 72, 73], "famili": [42, 49, 50, 67, 71, 73], "familiar": [42, 45, 47, 48, 50, 57, 63, 64, 65, 67, 70], "famou": [48, 54], "far": [42, 45, 46, 47, 48, 50, 53, 54, 55, 56, 58, 62, 70, 71, 72, 73], "fashion": [42, 51, 52, 70, 73], "fast": [29, 43, 45, 48, 52, 54, 55, 63, 67, 70, 72, 73], "faster": [43, 53, 55, 73], "fastest": [55, 64, 72], "fatal": 29, "favor": [49, 73], "favorit": 67, "fc": 45, "fcfcfc": 5, "fdac54": 7, "fdf2e2": 3, "featur": [42, 43, 45, 47, 48, 49, 50, 52, 53, 54, 55, 57, 59, 60, 61, 63, 67, 70, 72, 73], "feature_nam": [43, 49, 51], "feautur": 51, "fed": 43, "feed": [42, 44, 45, 53, 63, 70], "feed_forward": 43, "feed_forward_out": 43, "feed_forward_train": 43, "feedback": [46, 62, 70], "feeddorward": 46, "feedforward": [43, 46, 54], "feel": [21, 42, 47, 48, 53, 55, 57, 58, 60, 63, 65, 68, 70], "feet": [], "fefef": 2, "fefeff": 15, "felt": 65, "fenc": 27, "fernando": 20, "fetch": [48, 57], "few": [21, 43, 45, 46, 47, 51, 59, 60, 61, 67, 70], "fewer": [42, 51, 53, 61, 70, 73], "ff7b72": 6, "ff9492": 8, "ffa07a": [0, 1], "ffa657": 6, "ffb757": 8, "ffd700": 0, "ffd900": 1, "ffd9002e": [0, 1], "ffffff": [9, 10, 11], "ffnn": [43, 54], "fi": 35, "field": [42, 45, 48, 54, 61, 63], "fifth": [42, 48, 70], "fig": [24, 42, 43, 44, 45, 46, 48, 49, 54, 55, 56, 65, 70], "fig_id": [42, 48, 49, 51, 70], "figaxi": 67, "figsiz": [24, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 70], "figur": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 63, 65, 70, 71, 72, 73], "figure_id": [42, 48, 49, 51, 70], "figurefil": [42, 48, 49, 51, 70], "file": [17, 19, 20, 21, 23, 26, 32, 34, 35, 42, 46, 47, 48, 49, 51, 57, 62, 65, 70], "file_prefix": 46, "filenam": 70, "fill": [47, 51, 60, 71, 72], "filter": [45, 46], "final": [29, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 60, 62, 65, 66, 67, 68, 70, 72], "financ": 42, "find": [39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 63, 65, 67, 70, 71, 72, 73], "fine": [42, 56], "finish": [44, 62], "finit": [45, 47, 48, 54, 55, 59, 67, 71, 72], "finnicki": 57, "first": [29, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 64, 65, 67, 68, 69, 71, 73], "first_moment": 73, "first_term": 73, "firsteigvector": 53, "fit": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 43, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 59, 60, 61, 65, 67, 71, 73], "fit_beta": 71, "fit_intercept": [42, 47, 48, 58, 71, 72, 73], "fit_mod": 51, "fit_theta": [48, 73], "fit_transform": [42, 48, 50, 51, 53, 57, 61], "fiti": [42, 70], "five": [42, 51, 70, 71], "fix": [24, 42, 45, 46, 48, 52, 53, 54, 55, 65, 70], "flag": [29, 46], "flat": [54, 55, 72, 73], "flatten": [43, 45, 46, 47, 64], "flavor": 22, "flexibl": [43, 48, 50, 52, 54, 70, 73], "flip": [68, 70], "float": [42, 45, 46, 47, 51, 53, 55, 56, 64, 70, 71, 72], "float32": [46, 51], "float64": [46, 64, 70], "flop": [47, 64, 71, 72], "flow": [43, 46, 54], "fluctuat": [47, 73], "fly": 53, "fm": 42, "fmax": 45, "fmesh": 55, "fn": 49, "focu": [42, 45, 46, 47, 48, 57, 63, 65, 69, 70, 71, 72, 73], "focus": [43, 48, 49, 64, 71, 73], "fold": [48, 51, 65], "folder": [17, 39, 42, 46, 48, 57, 62, 65, 70], "follow": [16, 17, 18, 19, 20, 22, 23, 26, 29, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73], "font": [49, 62, 67, 70], "fontdict": 67, "fontsiz": [43, 48, 50, 51, 52, 67], "fontweight": 43, "footprint": [45, 73], "foral": [50, 71], "forc": [42, 47, 48, 52, 53, 71, 72, 73], "forcast": 46, "forcier": 16, "forecast": [46, 54], "forest": [42, 43, 51, 63, 70], "forget": [53, 73], "form": [16, 18, 30, 33, 35, 40, 42, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 63, 64, 65, 67, 70, 71, 72, 73], "formal": [45, 46, 56, 60, 67], "format": [29, 42, 43, 45, 46, 48, 49, 50, 51, 52, 53, 62, 63, 67, 69], "format_data": 46, "formatstrformatt": [48, 55, 72, 73], "formatt": 39, "formul": [46, 48, 53, 56], "formula": [29, 45, 55, 67, 72], "forth": [46, 54], "fortran": [42, 63, 64, 70], "fortran2003": [63, 70], "fortran2008": 65, "fortran90": 67, "fortun": [42, 53, 71], "forward": [42, 45, 48, 63, 64, 70, 73], "found": [20, 43, 44, 46, 47, 48, 54, 55, 61, 62, 65, 70, 71, 73], "foundat": [63, 70], "four": [46, 47, 48, 50, 54, 64, 66, 68, 70, 72], "fourier": [42, 70], "fourierdef1": 45, "fourierdef2": 45, "fourierseriessign": 45, "fourth": [54, 70, 71], "fp": 49, "frac": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 61, 64, 65, 67, 70, 71, 72, 73], "fraction": 51, "frame": [49, 73], "framework": [43, 50, 52, 67], "frank": [47, 53], "frankefunct": [47, 48, 53], "fredli": [68, 70], "free": [19, 26, 32, 34, 42, 48, 53, 55, 57, 58, 60, 63, 64, 65, 67, 68, 69, 70], "freecodecamp": 63, "freedom": [47, 72], "freeli": [42, 65], "freez": 57, "frequenc": [45, 48, 49, 67], "frequent": [42, 50, 51, 55, 72], "frequentist": 63, "fresh": 52, "fridai": [57, 68, 70], "friedman": [48, 61, 65, 69, 70], "friendli": 46, "fro": 65, "frodo": 70, "frog": 45, "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 26, 30, 32, 33, 34, 35, 39, 42, 43, 44, 45, 46, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69], "from_cod": 51, "from_logit": [45, 46], "from_tensor_slic": 46, "front": [42, 46, 47, 70, 71, 72], "frustrat": 57, "fulfil": [44, 47, 54, 71, 72], "full": [43, 45, 47, 49, 51, 52, 55, 67, 70, 71, 72], "full_matric": [47, 71, 72], "fulli": [45, 48, 54, 67], "fullnam": [36, 37, 38], "fun": [63, 70], "func": 44, "function": [22, 27, 44, 45, 46, 47, 51, 56, 57, 58, 59, 60, 61, 62, 63, 64], "functionali": 53, "fundament": [42, 48, 63, 70], "funtion": 44, "furnish": [19, 26, 32, 34], "further": [44, 49, 51, 61, 70], "furthermor": [42, 45, 47, 48, 49, 53, 54, 55, 63, 65, 70, 71, 72, 73], "futur": [42, 46, 50, 51, 70], "fy": [57, 65, 66, 68, 69, 70], "fys4155": 65, "fys5419": [69, 70], "fys5429": [69, 70], "f\u00f8470": [68, 70], "g": [42, 43, 44, 45, 46, 48, 50, 51, 52, 53, 55, 57, 60, 61, 67, 70, 71, 72, 73], "g0": 44, "g_": [44, 51, 52, 73], "g_0": 44, "g_1": [44, 52], "g_2": [44, 52], "g_analyt": 44, "g_dnn_ag": 44, "g_euler": 44, "g_i": 44, "g_m": [45, 52], "g_n": 45, "g_re": 44, "g_t": [44, 73], "g_t_d2t": 44, "g_t_d2x": 44, "g_t_dt": 44, "g_t_hessian": 44, "g_t_hessian_func": 44, "g_t_jacobian": 44, "g_t_jacobian_func": 44, "g_trial": 44, "g_trial_deep": 44, "g_vec": 44, "gain": [43, 47, 49, 51, 52, 55, 71, 72], "galleri": [42, 70], "game": 46, "gamge": 70, "gamma": [42, 44, 50, 51, 52, 53, 55, 70, 72], "gamma1": 50, "gamma2": 50, "gamma_": [42, 70], "gamma_0": 52, "gamma_1": 52, "gamma_1x": 52, "gamma_i": [42, 50, 67, 70], "gamma_j": 55, "gamma_k": [55, 72], "gamma_m": 52, "gamma_x": [42, 70], "gap": [50, 73], "gate": [46, 54], "gather": [42, 43, 54, 71], "gaug": 54, "gaussbacksub": 64, "gaussian": [46, 47, 48, 50, 56, 60, 67, 70], "gaussian_point": 56, "gaussian_rbf": 50, "gave": [55, 73], "gavra": 70, "gbc": 70, "gca": [44, 48, 50, 55], "gd": [43, 72], "gd_clf": 52, "gdclassiffiercgain": 52, "gdclassiffierconfus": 52, "gdclassiffierroc": 52, "gdm": 55, "gdregress": 52, "ge": [43, 47, 49, 67, 71, 72], "gen_loss": 46, "gen_tap": 46, "gender": [42, 70], "genener": 46, "gener": [39, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 55, 56, 57, 58, 60, 62, 64, 65, 67, 69, 71, 72, 73], "generaliz": 58, "generallay": 54, "generate_and_save_imag": 46, "generate_imag": 46, "generate_latent_point": 46, "generate_simple_clustering_dataset": 56, "generated_imag": 46, "generator_loss": 46, "generator_loss_list": 46, "generator_model": 46, "generator_optim": 46, "genom": 63, "geodes": 53, "geoff": 73, "geometr": [42, 55, 70, 73], "geometri": 47, "georg": 69, "geotif": 48, "geq": [44, 47, 50, 51, 55, 71, 72, 73], "geron": [42, 69, 70], "get": [22, 23, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57, 61, 63, 64, 65, 67, 68, 70, 71, 72, 73], "get_dummi": 51, "get_paramet": 44, "get_split": 51, "get_yaxi": 50, "get_yticklabel": 48, "gh": 57, "giant": 73, "gibb": [63, 70], "gif": 46, "gini": 52, "gini_index": 51, "ginvers": 55, "git": [39, 42, 57, 63, 70], "gitcdn": 29, "giter": [55, 73], "github": [20, 42, 62, 63, 65, 66, 68, 69, 70, 71], "gitignor": 57, "gitlab": [29, 42, 57, 63, 65, 70], "give": [21, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 60, 61, 63, 65, 67, 70, 71, 72, 73], "given": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 61, 64, 67, 70, 71, 72, 73], "global": [28, 48, 49, 55, 72, 73], "glorot": 43, "gmail": [25, 31, 34], "gnew": 55, "go": [21, 29, 39, 42, 43, 45, 47, 48, 50, 51, 53, 54, 55, 57, 58, 60, 70, 71, 72], "goal": [42, 49, 51, 70], "goe": [42, 43, 44, 47, 48, 55, 56, 57, 61, 64, 70, 71, 72, 73], "goessner": 29, "golden": 55, "gone": [29, 47, 71, 72], "gong": 43, "good": [16, 18, 30, 33, 35, 40, 43, 45, 46, 47, 48, 51, 52, 53, 55, 57, 60, 63, 67, 69, 71, 72, 73], "goodfellow": [46, 69, 70, 71, 72], "googl": [43, 46, 63, 70], "got": [43, 48, 65], "gotten": 70, "gov": 48, "govern": 70, "gp": 69, "gpu": [43, 55, 63, 70, 73], "grad": [44, 55, 73], "grad_analyt": 55, "grad_ol": 60, "grad_ridg": 60, "grade": [65, 66], "gradient": [42, 45, 46, 49, 50, 51, 54, 63, 70, 71], "gradient_desc": 73, "gradientboostingclassifi": 52, "gradientboostingregressor": 52, "gradients_of_discrimin": 46, "gradients_of_gener": 46, "gradienttap": 46, "gradual": [43, 56], "grai": [20, 46, 48], "granger": 33, "grant": [19, 26, 32, 34], "graph": [43, 51, 53, 54, 55, 58, 62, 72, 73], "graph_from_dot_data": 51, "graphic": [42, 43, 51, 57, 70], "grasp": 42, "gray_r": [43, 45], "grayscal": 45, "great": [47, 55, 57, 72, 73], "greater": [43, 49, 67, 71], "greatli": 55, "greedi": 51, "green": [42, 45, 51, 67], "grei": 46, "grid": [43, 45, 48, 49, 50, 54, 67, 71, 73], "grossli": [55, 72], "ground": [42, 70], "group": [42, 48, 49, 51, 56, 57, 62, 63, 65, 66, 68, 70], "groupbi": [42, 70], "grow": [43, 45, 51, 52, 73], "growth": [42, 70], "gru": 46, "guarante": [42, 46, 55, 67, 70, 71, 72, 73], "guess": [43, 46, 52, 55, 56, 72, 73], "guestrin": 52, "gui": 57, "guid": [24, 43], "guidelin": 62, "g\u00f6ssner": 29, "h": [42, 43, 47, 48, 50, 55, 57, 61, 67, 68, 69, 70, 71, 72, 73], "h1": 44, "h_": [42, 55, 70, 72, 73], "h_0": 73, "h_1": [44, 55, 72], "h_2": [44, 55, 72], "h_m": 52, "h_t": 73, "ha": [29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 67, 70, 71, 72, 73], "haanen": [68, 70], "habit": [42, 71], "had": [42, 43, 48, 49, 55, 70, 72, 73], "hadamard": [43, 54, 55, 73], "half": [43, 50, 51], "halv": 52, "hand": [39, 42, 43, 44, 45, 47, 53, 54, 55, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73], "handi": [45, 65], "handl": [42, 43, 44, 47, 51, 53, 57, 60, 63, 71, 72, 73], "handle_unknown": 51, "handsid": 54, "handwrit": 54, "handwritten": [43, 47], "happen": [43, 44, 45, 46, 47, 48, 52, 55, 67, 71, 72, 73], "hard": [43, 49, 50, 52, 55, 72, 73], "hardcopi": [63, 70], "harder": [42, 43, 61, 71], "harmon": 45, "hash": 73, "hasn": [], "hassl": [42, 63, 70], "hast": [63, 70], "hasti": [42, 48, 58, 59, 61, 62, 65, 69, 70, 71], "hat": [42, 43, 47, 48, 49, 51, 52, 53, 54, 55, 58, 59, 60, 61, 64, 71, 72, 73], "hauser": 20, "have": [20, 23, 29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 71, 72, 73], "have_sys_un_h": 41, "haven": 43, "he": 49, "head": [29, 46, 52, 67], "header": [42, 70], "heads_proba": 52, "health": [42, 71], "hear": [42, 55, 70, 73], "heart": [42, 49, 70], "heatmap": [42, 43, 45, 49, 59, 62, 70], "heavi": 73, "heavili": 42, "heavisid": 43, "height": [43, 45, 48, 71], "held": [55, 73], "help": [22, 42, 43, 46, 54, 55, 57, 58, 65, 70, 73], "helper": [39, 46, 56], "henc": [42, 47, 48, 50, 51, 52, 54, 55, 70, 71, 72, 73], "henrik": [68, 70], "her": 49, "here": [20, 22, 24, 27, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 71, 72, 73], "hereaft": [42, 50, 54, 70], "herebi": [19, 26, 32, 34], "hermitian": 64, "hessenberg": 64, "hessian": [42, 44, 47, 55], "heterogen": [51, 52], "hex": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "hi": 49, "hidden": [43, 45, 46, 54], "hidden_bia": 43, "hidden_bias_gradi": 43, "hidden_layer_s": [42, 43, 70], "hidden_neuron": 46, "hidden_weight": 43, "hidden_weights_gradi": 43, "hierarch": [47, 71, 72], "high": [42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 55, 56, 63, 64, 65, 70, 71, 72, 73], "higher": [42, 43, 45, 47, 48, 50, 55, 60, 65, 70, 71, 72, 73], "highest": [43, 44], "highli": [42, 45, 46, 52, 61, 63, 64, 69, 70, 71, 72, 73], "highlight": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "highwai": [], "hing": 50, "hint": [55, 57, 58, 71, 72], "hinton": 73, "hip": 63, "hire": 42, "hist": [46, 48, 49, 67], "histogram": [48, 49, 67], "histor": [49, 53], "histori": [39, 45, 46, 54, 57, 73], "hitherto": 47, "hjorth": [68, 70, 71, 72, 73], "hobbi": 67, "hoc": [47, 71, 72], "hoff": 69, "hold": [43, 45, 48, 55, 56, 72, 73], "holder": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 70], "holdgraf_evidence_2014": 22, "home": [], "homepag": [65, 70], "homework": [48, 55, 72, 73], "homogen": [43, 45, 51, 52, 55, 73], "honchar": 44, "hopefulli": [42, 53, 57, 61, 67, 70, 73], "horizont": 53, "horlyk": [68, 70], "hors": [45, 49, 70], "hot": [24, 43, 51], "hour": [43, 63, 66, 67, 68, 70, 73], "how": [21, 23, 27, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73], "howev": [16, 18, 30, 33, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 63, 64, 65, 67, 70, 71, 72, 73], "href": 29, "hspace": [42, 46, 50, 52, 67, 70], "hstack": 43, "htf": 70, "html": [24, 29, 42, 58, 62, 63, 65, 66, 68, 69, 70, 71, 72, 73], "http": [25, 29, 42, 45, 46, 48, 55, 57, 58, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73], "huang": [42, 70], "huber": [42, 70], "huge": [43, 45, 46, 63, 73], "human": [42, 43, 45, 48, 51, 54, 71], "humid": 51, "hundr": 43, "hungri": 43, "hybrid": 66, "hydrogen": [42, 70], "hyperbol": [43, 46, 54], "hyperparam": 50, "hyperparamet": [45, 46, 47, 48, 51, 55, 60, 65, 71, 72, 73], "hyperplan": 53, "h\u00f8rlyk": [68, 70], "i": [0, 16, 17, 18, 19, 20, 21, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "i0": [42, 70], "i1": [42, 48, 50, 54, 70, 71, 73], "i2": [42, 50, 54, 70], "i3": [42, 54, 70], "i5": [42, 70], "i_": [55, 72, 73], "i_1": [47, 48], "i_2": [47, 48], "i_t": 73, "ian": 69, "ic": [43, 65], "id": [29, 49, 55, 72, 73], "ida": [68, 70], "idea": [42, 43, 44, 45, 46, 48, 51, 52, 54, 55, 62, 64, 65, 71, 72, 73], "ideal": [42, 44, 48, 50, 55, 67, 70, 73], "idem": 48, "ident": [29, 47, 48, 54, 55, 59, 60, 64, 71, 72], "identifi": [42, 43, 49, 51, 53, 54, 55, 56, 70, 71], "idx": 27, "ieor": 67, "ifi": 69, "ifs": [63, 70], "ignor": [42, 43, 45, 51, 57, 71, 73], "ii": [24, 64, 67], "iii": [64, 70], "ij": [42, 43, 45, 48, 50, 54, 56, 58, 64, 67, 70, 71, 73], "ik": [42, 64, 70, 71], "iki": 35, "ill": 73, "illustr": [47, 49, 52, 54, 55, 56, 62, 63, 70], "ilsvrc": 73, "im": 48, "imag": [24, 43, 45, 46, 48, 51, 53, 54, 56, 69, 70], "image_at_epoch_": 46, "image_batch": 46, "image_height": 45, "image_path": [42, 48, 49, 51, 70], "image_width": 45, "imageio": 48, "imagenet": 73, "images_from_seed_imag": 46, "imagin": 43, "immedi": [42, 45, 46, 48, 63, 70, 73], "implement": [0, 17, 29, 35, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 61, 62, 65, 67, 70, 71, 72, 73], "impli": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 45, 47, 48, 49, 55, 64, 71, 72, 73], "implicit": [45, 73], "implicitli": [53, 67], "import": [17, 20, 24, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 65, 67, 73], "importantli": 45, "importerror": 17, "impos": [42, 48, 53, 54, 70], "imposs": [42, 47, 70, 71, 72], "impract": 73, "impress": [42, 54, 70], "improv": [42, 46, 47, 51, 52, 53, 55, 57, 65, 71, 72], "impur": 51, "imread": 48, "imshow": [43, 45, 46, 48], "in3050": [69, 70], "in3310": 70, "in4080": [69, 70], "in4300": [69, 70], "in4310": 69, "in5400": 45, "in5550": 69, "in_out_neuron": 46, "inaccur": [55, 72], "inact": 54, "inadequ": [42, 70], "inappropri": 73, "inch": [48, 71], "incident": [16, 18, 30, 33, 35, 40], "includ": [16, 18, 19, 20, 23, 24, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 57, 58, 59, 60, 61, 62, 63, 67, 68, 69, 70, 71, 72], "include_bia": [48, 51], "incom": [54, 58], "incorrect": 43, "incoveni": 50, "increas": [42, 43, 45, 46, 47, 48, 51, 54, 55, 61, 65, 67, 70, 71, 73], "increasingli": 67, "increment": 73, "ind": 48, "inde": [42, 44, 46, 47, 48, 55, 70, 71, 72], "indefinit": 46, "independ": [42, 47, 48, 49, 50, 54, 55, 67, 70, 71, 72, 73], "index": [42, 43, 45, 46, 52, 56, 63, 64, 65, 67, 69, 70], "index_col": [42, 70], "indic": [20, 35, 42, 43, 45, 46, 47, 48, 51, 52, 53, 55, 58, 65, 70, 71], "indirect": [16, 18, 30, 33, 35, 40], "indispens": 48, "individu": [20, 43, 48, 49, 52, 54, 67, 70, 71, 73], "indu": [], "indx": 64, "indx1": 44, "indx2": 44, "indx3": 44, "ineffici": [45, 55], "inequ": [50, 55], "inequaltii": 72, "inertia": 55, "inf1000": [63, 70], "inf1100": [63, 70], "inf1100l": [63, 70], "inf1110": [63, 70], "inf3000": 70, "infeas": [51, 73], "infer": [42, 43, 46, 48, 69, 70], "inferenc": 43, "infil": [42, 48, 49, 51, 70], "infin": [47, 48, 49, 53, 61, 71, 72], "infinit": [45, 73], "infinitesim": 67, "influenc": [48, 52, 60], "influenti": 43, "info": [27, 70], "inform": [21, 23, 24, 39, 42, 43, 45, 46, 48, 51, 53, 54, 55, 56, 64, 65, 69, 70, 72, 73], "inforom": 57, "infrequ": 73, "infti": [45, 48, 55, 67, 72], "ingeni": [55, 72, 73], "ingredi": [42, 51, 70], "inher": [48, 73], "inherit": [17, 64, 70, 73], "init": 23, "initi": [42, 43, 44, 48, 52, 55, 56, 60, 64, 67, 70, 72, 73], "inject": 56, "inlin": [22, 29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 67, 70, 71, 72, 73], "inner": [42, 55, 71], "innerhtml": 29, "inp": 46, "inplac": 55, "input": [22, 42, 43, 45, 46, 47, 48, 49, 50, 54, 55, 56, 58, 65, 67, 70, 71, 72, 73], "input_dim": 43, "input_shap": [45, 46], "inputs": 43, "inputs_shuffl": [42, 43, 71], "inquiri": 62, "insert": [22, 45, 47, 48, 50, 52, 67, 71, 72], "insid": [17, 46, 49], "insight": [42, 43, 47, 63, 70, 71, 72], "insist": [48, 55, 71, 73], "inspir": [3, 42, 43, 54, 65, 70], "instabl": 44, "instal": [29, 42, 43, 47, 48, 51, 57, 62], "instanc": [42, 43, 44, 46, 48, 51, 53, 55, 58, 70, 71, 72, 73], "instanti": 52, "instead": [20, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 55, 56, 59, 62, 64, 67, 70, 71, 73], "institut": [20, 43], "instruct": [23, 42, 43, 57], "int": [42, 43, 44, 45, 46, 47, 48, 53, 55, 56, 64, 67, 71, 73], "int32": 52, "int_": [45, 48, 67], "int_0": 67, "int_a": 67, "intak": [42, 71], "integ": [43, 44, 55, 56, 64, 67, 70], "integer_vector": 43, "integr": [25, 45, 48, 67, 70], "intellig": [42, 56, 69, 70], "intend": 52, "intens": [43, 60], "intention": 56, "interact": [24, 42, 48, 51, 54, 63, 65, 70], "intercept": [42, 48, 50, 53, 55, 58, 59, 60, 61, 70, 71, 72, 73], "intercept_": [42, 48, 50, 51, 55, 70, 71, 73], "interchang": [47, 54, 64], "interconnect": 43, "interesit": [], "interest": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 61, 63, 65, 67, 70, 71, 72], "interfac": [42, 43, 57, 64, 71], "interior": [42, 51, 70], "intermedi": [64, 71, 73], "intern": [43, 52, 54], "internation": 39, "interpol": [43, 45, 46, 48, 54], "interpr": [47, 71, 72], "interpret": [42, 43, 48, 51, 52, 54, 55, 57, 58, 64, 65, 67], "interrupt": [16, 18, 30, 33, 35, 40], "interv": [42, 45, 47, 48, 49, 55, 61, 67, 70, 71, 72], "intial": [55, 72], "intract": [42, 46, 71], "intrins": [45, 53, 64, 67, 70], "intro": [63, 69, 70], "introduc": [42, 43, 47, 48, 50, 52, 54, 64, 65, 67, 70, 72, 73], "introduct": [43, 44, 46, 55, 69, 71, 72, 73], "introductori": [42, 46, 64, 69, 70, 71], "intuit": [42, 47, 48, 50, 54, 55, 65, 70, 73], "inv": [42, 47, 55, 59, 70, 71, 72, 73], "invalid": 29, "invalu": [42, 55, 63, 70, 72], "invari": 43, "invd": 47, "inver": 50, "invers": [42, 45, 48, 55, 70, 71, 72, 73], "inverse_transform": 50, "invert": [42, 47, 49, 52, 55, 58, 60, 70, 73], "investig": 29, "invh": [55, 73], "invok": 50, "involv": [42, 44, 48, 49, 53, 54, 70, 71, 73], "io": [39, 42, 63, 65, 66, 68, 69, 70, 71], "ion": 24, "ip": [42, 50, 67, 70], "ipca": 53, "ipynb": [22, 63, 70], "ipython": [42, 47, 49, 51, 53, 56, 63, 65, 70, 71], "iq": 48, "iri": [50, 51], "irreduc": 48, "irrelev": [47, 71, 72], "irrespect": [42, 70], "irvin": 65, "isaac": 34, "isaacmus": 34, "iseffici": [], "isn": 47, "isnul": [], "isomap": 53, "issu": [43, 51, 57, 64, 73], "it_arrai": 55, "item": [38, 42, 55, 70], "items": [64, 70], "iter": [43, 44, 46, 48, 50, 55, 56, 60, 65, 67, 72, 73], "its": [18, 20, 30, 33, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 62, 63, 64, 65, 67, 70, 72, 73], "itself": [28, 47, 48, 54, 65, 67, 70, 71], "j": [27, 28, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 54, 55, 56, 57, 58, 64, 65, 67, 69, 70, 71, 72, 73], "j1": 64, "j_": 48, "j_lasso_sk": 48, "j_ridge_sk": 48, "j_sk": 48, "jackknif": [48, 63, 70], "jacobian": [44, 55, 72], "janko": 20, "jason": 46, "javascript": 29, "jax": [63, 70, 73], "jeff": 16, "jensen": [68, 70, 71, 72, 73], "jerom": [61, 65, 69], "jhauser": 20, "ji": [54, 64], "jit": 55, "jj": [42, 47, 48, 70], "jk": [42, 43, 48, 54, 64, 70], "jl": [42, 70], "jm": 64, "jnp": 55, "job": [44, 50, 52, 57], "join": [42, 46, 48, 49, 51, 70], "joint": [46, 47], "jonathan": 31, "json": 39, "judg": [55, 72], "judgement": 48, "julia": [29, 63, 64, 65], "jump": [67, 73], "junk": 46, "jupit": 70, "jupyt": [22, 23, 24, 42, 57, 58, 61, 63, 65, 69, 70], "jupyterbook": 22, "jupytext": 23, "just": [22, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 62, 63, 67, 70, 71, 72, 73], "justif": 42, "justifi": [45, 52], "k": [42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 63, 64, 65, 67, 68, 70, 71, 72, 73], "k0": 49, "k1": 49, "kaggl": [48, 65], "kappa_d": 67, "karl": [68, 70], "karush": 50, "katex": 29, "katrin": [68, 70], "keep": [24, 42, 43, 46, 47, 48, 53, 55, 56, 57, 60, 64, 65, 70, 71, 72, 73], "keepdim": [43, 48, 52, 64], "kei": [43, 45, 48, 54, 73], "kellei": 33, "kenneth": 16, "kept": [46, 48, 56], "kera": [42, 46, 63, 65, 70], "kernel": [23, 42, 43, 45, 63, 70, 71], "kernel_regular": [43, 45], "kernel_s": 46, "kernelpca": 53, "kev": [42, 70], "kevin": [69, 70], "keyword": [60, 64, 70], "kfold": 48, "kg": 43, "ki": 64, "kick": [43, 55, 73], "kiener": 44, "kilomet": [48, 71], "kim": [18, 30], "kind": [19, 22, 26, 32, 34, 42, 44, 45, 46, 50, 54, 55, 56, 70, 71], "kingma": 73, "kj": [48, 54, 64, 71, 73], "kjm": [63, 70], "kkt": 50, "kl": 67, "km": [54, 70], "kmean": 56, "kmeanspoint": 56, "kn_k": 56, "know": [39, 42, 43, 44, 47, 48, 50, 55, 57, 58, 59, 61, 62, 63, 70, 71, 72], "knowledg": [42, 63, 70], "known": [20, 43, 45, 46, 47, 48, 49, 50, 51, 54, 60, 64, 65, 67, 69, 71, 73], "kondev": [42, 70], "kp": 67, "kpca": 53, "kramdown": 29, "kroneck": 56, "kt": 29, "kuhn": 50, "kvalsund": [68, 70], "kwown": [42, 70], "l": [42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 55, 64, 65, 67, 70, 72, 73], "l0": 49, "l1": [42, 43, 45, 49, 70], "l1_l2": [43, 45], "l1regl": 47, "l2": [43, 45], "l_": [64, 73], "l_1": 49, "l_2": [49, 55, 72, 73], "l_i": 73, "l_j": 54, "la": 55, "la_": 24, "la_i": 54, "la_k": 54, "lab": [62, 63, 65, 70], "label": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 62, 63, 64, 65, 67, 70, 71, 72, 73], "labelencod": [49, 52], "labels": [48, 50, 51], "labels_shuffl": [42, 43, 71], "laboratori": 66, "lack": [42, 70, 73], "lagari": 44, "lagrang": [50, 53], "lam": 60, "lambda": [42, 43, 44, 45, 47, 48, 49, 50, 52, 54, 55, 59, 60, 61, 62, 65, 67, 70, 71, 72, 73], "lambda_": 53, "lambda_0": 53, "lambda_1": [47, 50, 53, 71, 72], "lambda_2": [50, 53], "lambda_i": [50, 53], "lambda_iy_i": 50, "lambda_jy_iy_j": 50, "lambda_k": 50, "lambda_n": [47, 50, 71, 72], "lamda": 43, "land": 50, "landmark": 50, "landscap": [55, 60, 72, 73], "langl": [42, 48, 53, 67, 70, 71], "languag": [22, 39, 42, 43, 46, 50, 63, 64, 65, 69, 70], "lapack": [64, 70], "laplac": 47, "laptop": [57, 63], "larg": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 55, 60, 63, 64, 65, 67, 69, 70, 71, 72, 73], "larger": [42, 45, 47, 48, 50, 52, 53, 55, 59, 67, 70, 71, 72, 73], "largest": [46, 50, 53], "lasso": [42, 49, 63, 70, 73], "lasso_sk": 48, "last": [42, 43, 45, 46, 47, 48, 49, 50, 54, 58, 59, 61, 64, 65, 67, 68, 70, 72], "latent": 46, "latent_dim": 46, "latent_point": 46, "latent_space_value_rang": 46, "later": [42, 43, 46, 49, 50, 54, 55, 56, 57, 61, 63, 65, 70, 73], "latest": [46, 57, 63], "latest_checkpoint": 46, "latex": [25, 26, 62, 70], "latexcodec": [25, 26], "latter": [42, 45, 48, 49, 50, 53, 55, 64, 67, 70, 71, 72, 73], "lattic": 54, "law": 42, "layer": [42, 46, 55, 70, 73], "lbfg": [49, 51, 52], "lc_messag": 39, "lcc": [47, 48], "lda": 53, "ldot": [42, 48, 53, 65, 70], "le": [47, 49, 52, 55, 59, 67, 71, 72, 73], "lead": [20, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 64, 67, 70, 71, 72, 73], "leaf": 51, "leaki": 43, "leakyrelu": 46, "lear": [55, 72], "learn": [45, 46, 47, 48, 49, 50, 51, 52, 54, 64, 68, 69], "learnabl": 45, "learner": 52, "learnig": 70, "learning_r": [50, 52], "learning_rate_init": [42, 43, 70], "learning_schedul": [55, 73], "learnt": 65, "least": [42, 49, 50, 52, 53, 59, 60, 63, 64, 67], "leat": [55, 73], "leav": [42, 43, 45, 47, 48, 51, 53, 70, 72], "lectur": [42, 43, 47, 52, 53, 54, 55, 63, 64, 65, 66, 68, 69, 71], "lecturenot": [42, 63, 65, 69, 70], "left": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 61, 64, 65, 67, 70, 71, 72, 73], "leftarrow": [50, 54], "legend": [24, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 57, 70, 71, 72, 73], "leinonen": 70, "len": [42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 58, 59, 64, 70, 71, 72, 73], "length": [42, 43, 45, 46, 50, 51, 55, 58, 63, 70, 71, 72, 73], "length_of_sequ": 46, "leq": [42, 47, 49, 50, 55, 56, 67, 70, 71, 72, 73], "less": [42, 43, 45, 46, 47, 48, 50, 51, 55, 63, 67, 70, 71, 72, 73], "lessen": 43, "let": [23, 29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 64, 67, 70, 71, 72, 73], "letter": [42, 58, 64, 67, 70, 71], "level": [27, 42, 43, 47, 48, 51, 63, 64, 65, 66, 68, 70, 73], "leverag": 73, "lexer": [25, 26], "li": [50, 53], "liabil": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "liabl": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "lib": [], "liberti": 73, "liblinear": 52, "librari": [42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 64, 65, 67, 69, 71, 72, 73], "licenc": 35, "licens": [18, 30, 33, 34, 42, 43, 63, 65, 70], "lie": [42, 48, 53, 67, 70, 71], "life": [42, 43, 50, 54, 70], "lifetim": 55, "light": [1, 15], "like": [22, 23, 27, 39, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 62, 63, 64, 65, 67, 70, 71, 72, 73], "likelihood": [42, 43, 47, 51, 70, 71], "lim_": 67, "limit": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 47, 48, 50, 54, 64, 65, 70, 71], "lin_clf": 50, "lin_model": [], "lin_reg": 51, "linalg": [42, 44, 47, 48, 50, 53, 55, 59, 64, 67, 70, 71, 72, 73], "line": [22, 23, 24, 39, 42, 45, 48, 50, 53, 55, 57, 58, 62, 70, 72, 73], "line1": 50, "line2": 50, "line2d": 24, "line3": 50, "line_model": 57, "line_ms": 57, "line_predict": 57, "linear": [43, 45, 47, 48, 49, 51, 52, 53, 54, 58, 59, 60, 61, 63, 65, 67, 73], "linear_model": [42, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 61, 70, 71, 72, 73], "linear_regress": 48, "linearli": [47, 71, 72, 73], "linearloc": [48, 55, 72, 73], "linearregress": [42, 48, 49, 51, 57, 58, 61, 70, 71, 73], "linearsvc": 50, "lineat": 72, "liner": [43, 45], "linerar": 52, "linewidth": [42, 44, 46, 48, 50, 51, 52], "link": [29, 42, 46, 51, 54, 57, 62, 63, 65, 66, 68, 70], "linlag": 47, "linpack": [64, 70], "linreg": [42, 70], "linspac": [24, 42, 44, 45, 46, 48, 50, 51, 52, 55, 58, 59, 61, 64, 67, 70, 71, 73], "linu": 46, "linux": [42, 43, 63, 65, 70], "liquid": [42, 70], "list": [16, 18, 28, 29, 30, 33, 35, 40, 43, 44, 45, 46, 51, 57, 63, 65, 70, 73], "listedcolormap": [51, 52], "literatur": [43, 49, 56, 69], "littl": [43, 45, 51, 54, 73], "live": [50, 58], "ll": [22, 42, 60, 67, 70, 71], "lle": [42, 71], "llm": 62, "lloyd": [46, 56], "lmb": [42, 44, 47, 48, 71, 72, 73], "lmbd": [42, 43, 45, 70], "lmbd_val": [42, 43, 45, 70], "lmbda": [55, 72, 73], "ln": [43, 55, 72], "load": [28, 43, 46, 48, 49, 51, 52, 73], "load_boston": [], "load_breast_canc": [43, 49, 51, 52, 53], "load_data": [45, 46], "load_digit": [43, 45], "load_iri": [50, 51], "loc": [45, 48, 49, 50, 51, 52, 70], "local": [39, 42, 43, 45, 49, 54, 55, 57, 71, 72, 73], "locat": [44, 45, 50, 57], "log": [27, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 55, 57, 62, 64, 65, 70, 73], "log10": [42, 47, 48, 71, 72, 73], "log_": [42, 70], "log_clf": 52, "logarithm": [42, 47, 49, 59, 64, 70], "logbook": 65, "logic": [42, 43, 51, 70], "login": 57, "logist": [42, 43, 44, 50, 51, 52, 53, 54, 55, 63, 71, 72, 73], "logisticregress": [49, 51, 52, 53], "logit": 49, "logreg": [49, 51, 52, 53], "logspac": [24, 42, 43, 45, 47, 48, 70, 71, 72, 73], "long": [42, 43, 45, 46, 54, 55, 70, 72, 73], "longer": [44, 45, 50, 52, 56, 64, 67, 70, 73], "loocv": 48, "look": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 61, 62, 64, 65, 67, 70, 71, 72, 73], "loop": [43, 46, 48, 52, 54, 56, 58, 59, 60, 63, 64, 70, 73], "lose": 43, "loss": [16, 18, 30, 33, 35, 40, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 55, 60, 64, 65, 70], "loss_fil": 46, "lossfil": 46, "lost": 46, "lot": [22, 24, 43, 46, 48, 58, 61, 62, 73], "low": [42, 48, 51, 52, 53, 65, 70, 71], "lower": [42, 43, 45, 48, 51, 52, 58, 64, 71, 73], "lowercas": [64, 70], "lowest": [51, 55, 67, 73], "lr": [43, 45, 46, 52], "lstat": [], "lstm": 46, "lstm_2layer": 46, "lstsq": [42, 70, 71], "lt": 48, "lu": [42, 47, 70, 71, 72], "lubksb": 64, "luckili": 44, "ludcmp": 64, "lux": 64, "lvert": 43, "lw": [24, 42, 70], "m": [26, 27, 32, 40, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 55, 57, 64, 67, 68, 69, 70, 71, 72, 73], "m_": [51, 54], "m_0": 73, "m_1": 56, "m_h": [42, 70], "m_k": 56, "m_l": 54, "m_n": [42, 70], "m_p": [42, 70], "m_t": [55, 73], "ma": 53, "machin": [43, 45, 46, 47, 48, 49, 51, 52, 53, 54, 57, 58, 64, 69, 71, 73], "machinelearn": [42, 48, 58, 62, 63, 65, 66, 68, 69, 70, 71, 72], "machineri": 39, "mackai": 69, "macro": 29, "made": [42, 43, 45, 46, 47, 48, 49, 51, 53, 54, 65, 70, 71, 73], "mae": [42, 70], "magic": 46, "magnitud": [43, 48, 49, 55, 71, 73], "mai": [16, 18, 30, 33, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 61, 63, 64, 65, 67, 70, 71, 72, 73], "mail": [66, 68], "main": [25, 42, 43, 45, 46, 47, 48, 49, 51, 64, 65, 69, 71, 72, 73], "mainli": [42, 47, 48, 49, 51, 70, 71], "maintain": [20, 48, 73], "major": [21, 43, 48, 51, 52, 55, 64, 70, 72, 73], "make": [24, 39, 43, 44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 57, 58, 60, 61, 63, 64, 65, 67, 69, 70, 72, 73], "make_axes_locat": 48, "make_moon": [50, 51, 52], "make_pipelin": [42, 48, 52, 71], "makedir": [42, 48, 49, 51, 70], "malcondit": 64, "malign": [43, 49, 51], "mammographi": 47, "manag": [42, 44, 45, 57, 63, 65, 70, 73], "mandatori": [27, 68, 70], "mani": [22, 23, 39, 42, 43, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 67, 69, 70, 71, 72, 73], "manifold": 53, "manner": 45, "manual": [48, 71, 73], "map": [39, 42, 43, 44, 48, 49, 50, 53, 54, 56, 67, 70], "marc": 71, "margin": [42, 47, 50], "marit": [42, 70], "mark": 70, "markdownfil": 23, "markdownit": 29, "markdownitdeflist": 28, "markedli": 22, "marker": [27, 49, 64, 70], "markov": [63, 70], "markup": [22, 27], "marsaglia": 67, "mass": [42, 43, 47, 55, 71, 72], "massag": [42, 70], "masses2016": [42, 70], "masses2016ol": [42, 70], "masses2016tre": 42, "masseval2016": [42, 70], "master": [29, 66, 68], "mat": [63, 70], "mat1100": [63, 70], "mat1110": [63, 70], "mat1120": [63, 70], "match": [27, 43, 46, 47, 55, 56, 57, 71, 72, 73], "materi": [16, 18, 30, 33, 35, 40, 46, 47, 49, 55, 57, 64, 66, 68], "math": [24, 29, 45, 49, 54, 55, 64, 67, 69, 70, 73], "mathbb": [29, 42, 46, 47, 48, 49, 50, 53, 54, 55, 56, 59, 61, 64, 65, 67, 70, 71, 72, 73], "mathbf": [42, 47, 48, 49, 50, 55, 61, 64, 65, 70, 71, 72, 73], "mathcal": [43, 47, 48, 49, 55, 65], "matheemat": 45, "mathemat": [42, 48, 53, 54, 55, 63, 64, 67, 69, 70, 73], "mathemati": 70, "mathrm": [42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 65, 67, 70, 71, 72, 73], "matmul": [43, 44, 47], "matnat": 69, "matplotlib": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61, 63, 64, 65, 67, 70, 71, 72, 73], "matric": [42, 43, 45, 46, 48, 49, 50, 53, 55, 58, 59, 63, 71, 72], "matrix": [42, 44, 45, 46, 48, 49, 50, 52, 55, 59, 60, 61, 65, 67], "matshow": 43, "matter": [44, 45, 55, 71, 72, 73], "matthia": [25, 26, 32, 40], "max": [42, 43, 44, 45, 46, 51, 52, 54, 55, 68, 70, 72, 73], "max_depth": [42, 51, 52], "max_diff": 44, "max_diff1": 44, "max_diff2": 44, "max_it": [42, 43, 50, 55, 70], "max_iter": 56, "max_leaf_nod": 52, "max_sampl": 52, "maxdegre": [42, 48, 52, 71], "maxdepth": 52, "maxim": [43, 46, 47, 49, 50, 53], "maximum": [42, 44, 45, 47, 49, 50, 51, 52, 55, 56, 70, 71, 72, 73], "maxpolydegre": [47, 48, 71, 72, 73], "maxpooling2d": 45, "mbox": [24, 47, 48, 71, 72], "mcculloch": 54, "md": [22, 23, 27, 28, 29, 53], "mdoel": 46, "me": 27, "mean": [24, 29, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 63, 64, 65, 67, 70, 73], "mean_absolute_error": [42, 70], "mean_divisor": 56, "mean_i": 67, "mean_matrix": 56, "mean_squared_error": [42, 46, 48, 49, 52, 57, 61, 70, 71], "mean_squared_log_error": [42, 70], "mean_vector": 56, "mean_x": 67, "meaning": [42, 46, 49, 70], "meansquarederror": [42, 70], "meant": [45, 49, 52, 55], "meanwhil": 73, "measur": [42, 43, 44, 47, 48, 51, 53, 54, 56, 58, 60, 65, 67, 70, 71, 73], "mechan": [42, 46, 67, 70, 73], "median": [42, 70, 71, 73], "medicin": 54, "medium": [24, 46, 50, 55, 73], "medv": [], "meet": [42, 68], "mehta": [42, 70, 71, 72], "member": 62, "memori": [45, 46, 53, 54, 55, 60, 64], "mentat": 35, "mention": [42, 54, 55, 65, 67, 70, 72, 73], "merchant": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "mere": [42, 65], "merg": [19, 26, 32, 34], "meshgrid": [44, 47, 48, 50, 51, 52, 53], "mess": 57, "messag": [20, 39, 47, 55], "messi": 44, "met": [16, 18, 30, 33, 35, 40, 42, 45, 50, 71], "meta": 29, "meteorolog": 51, "meter": [48, 71], "method": [42, 43, 44, 45, 46, 47, 49, 50, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 67, 69, 71], "metion": 48, "metric": [42, 43, 45, 48, 49, 51, 52, 56, 57, 70, 71], "metropoli": [63, 70], "mev": [42, 67, 70], "mgd": [55, 73], "mglearn": [63, 70], "mgrid": 55, "mhjensen": [], "mi": 52, "mia": [68, 70], "michael": 25, "microsoft": 69, "mid": 43, "midel": 46, "midnight": 57, "midpoint": 51, "might": [42, 43, 44, 46, 48, 51, 55, 57, 59, 60, 71, 72, 73], "migth": 59, "mild": 51, "millimet": [48, 71], "million": [42, 70, 71, 73], "mimic": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 54], "min": [29, 33, 42, 44, 47, 50, 51, 72], "min_": [42, 44, 47, 56, 59, 70, 71, 72], "min_samples_leaf": 51, "mind": [20, 42, 48, 55, 57, 60, 70, 71, 72, 73], "mindboard": 46, "mine": [63, 70], "mini": [43, 53, 54, 55, 72], "minibatch": [43, 53, 55], "minibathc": [55, 73], "miniforge3": [], "minim": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 71, 72, 73], "minima": [42, 43, 49, 55, 70, 72, 73], "minimum": [42, 43, 44, 48, 50, 51, 53, 55, 71, 72, 73], "minmaxscal": [42, 71, 73], "minor": 67, "minst": 43, "minu": 49, "mirjalili": 70, "mirror": 51, "misc": 48, "misclassif": [50, 51, 52], "misclassifi": [50, 52], "miser": 42, "mismatch": 43, "miss": [49, 52], "mistak": [46, 61], "mit": [27, 28, 29, 34, 69], "mitig": 73, "mix": [43, 44, 70], "mixtur": [55, 73], "mk": [51, 64], "mkdir": [42, 48, 49, 51, 70], "ml": [42, 43, 52, 55, 64, 65, 71, 72, 73], "mlab": 67, "mle": [47, 49], "mlp": 43, "mlpclassifi": 43, "mlpregressor": [42, 70], "mm": 64, "mml": 71, "mn": [54, 67], "mnist": [43, 53], "mo": 39, "mod": 67, "mode": [29, 66, 68, 70], "model": [20, 44, 45, 47, 49, 50, 51, 52, 53, 55, 56, 58, 60, 61, 62, 63, 65, 67, 69, 71, 72, 73], "model_select": [42, 43, 45, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 70, 71, 72, 73], "moder": [52, 73], "modern": [42, 48, 49, 63, 70, 73], "modest": 73, "modif": [16, 18, 30, 33, 35, 40, 44, 54, 55], "modifi": [17, 19, 20, 26, 29, 32, 34, 39, 42, 43, 45, 47, 49, 50, 52, 54, 55, 70, 71, 72, 73], "modul": [17, 28, 38, 42, 58, 64, 70], "modular": 67, "modulo": 67, "moe": [53, 71], "moment": [47, 48, 55, 67], "mondai": [68, 70], "monitor": [55, 73], "monoton": [47, 54, 67], "mont": [42, 48, 63, 67, 69, 70], "montli": 58, "moor": [47, 48], "more": [2, 17, 21, 23, 24, 25, 39, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 61, 63, 67], "moreov": [22, 42, 45], "morten": [68, 70, 71, 72, 73], "mortenhj": 70, "most": [22, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 63, 65, 67, 70, 71, 72, 73], "mostli": [43, 53, 60, 73], "motion": [42, 55], "motiv": [43, 46], "moulin": 73, "move": [42, 46, 47, 48, 49, 51, 54, 55, 56, 57, 58, 65, 67, 71, 72], "mpl": [49, 70], "mpl_toolkit": [44, 48, 55, 72, 73], "mplot3d": [44, 48, 55, 72, 73], "mplregressor": 43, "mse": [42, 46, 47, 48, 51, 52, 57, 58, 59, 61, 62, 65, 70, 71, 72, 73], "mse_simpletre": 52, "mselassopredict": [47, 72], "mselassotrain": [47, 72], "mseownridgepredict": [48, 71, 72, 73], "msepredict": [47, 72], "mseridgepredict": [42, 47, 48, 71, 72, 73], "msetrain": [47, 72], "msg": 39, "msle": [42, 70], "mt": [49, 54], "mu": [42, 48, 53, 55, 67, 70, 73], "mu0": 67, "mu1": 67, "mu2": 67, "mu_": [48, 67, 71, 73], "mu_i": [48, 71, 73], "mu_n": 53, "mu_x": 67, "much": [42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 57, 62, 64, 65, 67, 70, 71, 72, 73], "multi": [42, 43, 45, 49, 63, 70], "multiclass": [43, 49], "multidimension": [53, 54, 70], "multilay": 43, "multinomi": 49, "multipl": [39, 44, 46, 47, 48, 49, 54, 55, 57, 67, 71, 72, 73], "multipli": [45, 47, 48, 53, 55, 60, 64, 67, 71, 72, 73], "multiplum": 50, "multivari": [42, 44, 52, 53, 63, 67, 70], "multivariate_norm": [53, 56], "multpli": 58, "murphi": [53, 69, 70], "muse": 34, "must": [16, 17, 18, 22, 30, 33, 35, 40, 43, 44, 47, 48, 50, 52, 54, 55, 56, 57, 62, 67, 71, 72, 73], "mutat": 49, "mutual": [43, 45, 48, 55], "mx_": 67, "my": [39, 70], "myenv": [], "myriad": [42, 63, 70], "mz1": 67, "mz2": 67, "m\u00f8svatn": 48, "n": [24, 27, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 70, 71, 72, 73], "n1": 64, "n2": 64, "n8grai": 20, "n_": [43, 44, 45, 50, 54, 67], "n_0": [54, 67], "n_boostrap": [48, 52], "n_bootstrap": 48, "n_categori": [43, 45], "n_cluster": 56, "n_compon": 53, "n_epoch": [55, 73], "n_estim": 52, "n_examples_to_gener": 46, "n_featur": [43, 60], "n_filter": 45, "n_hidden": 44, "n_hidden_neuron": [42, 43, 70], "n_i": 67, "n_input": [42, 43, 45, 71], "n_instanc": 51, "n_iter": 73, "n_job": 52, "n_k": 56, "n_l": [54, 67], "n_layer": 43, "n_m": 51, "n_neuron": 43, "n_neurons_connect": 45, "n_neurons_layer1": 43, "n_neurons_layer2": 43, "n_point": 56, "n_sampl": [48, 50, 51, 52, 56, 60], "n_split": 48, "n_step": 46, "n_t": 44, "n_x": 44, "nabla": [43, 55, 72, 73], "nabla_": [44, 55, 72, 73], "nabla_w": 55, "nag": 55, "naimi": [42, 70], "naiv": 49, "naive_kmean": 56, "name": [16, 17, 18, 27, 30, 33, 39, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 60, 62, 63, 64, 65, 67, 68, 70, 71, 72], "namespac": 17, "narrow": [55, 73], "nathaniel": 20, "nation": [43, 47], "nativ": [29, 63, 70], "natur": [42, 43, 46, 50, 51, 54, 55, 65, 67, 69, 70, 72, 73], "navier": 54, "navig": [57, 73], "nb": 67, "nb_": 64, "nbconvert": 70, "nd": 56, "ndarrai": 48, "ne": [51, 52, 64, 67, 71, 72], "nearest": [43, 45, 48, 53], "nearli": [55, 72], "neat": 70, "neccesari": 48, "necess": 44, "necessari": [42, 43, 45, 46, 50, 56, 60, 70], "necessarili": [42, 46, 53, 67, 70], "necesserali": 47, "neck": 49, "need": [23, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 64, 67, 71, 72, 73], "neg": [42, 43, 45, 47, 48, 49, 52, 55, 64, 67, 70, 72], "neg_mean_squared_error": 48, "neglect": [67, 73], "neglig": [16, 18, 30, 33, 35, 40, 67], "neighbor": [45, 48, 53], "neither": [18, 30, 33, 46, 55, 73], "neq": [55, 56, 67, 72], "nervou": 54, "nest": [27, 51, 54], "nesterov": 55, "net": [35, 44, 46, 54], "netlib": [64, 70], "network": [42, 51, 55, 63, 69, 71], "neural": [42, 55, 63, 69, 71], "neural_network": [42, 43, 44, 70], "neuralnetwork": 43, "neuron": [43, 44, 45, 46, 54], "neutral": [42, 70], "neutron": [42, 70], "never": [43, 46, 48, 51, 67], "new": [20, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 62, 64, 70, 71, 72, 73], "new_chang": [55, 73], "new_hobbit": 70, "newaxi": [42, 45, 48, 51], "newli": [42, 70], "newlin": 29, "newton": [43, 49, 50, 55, 67], "next": [42, 43, 44, 45, 46, 47, 48, 50, 51, 55, 56, 57, 58, 70, 71, 72, 73], "next_guess": 55, "next_input": 46, "ng": 43, "ni": 56, "nice": [42, 43, 47, 53, 70, 71, 72], "nicer": [60, 73], "nip": 73, "niter": [55, 72, 73], "nitric": [], "nlambda": [42, 47, 48, 71, 72, 73], "nlp": 69, "nm": 67, "nm_n": [42, 70], "nmse": 48, "nn": [44, 47, 48, 54, 64, 70], "nn_model": 43, "nnmin": 44, "node": [27, 28, 43, 45, 51, 52, 54], "nois": [42, 46, 47, 48, 50, 51, 52, 55, 60, 61, 65, 70, 71, 72, 73], "noise_dimens": 46, "noisi": [43, 48, 65, 73], "non": [42, 43, 45, 47, 48, 49, 51, 52, 53, 54, 55, 56, 60, 64, 67, 70, 71, 72], "nondifferenti": 73, "none": [42, 43, 44, 46, 47, 51, 52, 55, 67, 70, 71], "noninfring": [19, 26, 32, 34], "nonlinear": [45, 48, 50, 51, 53, 54], "nonneg": [48, 51, 55, 72], "nonparametr": 48, "nonsens": 67, "nonsingular": 64, "nonumb": [45, 49, 50, 55, 64], "nor": [18, 30, 33, 43, 46, 55, 73], "norm": [42, 43, 47, 48, 50, 53, 55, 60, 70, 71, 72, 73], "normal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 63, 64, 65, 67, 70, 71, 72, 73], "normali": [64, 70], "norwai": [48, 65, 70, 72, 73], "notat": [42, 44, 47, 48, 55, 56, 67, 70, 71, 72], "note": [20, 22, 42, 43, 44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 56, 57, 58, 60, 63, 64, 67, 69, 70, 73], "notebook": [22, 42, 43, 45, 51, 57, 58, 61, 62, 63, 65, 70], "noteworthi": 73, "noth": [17, 29, 43, 44, 47, 50, 54, 56, 67, 71, 72], "notic": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 46, 47, 54, 55, 64, 67, 70], "notion": 45, "novel": [45, 48, 52, 70], "novemb": [43, 68, 70], "now": [29, 39, 42, 44, 46, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 61, 63, 64, 65, 67, 70, 71], "nowadai": [42, 43, 45, 51, 63, 70], "nox": [], "np": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 64, 67, 70, 71, 72, 73], "npm": [27, 28, 29], "npr": 44, "nsampl": 48, "nt": 44, "nu": 67, "nuclear": [47, 71, 72], "nuclei": [42, 67, 70], "nucleon": [42, 70], "nucleu": [42, 70], "num": 46, "num_coordin": 44, "num_hidden_neuron": 44, "num_it": [44, 60], "num_neuron": 44, "num_neurons_hidden": 44, "num_point": 44, "num_tre": 52, "num_valu": 44, "number": [29, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 64, 65, 66, 68, 70, 72], "numberid": 49, "numberparamet": 45, "numer": [42, 47, 48, 51, 52, 53, 54, 55, 63, 64, 69, 70, 71, 72, 73], "numpi": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 67, 71, 72, 73], "numpydocstr": 35, "nunmpi": [47, 71], "nve_frngahw": 72, "nx": 44, "ny": 67, "o": [42, 43, 46, 47, 48, 49, 50, 51, 53, 64, 68, 69, 70, 71, 72, 73], "obei": [48, 53, 55, 71, 73], "object": [42, 43, 46, 50, 52, 57, 61, 64, 70, 73], "obliqu": [47, 71, 72], "observ": [42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 70, 72, 73], "obtain": [19, 26, 32, 34, 42, 43, 47, 48, 49, 50, 51, 52, 54, 55, 56, 59, 64, 65, 67, 70, 71, 72, 73], "obviou": [47, 48, 53, 67, 71, 72], "obviouli": 70, "obvious": [42, 46, 47, 48, 64, 70], "oc": [71, 72], "occupi": [], "occur": [42, 48, 50, 51, 64, 67, 70], "octob": [68, 70], "od": 42, "odd": [42, 45, 49, 70, 71, 73], "odenum": 44, "odesi": 44, "oen": 42, "off": [21, 22, 23, 43, 45, 46, 47, 51, 55, 62, 67, 73], "offer": [48, 53, 63, 64, 66, 68, 70], "offic": [68, 70], "offici": [66, 70], "often": [42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 67, 70, 71, 72, 73], "ofter": [64, 70], "ol": [42, 55, 59, 61, 71, 73], "old": [43, 47, 52, 55, 57, 60], "ols_paramet": 58, "ols_sk": 48, "ols_svd": 48, "olsbeta": 72, "olstheta": [42, 47], "omega": [44, 45, 48], "omega_0": 45, "omit": [42, 47, 70, 71, 72], "onc": [43, 48, 51, 53, 55, 62], "one": [17, 20, 22, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 61, 62, 63, 64, 65, 67, 68, 70, 71, 73], "onehot": 43, "onehot_vector": 43, "onehotencod": 51, "ones": [42, 44, 47, 48, 50, 51, 52, 53, 55, 58, 60, 64, 65, 70, 71, 72, 73], "ones_lik": 46, "ong": 71, "onl": 45, "onli": [20, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 67, 70, 71, 72, 73], "onlin": [53, 57, 62, 66, 73], "onto": [39, 47, 53, 71, 72], "open": [27, 42, 43, 46, 48, 49, 51, 57, 63, 65, 66, 68, 70], "oper": [42, 43, 45, 47, 48, 52, 53, 54, 55, 57, 58, 63, 67, 70, 71, 72, 73], "operation": 67, "oplu": 67, "opmiz": [55, 73], "opportun": 42, "oppos": [48, 55], "opposit": [43, 47, 50, 71, 72], "opt": [43, 47, 65, 70, 72], "optim": [42, 44, 45, 46, 47, 48, 49, 51, 52, 53, 56, 58, 59, 61, 65], "optimis": [43, 45], "option": [27, 42, 43, 45, 47, 48, 50, 53, 57, 60, 64, 71, 73], "optmiz": [43, 50, 55, 71], "oral": 70, "orang": 42, "order": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 64, 65, 67, 70, 71, 72], "ordinari": [42, 44, 45, 49, 53, 55, 59, 60, 63], "oreilli": [69, 70], "org": [22, 29, 42, 45, 46, 58, 62, 63, 64, 65, 69, 70, 71, 72, 73], "organ": [48, 49, 52, 64], "orient": [43, 47, 67, 71, 72], "origin": [16, 25, 39, 42, 45, 47, 48, 50, 53, 54, 55, 57, 64, 70, 71, 72, 73], "orthogn": [47, 71, 72], "orthogon": [42, 47, 48, 50, 53, 55, 64, 70, 71, 72], "orthonorm": [47, 71, 72], "os": [68, 70], "oscar": 43, "oscil": [45, 55, 73], "oskar": 70, "oskarlei": 70, "osl": 60, "oslo": [42, 63, 65, 66, 68, 70, 71, 72, 73], "osx": [42, 63, 65, 70], "other": [16, 18, 19, 23, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 47, 48, 49, 50, 52, 55, 56, 58, 61, 63, 66, 67, 68, 69, 71, 72, 73], "otherwis": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 43, 46, 49, 55, 64, 70, 73], "ouput": [47, 49, 54], "our": [39, 43, 44, 45, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 61, 63, 64, 67, 73], "ourmodel": 42, "ourselv": [42, 47, 48, 50, 53, 55, 70, 71, 72], "out": [16, 18, 19, 21, 24, 26, 29, 30, 32, 33, 34, 35, 40, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 63, 64, 65, 67, 70, 71, 73], "out_fil": 51, "outcom": [42, 49, 51, 52, 54, 67, 71], "outdoor": 51, "outer": [48, 54, 55], "outfil": 46, "outlier": [42, 50, 70, 71, 73], "outlin": [48, 52, 53], "outlook": 51, "outperform": [52, 73], "output": [23, 27, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 64, 65, 67, 70, 71, 72, 73], "output_bia": 43, "output_bias_gradi": 43, "output_shap": 46, "output_weight": 43, "output_weights_gradi": 43, "outputlayer1": 54, "outputlayer2": 54, "outsid": 46, "over": [20, 42, 43, 45, 46, 47, 48, 51, 52, 54, 55, 57, 58, 61, 64, 65, 70, 71, 72, 73], "over1": 55, "overal": [43, 52, 73], "overcast": 51, "overcom": [54, 55], "overdetermin": [42, 70], "overfit": [42, 43, 45, 48, 51, 52, 55, 73], "overflow": [47, 73], "overhead": 54, "overlap": [45, 49, 50, 51], "overleaf": 62, "overlin": [42, 47, 48, 51, 52, 53, 56, 64, 70, 71, 73], "overshoot": 73, "overst": 42, "overtrain": 46, "overview": [22, 45, 62], "own": [17, 46, 47, 48, 50, 54, 55, 58, 60, 63, 64, 72, 73], "owner": [16, 40], "ownmsepredict": 42, "ownmsetrain": 42, "ownridgebeta": 71, "ownridgetheta": [42, 48, 71, 72, 73], "ownypredictridg": 42, "ownytilderidg": 42, "oxid": [], "p": [27, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 64, 67, 70, 71, 72, 73], "p0": 44, "p1": 44, "p_": [44, 46, 50, 51], "p_hidden": 44, "p_i": [47, 67], "p_j": 67, "p_n": 67, "p_output": 44, "p_x": 67, "pack": [42, 70], "packag": [17, 25, 28, 39, 42, 43, 45, 46, 47, 50, 53, 55, 57, 62, 63, 65, 67, 71, 72, 73], "packtpub": 70, "packtpublish": 70, "pad": [45, 46], "page": [21, 22, 23, 28, 42, 63, 70, 72, 73], "pai": [42, 43, 51, 55, 57, 73], "pair": [42, 44, 45, 51, 63, 67, 70], "paltform": 57, "panda": [42, 46, 47, 48, 49, 51, 53, 63, 65, 72, 73], "pandoc": 28, "panel": 70, "paper": [43, 73], "paper_fil": 73, "paradigm": [42, 70], "paragraph": 62, "parallel": [52, 55, 63, 64, 70], "param": [27, 44], "paramat": 44, "paramet": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 58, 59, 60, 61, 65, 67, 72, 73], "parameter": [42, 48, 52, 70, 71], "parametr": [42, 48, 70, 71], "paramt": [45, 47], "parser": [27, 28, 29], "part": [42, 43, 45, 47, 48, 52, 59, 61, 62, 64, 66, 67, 68, 70, 71], "partial": [42, 43, 47, 48, 49, 50, 52, 53, 54, 55, 58, 67, 70, 71, 72, 73], "particip": [57, 63, 66, 68, 70], "particl": [42, 46, 55, 67, 70], "particular": [16, 18, 19, 21, 26, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 58, 65, 67, 69, 70, 71, 72, 73], "particularli": [47, 48, 50, 53, 55, 67, 71, 72, 73], "partit": [43, 46, 51], "partli": [48, 70], "partner": 57, "pass": [44, 45, 54, 56, 73], "password": 65, "past": [52, 67, 73], "patch": [48, 67], "path": [17, 23, 42, 46, 48, 49, 51, 63, 70, 73], "pathcollect": 59, "patholog": 29, "patient": 49, "patter": 46, "pattern": [42, 45, 46, 54, 69, 70, 73], "pauli": [35, 42, 70], "pav": 35, "pc": [53, 57, 63], "pca": [42, 49, 63, 70, 71], "pd": [42, 46, 47, 48, 49, 51, 53, 70, 71, 72, 73], "pde": 44, "pdf": [42, 45, 46, 47, 48, 51, 57, 58, 61, 62, 65, 69, 70], "pedagog": [42, 70, 71], "penal": [48, 60, 71, 73], "penalti": [48, 55, 60, 65, 71, 73], "penros": [47, 48], "pentagon": [55, 72], "peopl": [43, 51, 55, 63, 73], "per": [42, 43, 48, 66, 68, 70, 73], "percentag": [52, 53, 68], "perceptron": [42, 43, 49, 70], "peregrin": 70, "perez": 20, "perfect": [42, 43, 55, 70, 73], "perfectli": [46, 48], "perform": [42, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 56, 58, 60, 61, 63, 64, 65, 67, 70, 71, 72, 73], "performac": 46, "perhap": [42, 47, 55, 70, 71, 72, 73], "perimet": 43, "period": [43, 46, 67], "permiss": [16, 18, 19, 26, 30, 32, 33, 34, 57], "permit": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "permut": 53, "persist": 55, "person": [19, 20, 26, 32, 34, 47, 48, 49, 58, 62, 66, 68, 70, 71], "perspect": 69, "pertin": [54, 70], "petal": [50, 51], "peter": [25, 69, 71], "phantom": 67, "phase": [39, 48, 54], "phenomena": 67, "phenomenon": 73, "phi": 50, "phi_k": 50, "philipp": 25, "philosophi": 55, "phone": [68, 70], "photo": [46, 70], "php": 65, "phrase": [39, 42, 70], "physic": [42, 43, 46, 49, 54, 55, 67, 68, 69, 70, 71, 72, 73], "pi": [29, 44, 45, 47, 48, 49, 51, 54, 55, 67], "pick": [43, 51, 52, 53, 55, 56, 73], "pickl": 43, "pictur": [42, 70], "pie": [63, 70], "piec": [53, 56], "pillow": [42, 63, 65, 70], "pinv": [47, 48, 55, 65, 71, 72, 73], "pip": [42, 43, 57, 63, 65, 70], "pip3": [42, 43, 65, 70], "pipelin": [42, 48, 50, 52, 71], "pippin": 70, "pit": 46, "pitfal": [48, 71], "pitt": 54, "pixel": [43, 45, 46, 70], "pixel_height": [43, 45], "pixel_width": [43, 45], "pkg_resourc": 17, "pkgutil": 17, "place": [42, 46, 48, 50, 55, 57, 64, 65, 70, 72], "plai": [42, 45, 46, 47, 48, 50, 53, 60, 63, 65, 70, 71, 72], "plain": [50, 52, 54, 55, 56, 72, 73], "plan": [48, 51, 68, 69, 70], "plane": [50, 51], "plateau": [47, 72, 73], "platform": [63, 70], "plausibl": 54, "pleas": [55, 65, 68, 70], "plenti": 43, "plethora": [45, 54], "plot": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73], "plot_all_sc": [65, 71], "plot_confusion_matrix": [49, 52], "plot_count": 48, "plot_cumulative_gain": [49, 52], "plot_data": 43, "plot_dataset": 50, "plot_decision_boundari": [51, 52], "plot_import": 52, "plot_max": 46, "plot_min": 46, "plot_model": 46, "plot_numb": 46, "plot_predict": 50, "plot_regression_predict": 51, "plot_result": 46, "plot_roc": [49, 52], "plot_surfac": [44, 48, 55], "plot_train": 51, "plot_tre": [51, 52], "plt": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61, 64, 67, 70, 71, 72, 73], "plu": [42, 45, 47, 49, 60, 70, 71], "plugin": [17, 27, 28, 29], "pm": 50, "pmatrix": 44, "pml": 69, "pn": 45, "png": [42, 46, 48, 49, 51, 70], "point": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 60, 61, 62, 64, 65, 67, 68, 70, 71, 72, 73], "point_1": 46, "point_2": 46, "poisson": [63, 67, 70], "poli": [48, 50], "poly100_kernel_svm_clf": 50, "poly3": 42, "poly3_plot": 42, "poly_featur": [50, 51, 57], "poly_features10": 51, "poly_fit": 51, "poly_fit10": 51, "poly_kernel_svm_clf": 50, "poly_model": 57, "poly_ms": 57, "poly_predict": 57, "polydegre": [42, 47, 48, 52, 71], "polygon": [55, 72], "polym": 54, "polymi": 65, "polynomi": [42, 47, 48, 49, 50, 51, 52, 53, 57, 59, 61, 62, 65, 70, 71, 73], "polynomial_featur": [48, 57, 58, 59], "polynomial_svm_clf": 50, "polynomialfeatur": [42, 48, 50, 51, 57, 58, 61, 71], "polytrop": [42, 48], "pool": 45, "pool_siz": 45, "poor": [43, 55, 72, 73], "poorli": [42, 71], "popul": [42, 47, 70, 71], "popular": [42, 43, 45, 48, 49, 50, 51, 53, 54, 57, 63, 64, 65, 67, 71], "popularli": [42, 70], "portabl": 52, "portion": [19, 26, 32, 34, 53, 55, 73], "pose": [42, 46, 47, 48, 53, 67, 70], "posit": [42, 43, 44, 45, 47, 49, 50, 52, 53, 55, 56, 64, 67, 70, 71, 72, 73], "possibl": [16, 18, 30, 33, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 63, 64, 65, 67, 68, 70, 71, 72, 73], "possibli": [48, 50, 55, 65], "post": 24, "posterior": 47, "postpon": [42, 71], "postscript": 65, "postul": 47, "potenti": [42, 45, 47, 48, 54, 55, 71, 73], "pott": 54, "power": [22, 42, 43, 47, 48, 50, 51, 54, 55, 70, 71, 72, 73], "pp": [47, 48, 61], "practic": [42, 47, 48, 49, 50, 58, 60, 61, 65, 67, 71], "practition": [42, 43, 45, 70, 73], "pre": 70, "preambl": 17, "preced": [43, 53, 54, 67], "preceed": 46, "preceq": 50, "precis": [42, 44, 47, 53, 55, 64, 65, 67, 70, 71, 73], "pred": 48, "predicit": 42, "predict": [42, 43, 47, 48, 49, 50, 51, 52, 57, 58, 59, 61, 63, 65, 69, 70, 71, 72, 73], "predict_prob": 43, "predict_proba": [49, 52], "predictor": [42, 47, 48, 49, 51, 52, 53, 70, 71, 73], "prefer": [42, 43, 48, 50, 51, 53, 55, 57, 62, 63, 65, 70], "prepar": [42, 48, 64, 65, 70, 71], "preprocess": [42, 46, 48, 49, 50, 51, 52, 53, 57, 58, 59, 60, 61, 65], "prerequisit": 42, "prescript": 65, "presenc": [23, 55], "present": [42, 47, 48, 49, 51, 54, 55, 64, 65, 67, 70, 71, 72, 73], "preserv": [45, 53, 64], "press": [55, 57, 69, 72], "pretrain": [43, 46], "pretti": [42, 46, 50, 51, 63, 65, 70], "prettier": 39, "prev_centroid": 56, "prevent": [55, 67, 73], "previou": [42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 57, 58, 64, 65, 67, 71, 72, 73], "previous": [44, 45, 51, 52, 67], "price": [42, 46, 51, 55, 73], "primal": 50, "primari": [42, 49, 70], "prime": 67, "princip": [42, 47, 49, 63, 70, 71, 72], "principl": [42, 48, 49, 50, 56, 70], "print": [23, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 60, 64, 67, 70, 71, 72, 73], "print_funct": [50, 51], "printout": [42, 70], "prior": [16, 18, 30, 33, 42, 47, 48, 70], "privat": 42, "prob": [43, 67], "probabilist": [42, 69, 70, 71], "probabl": [42, 43, 45, 46, 48, 49, 52, 55, 63, 70, 71, 73], "problem": [42, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 63, 64, 65, 67], "probml": 69, "proce": [42, 47, 48, 49, 50, 51, 52, 53, 55, 64, 70, 71], "procedur": [44, 46, 47, 48, 50, 52, 53, 55, 71, 72, 73], "proceed": 64, "process": [29, 42, 44, 46, 48, 51, 52, 54, 55, 63, 64, 65, 67, 69, 70, 72, 73], "procur": [16, 18, 30, 33, 35, 40], "prod": 69, "prod_": [43, 47, 49], "produc": [42, 45, 46, 47, 48, 51, 52, 53, 54, 55, 60, 62, 63, 64, 67, 70, 71], "product": [16, 18, 30, 33, 42, 43, 45, 47, 48, 49, 50, 54, 55, 58, 59, 63, 64, 70, 71, 73], "profess": [42, 70], "profit": [16, 18, 30, 33, 35, 40], "program": [42, 43, 46, 47, 48, 50, 54, 56, 57, 63, 64, 66, 67, 68, 70, 71], "programm": 64, "progress": [43, 46, 56, 73], "prohibit": 48, "project": [20, 35, 42, 43, 44, 45, 47, 53, 55, 57, 61, 63, 66, 71, 72, 73], "project_root_dir": [42, 48, 49, 51, 70], "promin": 54, "promis": 50, "promot": [16, 18, 30, 33, 68, 70], "prompt": 62, "prone": [51, 57], "pronounc": [55, 63, 70, 73], "proof": [42, 53, 54, 55, 70, 72], "prop": 73, "prop_cycl": 24, "propag": [44, 45, 55, 73], "proper": [42, 44, 48, 49, 62], "properli": [22, 43, 48, 50, 52, 55, 60, 62, 65, 73], "properti": [29, 42, 43, 45, 54, 55, 58, 64, 70], "proport": [42, 43, 47, 51, 53, 55, 67, 70, 71], "propos": [43, 46, 48, 52, 65, 70, 73], "propto": [47, 55, 72, 73], "proton": [42, 70], "prove": [45, 55, 72, 73], "provid": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40, 42, 43, 45, 46, 47, 48, 50, 51, 52, 54, 55, 62, 63, 64, 65, 67, 70, 71, 72, 73], "proxi": [43, 55, 73], "prune": 51, "pseudo": [64, 67, 73], "pseudocod": 65, "pseudoinv": 47, "pseudoinvers": [47, 48, 65], "pseudorandom": [48, 67], "psychologi": [42, 70], "pt": 55, "public": [42, 57, 63, 70], "publish": [19, 26, 32, 34], "pull": 57, "punish": [42, 43, 70], "pure": [45, 51, 67], "purest": 51, "puriti": 51, "purpos": [16, 18, 19, 22, 26, 30, 32, 33, 34, 35, 40, 42, 45, 52, 54, 56, 70], "push": 57, "put": [39, 43, 62, 73], "py": [17, 39, 47], "pybtex": 32, "pycod": 70, "pydata": 63, "pydevd_extension_api": 17, "pydevd_plugin": 17, "pydevd_plugin_plugin_nam": 17, "pydot": 51, "pygment": 0, "pyhton2": 70, "pylab": [49, 70], "pypi": 63, "pyplot": [24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61, 64, 67, 70, 71, 72, 73], "pythagora": 47, "python": [17, 26, 39, 43, 44, 45, 47, 48, 50, 53, 54, 55, 56, 60, 62, 65, 67, 71, 73], "python2": [42, 65], "python3": [42, 63, 65, 70], "pythonpath": 17, "pytorch": [42, 63, 65, 70], "pyzmq": 41, "q": [47, 48, 50, 53, 67], "qp": 50, "qquad": [44, 53, 55, 64, 73], "qr": [47, 48, 64, 71, 72], "quad": [43, 55, 64], "quadrat": [42, 50, 51, 55, 70], "qualit": [46, 51, 65, 67], "qualiti": [42, 51, 63, 70, 71], "quantifi": 43, "quantil": 52, "quantit": [42, 48, 51, 65, 70], "quantiti": [42, 44, 47, 48, 49, 51, 52, 53, 54, 56, 58, 64, 67, 70, 71, 72, 73], "quantum": [46, 54, 69, 70], "quartil": [42, 71, 73], "quench": 47, "queri": 51, "question": [42, 47, 48, 51, 53, 54, 55, 65, 68, 70, 71, 73], "qugan": 46, "quick": [46, 67], "quicker": 73, "quickli": [43, 45, 51, 53, 55, 72, 73], "quit": [43, 47, 48, 51, 52, 54, 57, 71, 72], "quot": 46, "r": [29, 31, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 63, 64, 65, 67, 71, 72, 73], "r2": [42, 47, 48, 61, 70, 71, 72], "r2_score": [42, 70], "r2score": [42, 70], "r_": 73, "r_0": 73, "r_1": 51, "r_2": 51, "r_j": 51, "r_m": 51, "r_t": 73, "rad": [], "rade": [], "radial": [50, 54], "radioact": 67, "radiu": [42, 43, 71, 73], "radziej": 25, "ragan": 33, "rain": 51, "ram": 73, "ramanujam": 31, "ramp": 43, "ran0": 67, "ran1": 67, "ran2": 67, "ran3": 67, "rand": [42, 46, 47, 48, 51, 52, 55, 57, 61, 64, 70, 71, 72, 73], "randint": [48, 51, 55, 73], "randn": [24, 42, 43, 44, 47, 48, 51, 53, 55, 57, 60, 70, 71, 72, 73], "random": [24, 42, 43, 44, 45, 46, 47, 48, 50, 51, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 70, 71, 72, 73], "random_forest_model": 52, "random_index": [55, 73], "random_indic": [43, 45], "random_st": [49, 50, 51, 52, 53], "randomforestclassifi": 52, "randomli": [43, 48, 51, 55, 56, 60, 72, 73], "rang": [24, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 60, 61, 64, 67, 70, 71, 72, 73], "rangl": [42, 48, 53, 67, 70, 71], "rangle_x": 67, "rank": [47, 71, 72], "rankdir": 46, "raphson": [43, 50, 55], "rapidli": [42, 73], "rare": [43, 55, 73], "raschka": [70, 71], "rasckha": 70, "rashcka": [72, 73], "rate": [43, 44, 45, 46, 50, 51, 52, 54, 55, 60, 72], "rather": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 64, 67, 70, 71, 72], "ratio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 46, 49, 51, 52, 53], "rational": [42, 70], "ravel": [47, 48, 49, 50, 51, 52, 53, 55, 64], "raw": [39, 45, 73], "rbf": [50, 53, 54], "rbf_kernel_svm_clf": 50, "rbf_pca": 53, "rc": 67, "rcond": [42, 70, 71], "rcparam": [24, 43, 45, 49, 50, 51, 52, 67, 70], "re": [44, 46, 55, 57, 72], "reach": [43, 46, 47, 48, 51, 52, 54, 55, 56, 72, 73], "react": 29, "read": [39, 42, 44, 45, 46, 47, 48, 49, 50, 53, 54, 58, 59, 61, 62, 64, 65, 67, 69, 72], "read_csv": [42, 48, 49, 51], "read_fwf": [42, 70], "reader": [42, 48, 62, 64, 67, 70, 71, 73], "readi": [42, 43, 47, 48, 50, 52, 53, 54, 64, 70], "readili": 43, "readm": [57, 62], "readthedoc": 63, "real": [42, 43, 46, 49, 52, 53, 54, 58, 60, 61, 64, 71], "real_loss": 46, "real_output": 46, "realist": [50, 70], "realiti": 67, "realiz": [43, 54], "realli": [42, 43, 70], "rearrang": 55, "reason": [42, 43, 45, 46, 52, 55, 69, 70, 72, 73], "reassign": 43, "recal": [47, 48, 51, 52, 53, 54, 64, 67, 70, 71, 72, 73], "recast": 45, "receiv": [43, 45, 52, 54, 67], "recent": [42, 48, 55, 69, 73], "recept": [45, 54], "receptive_field": 45, "recip": [25, 42, 48, 49, 64, 65, 70, 71], "reciproc": 47, "recogn": [42, 46, 47, 52, 70], "recognit": [42, 43, 45, 54, 69, 70], "recommen": 70, "recommend": [42, 44, 45, 46, 47, 48, 50, 55, 57, 61, 62, 63, 64, 65, 69, 72, 73], "reconsid": 51, "reconstruct": 53, "record": [20, 52, 65, 66, 68, 70], "recreat": 57, "rectangl": [51, 55, 72], "rectangular": [47, 71, 72], "rectifi": [43, 45, 54], "recur": [42, 63, 70], "recurr": [42, 43, 63, 70], "recurs": [51, 63, 64, 70], "red": [42, 45, 46, 48, 50, 51, 73], "redefin": [42, 52, 70, 71, 72], "redefinit": 72, "redistribut": [16, 18, 30, 33, 35, 40], "reduc": [43, 45, 47, 48, 51, 52, 53, 55, 70, 72, 73], "reduct": [42, 52, 53, 63, 67, 70, 71], "reegress": 65, "ref": 62, "refer": [22, 42, 43, 44, 45, 47, 48, 53, 54, 55, 56, 62, 64, 69, 70, 71, 72, 73], "referansestil": 62, "referenc": 44, "refin": 54, "refit": 48, "reflect": [42, 43, 46, 47, 65, 67, 70], "refresh": [63, 70], "refreshprogrammingskil": 70, "reg": [52, 53], "regard": [43, 51, 55], "regardless": [54, 58], "regexp": 29, "regim": 73, "region": [45, 46, 48, 51, 54, 65, 73], "regist": [17, 48, 67], "reglasso": [47, 72], "regr_1": [42, 51], "regr_2": [42, 51], "regr_3": [42, 51], "regress": [43, 50, 53, 54, 58, 62, 63, 64], "regressor": [42, 49, 52], "regret": [], "regridg": [42, 47, 48, 71, 72, 73], "regular": [22, 29, 42, 45, 46, 47, 48, 49, 51, 55, 59, 60, 68, 70, 71, 72, 73], "regularli": 57, "reilli": [42, 69, 70], "reinforc": [42, 50, 63, 70], "reiter": 43, "reitz": 16, "reject": 49, "rel": [29, 42, 46, 48, 49, 51, 54, 55, 67, 70, 71, 73], "relat": [42, 43, 45, 46, 47, 53, 55, 56, 61, 64, 67, 70, 71, 72], "relationship": [42, 46, 51, 60, 70], "relativeerror": [42, 70, 71], "releas": [43, 63, 70], "relev": [42, 43, 47, 49, 53, 63, 65, 67, 70, 72, 73], "reli": [42, 48, 50, 73], "reliabilti": 65, "reliabl": [49, 67], "relu": [45, 46, 70], "remain": [43, 44, 46, 48, 54, 64, 67, 71, 73], "remaind": 67, "reman": 44, "remark": 43, "rememb": [42, 50, 55, 62, 64, 65, 70, 73], "remind": [42, 47, 53, 55, 61, 64, 67], "remot": 57, "remov": [29, 46, 47, 48, 60, 71, 72, 73], "renam": [39, 57], "render": [22, 27, 28, 29, 42, 70, 71], "reorder": [47, 49, 71, 72], "reorgan": [42, 70], "repeat": [42, 43, 45, 46, 47, 48, 51, 52, 53, 55, 56, 64, 65, 67, 70, 71, 72, 73], "repeated": 70, "repeatedli": [42, 48, 52, 55], "repet": 45, "repetit": [48, 70, 71], "rephras": [55, 72], "replac": [42, 43, 45, 46, 47, 48, 52, 54, 56, 63, 65, 70, 71, 72], "replica": 48, "repo": [57, 65], "report": [70, 73], "repositori": [20, 39, 46, 62, 65, 70], "reposotori": [], "repres": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 65, 67, 70, 71, 72, 73], "represent": [42, 43, 45, 48, 67, 70], "representd": 45, "reproduc": [16, 18, 24, 30, 33, 35, 40, 42, 47, 48, 51, 54, 57, 58, 60, 62, 63, 67, 70, 71], "repuls": [42, 70], "request": [29, 42, 55, 73], "requir": [27, 28, 29, 42, 43, 45, 46, 47, 48, 50, 51, 53, 54, 55, 57, 59, 60, 61, 62, 64, 70, 71, 72, 73], "res1": 44, "res2": 44, "res3": 44, "res_analyt": 44, "res_analytical1": 44, "res_analytical2": 44, "res_analytical3": 44, "resaml": 48, "resampl": [42, 49, 52, 63, 70, 71], "rescal": [42, 53, 54, 73], "rescu": 47, "reseach": 48, "research": [42, 46, 55, 63, 69, 70, 73], "resembl": [48, 67], "reserv": [16, 18, 30, 33, 35, 40, 43, 47, 48, 67], "reshap": [42, 43, 44, 45, 46, 48, 50, 51, 52, 64, 70, 71], "resid": 73, "residenti": [], "residu": [42, 47, 55, 70], "resiz": [47, 71, 72], "resnet": 73, "resort": 73, "resourc": [70, 73], "respect": [42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 55, 56, 58, 59, 60, 65, 67, 70, 71, 72, 73], "respond": 54, "respons": [42, 49, 51, 54, 70, 71], "rest": [23, 42, 47, 60, 71, 72, 73], "restat": [42, 54, 70], "restor": 46, "restored_discrimin": 46, "restored_gener": 46, "restrict": [19, 26, 32, 34, 42, 45, 51, 54, 70], "result": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 70, 73], "retail": [], "retain": [16, 18, 30, 33, 35, 40, 47, 48, 71, 72, 73], "return": [27, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 58, 59, 64, 67, 70, 71, 72, 73], "return_data": 56, "return_sequ": 46, "return_x_i": 51, "reus": [43, 45, 48, 61, 62, 65], "reveal": [42, 54, 70], "revers": [43, 64], "review": [63, 64], "revis": 20, "revisit": 56, "revolut": 70, "reward": [42, 46, 70], "rewrit": [42, 45, 47, 48, 49, 50, 52, 53, 54, 55, 58, 61, 64, 65, 67, 72, 73], "rewritten": [44, 48, 50, 52, 67], "rewrot": 55, "rf": 52, "rgb": 45, "rgoj5yh7evk": 63, "rh": 48, "rho": [42, 52, 55, 73], "rho_1": 52, "rho_2": 52, "rho_m": 52, "rich": [42, 70], "ride": 51, "rideclass": 51, "ridedata": 51, "ridg": [49, 53, 55, 62, 63, 70], "ridge_paramet": 59, "ridge_sk": 48, "ridgebeta": 72, "ridgetheta": 47, "right": [16, 18, 19, 26, 29, 30, 32, 33, 34, 35, 40, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 59, 61, 64, 65, 67, 70, 71, 72, 73], "right_sid": 44, "rightarrow": [42, 43, 47, 48, 50, 53, 54, 55, 67, 70, 71, 72, 73], "rigor": [42, 70, 71, 72], "ring": 48, "rise": [42, 70], "risk": [42, 55, 70, 72, 73], "rival": 46, "river": [], "rlm": 70, "rm": [67, 73], "rmse": [], "rmsporp": [55, 73], "rmsprop": [43, 45, 46, 55, 65], "rnd_clf": 52, "rng": 67, "rnn": [46, 54], "rnn1": 46, "rnn2": 46, "rnn_2layer": 46, "rnn_input": 46, "rnn_output": 46, "rnn_train": 46, "rntrick1": 67, "rntrick2": 67, "rntrick3": 67, "rntrick4": 67, "ro": [42, 55, 70, 72, 73], "robert": [61, 65, 69], "robust": [25, 42, 70, 73], "robustscal": [42, 71, 73], "roc": [49, 52], "role": [42, 44, 47, 48, 50, 60, 63, 65, 70, 71, 72, 73], "roll": 48, "ronach": 16, "room": [42, 68, 70], "root": [17, 42, 47, 51, 55, 57, 67, 71, 72, 73], "root_directori": 17, "rot": 70, "rotat": [43, 50, 51, 52], "rotation_matrix": 51, "roughli": [43, 45, 60], "round": [49, 51, 55], "routin": [55, 64, 70, 72], "row": [42, 43, 44, 47, 48, 51, 53, 58, 64, 70, 71, 72], "rr": [29, 47, 71, 72], "rrr": [47, 71, 72], "rubric": 38, "rudg": [], "rug": [55, 72, 73], "rule": [42, 43, 47, 48, 55, 65, 70, 71, 72], "run": [23, 39, 42, 43, 44, 46, 47, 48, 50, 51, 53, 55, 57, 62, 63, 65, 70, 71, 72, 73], "runtim": [43, 48, 56, 57], "rust": [42, 63, 64, 70], "rvert": 43, "rvert_2": 43, "s_": [45, 48], "s_1": 48, "s_i": [48, 49], "s_j": 48, "s_k": 48, "s_phenomenon": 65, "saddl": [55, 72, 73], "safeguard": [60, 73], "sai": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 61, 64, 65, 67, 70, 71, 72, 73], "said": [48, 51, 55, 72], "sake": [42, 47, 49, 53, 70, 71, 72], "sale": [42, 70], "sam": 70, "same": [22, 27, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 54, 56, 57, 58, 60, 62, 64, 65, 67, 70, 71, 72], "samm": 52, "sampl": [21, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 60, 61, 63, 64, 65, 67, 70, 71, 73], "sample_vari": 56, "sampleexptvari": 67, "samwis": 70, "sastri": 53, "satisfactori": [42, 70], "satisfi": [43, 44, 45, 48, 50, 55, 64, 67, 72], "satur": [43, 48], "save": [27, 28, 42, 46, 48, 49, 51, 55, 62, 70, 73], "save_fig": [42, 48, 49, 51, 52, 70], "savefig": [42, 46, 48, 49, 51, 67, 70], "savetxt": 46, "saw": [47, 71], "scalabl": 52, "scalar": [44, 47, 48, 52, 71], "scale": [42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 63, 64, 65, 68, 70, 72], "scale_mean": 46, "scale_std": 46, "scaler": [42, 49, 50, 51, 52, 53, 59, 65, 71], "scan": [47, 49], "scari": 47, "scatter": [42, 43, 48, 49, 50, 51, 56, 57, 59, 70, 71, 73], "scenario": [48, 55, 72, 73], "schedul": [55, 73], "scheme": [43, 55, 72, 73], "schrage": 67, "sch\u00f8yen": [48, 71, 73], "scienc": [42, 43, 52, 54, 55, 63, 66, 67, 68, 69, 72], "scientif": [42, 62, 63, 65, 70], "scientist": [29, 42, 70], "scikit": [45, 47, 48, 50, 51, 52, 55, 57, 58, 62, 63, 64, 65, 69], "scikit_learn": 42, "scikitlearn": 70, "scikitplot": [49, 52], "scipi": [42, 45, 47, 48, 55, 63, 64, 65, 70, 71, 72], "scl": 48, "scm": 57, "score": [42, 43, 45, 48, 49, 51, 52, 53, 57, 58, 61, 65, 68, 70, 71, 73], "scores_kfold": 48, "scratch": [43, 55, 58], "script": [28, 29, 39], "sdg": [55, 73], "sdv4f4s2sb8": [72, 73], "seaborn": [42, 43, 45, 48, 49, 70], "seamless": [42, 63, 65, 70], "search": [42, 43, 45, 47, 51, 55, 57, 70, 72, 73], "sebastian": 70, "sebastianraschka": 70, "sec": 48, "second": [42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 56, 57, 58, 62, 63, 64, 67, 68, 70, 71, 72], "second_mo": 73, "second_term": 73, "secondari": 73, "secondeigvector": 53, "secondli": 54, "section": [46, 53, 58, 62, 64, 65, 67, 71, 73], "sector": 42, "see": [20, 21, 22, 23, 24, 27, 28, 35, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 57, 58, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73], "seed": [24, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 55, 56, 60, 62, 67, 70, 71, 72, 73], "seed_imag": 46, "seek": [43, 44, 50], "seem": [43, 45, 46, 73], "seemingli": [42, 70], "seen": [42, 43, 45, 47, 52, 54, 67], "segment": [55, 72], "seismic": 48, "seldomli": [42, 70], "select": [39, 43, 47, 48, 50, 51, 52, 53, 57, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73], "selevet": 57, "self": [43, 47, 71], "sell": [19, 26, 32, 34, 46], "semest": [49, 66], "semi": [50, 55, 72, 73], "semilogx": 48, "send": [47, 54, 55, 68, 70], "senior": [66, 68], "sens": [42, 46, 48, 50, 70], "sensibl": 45, "sensit": [42, 47, 48, 51, 55, 70, 71, 73], "sent": 44, "sentenc": [46, 54], "separ": [42, 43, 44, 46, 48, 50, 51, 54, 56, 60, 63, 65, 67, 70, 73], "septemb": [60, 65, 70], "sequenc": [45, 46, 49, 51, 52, 54, 55, 63, 64, 67, 70, 72], "sequenti": [43, 45, 46, 52, 54, 67], "seri": [42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 64, 70, 71, 72], "serif": [49, 67, 70], "serv": [22, 42, 43, 44, 45, 47, 49, 55, 69, 70, 71, 72, 73], "servic": [16, 18, 30, 33, 35, 39, 40, 65], "session": [43, 57, 62, 65, 66, 68, 70], "set": [20, 29, 43, 46, 47, 48, 49, 50, 52, 53, 55, 56, 58, 59, 60, 63, 64, 65, 67, 68, 73], "set_major_formatt": 48, "set_major_loc": 48, "set_tick": [43, 50], "set_ticklabel": 43, "set_titl": [42, 43, 44, 45, 49, 54, 56, 70], "set_xlabel": [42, 43, 44, 45, 49, 54, 70], "set_xlim": [49, 54], "set_xticklabel": 43, "set_ylabel": [42, 43, 44, 45, 49, 70], "set_ylim": [49, 54], "set_ytick": 49, "set_yticklabel": [43, 48], "set_zlim": 48, "seth": 46, "setminu": 48, "setosa": [50, 51], "setosa_or_versicolor": 50, "setp": 48, "setup": [43, 46, 48, 50, 63, 70, 71, 72], "sever": [42, 45, 47, 48, 49, 50, 51, 53, 54, 55, 58, 63, 64, 65, 67, 70, 71, 72, 73], "sgd": [43, 45, 72], "sgd_clf": 50, "sgdclassifi": 50, "sgdreg": 55, "sgdregressor": 55, "sgn": [47, 71, 72], "shall": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "shallow": [55, 73], "shape": [42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 64, 70, 71, 72, 73], "share": [20, 43, 45, 57, 70], "shareabl": 57, "she": 49, "shibukawa": 19, "shift": [43, 48, 54, 57, 60, 67, 71, 73], "ship": 45, "shire": 70, "short": [39, 46, 47, 62, 65], "shortcom": [55, 72, 73], "shorten": 46, "shorter": 67, "shorthand": 70, "shortli": [64, 70], "should": [20, 23, 27, 39, 42, 44, 45, 47, 48, 50, 51, 53, 54, 57, 60, 61, 62, 64, 65, 67, 70, 71, 73], "show": [21, 22, 23, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 65, 67, 70, 71, 72, 73], "show_shap": 46, "shown": [42, 46, 47, 50, 54, 55, 64, 71, 72, 73], "shrink": [45, 47, 48, 50, 53, 71, 72, 73], "shrinkag": [47, 48, 71, 72], "shrunk": 53, "shuffl": [42, 43, 46, 48, 55, 71, 73], "side": [42, 44, 47, 50, 54, 55, 64, 65, 70, 72], "sigh": [63, 70], "sigma": [42, 43, 47, 48, 49, 52, 53, 54, 55, 61, 64, 65, 67, 70, 71, 72, 73], "sigma0": 67, "sigma1": 67, "sigma2": 67, "sigma_": [47, 64, 70, 71, 72], "sigma_0": [47, 71, 72], "sigma_1": [47, 71, 72], "sigma_2": [47, 71, 72], "sigma_fn": [49, 54], "sigma_i": [42, 47, 70, 71, 72], "sigma_j": [47, 71, 72], "sigma_m": [48, 67], "sigma_n": [53, 67], "sigma_t": 55, "sigma_x": 67, "sigmoid": [43, 44, 46, 49, 50, 52, 54], "sigmundson": [48, 71, 73], "sign": [24, 43, 44, 49, 50, 52, 67, 68], "signal": [43, 45, 52, 54, 73], "signifi": 46, "signific": [43, 73], "significantli": [43, 55, 60, 67, 72, 73], "sim": [46, 47, 48, 55, 61, 67], "similar": [22, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 60, 63, 64, 65, 70, 72], "similarli": [42, 43, 45, 47, 50, 52, 55, 67, 70, 71, 72, 73], "simpl": [22, 25, 29, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 58, 59, 63, 64, 67], "simplepredict": 52, "simpler": [25, 42, 43, 47, 48, 49, 55, 58, 63, 65, 70, 72, 73], "simplernn": 46, "simplest": [42, 43, 45, 46, 51, 52, 54, 56, 65, 70], "simpletre": 52, "simpli": [42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 63, 64, 65, 67, 70, 71, 72, 73], "simplic": [44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 71, 72, 73], "simplicti": [47, 71, 72], "simplifi": [29, 42, 48, 51, 60, 63, 65, 70, 71, 73], "simplist": [45, 48, 67], "simul": [48, 60, 73], "simultan": [48, 73], "sin": [42, 43, 44, 45, 46, 51, 54, 55, 64, 70], "sinc": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 58, 60, 64, 65, 67, 69, 70, 71, 72, 73], "sine": [45, 54], "singl": [20, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 60, 61, 64, 67, 70, 71, 72, 73], "singular": [42, 48, 55, 64, 70], "sinusoid": 45, "site": [42, 65, 66, 71], "situat": [42, 46, 47, 49, 55, 67, 70, 71, 72, 73], "six": [45, 67], "size": [42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 60, 62, 64, 65, 67, 70], "sizesp": 73, "sketch": 52, "ski": 51, "skill": 42, "skip": 53, "skl": [42, 48, 70, 71, 73], "sklearn": [42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 61, 62, 70, 71, 72, 73], "skplt": [49, 52], "sl": [48, 71, 73], "slack": 50, "slender": 31, "slice": [44, 64, 70], "slide": [42, 45, 58, 65, 67, 70, 71, 72], "slight": [22, 48, 55], "slightli": [43, 44, 45, 47, 48, 49, 52, 67, 71, 72], "slope": [50, 53, 54], "slow": [42, 44, 50, 55, 60, 71, 72, 73], "slower": [47, 64, 70, 71, 72, 73], "slowest": 64, "slowli": [54, 73], "slp": 43, "small": [21, 22, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 55, 60, 63, 64, 67, 70, 71, 72, 73], "smaller": [42, 43, 44, 47, 48, 50, 51, 53, 55, 67, 70, 71, 72, 73], "smallest": [42, 46, 56, 70], "smallest_row_index": 56, "smodin": 39, "smooth": [42, 45, 48, 55, 65, 70, 72, 73], "smoother": 73, "sn": [42, 43, 45, 48, 49, 70], "sne": 53, "so": [19, 23, 26, 29, 32, 34, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 67, 68, 70, 71, 72, 73], "soar": 48, "social": 42, "soft": [43, 49, 52, 54], "soften": 50, "softmax": [45, 49], "softwar": [16, 18, 19, 26, 30, 32, 33, 34, 40, 42, 50, 63, 64], "sokogskriv": 62, "sol": 50, "sole": [42, 48, 70], "solid": [42, 49], "solut": [42, 43, 44, 45, 47, 48, 50, 52, 53, 55, 60, 64, 65, 67, 70, 71, 72, 73], "solution_ev": 73, "soluton": 44, "solv": [42, 43, 45, 47, 48, 50, 52, 53, 54, 55, 58, 64, 65, 70, 71], "solve_expdec": 44, "solve_ode_deep_neural_network": 44, "solve_ode_neural_network": 44, "solve_pde_deep_neural_network": 44, "solveod": 44, "solveode_popul": 44, "solver": [44, 49, 50, 51, 52, 64, 70], "some": [16, 21, 22, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 65, 67, 70, 73], "some_model": [48, 71, 73], "somehow": 46, "someon": 58, "someth": [42, 43, 45, 46, 49, 51, 53, 57, 61, 62, 65, 67, 70, 71], "sometim": [42, 43, 53, 54, 55, 56, 61, 71, 73], "soon": [64, 68, 71], "sophist": [42, 70], "sopt": 55, "sort": [47, 48, 51, 53, 67], "sound": [45, 47], "sourc": [16, 18, 20, 30, 33, 35, 40, 42, 43, 45, 48, 63, 64, 65, 67, 70, 73], "space": [42, 43, 46, 47, 50, 51, 53, 54, 55, 56, 67, 71, 72, 73], "span": [22, 42, 45, 47, 51, 53, 64, 70, 71, 72], "spare": 43, "spars": [45, 48, 60, 64, 70, 73], "sparse_mtx": [64, 70], "sparsecategoricalcrossentropi": 45, "sparsiti": [52, 60], "spatial": [43, 44, 45, 54], "speak": 67, "special": [16, 18, 22, 30, 33, 35, 40, 48, 49, 52, 54, 55, 64, 67, 70, 71, 72, 73], "specif": [16, 18, 20, 22, 30, 33, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 57, 58, 63, 64, 65, 67, 69, 70, 71, 72], "specifi": [27, 42, 45, 47, 48, 49, 51, 53, 55, 56, 67, 70, 72, 73], "specifici": [42, 52, 70], "spectacular": 45, "spectral": 43, "speech": [42, 43, 45, 46, 54], "speed": [43, 44, 46, 55], "spend": [58, 67, 73], "spent": 65, "sphere": [42, 71, 73], "sphinx": [22, 39, 40], "sphinx_book_them": 39, "sphinxcontrib": 40, "spike": 73, "spin": 48, "spite": 42, "spitzer": 25, "spline": 50, "split": [39, 43, 45, 46, 47, 48, 50, 51, 52, 53, 56, 58, 59, 62, 65, 67, 70, 72, 73], "splite": 42, "splitter": [43, 52], "spoiler": 27, "spontan": 67, "spot": 45, "spread": [42, 53, 67, 70, 71], "springer": [61, 65, 69, 70], "spuriou": [55, 73], "sqquar": 72, "sqrsignal": 45, "sqrt": [45, 46, 47, 48, 50, 52, 53, 55, 67, 71, 72, 73], "squar": [43, 44, 45, 46, 49, 50, 51, 53, 55, 56, 57, 59, 60, 63, 64, 67], "squarederror": 52, "squaredeuclidean": 56, "squash": 54, "src": [29, 39], "srtm": 48, "srtm_data_norway_1": 48, "sso": 62, "stabil": [47, 65, 73], "stabl": [42, 46, 47, 48, 51, 58, 62, 63, 65, 70, 71, 72, 73], "stack": [45, 46], "stage": [47, 55, 57, 65, 73], "stagnat": 73, "stai": [42, 44, 46, 47, 53, 70, 71, 73], "stand": [22, 42, 47, 51, 54, 70, 71, 72], "standard": [42, 43, 46, 47, 48, 49, 50, 52, 54, 59, 60, 61, 64, 65, 67, 70, 72, 73], "standardscal": [42, 48, 49, 50, 51, 52, 53, 59, 71, 73], "standpoint": 73, "stanford": [55, 72], "start": [17, 22, 23, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 64, 67, 68, 70, 71, 72, 73], "start_tim": 56, "starter": 22, "stat": 48, "state": [24, 43, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 63, 67, 70, 71, 72], "statement": [42, 49, 64, 70], "static": 39, "stationari": [72, 73], "statist": [42, 43, 45, 46, 49, 51, 52, 53, 54, 55, 56, 61, 64, 65, 69, 71, 72, 73], "statu": [42, 49, 57, 70], "stavang": 48, "stb": 39, "std": [42, 46, 48, 60, 70, 71, 73], "steep": [55, 72, 73], "steepest": 73, "stefan": [29, 35], "step": [42, 43, 44, 46, 48, 49, 51, 52, 53, 54, 55, 56, 57, 60, 64, 65, 70, 72], "step_fn": [49, 54], "step_length": [55, 73], "step_siz": 73, "steps_list": 51, "stereo": 45, "sticki": 29, "still": [20, 42, 44, 45, 47, 48, 53, 55, 67, 71, 72, 73], "stimuli": 54, "stk": [69, 70], "stk2100": [69, 70], "stk3155": [57, 65, 66, 68], "stk4021": [69, 70], "stk4051": [69, 70], "stk4155": [66, 68], "stk5000": 69, "stochast": [42, 43, 47, 48, 50, 53, 54, 72], "stock": 46, "stoke": 54, "stone": [42, 49], "stop": [43, 46, 51, 55, 56, 60, 72], "storag": [47, 71, 72], "store": [22, 42, 43, 44, 45, 48, 53, 55, 67, 70, 73], "storehaug": [68, 70], "str": [43, 45, 46], "straight": [42, 48, 50, 55, 70, 72], "straightforward": [42, 44, 45, 47, 48, 50, 51, 52, 55, 64, 70, 71, 72], "strategi": [42, 43, 51, 70], "stratifi": 48, "stream": 73, "strength": [42, 47, 56, 71, 72], "stretch": 53, "strict": [16, 18, 30, 33, 35, 40, 50, 55, 72], "strictli": [50, 55, 72], "stride": [46, 64], "strike": 48, "string": 43, "stroke": 49, "strong": [45, 48, 51, 52, 54, 64, 67, 73], "strongli": [42, 50, 57, 62, 63, 64], "stronli": [], "structur": [17, 21, 22, 42, 43, 44, 45, 48, 51, 52, 54, 63, 70], "stuck": [43, 55, 72, 73], "student": [29, 42, 57, 65, 66, 68, 69, 70], "studi": [42, 45, 46, 47, 48, 49, 50, 53, 54, 55, 63, 65, 69, 70, 71, 72, 73], "studier": 69, "style": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 40, 49, 51, 62, 64, 70], "stylesheet": 29, "st\u00f8land": 68, "sub": [51, 54, 73], "subdivid": [42, 64, 70], "subfield": 42, "subgradi": 73, "subject": [19, 26, 32, 34, 48, 50, 67], "sublicens": [19, 26, 32, 34], "sublinear": 73, "submit": 70, "subplot": [24, 42, 43, 45, 46, 48, 49, 50, 51, 52, 56, 70], "subplots_adjust": [50, 67], "subprogram": [64, 70], "subproject": 20, "subract": [42, 71], "subroutin": [42, 70], "subscript": 43, "subsequ": [43, 46, 47, 48, 54, 64, 67, 71, 72], "subset": [43, 48, 51, 54, 55, 63, 70, 72, 73], "subspac": [42, 50, 53, 71], "substanti": [19, 26, 32, 34, 51, 52, 73], "substep": 53, "substitut": [16, 18, 30, 33, 35, 40, 45, 48, 54, 58, 64], "subsubset": 51, "subtask": 48, "subtl": 43, "subtract": [42, 46, 47, 48, 53, 55, 60, 61, 64, 65, 67, 71, 73], "subtre": 51, "succeed": [42, 46, 70], "success": [27, 45, 49, 51, 55, 67], "successfulli": [46, 51], "succinctli": 73, "sudo": [42, 63, 65, 70], "suffer": [42, 43, 44, 47, 52, 70, 71, 72], "suffici": [43, 48, 50, 53, 55, 72], "suggest": [43, 55, 65, 69, 72, 73], "suit": [50, 54], "suitabl": [42, 57, 61, 67, 71, 73], "sum": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 64, 67, 70, 71, 72, 73], "sum_": [42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 61, 64, 65, 67, 70, 71, 72, 73], "sum_i": [42, 44, 47, 48, 50, 55, 61, 65, 71, 72, 73], "sum_j": [48, 60, 73], "sum_ja_": 42, "sum_k": [48, 50, 54, 64], "sum_logist": 55, "sum_m": 45, "sum_n": 45, "sum_nx_": 45, "summar": [47, 48, 51], "summari": [27, 43, 45, 46, 52, 66, 72, 73], "summat": [42, 45, 58, 71, 72], "sunni": 51, "super": [47, 71, 72, 73], "superfici": 45, "superscript": [43, 54], "supervis": [42, 47, 48, 49, 51, 54, 63, 70, 71, 72], "supplement": [49, 65], "suppli": 29, "support": [23, 29, 39, 41, 42, 43, 51, 52, 53, 55, 62, 63, 70, 71, 73], "suppos": [42, 47, 48, 49, 50, 52, 53, 54, 55, 64, 70, 71, 72, 73], "suppress": [47, 55, 72], "sure": [24, 42, 43, 46, 48, 58, 62, 65], "surf": 48, "surfac": [42, 48, 70, 73], "surpass": 48, "surpris": [42, 70], "surround": [45, 63], "survei": [42, 47, 48, 70, 71], "svc": [50, 51, 52], "svd": [42, 48, 53, 70], "svdinv": 47, "svm": [50, 51, 52, 53], "svm_clf": [50, 52], "swath": [47, 71, 72], "switch": 42, "sy": [17, 55, 72, 73], "symbol": [43, 47, 53, 55, 63, 67, 70, 71, 72], "symmeteri": 43, "symmetr": [42, 47, 50, 53, 54, 55, 64, 70, 71], "symmetri": 48, "sympi": [42, 63, 65, 70], "synonim": 67, "syntax": [0, 22, 28, 55], "system": [28, 41, 42, 43, 45, 46, 48, 49, 51, 52, 54, 55, 57, 63, 64, 65, 70, 72, 73], "systemat": [46, 48], "t": [24, 29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 67, 68, 70, 72, 73], "t0": [45, 48, 55, 73], "t1": [44, 55, 73], "t2": 44, "t3": 44, "t_": 44, "t_0": [44, 51, 55, 73], "t_1": [55, 73], "t_b": 52, "t_i": [43, 44, 47, 54, 71, 72], "t_j": 54, "t_k": 51, "tabl": [29, 51, 65, 67, 68, 70], "tabul": [42, 70], "tabular": 70, "tackl": 46, "tag": [27, 28, 44, 45, 46, 47, 48, 49, 54, 55, 56, 64, 67, 71, 72], "taht": [42, 70], "tail": [27, 67], "tailor": [44, 50, 53, 70], "taiwan": [42, 70], "take": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 61, 63, 64, 67, 70, 71, 72, 73], "taken": [42, 43, 45, 48, 52, 55, 64], "tan": 45, "tangent": [43, 46, 54, 55, 72], "tanh": [43, 46, 49, 50, 54], "target": [42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 60, 61, 70, 71, 72, 73], "target_nam": 51, "task": [42, 43, 45, 48, 51, 53, 54, 56, 65, 70, 73], "tau": [45, 47, 67], "taught": 70, "tax": [], "taylor": [44, 55, 72], "taylornr": [55, 72], "tc": 50, "teach": [57, 66, 70], "team": [35, 43], "teaser": 42, "technic": [42, 47, 48, 55, 65, 72, 73], "techniqu": [42, 43, 50, 52, 55, 63, 67, 69, 70, 71, 73], "technologi": [42, 43], "tell": [42, 46, 48, 52, 53, 55, 58, 67, 73], "temp": 43, "temp1": 43, "temp2": 43, "temperatur": [42, 51, 70], "templat": [60, 62], "temporarili": 43, "ten": [45, 70], "tend": [45, 47, 48, 50, 51, 52, 54, 55, 56, 71, 73], "tendenc": [42, 70], "tension": 48, "tensor": 45, "tensorflow": [42, 44, 46, 50, 56, 63, 64, 65, 69, 70, 71], "term": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 65, 67, 70, 71, 72, 73], "term1": [47, 48, 53], "term2": [47, 48, 53], "term3": [47, 48, 53], "term4": [47, 48, 53], "termin": [42, 46, 47, 51, 52, 55, 57, 71, 72, 73], "terminarl": 57, "terrain": 48, "terrain1": 48, "test": [29, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 62, 64, 65, 67, 70, 72, 73], "test_acc": 45, "test_accuraci": [43, 45], "test_error": 48, "test_imag": [45, 46], "test_ind": 48, "test_input": 46, "test_label": [45, 46], "test_loss": 45, "test_pr": 43, "test_predict": 43, "test_rnn": 46, "test_scor": [49, 52], "test_siz": [42, 43, 45, 47, 48, 52, 57, 59, 71, 72, 73], "test_split": 51, "testerror": [42, 48, 71], "testi": 46, "testpredict": 46, "testx": 46, "tex": [24, 29], "text": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 22, 23, 42, 43, 44, 46, 47, 50, 51, 53, 55, 57, 60, 62, 64, 67, 69, 71, 72, 73], "textbf": [], "textbook": [58, 65, 71, 72], "textual": 51, "textur": 43, "tf": [43, 45, 46, 55, 56, 72], "th": [42, 43, 44, 47, 48, 49, 51, 54, 55, 56, 64, 65, 67, 70, 71, 73], "than": [42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 59, 63, 67, 70, 71, 73], "thank": [46, 48, 71, 73], "theano": [43, 63, 70], "thei": [20, 22, 27, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 60, 62, 64, 65, 67, 70, 71, 72, 73], "them": [17, 39, 42, 43, 45, 46, 48, 50, 51, 52, 53, 54, 55, 60, 64, 65, 70, 71], "theme": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 39, 42, 57, 70], "themselv": [42, 65, 67, 70, 73], "thenc": 48, "theorem": [44, 48, 49, 71, 72], "theoret": [42, 46, 52], "theori": [16, 18, 30, 33, 35, 40, 42, 43, 45, 50, 51, 54, 55, 61, 63, 65, 69, 70, 73], "thereaft": [42, 47, 48, 53, 54, 64, 65, 70], "therebi": [42, 47, 49, 53, 65, 70, 71, 72], "therefor": [42, 43, 44, 45, 46, 48, 49, 50, 53, 55, 61, 67, 70, 71, 72, 73], "therein": 53, "thereof": [42, 48, 55, 70, 73], "theta": [42, 43, 46, 47, 48, 49, 55, 58, 65, 67, 70, 71, 72, 73], "theta1": 73, "theta2": 73, "theta_": [42, 43, 48, 49, 55, 70, 71, 72, 73], "theta_0": [42, 47, 48, 49, 58, 70, 71, 72, 73], "theta_0x_": [42, 70, 71], "theta_1": [42, 47, 48, 49, 70, 71, 72, 73], "theta_1x_": [42, 70, 71], "theta_1x_0": [42, 70], "theta_1x_1": [42, 49, 70], "theta_1x_2": [42, 70], "theta_1x_i": [49, 71, 72, 73], "theta_2": [42, 70, 71], "theta_2x_": [42, 70, 71], "theta_2x_0": [42, 70], "theta_2x_1": [42, 70], "theta_2x_2": [42, 49, 70], "theta_2x_i": 71, "theta_3x_i": 71, "theta_4x_i": 71, "theta_closed_form": 60, "theta_closed_formol": 60, "theta_closed_formridg": 60, "theta_gdol": 60, "theta_gdridg": 60, "theta_i": [42, 43, 47, 70, 71, 72], "theta_j": [42, 47, 48, 60, 70, 71, 73], "theta_k": [72, 73], "theta_linreg": [55, 72, 73], "theta_ol": 60, "theta_p": 49, "theta_px_p": 49, "theta_ridg": 60, "theta_t": [55, 73], "theta_tru": 60, "thetaith": 73, "thetavalu": 47, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 32, 33, 34, 35, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73], "thing": [23, 42, 43, 44, 46, 47, 49, 51, 57, 58, 60, 67, 70], "think": [42, 43, 45, 46, 48, 51, 54, 55, 56, 67, 70, 71, 72, 73], "third": [42, 45, 48, 55, 68, 70, 72, 73], "thirti": 49, "thorughout": 70, "those": [22, 42, 45, 47, 48, 50, 51, 52, 53, 64, 65, 70, 71, 72, 73], "though": [43, 44, 45, 46, 55, 58, 59, 61, 64, 67, 73], "thought": [48, 56, 65, 67], "thousand": [42, 43, 65, 71, 73], "three": [42, 43, 45, 47, 48, 50, 51, 54, 64, 65, 66, 67, 68, 70, 71, 72], "threshold": [43, 45, 51, 52, 53, 54, 55, 73], "through": [42, 43, 44, 45, 46, 47, 48, 50, 53, 54, 55, 56, 57, 63, 64, 65, 67, 70, 71, 72, 73], "throughout": [42, 46, 47, 56, 57, 63, 64, 67, 70], "throw": [29, 45, 48, 67], "thu": [20, 42, 43, 44, 47, 48, 49, 50, 52, 53, 54, 55, 68, 70, 71, 72, 73], "thumb": [42, 48, 65, 71], "thursdai": [], "tibshirani": [48, 61, 65, 69, 70], "tick_param": 48, "ticker": [48, 55, 67, 72, 73], "tif": 48, "tight_layout": [43, 49], "tightli": 53, "tild": [42, 47, 48, 49, 53, 61, 65, 67, 70, 71, 72, 73], "till": [42, 46, 49, 50, 51, 52, 54, 64, 70, 71], "time": [39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 67, 70, 71, 72], "timeit": 46, "timer": 46, "tini": [43, 73], "tip": 45, "titl": [42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 55, 57, 62, 67, 70, 72, 73], "tm": 29, "tmp": 55, "tn": [44, 45, 49], "to_categor": [43, 45, 46], "to_categorical_numpi": 43, "to_numer": [42, 48, 70], "todai": 45, "togeth": [42, 45, 48, 50, 53, 55, 63, 70], "toi": 56, "token": 27, "told": 55, "toler": [44, 56], "tolist": 46, "tomographi": 54, "too": [42, 44, 46, 47, 48, 51, 53, 55, 59, 60, 67, 69, 71, 72, 73], "took": [50, 70], "tool": [22, 29, 42, 43, 45, 48, 55, 57, 63, 71], "toolbox": 50, "top": [23, 42, 45, 47, 48, 51, 52, 61, 63, 70], "topic": [21, 42, 47, 48, 49, 50, 63, 65, 71, 72], "topolog": [45, 54], "topologi": [43, 54], "torkjellsdatt": [68, 70], "tort": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "toss": [52, 67], "total": [42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 64, 67, 68, 70, 71, 72, 73], "total_loss": 46, "totalclustervari": 56, "totalscatt": 56, "toward": [43, 44, 49, 54, 55, 57, 72], "towardsdatasci": 73, "town": [], "tp": [46, 49], "tpng": 51, "tpu": [55, 63, 70], "tqdm": 48, "tr": [], "track": [45, 55, 56, 57, 64, 71, 72, 73], "tract": [], "tractabl": [42, 70, 71], "trade": [47, 51, 62, 73], "tradeoff": [42, 47, 61, 65, 70, 71, 72], "tradit": [42, 43, 46, 48, 70], "train": [44, 45, 47, 48, 50, 51, 52, 53, 54, 55, 58, 59, 62, 65, 72, 73], "train_accuraci": [42, 43, 45, 70], "train_dataset": 46, "train_end": [42, 43, 71], "train_error": 48, "train_imag": [45, 46], "train_ind": 48, "train_label": [45, 46], "train_pr": 43, "train_siz": [42, 43, 45, 71], "train_step": 46, "train_test_split": [42, 43, 45, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 70, 71, 72, 73], "train_test_split_numpi": [42, 43, 71], "trainable_vari": 46, "trained_model": [48, 71, 73], "trainerror": [42, 71], "traini": 46, "training_checkpoint": 46, "training_dataset": 46, "training_gradi": [55, 73], "trainingerror": 48, "trainpredict": 46, "trainscor": 46, "trainx": 46, "trait": [42, 70], "trajectori": [46, 73], "transfer": [51, 70], "transform": [42, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 63, 64, 70, 71, 72, 73], "transit": [48, 54], "translat": [43, 46, 48, 52, 70, 71, 73], "transpos": [43, 47, 53, 64, 71, 72], "travers": [42, 47], "treat": [23, 42, 43, 45, 48, 54, 55, 60, 67, 70, 71, 72, 73], "tree": [42, 43, 63, 70], "tree_clf": [51, 52], "tree_clf_": 51, "tree_clf_sr": 51, "tree_reg": 51, "tree_reg1": 51, "tree_reg2": 51, "trend": 67, "treue": 49, "trevor": [61, 65, 69], "tri": [44, 45, 46, 51, 55, 58, 73], "triain": 42, "trial": [42, 44, 46, 48, 55, 67, 70, 72, 73], "triangl": [55, 72], "triangular": 64, "trick": [45, 46, 50, 53, 55, 67, 73], "trickier": 67, "tridiagon": 64, "trillion": 63, "trim": 27, "trivial": [42, 43, 47, 53, 67, 70, 72], "troffa": [25, 26, 32, 40], "troubl": [42, 50, 54, 57, 71, 73], "truck": 45, "true": [27, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 64, 65, 67, 70, 71, 72, 73], "true_beta": 71, "true_fun": 48, "true_theta": [48, 73], "truli": 70, "try": [17, 29, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 60, 63, 64, 65, 67, 70, 71, 72, 73], "tr\u00f6ger": 25, "tucker": 50, "tuesdai": [68, 70], "tumor": [49, 51], "tumour": 49, "tunabl": 43, "tune": [46, 51, 55, 64, 70, 73], "turn": [42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55, 64, 65, 67, 70, 71, 72, 73], "tutori": [43, 46], "tv": 44, "tveito": 44, "tweak": [43, 46, 52, 67], "twice": [55, 72], "twist": 53, "two": [22, 23, 35, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 59, 64, 65, 66, 67, 69, 70, 71, 72, 73], "tx": [55, 72, 73], "tx_1": [55, 72], "txt": [46, 57, 62], "ty": [55, 72], "type": [21, 39, 42, 43, 45, 48, 50, 52, 55, 64, 67, 71, 72, 73], "typeset": 62, "typic": [20, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 57, 58, 62, 67, 70, 71, 72, 73], "typo": 65, "u": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 64, 65, 67, 69, 70, 71, 72, 73], "u_": 64, "u_i": 54, "u_m": 52, "ua": [42, 70], "ubuntu": [42, 63, 65, 70], "uci": 65, "uio": [57, 62, 65, 68, 69], "un": 56, "unabl": 57, "unari": [64, 70], "unbalanc": [48, 51], "unbias": [42, 47, 48, 70], "uncent": [48, 71, 73], "uncertainti": [42, 47, 70], "uncertitud": 67, "unchang": [43, 45], "uncorrel": [52, 67], "undefin": [47, 71, 72], "under": [20, 29, 35, 42, 43, 47, 48, 52, 55, 63, 65, 70, 71, 72, 73], "underdetermin": [42, 70], "underfit": [43, 48], "underflowproblem": 47, "undergo": 47, "undergradu": [66, 68], "underli": [42, 43, 51, 55, 60, 67, 70, 73], "underlin": [36, 37, 38], "underscor": 29, "underset": [46, 56], "understand": [23, 42, 43, 45, 47, 48, 52, 55, 56, 57, 61, 62, 63, 70, 71, 72, 73], "understood": [50, 55], "undesir": 50, "undetermin": [47, 50], "undo": 46, "unexpect": 48, "unexpected": 67, "unexplain": 60, "unfair": [48, 71], "unfortun": [43, 50, 51, 52], "unicode_liter": [50, 51], "uniform": [42, 43, 47, 48, 53, 55, 65, 67, 70, 72, 73], "uniformli": [55, 67, 72, 73], "unifrompdf": 67, "unimport": [55, 72], "union": [47, 48], "uniqu": [42, 44, 48, 55, 56, 64, 70], "unique_cluster_label": 56, "unit": [42, 43, 45, 46, 47, 52, 54, 60, 67, 70, 71, 72, 73], "unitari": [47, 48, 64, 71, 72], "unitarili": [64, 70], "uniti": 67, "univari": 67, "univers": [42, 43, 44, 55, 63, 65, 66, 68, 70, 71, 72, 73], "unix": [41, 43], "unknow": [42, 64, 70], "unknown": [42, 43, 45, 46, 47, 48, 50, 52, 55, 64, 65, 70, 71, 72, 73], "unknowwn": 54, "unlabel": 43, "unless": [35, 42, 45, 48, 53, 55, 65, 70, 72], "unlik": [43, 45, 50, 55, 72, 73], "unnecessarili": 51, "unord": 45, "unpublish": 73, "unravel": 43, "unrol": [45, 53], "unscal": 61, "unseen": [42, 49, 51, 57], "unstabl": 43, "unsupervis": [42, 43, 46, 54, 63, 70], "unsymmetr": [64, 70], "until": [43, 44, 46, 51, 54, 55, 56, 72, 73], "untouch": 42, "unusu": 54, "up": [43, 45, 46, 47, 48, 50, 52, 53, 55, 56, 58, 60, 61, 62, 63, 64, 65, 67, 68, 73], "updat": [43, 44, 52, 54, 55, 56, 57, 60], "uploa": 70, "upload": [57, 62, 63, 65, 69], "upon": [42, 43, 48, 49, 53, 64], "upper": [42, 50, 51, 58, 64, 71], "uppercas": [64, 70], "upsampl": 46, "upscal": 46, "url": [70, 71], "us": [16, 18, 19, 20, 22, 23, 26, 27, 30, 32, 33, 34, 35, 39, 40, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 62, 64, 67, 69], "usag": [42, 50, 63, 70, 71], "usd": [], "usd10000": [], "use_bia": 46, "usecol": [42, 70], "useless": 43, "user": [29, 42, 43, 44, 46, 48, 49, 57, 63, 64, 65, 70, 71], "usernam": [57, 65], "usetex": 67, "usg": 48, "usr": 67, "usual": [42, 45, 46, 49, 54, 55, 56, 70, 73], "ut": 47, "utf": 29, "util": [27, 43, 45, 46, 48, 49, 52, 56, 61, 70], "ux": 64, "v": [6, 8, 44, 46, 47, 48, 53, 55, 57, 63, 71, 72], "v0": 67, "v1": 67, "v2": [27, 28, 67], "v5": [27, 28], "v_": 73, "v_0": [53, 73], "v_t": 73, "va": 43, "vahid": 70, "val": 55, "val_accuraci": 45, "val_loss": 46, "vale": 44, "valid": [27, 42, 43, 46, 49, 51, 52, 55, 63, 67, 70, 71, 73], "validation_data": 45, "validation_split": 46, "valu": [39, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 70, 73], "valuat": 51, "valy": 46, "van": [35, 42, 61, 65, 70, 71, 72, 73], "vandenbergh": [50, 55, 72], "vandermond": [42, 70], "vanilla": [42, 48, 53, 56, 71, 73], "vanish": [43, 46, 55, 67, 72], "var": [27, 28, 47, 48, 52, 53, 61, 65, 67, 71], "var_x": 67, "varabl": 50, "varepsilon": [47, 48, 61], "varepsilon_": [47, 48], "varepsilon_i": [47, 48], "vari": [42, 43, 45, 47, 48, 52, 70], "variabl": [42, 43, 44, 47, 48, 49, 50, 52, 53, 54, 55, 56, 64, 70, 71, 73], "varianc": [42, 43, 47, 49, 51, 52, 53, 55, 56, 60, 62, 63, 64, 67, 70, 71, 72, 73], "variance_i": [47, 53, 71], "variance_x": [47, 53, 71], "variant": [42, 43, 48, 50, 54, 55, 70, 71, 72, 73], "variat": [22, 45, 46, 53, 70], "varieti": [42, 45, 54, 63, 65, 70], "variou": [25, 39, 43, 45, 47, 48, 49, 50, 51, 53, 54, 55, 58, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73], "varydimens": 46, "vast": 73, "vastli": 45, "vaue": 43, "vault": 42, "vdot": [44, 55, 72, 73], "ve": [39, 65, 73], "vec": 48, "vector": [42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 56, 59, 60, 63, 72, 73], "vector_mean": 56, "ventur": [42, 50, 63, 70], "venv": 57, "verbos": [43, 45, 46], "veri": [25, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 65, 67, 69, 70, 71, 72, 73], "verifi": [29, 45, 53, 64, 70], "versatil": [50, 70], "versicolor": [50, 51], "version": [42, 45, 52, 55, 56, 57, 63, 64, 65, 67, 70], "versu": [43, 73], "vert": [42, 43, 47, 48, 49, 50, 51, 53, 55, 58, 59, 70, 71, 72, 73], "vert_1": [47, 48, 71, 72, 73], "vert_2": [47, 48, 53, 59, 71, 72, 73], "via": [42, 47, 48, 49, 50, 51, 52, 53, 54, 61, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "vidal": 53, "video": [42, 43, 54, 63, 66, 68, 70, 71, 72], "view": [29, 43, 45, 47, 48, 54, 55, 67, 69, 70, 72, 73], "violat": 50, "virginica": 51, "viridi": [42, 43, 44, 45, 70], "virtanen": 35, "virtual": [43, 73], "viscos": 55, "viscou": 55, "visibl": 57, "vision": [42, 45], "visit": 73, "visual": [42, 45, 53, 54, 60, 63, 70, 71], "visualis": 43, "visualstudio": [57, 58, 61], "viz": [48, 50, 67], "vmap": 55, "vmax": [43, 48], "vmh0zpt0tli": 73, "vmin": [43, 48], "voic": 45, "volatil": 73, "volum": [42, 45, 70], "vote": [52, 70], "voting_clf": 52, "votingclassifi": 52, "votingsimpl": 52, "vscode": [4, 5, 7, 9, 10, 11, 12, 13, 14, 29], "vstack": [47, 53, 64, 67, 70, 71], "vt": [47, 71, 72], "w": [42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 64, 67, 70, 71, 72, 73], "w1": 50, "w2": [50, 53], "w3": 50, "w_": [43, 54], "w_1": [50, 64], "w_1x_": 50, "w_1x_1": 50, "w_2": [50, 64], "w_2x_": 50, "w_2x_2": 50, "w_3": 64, "w_4": 64, "w_hidden": 44, "w_i": [43, 44, 52], "w_ix_i": 54, "w_j": 64, "w_m": 64, "w_output": 44, "w_px_": 50, "w_px_p": 50, "w_t": [], "wa": [35, 43, 45, 46, 47, 48, 49, 52, 53, 54, 56, 59, 64, 70, 71, 73], "wai": [16, 18, 30, 33, 35, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 60, 61, 64, 67, 70, 71, 72, 73], "walk": 51, "walker": 67, "wall": 73, "walt": 35, "wang": [42, 70], "want": [20, 24, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 65, 67, 70, 71, 72, 73], "warn": [27, 46], "warrant": 48, "warranti": [16, 18, 19, 26, 30, 32, 33, 34, 35, 40], "wast": [45, 73], "watch": [63, 72, 73], "wave": 45, "wavelet": 50, "wcag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "we": [39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 71, 72], "weak": [51, 52, 56], "weaker": 73, "weather": [43, 54], "web": [63, 66, 68, 70], "webpag": 70, "websit": [48, 64, 65, 66, 70], "wedg": [50, 67], "wednesdai": [68, 70], "wee": 53, "week": [42, 47, 48, 49, 65, 66, 68], "weekli": [57, 58, 63, 65, 66, 68, 69, 70], "weight": [43, 44, 45, 48, 49, 51, 52, 54, 55, 60, 67, 73], "weigth": 44, "welcom": [50, 57, 63], "well": [21, 24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 57, 58, 62, 63, 64, 65, 67, 69, 70, 71, 72, 73], "went": 50, "were": [39, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 54, 56, 67, 70, 73], "wessel": [42, 61, 65, 70, 71, 72, 73], "what": [20, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 67, 73], "whatev": 45, "when": [20, 22, 23, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 64, 65, 67, 70, 71, 72], "whenev": [55, 57, 67, 73], "where": [29, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 71, 72, 73], "wherea": [22, 48, 67, 73], "wherefrom": 65, "wherein": [43, 54], "whether": [16, 18, 19, 22, 26, 30, 32, 33, 34, 35, 40, 42, 45, 47, 49, 51, 65, 67, 70], "which": [23, 25, 29, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72], "whichev": [43, 45], "while": [42, 43, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 61, 62, 67, 70, 71, 72, 73], "white": 51, "whiteboad": 73, "whiteboard": [71, 72, 73], "who": [42, 57], "whole": [43, 45, 46, 47, 51, 53, 55, 73], "whom": [19, 26, 32, 34], "whose": [42, 48, 52, 67, 71], "whow": [53, 71], "why": [29, 42, 43, 45, 48, 55, 57, 58, 59, 61, 65, 71, 72], "wide": [42, 43, 45, 48, 49, 54, 63, 64, 65, 70], "widehat": 48, "width": [42, 45, 50, 51, 70], "wieringen": [42, 61, 65, 70, 71, 72, 73], "wiki": 65, "wikipedia": 65, "win": [52, 73], "wind": 51, "window": 28, "wing": [68, 70], "winther": 44, "wiothout": 48, "wiscons": 49, "wisconsin": 52, "wisdom": [48, 71, 73], "wise": [43, 47, 54, 55, 71, 72, 73], "wish": [42, 44, 47, 49, 50, 53, 55, 56, 60, 64, 65, 70, 71, 72, 73], "with_std": [42, 71], "wither": 48, "within": [29, 42, 44, 45, 46, 49, 51, 54, 55, 56, 67, 69, 70, 72], "withinclust": 56, "without": [16, 17, 18, 19, 26, 28, 30, 32, 33, 34, 35, 40, 42, 43, 47, 48, 50, 51, 53, 54, 55, 57, 60, 65, 70, 71, 72, 73], "won": [42, 57, 70], "wonder": 50, "word": [39, 42, 43, 45, 46, 47, 48, 49, 56, 61, 67, 70, 71, 72, 73], "work": [16, 24, 26, 29, 42, 43, 46, 48, 49, 50, 51, 55, 57, 58, 60, 61, 62, 63, 65, 66, 67, 68, 70, 71, 73], "workabl": 73, "workaround": 29, "workhors": 73, "workload": 73, "workshop": 70, "world": [42, 50, 58, 71], "worldwid": [42, 70], "worri": 57, "wors": [42, 43, 45, 46, 48, 70, 73], "worth": [51, 61], "worthi": 65, "would": [42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 60, 62, 64, 65, 67, 70, 71, 72, 73], "wrap": [48, 64, 70], "write": [22, 23, 42, 43, 44, 45, 47, 48, 49, 50, 54, 55, 57, 58, 60, 64, 70, 71, 73], "written": [16, 18, 22, 23, 30, 33, 42, 44, 45, 47, 53, 54, 55, 58, 63, 64, 65, 67, 70, 71, 72, 73], "wrong": [43, 50, 57], "wrongli": 52, "wrote": [25, 47, 53, 71], "wrt": [52, 55, 73], "wth": [52, 55, 73], "www": [62, 63, 64, 65, 69, 70, 72, 73], "wx_1": 50, "x": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 70, 72, 73], "x0": 50, "x1": [46, 50, 51, 52, 55], "x1_exampl": 50, "x1d": 50, "x2": [50, 51, 52, 55], "x2d": [50, 53], "x2d_train": 53, "x2dsl": 53, "x3": 50, "x_": [42, 44, 45, 47, 48, 50, 52, 53, 55, 56, 64, 67, 70, 71, 72, 73], "x_0": [42, 47, 53, 60, 64, 70, 71], "x_1": [42, 44, 47, 48, 49, 50, 51, 52, 53, 55, 60, 64, 67, 70, 71, 72, 73], "x_2": [42, 44, 47, 48, 49, 50, 51, 52, 53, 55, 64, 67, 70, 71, 72], "x_3": [50, 64, 67], "x_4": 64, "x_6": 60, "x_center": 53, "x_data": 43, "x_data_ful": 43, "x_hidden": 44, "x_i": [42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 67, 70, 71, 72, 73], "x_input": 44, "x_ix_": [42, 70], "x_iy_i": 50, "x_j": [42, 44, 50, 51, 54, 58, 67, 71, 73], "x_jy_j": 50, "x_k": [54, 56, 64, 67, 71], "x_l": 67, "x_m": [48, 54, 64, 67], "x_mean": [60, 73], "x_n": [42, 44, 45, 48, 50, 53, 54, 55, 64, 67, 70, 72], "x_new": [51, 52], "x_norm": [60, 73], "x_offset": [48, 71, 73], "x_output": 44, "x_p": [45, 49, 51], "x_poli": 51, "x_poly10": 51, "x_pred": 46, "x_prev": 44, "x_reduc": 53, "x_sampl": 61, "x_scale": 50, "x_small": 55, "x_std": [60, 73], "x_t": 73, "x_test": [42, 43, 45, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 71, 72, 73], "x_test_": 59, "x_test_own": 48, "x_test_scal": [42, 48, 49, 51, 52, 53, 71, 73], "x_tot": 46, "x_train": [42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 70, 71, 72, 73], "x_train_": 59, "x_train_mean": [48, 71, 73], "x_train_own": 48, "x_train_scal": [42, 48, 49, 51, 52, 53, 71, 73], "x_val": 43, "xarrai": [63, 70], "xavier": 43, "xbnew": [55, 72, 73], "xcode": [42, 63, 65, 70], "xdclassiffierconfus": 52, "xdclassiffierroc": 52, "xg_clf": 52, "xgb": 52, "xgbclassifi": 52, "xgboost": 51, "xgboot": 52, "xgbregressor": 52, "xgparam": 52, "xgtree": 52, "xi": [50, 55, 73], "xi_": 50, "xi_1": 50, "xi_i": 50, "xk": 50, "xla": [55, 63, 70], "xlabel": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 67, 70, 71, 72, 73], "xlim": [48, 52], "xm": 51, "xmesh": 55, "xnew": [42, 55, 70, 72, 73], "xp": 67, "xpanda": [42, 71], "xpd": [47, 53, 71], "xplot": 42, "xscale": [42, 71], "xsr": 51, "xt_x": [55, 72, 73], "xtest": 48, "xtick": [45, 48, 50, 51], "xtrain": 48, "xu": [42, 70], "xx": [42, 64, 70], "xy": [42, 48, 50, 64, 70], "xytext": 50, "xyz": 29, "xz": [64, 70], "y": [29, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 70, 71, 72, 73], "y1": 46, "y2": 46, "y3": 46, "y_": [42, 43, 47, 48, 52, 53, 64, 70, 71], "y_0": [42, 47, 53, 64, 70, 71], "y_1": [42, 47, 50, 51, 53, 55, 64, 70, 71, 72, 73], "y_1y_1": 50, "y_1y_1k": 50, "y_1y_2": 50, "y_1y_2k": 50, "y_1y_n": 50, "y_1y_nk": 50, "y_2": [42, 47, 50, 51, 53, 64, 70, 71], "y_2y_1": 50, "y_2y_1k": 50, "y_2y_2": 50, "y_2y_2k": 50, "y_3": [42, 51, 64], "y_4": 64, "y_center": [60, 73], "y_data": [42, 43, 47, 48, 70, 71, 72, 73], "y_data_ful": 43, "y_decis": 50, "y_fit": [42, 71], "y_i": [42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55, 61, 64, 65, 70, 71, 72, 73], "y_if_": 52, "y_ix_": [42, 70], "y_ix_i": [49, 50, 55, 71, 72, 73], "y_iy_jk": 50, "y_j": [48, 50, 54, 65], "y_k": 54, "y_m": 64, "y_mean": [60, 73], "y_model": [42, 46, 47, 48, 70, 71, 72, 73], "y_n": [50, 55, 72, 73], "y_ny_1": 50, "y_ny_1k": 50, "y_ny_2": 50, "y_ny_2k": 50, "y_ny_n": 50, "y_ny_nk": 50, "y_offset": [48, 59, 71, 73], "y_plot": 51, "y_pred": [42, 43, 46, 48, 49, 50, 51, 52, 71, 73], "y_pred1": 51, "y_pred2": 51, "y_pred_rf": 52, "y_pred_tre": 52, "y_proba": [49, 52], "y_sampl": 61, "y_scaler": [48, 71, 73], "y_test": [42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 71, 72, 73], "y_test_onehot": 43, "y_test_predict": [], "y_tot": 46, "y_train": [42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 57, 58, 59, 61, 70, 71, 72, 73], "y_train_mean": [48, 71, 73], "y_train_onehot": 43, "y_train_predict": [], "y_train_scal": [48, 71, 73], "y_val": 43, "ye": [45, 48, 49], "year": [42, 63, 70], "yet": [29, 42, 43, 48, 50, 53, 55, 62, 70], "yi": [55, 73], "yield": [42, 44, 47, 48, 50, 52, 54, 55, 56, 64, 67, 70, 72, 73], "yk": 50, "ylabel": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 67, 70, 71, 72, 73], "ylim": [45, 48], "ym": 51, "ymesh": 55, "yn": 42, "yo": [50, 51, 52], "yoshiki": 19, "yoshua": [43, 69], "you": [21, 22, 23, 24, 27, 28, 39, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73], "young": 42, "your": [17, 22, 23, 24, 29, 43, 44, 46, 47, 48, 50, 53, 55, 57, 59, 61, 62, 63, 64, 70, 72, 73], "your_model_object": 58, "yourself": [53, 55, 70, 72], "youtu": [71, 72], "youtub": [63, 72, 73], "ypred": 48, "ypredict": [42, 55, 70, 71, 72, 73], "ypredict2": [55, 72, 73], "ypredictlasso": [47, 72], "ypredictol": [42, 47, 72], "ypredictown": [48, 71, 73], "ypredictownridg": [48, 71, 72, 73], "ypredictridg": [42, 47, 48, 71, 72, 73], "ypredictskl": [48, 71, 73], "ytest": 48, "ytick": [45, 48, 50, 51], "ytild": [42, 48, 70, 71], "ytildelasso": [47, 72], "ytildenp": [42, 70, 71], "ytildeol": [42, 47, 72], "ytildeownridg": [48, 71, 72, 73], "ytilderidg": [47, 48, 71, 72, 73], "ytrain": 48, "yuxi": 70, "yx": [64, 70], "yy": [64, 70], "yz": [64, 70], "z": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 64, 67, 70, 71], "z_": [43, 44, 54, 64, 70], "z_0": [64, 70], "z_1": [64, 70], "z_2": [64, 70], "z_c": 43, "z_h": 43, "z_hidden": 44, "z_i": [43, 54], "z_j": [43, 54], "z_k": [54, 71], "z_m": 43, "z_mod": 51, "z_o": 43, "z_output": 44, "za": 35, "zaman": 67, "zaxi": 48, "zero": [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 64, 65, 67, 70, 71, 72, 73], "zeros_lik": 46, "zeroth": 71, "zfill": 46, "zip": [46, 48], "zm_h": [42, 70], "zn": [], "zone": [], "zoom": 70, "zscout": 20, "zx": [64, 70], "zy": [64, 70], "zz": [64, 70], "\u00f8yvind": [48, 71, 73]}, "titles": ["A11Y Dark", "A11Y High Contrast Dark", "A11Y High Contrast Light", "A11Y Light", "Blinds Dark", "Blinds Light", "Github Dark", "Github Dark Colorblind", "Github Dark High Contrast", "Github Light", "Github Light Colorblind", "Github Light High Contrast", "Gotthard Dark", "Gotthard Light", "Greative", "Pitaya Smoothie", "<no title>", "<no title>", "<no title>", "The MIT License (MIT)", "The IPython licensing terms", "Welcome to your Jupyter Book", "Markdown Files", "Notebooks with MyST Markdown", "Content with notebooks", "<no title>", "<no title>", "markdown-it-container", "markdown-it-deflist", "markdown-it-texmath", "<no title>", "Authors", "<no title>", "<no title>", "<no title>", "License for Sphinx", "<no title>", "<no title>", "<no title>", "Translation workflow", "<no title>", "<no title>", "3. Linear Regression", "14. Building a Feed Forward Neural Network", "15. Solving Differential Equations with Deep Learning", "16. Convolutional Neural Networks", "17. Recurrent neural networks: Overarching view", "4. Ridge and Lasso Regression", "5. Resampling Methods", "6. Logistic Regression", "8. Support Vector Machines, overarching aims", "9. Decision trees, overarching aims", "10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods", "11. Basic ideas of the Principal Component Analysis (PCA)", "13. Neural networks", "7. Optimization, the central part of any Machine Learning algortithm", "12. Clustering and Unsupervised Learning", "Exercises week 34", "Exercises week 35", "Exercises week 36", "Exercises week 37", "Exercises week 38", "Exercises week 39", "Applied Data Analysis and Machine Learning", "2. Linear Algebra, Handling of Arrays and more Python Features", "Project 1 on Machine Learning, deadline October 6 (midnight), 2025", "Course setting", "1. Elements of Probability Theory and Statistical Data Analysis", "Teachers and Grading", "Textbooks", "Week 34: Introduction to the course, Logistics and Practicalities", "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression", "Week 36: Linear Regression and Gradient descent", "Week 37: Gradient descent methods"], "titleterms": {"": [50, 52, 72, 73], "0": 29, "04": 29, "05": 29, "06": 29, "07": 29, "1": [42, 57, 58, 59, 60, 61, 62, 65, 71], "11": 29, "15": [29, 61], "19": 61, "1a": 60, "2": [29, 42, 57, 58, 59, 60, 61, 62, 70, 71, 72], "20": 29, "2017": 29, "2018": 29, "2019": 29, "2023": 68, "2025": 65, "27": 29, "2a": [], "2b": [], "3": [29, 42, 57, 58, 59, 60, 61, 62, 71], "34": [57, 70], "35": [58, 71], "36": [59, 72], "37": [60, 73], "38": 61, "39": 62, "3a": 60, "3b": 60, "4": [29, 42, 57, 58, 59, 60, 61, 62, 71], "4a": 60, "4b": 60, "5": [29, 42, 58, 60, 61, 62], "6": [29, 65], "8": 73, "A": [42, 43, 46, 50, 51, 70], "And": [70, 71, 73], "But": 73, "In": 68, "Ising": 48, "The": [19, 20, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 57, 63, 70, 71, 72, 73], "To": [39, 70], "With": [46, 72], "a11i": [0, 1, 2, 3], "about": [20, 70, 71, 72], "abov": 72, "abstract": 62, "accuraci": 73, "across": 73, "activ": [43, 54], "ad": [42, 48, 62, 65, 70, 71], "adaboost": 52, "adagrad": [55, 73], "adam": [55, 73], "adapt": [52, 73], "add": 23, "adjust": 43, "advanc": 65, "adversari": 46, "again": [45, 51], "ai": [65, 70], "aim": [50, 51, 70], "aka": 70, "al": 73, "algebra": [64, 70], "algorithm": [51, 52, 53, 54, 70, 71, 72, 73], "algortithm": [55, 72], "all": 50, "an": [23, 42, 46, 52, 57, 62, 70], "analys": [47, 71, 72], "analysi": [42, 47, 48, 53, 63, 65, 67, 70, 71, 72], "analyt": [42, 58, 60], "ani": [55, 72], "anoth": [51, 72], "api": 27, "appli": 63, "approach": [42, 50, 56, 70, 73], "approxim": 54, "architectur": 43, "arrai": [64, 70], "assist": 68, "august": 29, "author": 31, "autocorrel": 67, "autograd": [44, 55, 73], "automat": [55, 73], "avail": 62, "avali": [], "averag": 73, "b": 65, "back": [43, 53, 54, 71, 72], "background": [63, 65], "bag": 52, "base": [55, 73], "basic": [42, 47, 49, 51, 52, 53, 64, 71, 72], "batch": [43, 73], "bay": 47, "befor": 53, "better": 50, "bia": [48, 61, 65, 73], "binari": 43, "bind": 70, "bird": 52, "blind": [4, 5], "block": 24, "boldsymbol": [60, 71], "book": [21, 61], "boost": 52, "bootstrap": [48, 52], "boston": [], "breast": 43, "brief": 70, "bring": 54, "browser": 29, "build": [43, 45, 51], "c": [65, 70], "calcul": [60, 71, 72], "can": [70, 73], "cancer": [43, 49, 51, 53], "cart": 51, "case": [50, 52, 67, 71, 72, 73], "cdn": 29, "cell": 23, "central": [55, 63, 67, 72], "chain": 54, "challeng": 73, "chang": 52, "changelog": 29, "channel": 70, "chi": [42, 70], "choic": 59, "choos": [43, 73], "cifar01": 45, "citat": 22, "classic": 53, "classif": [43, 51, 52], "classifi": 50, "clip": 43, "cluster": 56, "cnn": 45, "code": [24, 43, 44, 47, 51, 53, 54, 55, 56, 57, 58, 62, 65, 70, 71, 72, 73], "collect": [43, 45], "color": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "colorblind": [7, 10], "combin": 73, "commun": 70, "compar": [44, 52, 58], "comparison": [72, 73], "compet": 73, "compil": 39, "complet": 71, "complex": [42, 48, 65, 71], "complic": 48, "compon": 53, "comput": [51, 61, 73], "computerlab": 70, "con": [51, 73], "concept": 67, "condit": 72, "conjug": 55, "constraint": 73, "contain": 27, "content": 24, "contn": 70, "contrast": [1, 2, 8, 11], "contributor": 31, "converg": 73, "convex": [50, 55, 72, 73], "convolut": [45, 54], "copyright": 20, "correct": 73, "correl": [53, 71], "correspond": [], "cost": [43, 52, 71, 72, 73], "cours": [63, 66, 69, 70], "covari": [47, 53, 67, 71], "cover": 70, "creat": [23, 58, 62], "creator": 31, "cross": [48, 65], "cython": 70, "d": 65, "dark": [0, 1, 4, 6, 7, 8, 12], "data": [42, 43, 45, 48, 49, 51, 53, 57, 59, 60, 63, 67, 70, 71], "dataset": [43, 45, 60], "david": 70, "deadlin": [65, 70], "deadllin": 68, "decai": [44, 73], "decis": [51, 52], "decomposit": [47, 53, 64, 71, 72], "deeep": [], "deep": [43, 44, 70, 73], "defin": [43, 70], "definit": 61, "deflist": 28, "degre": [42, 59, 71], "deliver": [57, 58, 61, 62], "deliveri": 65, "dens": 42, "depend": 29, "deriv": [47, 54, 58, 59, 61, 71, 72, 73], "descent": [44, 52, 55, 60, 65, 72, 73], "design": 71, "detail": [45, 70], "develop": [20, 43], "diagon": 53, "differ": [50, 73], "differenti": [44, 55, 73], "diffus": 44, "dimens": 73, "dimension": [44, 45, 50, 60], "direct": 22, "disadvantag": 51, "discret": 67, "discrimin": 70, "distribut": [47, 67], "do": [43, 73], "document": 62, "doe": [71, 72], "domain": 67, "down": 43, "dropout": 43, "e": 65, "economi": [71, 72], "electron": 65, "element": [42, 67, 70], "elimin": 64, "empir": 73, "energi": 70, "ensembl": 52, "entropi": 51, "environ": [42, 57], "equat": [42, 44, 54, 71, 72], "error": [42, 52, 70, 71, 72], "essenti": 70, "et": 73, "etc": 70, "euler": 44, "evalu": 43, "evid": 73, "exampl": [23, 27, 43, 44, 45, 46, 48, 49, 50, 51, 52, 70, 71, 72, 73], "exercis": [42, 48, 57, 58, 59, 60, 61, 62, 71], "expect": [61, 67], "experi": 67, "explor": 42, "exponenti": [44, 73], "express": [58, 59, 61, 71], "extend": 72, "extrapol": 46, "extrem": [52, 70], "ey": 52, "f": 65, "fall": 68, "famili": [43, 70], "famou": 64, "fantast": [71, 72], "faq": 29, "featur": [29, 51, 58, 64, 71], "februari": 29, "feed": [43, 54], "figur": 62, "file": [22, 39], "final": [54, 71, 73], "find": [58, 60], "fine": 43, "first": [46, 54, 70, 72], "fit": [42, 52, 57, 58, 70, 72], "fix": [71, 72, 73], "forc": 45, "forest": 52, "form": 60, "format": [65, 70], "formula": 60, "forward": [43, 44, 54], "foster": 70, "fourier": 45, "frank": 48, "freedom": [42, 59, 71], "frequent": [71, 73], "frequentist": [42, 70], "from": [47, 52, 54, 70, 71, 72, 73], "full": [44, 73], "function": [42, 43, 48, 49, 50, 52, 53, 54, 55, 65, 67, 70, 71, 72, 73], "further": [45, 47, 71, 72], "g": 65, "gan": 46, "gaussian": 64, "gd": [55, 73], "gener": [46, 51, 70], "geometr": [53, 72], "get": 62, "gini": 51, "github": [6, 7, 8, 9, 10, 11, 57], "goal": [57, 58, 59, 60, 61, 62], "good": [42, 62, 70], "goodfellow": 73, "gotthard": [12, 13], "grade": [68, 70], "gradient": [43, 44, 52, 55, 60, 65, 72, 73], "greativ": 14, "growth": 44, "h": 65, "ha": 63, "handl": [64, 70], "hessian": [71, 72, 73], "hidden": 44, "high": [1, 2, 8, 11], "hous": [], "how": 58, "hyperparamet": [43, 59], "hyperplan": 50, "i": [22, 42, 43, 70], "id3": 51, "idea": 53, "ideal": 72, "ii": 70, "illustr": 72, "implement": [43, 58, 59, 60], "implic": [47, 71, 72], "import": [47, 64, 70, 71, 72], "improv": [43, 73], "includ": [55, 65, 73], "incorpor": 35, "increment": 53, "index": 51, "inform": 68, "input": 44, "instal": [27, 28, 63, 65, 70], "instructor": 68, "interpret": [47, 53, 61, 70, 71, 72], "introduc": [53, 55, 71], "introduct": [42, 48, 62, 63, 64, 65, 70], "invers": [47, 64], "invert": [71, 72], "ipython": 20, "iter": 52, "its": 71, "j": 29, "jacobian": 71, "januari": 29, "jax": 55, "julia": 70, "jungl": 52, "jupyt": 21, "kera": [43, 45], "kernel": [50, 53], "lab": [72, 73], "lagrangian": 50, "lasso": [47, 48, 65, 71, 72], "last": [71, 73], "later": [47, 71, 72], "layer": [43, 44, 45, 54], "learn": [22, 42, 43, 44, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 70, 71, 72, 73], "least": [47, 48, 58, 61, 65, 70, 71, 72, 73], "lectur": [70, 72, 73], "level": 52, "librari": [63, 70], "licens": [19, 20, 27, 28, 29, 35], "light": [2, 3, 5, 9, 10, 11, 13], "likelihood": 49, "limit": [43, 55, 67, 72, 73], "linear": [42, 50, 55, 57, 64, 70, 71, 72], "link": [47, 53, 69, 71], "literatur": 65, "logist": [49, 70], "loss": [71, 72, 73], "lu": 64, "machin": [42, 50, 55, 63, 65, 70, 72], "main": [67, 70], "make": [42, 51, 52, 62, 71], "mani": [52, 54], "markdown": [22, 23, 24, 27, 28, 29], "mass": 70, "materi": [65, 70, 71, 72, 73], "math": [47, 71, 72], "mathemat": [45, 47, 50, 71, 72], "matric": [47, 64, 70], "matrix": [43, 47, 53, 54, 58, 64, 70, 71, 72, 73], "matter": 42, "max": 71, "me": 29, "mean": [42, 71, 72], "meet": [47, 52, 67, 70, 71], "memori": 73, "mercer": 50, "metadata": 23, "method": [48, 51, 52, 55, 65, 70, 72, 73], "metric": 61, "midnight": 65, "min": 71, "mini": 73, "minibatch": 73, "minim": 70, "mit": 19, "ml": 70, "mlp": 54, "mnist": [45, 46], "model": [42, 43, 46, 48, 54, 57, 59, 70], "moment": 73, "momentum": [55, 65, 73], "mondai": [72, 73], "moon": [50, 51], "more": [22, 45, 48, 64, 65, 70, 71, 72, 73], "motiv": 73, "move": 73, "multilay": 54, "multipl": [43, 45, 59], "multipli": 50, "myst": [22, 23, 24], "need": [65, 70], "network": [43, 44, 45, 46, 49, 54, 70, 73], "neural": [43, 44, 45, 46, 49, 54, 70, 73], "new": [46, 60], "newton": [72, 73], "node": 29, "non": [50, 73], "none": 73, "normal": [42, 43], "notat": 54, "note": [65, 71, 72], "notebook": [23, 24], "novemb": 29, "now": [43, 51, 55, 72, 73], "nuclear": [42, 70], "numba": 70, "number": [42, 44, 67, 71, 73], "numer": [44, 65, 67], "numpi": [64, 70], "object": 45, "obtain": 53, "octob": [29, 65], "od": 44, "off": [48, 61, 65], "ol": [47, 48, 57, 58, 60, 65, 72], "one": [44, 54, 60, 72], "oper": 64, "optim": [43, 50, 55, 60, 63, 70, 71, 72, 73], "order": [55, 60, 73], "ordinari": [47, 48, 58, 61, 65, 70, 71, 72, 73], "organ": [42, 70], "oslo": 69, "other": [46, 51, 53, 54, 64, 65, 70], "our": [20, 42, 46, 47, 53, 55, 65, 70, 71, 72], "outcom": [63, 70], "output": [24, 44], "overarch": [42, 46, 50, 51, 70, 71], "overview": [52, 70, 73], "own": [42, 52, 53, 65, 70, 71], "packag": [64, 70], "panda": [70, 71], "paramet": [70, 71], "paramt": 60, "part": [55, 63, 65, 72], "partial": 44, "pass": 43, "pca": 53, "pdf": 67, "perceptron": 54, "perform": [43, 51], "period": 45, "perspect": 43, "pitaya": 15, "plan": [71, 72, 73], "plethora": 70, "point": 46, "poisson": 44, "polici": 20, "polynomi": [45, 58, 60, 72], "popul": 44, "popular": 70, "practic": [55, 68, 70, 73], "pre": [43, 45], "preambl": 65, "predict": 46, "preprocess": [71, 73], "prerequisit": [45, 63, 70], "present": 62, "princip": 53, "principl": 45, "pro": [51, 73], "probabl": [47, 67], "problem": [43, 44, 55, 70, 71, 72, 73], "procedur": [51, 70], "process": [43, 45], "program": [44, 55, 65, 72, 73], "project": [48, 62, 65, 68, 70], "prop": 55, "propag": [43, 54], "properti": [47, 67, 71, 72, 73], "python": [42, 51, 57, 63, 64, 70], "quick": 50, "quickli": 23, "r": 70, "random": [52, 53, 67], "raphson": 72, "rate": [65, 73], "read": [51, 70, 71, 73], "real": [48, 70], "recommend": [70, 71], "recurr": [46, 54], "reduc": [42, 71], "reduct": 45, "refer": 65, "referenc": 62, "reformul": 44, "regress": [42, 47, 48, 49, 51, 52, 55, 57, 59, 60, 61, 65, 70, 71, 72, 73], "regular": 43, "relat": [], "relev": [69, 71], "relu": 43, "remark": 45, "remind": [48, 50, 70, 71, 72, 73], "replac": [55, 73], "report": [62, 65], "repositori": 57, "requir": [44, 63], "resampl": [48, 61, 65], "rescal": [48, 71], "residu": [71, 72], "resourc": 44, "result": [71, 72], "revisit": [55, 72, 73], "rewrit": [70, 71], "ridg": [42, 47, 48, 59, 60, 61, 65, 71, 72, 73], "rm": 55, "rmsprop": 73, "role": 22, "rule": [54, 73], "rung": 65, "same": [55, 73], "sampl": [22, 53], "scalabl": 73, "scale": [59, 60, 61, 71, 73], "schedul": 70, "schemat": 51, "scheme": 44, "scienc": 70, "scikit": [42, 43, 53, 70, 71, 72, 73], "second": [55, 60, 73], "semest": 68, "sensit": 72, "septemb": [29, 61, 72, 73], "session": [72, 73], "set": [42, 44, 45, 51, 54, 57, 66, 70, 71, 72], "setup": 57, "sgd": [55, 73], "should": 43, "show": 29, "similar": [55, 73], "simpl": [42, 46, 51, 55, 60, 70, 71, 72, 73], "simplest": 60, "singl": 52, "singular": [47, 53, 71, 72], "size": [71, 72, 73], "sklearn": 58, "slightli": 73, "smoothi": 15, "sneak": 73, "soft": 50, "softmax": 43, "softwar": [35, 65, 70], "solv": [44, 72], "solver": 55, "some": [55, 64, 71, 72], "sourc": 39, "specifi": 44, "speed": 73, "sphinx": 35, "split": [42, 57, 71], "squar": [42, 47, 48, 52, 58, 61, 65, 70, 71, 72, 73], "standard": [55, 71], "start": 62, "state": 42, "statist": [47, 48, 63, 67, 70], "steepest": [52, 55, 72], "step": 73, "stochast": [55, 65, 67, 73], "stop": 73, "strongli": [70, 73], "structur": 39, "suggest": 70, "summari": [68, 70], "superposit": 45, "supervis": 43, "support": 50, "svd": [47, 71, 72], "synthet": 60, "systemat": 45, "t": 71, "take": 58, "taken": [70, 73], "teach": 68, "teacher": [68, 70], "team": 20, "technic": 71, "techniqu": [48, 53, 65], "technologi": 63, "tensorflow": [43, 45], "tent": [68, 70], "term": 20, "test": [42, 43, 57, 59, 71], "texmath": 29, "text": 70, "textbook": [69, 70], "than": 72, "theorem": [47, 50, 53, 54, 67], "theoret": 73, "theori": 67, "theta": 60, "thi": 70, "time": 73, "tip": [55, 73], "todo": 29, "togeth": 54, "tool": [65, 70], "top": 43, "topic": 70, "toward": 53, "trade": [48, 61, 65], "tradeoff": 48, "train": [42, 43, 46, 57, 70, 71], "transform": 45, "translat": 39, "tree": [51, 52], "tuesdai": 72, "tune": 43, "two": [45, 50, 63], "type": [44, 46, 54, 70], "uio": 70, "univers": [54, 69], "unsupervis": 56, "up": [42, 44, 51, 54, 57, 70, 71, 72], "updat": [39, 65, 73], "us": [28, 29, 42, 43, 44, 45, 49, 55, 58, 60, 61, 63, 65, 70, 71, 72, 73], "usag": 73, "v": [45, 73], "valid": [48, 65], "valu": [47, 53, 61, 67, 71, 72], "vari": 73, "variabl": [67, 72], "varianc": [48, 61, 65], "variou": 42, "vector": [50, 54, 58, 64, 70, 71], "versu": 70, "video": 73, "view": [42, 46, 52, 71], "virtual": 57, "visual": [43, 51], "wai": [51, 65], "wave": 44, "we": [70, 73], "wednesdai": 72, "week": [57, 58, 59, 60, 61, 62, 70, 71, 72, 73], "weekli": [], "welcom": 21, "what": [22, 42, 70, 71, 72], "when": 73, "which": [43, 73], "why": [70, 73], "wisconsin": 49, "workflow": 39, "write": [46, 53, 62, 65, 72], "x": 71, "xgboost": 52, "yaml": 23, "yet": 72, "your": [21, 42, 52, 58, 60, 65, 71]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"1a)": [[62, "a"]], "3-Clause BSD License": [[31, "clause-bsd-license"]], "3a)": [[62, "id1"]], "3b)": [[62, "b"]], "4a)": [[62, "id2"]], "4b)": [[62, "id3"]], "A Classification Tree": [[53, "a-classification-tree"]], "A Frequentist approach to data analysis": [[44, "a-frequentist-approach-to-data-analysis"], [72, "a-frequentist-approach-to-data-analysis"]], "A better approach": [[52, "a-better-approach"]], "A first summary": [[72, "a-first-summary"]], "A guide to masked arrays in NumPy": [[30, null]], "A quick Reminder on Lagrangian Multipliers": [[52, "a-quick-reminder-on-lagrangian-multipliers"]], "A simple example": [[48, "a-simple-example"]], "A soft classifier": [[52, "a-soft-classifier"]], "A top-down perspective on Neural networks": [[45, "a-top-down-perspective-on-neural-networks"]], "A11Y Dark": [[0, null]], "A11Y High Contrast Dark": [[1, null]], "A11Y High Contrast Light": [[2, null]], "A11Y Light": [[3, null]], "ADAM algorithm, taken from Goodfellow et al": [[75, "adam-algorithm-taken-from-goodfellow-et-al"]], "ADAM optimizer": [[57, "adam-optimizer"], [75, "id2"]], "API": [[27, "api"]], "About the IPython Development Team": [[20, "about-the-ipython-development-team"]], "Accuracy": [[75, "accuracy"]], "Activation functions": [[56, "activation-functions"]], "AdaGrad Properties": [[75, "adagrad-properties"]], "AdaGrad Update Rule Derivation": [[75, "adagrad-update-rule-derivation"]], "AdaGrad algorithm, taken from Goodfellow et al": [[75, "adagrad-algorithm-taken-from-goodfellow-et-al"]], "Adam Optimizer": [[75, "adam-optimizer"]], "Adam vs. AdaGrad and RMSProp": [[75, "adam-vs-adagrad-and-rmsprop"]], "Adam: Bias Correction": [[75, "adam-bias-correction"]], "Adam: Exponential Moving Averages (Moments)": [[75, "adam-exponential-moving-averages-moments"]], "Adam: Update Rule Derivation": [[75, "adam-update-rule-derivation"]], "Adaptive boosting: AdaBoost, Basic Algorithm": [[54, "adaptive-boosting-adaboost-basic-algorithm"]], "Adaptivity Across Dimensions": [[75, "adaptivity-across-dimensions"]], "Adding error analysis and training set up": [[72, "adding-error-analysis-and-training-set-up"], [73, "adding-error-analysis-and-training-set-up"]], "Adjust hyperparameters": [[45, "adjust-hyperparameters"]], "Algorithms and codes for Adagrad, RMSprop and Adam": [[75, "algorithms-and-codes-for-adagrad-rmsprop-and-adam"]], "Algorithms for Setting up Decision Trees": [[53, "algorithms-for-setting-up-decision-trees"]], "An Overview of Ensemble Methods": [[54, "an-overview-of-ensemble-methods"]], "An example cell": [[23, "an-example-cell"]], "An extrapolation example": [[48, "an-extrapolation-example"]], "An optimization/minimization problem": [[72, "an-optimization-minimization-problem"]], "And finally \\boldsymbol{X}\\boldsymbol{X}^T": [[73, "and-finally-boldsymbol-x-boldsymbol-x-t"]], "And finally ADAM": [[75, "and-finally-adam"]], "And what about using neural networks?": [[72, "and-what-about-using-neural-networks"]], "Another Example, now with a polynomial fit": [[74, "another-example-now-with-a-polynomial-fit"]], "Another example, the moons again": [[53, "another-example-the-moons-again"]], "Applied Data Analysis and Machine Learning": [[65, null]], "Authors": [[33, null]], "Autocorrelation function": [[69, "autocorrelation-function"]], "Automatic differentiation": [[57, "automatic-differentiation"]], "Back to Ridge and LASSO Regression": [[73, "back-to-ridge-and-lasso-regression"], [74, "back-to-ridge-and-lasso-regression"]], "Back to the Cancer Data": [[55, "back-to-the-cancer-data"]], "Background literature": [[67, "background-literature"]], "Bagging": [[54, "bagging"]], "Bagging Examples": [[54, "bagging-examples"]], "Basic Matrix Features": [[66, "basic-matrix-features"]], "Basic ideas of the Principal Component Analysis (PCA)": [[55, null]], "Basic math of the SVD": [[49, "basic-math-of-the-svd"], [73, "basic-math-of-the-svd"], [74, "basic-math-of-the-svd"]], "Basics": [[51, "basics"]], "Basics of a tree": [[53, "basics-of-a-tree"]], "Batch Normalization": [[45, "batch-normalization"]], "Batches and mini-batches": [[75, "batches-and-mini-batches"]], "Bayes\u2019 Theorem and Ridge and Lasso Regression": [[49, "bayes-theorem-and-ridge-and-lasso-regression"]], "Blinds Dark": [[4, null]], "Blinds Light": [[5, null]], "Boosting, a Bird\u2019s Eye View": [[54, "boosting-a-bird-s-eye-view"]], "Bootstrap": [[50, "bootstrap"]], "Bringing it together, first back propagation equation": [[56, "bringing-it-together-first-back-propagation-equation"]], "Building a Feed Forward Neural Network": [[45, null]], "Building a tree, regression": [[53, "building-a-tree-regression"]], "Building neural networks in Tensorflow and Keras": [[45, "building-neural-networks-in-tensorflow-and-keras"]], "But none of these can compete with Newton\u2019s method": [[75, "but-none-of-these-can-compete-with-newton-s-method"]], "CDN": [[29, "cdn"]], "CHANGELOG": [[29, "changelog"]], "CNNs in more detail, building convolutional neural networks in Tensorflow and Keras": [[47, "cnns-in-more-detail-building-convolutional-neural-networks-in-tensorflow-and-keras"]], "Cancer Data again now with Decision Trees and other Methods": [[53, "cancer-data-again-now-with-decision-trees-and-other-methods"]], "Challenge: Choosing a Fixed Learning Rate": [[75, "challenge-choosing-a-fixed-learning-rate"]], "Choose cost function and optimizer": [[45, "choose-cost-function-and-optimizer"]], "Citations": [[22, "citations"]], "Classical PCA Theorem": [[55, "classical-pca-theorem"]], "Clustering and Unsupervised Learning": [[58, null]], "Code blocks and outputs": [[24, "code-blocks-and-outputs"]], "Code for SVD and Inversion of Matrices": [[49, "code-for-svd-and-inversion-of-matrices"]], "Code with a Number of Minibatches which varies": [[75, "code-with-a-number-of-minibatches-which-varies"]], "Codes and Approaches": [[58, "codes-and-approaches"]], "Codes for the SVD": [[49, "codes-for-the-svd"], [73, "codes-for-the-svd"], [74, "codes-for-the-svd"]], "Coding Setup and Linear Regression": [[59, "coding-setup-and-linear-regression"]], "Collect and pre-process data": [[45, "collect-and-pre-process-data"]], "Colors": [[0, "colors"], [1, "colors"], [2, "colors"], [3, "colors"], [4, "colors"], [5, "colors"], [6, "colors"], [7, "colors"], [8, "colors"], [9, "colors"], [10, "colors"], [11, "colors"], [12, "colors"], [13, "colors"], [14, "colors"], [15, "colors"]], "Communication channels": [[72, "communication-channels"]], "Compare Bagging on Trees with Random Forests": [[54, "compare-bagging-on-trees-with-random-forests"]], "Comparing with a numerical scheme": [[46, "comparing-with-a-numerical-scheme"]], "Comparison with OLS": [[74, "comparison-with-ols"]], "Compiled translation files": [[41, "compiled-translation-files"]], "Components": [[31, "components"]], "Computation of gradients": [[75, "computation-of-gradients"]], "Computing the Gini index": [[53, "computing-the-gini-index"]], "Conditions on convex functions": [[74, "conditions-on-convex-functions"]], "Conjugate gradient method": [[57, "conjugate-gradient-method"]], "Content with notebooks": [[24, null]], "Contents": [[30, "contents"]], "Contributors": [[33, "contributors"]], "Convergence rates": [[75, "convergence-rates"]], "Convex function": [[74, "convex-function"]], "Convex functions": [[57, "convex-functions"], [74, "convex-functions"]], "Convolution Examples: Polynomial multiplication": [[47, "convolution-examples-polynomial-multiplication"]], "Convolution Examples: Principle of Superposition and Periodic Forces (Fourier Transforms)": [[47, "convolution-examples-principle-of-superposition-and-periodic-forces-fourier-transforms"]], "Convolutional Neural Network": [[56, "convolutional-neural-network"]], "Convolutional Neural Networks": [[47, null]], "Correlation Function and Design/Feature Matrix": [[73, "correlation-function-and-design-feature-matrix"]], "Correlation Matrix": [[55, "correlation-matrix"], [73, "correlation-matrix"]], "Correlation Matrix with Pandas": [[73, "correlation-matrix-with-pandas"]], "Course Format": [[72, "course-format"]], "Course setting": [[68, null]], "Covariance Matrix Examples": [[73, "covariance-matrix-examples"]], "Covariance and Correlation Matrix": [[73, "covariance-and-correlation-matrix"]], "Create a notebook with MyST Markdown": [[23, "create-a-notebook-with-myst-markdown"]], "Creator": [[33, "creator"]], "Cross-validation": [[50, "cross-validation"]], "Deadlines for projects (tentative)": [[72, "deadlines-for-projects-tentative"]], "Decision trees, overarching aims": [[53, null]], "Deep Neural Networks": [[75, "deep-neural-networks"]], "Deep learning methods": [[72, "deep-learning-methods"]], "Define model and architecture": [[45, "define-model-and-architecture"]], "Defining the cost function": [[45, "defining-the-cost-function"]], "Definitions": [[63, "definitions"]], "Deliverables": [[59, "deliverables"], [60, "deliverables"], [63, "deliverables"], [64, "deliverables"]], "Dependencies": [[29, "dependencies"]], "Derivation of the AdaGrad Algorithm": [[75, "derivation-of-the-adagrad-algorithm"]], "Derivatives and the chain rule": [[56, "derivatives-and-the-chain-rule"]], "Derivatives, example 1": [[73, "derivatives-example-1"]], "Deriving OLS from a probability distribution": [[49, "deriving-ols-from-a-probability-distribution"]], "Deriving and Implementing Ordinary Least Squares": [[60, "deriving-and-implementing-ordinary-least-squares"]], "Deriving and Implementing Ridge Regression": [[61, "deriving-and-implementing-ridge-regression"]], "Deriving the Lasso Regression Equations": [[73, "deriving-the-lasso-regression-equations"], [74, "deriving-the-lasso-regression-equations"], [74, "id6"]], "Deriving the Ridge Regression Equations": [[73, "deriving-the-ridge-regression-equations"], [74, "deriving-the-ridge-regression-equations"], [74, "id3"]], "Deriving the back propagation code for a multilayer perceptron model": [[56, "deriving-the-back-propagation-code-for-a-multilayer-perceptron-model"]], "Developing a code for doing neural networks with back propagation": [[45, "developing-a-code-for-doing-neural-networks-with-back-propagation"]], "Diagonalize the sample covariance matrix to obtain the principal components": [[55, "diagonalize-the-sample-covariance-matrix-to-obtain-the-principal-components"]], "Different kernels and Mercer\u2019s theorem": [[52, "different-kernels-and-mercer-s-theorem"]], "Disadvantages": [[53, "disadvantages"]], "Discriminative Modeling": [[72, "discriminative-modeling"]], "Domains and probabilities": [[69, "domains-and-probabilities"]], "Dropout": [[45, "dropout"]], "Economy-size SVD": [[73, "economy-size-svd"], [74, "economy-size-svd"]], "Elements of Probability Theory and Statistical Data Analysis": [[69, null]], "Empirical Evidence: Convergence Time and Memory in Practice": [[75, "empirical-evidence-convergence-time-and-memory-in-practice"]], "Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods": [[54, null]], "Entropy and the ID3 algorithm": [[53, "entropy-and-the-id3-algorithm"]], "Essential elements of ML": [[72, "essential-elements-of-ml"]], "Evaluate model performance on test data": [[45, "evaluate-model-performance-on-test-data"]], "Example": [[27, "example"]], "Example 2": [[73, "example-2"]], "Example 3": [[73, "example-3"]], "Example 4": [[73, "example-4"]], "Example Matrix": [[73, "example-matrix"], [74, "example-matrix"]], "Example of discriminative modeling, taken from Generative Deep Learning by David Foster": [[72, "example-of-discriminative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of generative modeling, taken from Generative Deep Learning by David Foster": [[72, "example-of-generative-modeling-taken-from-generative-deep-learning-by-david-foster"]], "Example of own Standard scaling": [[73, "example-of-own-standard-scaling"]], "Example relevant for the exercises": [[73, "example-relevant-for-the-exercises"]], "Example: Exponential decay": [[46, "example-exponential-decay"]], "Example: Population growth": [[46, "example-population-growth"]], "Example: The diffusion equation": [[46, "example-the-diffusion-equation"]], "Example: binary classification problem": [[45, "example-binary-classification-problem"]], "Examples": [[72, "examples"]], "Examples of likelihood functions used in logistic regression and neural networks": [[51, "examples-of-likelihood-functions-used-in-logistic-regression-and-neural-networks"]], "Exercise 1 - Choice of model and degrees of freedom": [[61, "exercise-1-choice-of-model-and-degrees-of-freedom"]], "Exercise 1 - Finding the derivative of Matrix-Vector expressions": [[60, "exercise-1-finding-the-derivative-of-matrix-vector-expressions"]], "Exercise 1 - Github Setup": [[59, "exercise-1-github-setup"]], "Exercise 1, scale your data": [[62, "exercise-1-scale-your-data"]], "Exercise 1: Creating the report document": [[64, "exercise-1-creating-the-report-document"]], "Exercise 1: Expectation values for ordinary least squares expressions": [[63, "exercise-1-expectation-values-for-ordinary-least-squares-expressions"]], "Exercise 1: Setting up various Python environments": [[44, "exercise-1-setting-up-various-python-environments"]], "Exercise 2 - Deriving the expression for OLS": [[60, "exercise-2-deriving-the-expression-for-ols"]], "Exercise 2 - Deriving the expression for Ridge Regression": [[61, "exercise-2-deriving-the-expression-for-ridge-regression"]], "Exercise 2 - Setting up a Github repository": [[59, "exercise-2-setting-up-a-github-repository"]], "Exercise 2, calculate the gradients": [[62, "exercise-2-calculate-the-gradients"]], "Exercise 2: Adding good figures": [[64, "exercise-2-adding-good-figures"]], "Exercise 2: Expectation values for Ridge regression": [[63, "exercise-2-expectation-values-for-ridge-regression"]], "Exercise 2: making your own data and exploring scikit-learn": [[44, "exercise-2-making-your-own-data-and-exploring-scikit-learn"]], "Exercise 3 - Creating feature matrix and implementing OLS using the analytical expression": [[60, "exercise-3-creating-feature-matrix-and-implementing-ols-using-the-analytical-expression"]], "Exercise 3 - Fitting an OLS model to data": [[59, "exercise-3-fitting-an-ols-model-to-data"]], "Exercise 3 - Scaling data": [[61, "exercise-3-scaling-data"]], "Exercise 3 - Setting up a Python virtual environment": [[59, "exercise-3-setting-up-a-python-virtual-environment"]], "Exercise 3, using the analytical formulae for OLS and Ridge regression to find the optimal paramters \\boldsymbol{\\theta}": [[62, "exercise-3-using-the-analytical-formulae-for-ols-and-ridge-regression-to-find-the-optimal-paramters-boldsymbol-theta"]], "Exercise 3: Deriving the expression for the Bias-Variance Trade-off": [[63, "exercise-3-deriving-the-expression-for-the-bias-variance-trade-off"]], "Exercise 3: Normalizing our data": [[44, "exercise-3-normalizing-our-data"]], "Exercise 3: Writing an abstract and introduction": [[64, "exercise-3-writing-an-abstract-and-introduction"]], "Exercise 4 - Fitting a polynomial": [[60, "exercise-4-fitting-a-polynomial"]], "Exercise 4 - Implementing Ridge Regression": [[61, "exercise-4-implementing-ridge-regression"]], "Exercise 4 - Testing multiple hyperparameters": [[61, "exercise-4-testing-multiple-hyperparameters"]], "Exercise 4 - The train-test split": [[59, "exercise-4-the-train-test-split"]], "Exercise 4, Implementing the simplest form for gradient descent": [[62, "exercise-4-implementing-the-simplest-form-for-gradient-descent"]], "Exercise 4: Adding Ridge Regression": [[44, "exercise-4-adding-ridge-regression"]], "Exercise 4: Computing the Bias and Variance": [[63, "exercise-4-computing-the-bias-and-variance"]], "Exercise 4: Making the code available and presentable": [[64, "exercise-4-making-the-code-available-and-presentable"]], "Exercise 5 - Comparing your code with sklearn": [[60, "exercise-5-comparing-your-code-with-sklearn"]], "Exercise 5, Ridge regression and a new Synthetic Dataset": [[62, "exercise-5-ridge-regression-and-a-new-synthetic-dataset"]], "Exercise 5: Analytical exercises": [[44, "exercise-5-analytical-exercises"]], "Exercise 5: Interpretation of scaling and metrics": [[63, "exercise-5-interpretation-of-scaling-and-metrics"]], "Exercise 5: Referencing": [[64, "exercise-5-referencing"]], "Exercise: Cross-validation as resampling techniques, adding more complexity": [[50, "exercise-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Exercise: Analysis of real data": [[50, "exercise-analysis-of-real-data"]], "Exercise: Bias-variance trade-off and resampling techniques": [[50, "exercise-bias-variance-trade-off-and-resampling-techniques"]], "Exercise: Lasso Regression on the Franke function with resampling": [[50, "exercise-lasso-regression-on-the-franke-function-with-resampling"]], "Exercise: Ordinary Least Square (OLS) on the Franke function": [[50, "exercise-ordinary-least-square-ols-on-the-franke-function"]], "Exercise: Ridge Regression on the Franke function with resampling": [[50, "exercise-ridge-regression-on-the-franke-function-with-resampling"]], "Exercises": [[44, "exercises"]], "Exercises and Projects": [[50, "exercises-and-projects"]], "Exercises week 34": [[59, null]], "Exercises week 35": [[60, null]], "Exercises week 36": [[61, null]], "Exercises week 37": [[62, null]], "Exercises week 38": [[63, null]], "Exercises week 39": [[64, null]], "Expectation values": [[69, "expectation-values"]], "Extending to more than one variable": [[74, "extending-to-more-than-one-variable"]], "Extremely useful tools, strongly recommended": [[72, "extremely-useful-tools-strongly-recommended"]], "FAQ": [[29, "faq"]], "Features": [[29, "features"]], "Feed-forward neural networks": [[56, "feed-forward-neural-networks"]], "Feed-forward pass": [[45, "feed-forward-pass"]], "Final back propagating equation": [[56, "final-back-propagating-equation"]], "Fine-tuning neural network hyperparameters": [[45, "fine-tuning-neural-network-hyperparameters"]], "Fitting an Equation of State for Dense Nuclear Matter": [[44, "fitting-an-equation-of-state-for-dense-nuclear-matter"]], "Fixing the singularity": [[73, "fixing-the-singularity"], [74, "fixing-the-singularity"]], "Format for electronic delivery of report and programs": [[67, "format-for-electronic-delivery-of-report-and-programs"]], "Frequently used scaling functions": [[73, "frequently-used-scaling-functions"], [75, "frequently-used-scaling-functions"]], "From OLS to Ridge and Lasso": [[74, "from-ols-to-ridge-and-lasso"]], "From one to many layers, the universal approximation theorem": [[56, "from-one-to-many-layers-the-universal-approximation-theorem"]], "Functionality in Scikit-Learn": [[73, "functionality-in-scikit-learn"], [75, "functionality-in-scikit-learn"]], "Further Dimensionality Remarks": [[47, "further-dimensionality-remarks"]], "Further properties (important for our analyses later)": [[49, "further-properties-important-for-our-analyses-later"], [73, "further-properties-important-for-our-analyses-later"], [74, "further-properties-important-for-our-analyses-later"]], "Gaussian Elimination": [[66, "gaussian-elimination"]], "General Features": [[53, "general-features"]], "General linear models and linear algebra": [[72, "general-linear-models-and-linear-algebra"]], "Generalizing the fitting procedure as a linear algebra problem": [[72, "generalizing-the-fitting-procedure-as-a-linear-algebra-problem"], [72, "id1"]], "Generative Adversarial Networks": [[48, "generative-adversarial-networks"]], "Generative Models": [[48, "generative-models"]], "Generative Versus Discriminative Modeling": [[72, "generative-versus-discriminative-modeling"]], "Geometric Interpretation and link with Singular Value Decomposition": [[55, "geometric-interpretation-and-link-with-singular-value-decomposition"]], "Getting started with project 1": [[64, "getting-started-with-project-1"]], "Github Dark": [[6, null]], "Github Dark Colorblind": [[7, null]], "Github Dark High Contrast": [[8, null]], "Github Light": [[9, null]], "Github Light Colorblind": [[10, null]], "Github Light High Contrast": [[11, null]], "Gotthard Dark": [[12, null]], "Gotthard Light": [[13, null]], "Gradient Boosting, Classification Example": [[54, "gradient-boosting-classification-example"]], "Gradient Boosting, Examples of Regression": [[54, "gradient-boosting-examples-of-regression"]], "Gradient Clipping": [[45, "gradient-clipping"]], "Gradient Descent Example": [[74, "id1"], [75, "id1"]], "Gradient boosting: Basics with Steepest Descent/Functional Gradient Descent": [[54, "gradient-boosting-basics-with-steepest-descent-functional-gradient-descent"]], "Gradient descent": [[46, "gradient-descent"]], "Gradient descent and Ridge": [[74, "gradient-descent-and-ridge"], [75, "gradient-descent-and-ridge"]], "Gradient descent and revisiting Ordinary Least Squares from last week": [[75, "gradient-descent-and-revisiting-ordinary-least-squares-from-last-week"]], "Gradient descent example": [[74, "gradient-descent-example"], [75, "gradient-descent-example"]], "Grading": [[70, "grading"], [70, "id2"], [72, "grading"]], "Greative": [[14, null]], "History": [[30, "history"]], "How to take derivatives of Matrix-Vector expressions": [[60, "how-to-take-derivatives-of-matrix-vector-expressions"]], "Hyperplanes and all that": [[52, "hyperplanes-and-all-that"]], "Important Matrix and vector handling packages": [[66, "important-matrix-and-vector-handling-packages"]], "Important technicalities: More on Rescaling data": [[73, "important-technicalities-more-on-rescaling-data"]], "Improving gradient descent with momentum": [[75, "improving-gradient-descent-with-momentum"]], "Improving performance": [[45, "improving-performance"]], "In summary": [[70, "in-summary"]], "Including Stochastic Gradient Descent with Autograd": [[57, "including-stochastic-gradient-descent-with-autograd"], [75, "including-stochastic-gradient-descent-with-autograd"]], "Incremental PCA": [[55, "incremental-pca"]], "Install": [[28, "install"]], "Installation": [[27, "installation"]], "Installing R, C++, cython or Julia": [[72, "installing-r-c-cython-or-julia"]], "Installing R, C++, cython, Numba etc": [[72, "installing-r-c-cython-numba-etc"]], "Instructor information": [[70, "instructor-information"]], "Interpretations and optimizing our parameters": [[72, "interpretations-and-optimizing-our-parameters"], [72, "id2"], [72, "id3"], [73, "interpretations-and-optimizing-our-parameters"], [73, "id1"], [73, "id2"]], "Interpreting the Ridge results": [[73, "interpreting-the-ridge-results"], [74, "interpreting-the-ridge-results"], [74, "id4"]], "Introducing JAX": [[57, "introducing-jax"]], "Introducing the Covariance and Correlation functions": [[55, "introducing-the-covariance-and-correlation-functions"], [73, "introducing-the-covariance-and-correlation-functions"]], "Introduction": [[44, "introduction"], [50, "introduction"], [65, "introduction"], [66, "introduction"]], "Introduction to numerical projects": [[67, "introduction-to-numerical-projects"]], "Iterative Fitting, Classification and AdaBoost": [[54, "iterative-fitting-classification-and-adaboost"]], "Iterative Fitting, Regression and Squared-error Cost Function": [[54, "iterative-fitting-regression-and-squared-error-cost-function"]], "Kernel PCA": [[55, "kernel-pca"]], "Kernels and non-linearity": [[52, "kernels-and-non-linearity"]], "LU Decomposition, the inverse of a matrix": [[66, "lu-decomposition-the-inverse-of-a-matrix"]], "Lasso Regression": [[74, "lasso-regression"]], "Lasso case": [[74, "lasso-case"]], "Layers": [[45, "layers"]], "Layers used to build CNNs": [[47, "layers-used-to-build-cnns"]], "Learn more": [[22, "learn-more"]], "Learning goals": [[59, "learning-goals"], [60, "learning-goals"], [61, "learning-goals"], [62, "learning-goals"], [63, "learning-goals"], [64, "learning-goals"]], "Learning outcomes": [[65, "learning-outcomes"], [72, "learning-outcomes"]], "Lectures and ComputerLab": [[72, "lectures-and-computerlab"]], "License": [[27, "license"], [28, "license"], [29, "license"]], "License for Sphinx": [[37, null]], "Licenses for incorporated software": [[37, "licenses-for-incorporated-software"]], "Limitations of supervised learning with deep networks": [[45, "limitations-of-supervised-learning-with-deep-networks"]], "Linear Algebra, Handling of Arrays and more Python Features": [[66, null]], "Linear Regression": [[44, null]], "Linear Regression Problems": [[73, "linear-regression-problems"], [74, "linear-regression-problems"]], "Linear Regression and the SVD": [[74, "linear-regression-and-the-svd"]], "Linear Regression, basic elements": [[44, "linear-regression-basic-elements"]], "Linking Bayes\u2019 Theorem with Ridge and Lasso Regression": [[49, "linking-bayes-theorem-with-ridge-and-lasso-regression"]], "Linking the regression analysis with a statistical interpretation": [[49, "linking-the-regression-analysis-with-a-statistical-interpretation"]], "Linking with the SVD": [[49, "linking-with-the-svd"], [73, "linking-with-the-svd"]], "Links to relevant courses at the University of Oslo": [[71, "links-to-relevant-courses-at-the-university-of-oslo"]], "Logistic Regression": [[51, null], [51, "id1"]], "MNIST and GANs": [[48, "mnist-and-gans"]], "Machine Learning": [[72, "machine-learning"]], "Machine learning": [[65, "machine-learning"]], "Main differences": [[30, "main-differences"]], "Main textbooks": [[72, "main-textbooks"]], "Making a tree": [[53, "making-a-tree"]], "Making your own Bootstrap: Changing the Level of the Decision Tree": [[54, "making-your-own-bootstrap-changing-the-level-of-the-decision-tree"]], "Making your own test-train splitting": [[73, "making-your-own-test-train-splitting"]], "Markdown + notebooks": [[24, "markdown-notebooks"]], "Markdown Files": [[22, null]], "Masked records": [[30, "masked-records"]], "Material for exercises week 35": [[73, "material-for-exercises-week-35"]], "Material for lab sessions sessions Tuesday and Wednesday": [[74, "material-for-lab-sessions-sessions-tuesday-and-wednesday"]], "Material for lecture Monday September 2": [[74, "material-for-lecture-monday-september-2"]], "Material for lecture Monday September 8": [[75, "material-for-lecture-monday-september-8"]], "Material for the lab sessions": [[75, "material-for-the-lab-sessions"]], "Mathematical Interpretation of Ordinary Least Squares": [[49, "mathematical-interpretation-of-ordinary-least-squares"], [73, "mathematical-interpretation-of-ordinary-least-squares"], [74, "mathematical-interpretation-of-ordinary-least-squares"]], "Mathematical optimization of convex functions": [[52, "mathematical-optimization-of-convex-functions"]], "Mathematics of CNNs": [[47, "mathematics-of-cnns"]], "Mathematics of the SVD and implications": [[49, "mathematics-of-the-svd-and-implications"], [73, "mathematics-of-the-svd-and-implications"], [74, "mathematics-of-the-svd-and-implications"]], "Matrices in Python": [[72, "matrices-in-python"]], "Matrix multiplication": [[45, "matrix-multiplication"]], "Matrix-vector notation and activation": [[56, "matrix-vector-notation-and-activation"]], "Meet the covariance!": [[69, "meet-the-covariance"]], "Meet the Covariance Matrix": [[49, "meet-the-covariance-matrix"], [73, "meet-the-covariance-matrix"]], "Meet the Hessian Matrix": [[73, "meet-the-hessian-matrix"]], "Meet the Pandas": [[72, "meet-the-pandas"]], "Memory Usage and Scalability": [[75, "memory-usage-and-scalability"]], "Memory constraints": [[75, "memory-constraints"]], "Min-Max Scaling": [[73, "min-max-scaling"]], "Momentum based GD": [[57, "momentum-based-gd"], [75, "momentum-based-gd"]], "More complicated Example: The Ising model": [[50, "more-complicated-example-the-ising-model"]], "More interpretations": [[73, "more-interpretations"], [74, "more-interpretations"], [74, "id5"]], "More on Dimensionalities": [[47, "more-on-dimensionalities"]], "More on Rescaling data": [[50, "more-on-rescaling-data"]], "More on Steepest descent": [[74, "more-on-steepest-descent"]], "More on convex functions": [[74, "more-on-convex-functions"]], "More preprocessing": [[73, "more-preprocessing"], [75, "more-preprocessing"]], "Motivation for Adaptive Step Sizes": [[75, "motivation-for-adaptive-step-sizes"]], "Multilayer perceptrons": [[56, "multilayer-perceptrons"]], "MyST markdown": [[24, "myst-markdown"]], "NCSA Open Source License": [[31, null]], "Network requirements": [[46, "network-requirements"]], "Neural Networks vs CNNs": [[47, "neural-networks-vs-cnns"]], "Neural networks": [[56, null]], "New features": [[30, "new-features"]], "Non-Convex Problems": [[75, "non-convex-problems"]], "Note about SVD Calculations": [[73, "note-about-svd-calculations"], [74, "note-about-svd-calculations"]], "Note on Scikit-Learn": [[74, "note-on-scikit-learn"]], "Notebooks with MyST Markdown": [[23, null]], "Numerical experiments and the covariance, central limit theorem": [[69, "numerical-experiments-and-the-covariance-central-limit-theorem"]], "Numpy and arrays": [[66, "numpy-and-arrays"], [72, "numpy-and-arrays"]], "Numpy examples and Important Matrix and vector handling packages": [[72, "numpy-examples-and-important-matrix-and-vector-handling-packages"]], "Optimization and gradient descent, the central part of any Machine Learning algortithm": [[74, "optimization-and-gradient-descent-the-central-part-of-any-machine-learning-algortithm"]], "Optimization, the central part of any Machine Learning algortithm": [[57, null]], "Optimizing maskedarray": [[30, "optimizing-maskedarray"]], "Optimizing our parameters": [[72, "optimizing-our-parameters"]], "Optimizing our parameters, more details": [[72, "optimizing-our-parameters-more-details"]], "Optimizing the cost function": [[45, "optimizing-the-cost-function"]], "Organizing our data": [[44, "organizing-our-data"], [72, "organizing-our-data"]], "Other Matrix and Vector Operations": [[66, "other-matrix-and-vector-operations"]], "Other Types of Recurrent Neural Networks": [[48, "other-types-of-recurrent-neural-networks"]], "Other courses on Data science and Machine Learning at UiO": [[72, "other-courses-on-data-science-and-machine-learning-at-uio"]], "Other courses on Data science and Machine Learning at UiO, contn": [[72, "other-courses-on-data-science-and-machine-learning-at-uio-contn"]], "Other popular texts": [[72, "other-popular-texts"]], "Other techniques": [[55, "other-techniques"]], "Other types of networks": [[56, "other-types-of-networks"]], "Other ways of visualizing the trees": [[53, "other-ways-of-visualizing-the-trees"]], "Our Copyright Policy": [[20, "our-copyright-policy"]], "Our model for the nuclear binding energies": [[72, "our-model-for-the-nuclear-binding-energies"]], "Overview of first week": [[72, "overview-of-first-week"]], "Overview video on Stochastic Gradient Descent (SGD)": [[75, "overview-video-on-stochastic-gradient-descent-sgd"]], "Own code for Ordinary Least Squares": [[72, "own-code-for-ordinary-least-squares"], [73, "own-code-for-ordinary-least-squares"]], "PCA and scikit-learn": [[55, "pca-and-scikit-learn"]], "Pandas AI": [[72, "pandas-ai"]], "Part a : Ordinary Least Square (OLS) for the Runge function": [[67, "part-a-ordinary-least-square-ols-for-the-runge-function"]], "Part b: Adding Ridge regression for the Runge function": [[67, "part-b-adding-ridge-regression-for-the-runge-function"]], "Part c: Writing your own gradient descent code": [[67, "part-c-writing-your-own-gradient-descent-code"]], "Part d: Including momentum and more advanced ways to update the learning the rate": [[67, "part-d-including-momentum-and-more-advanced-ways-to-update-the-learning-the-rate"]], "Part e: Writing our own code for Lasso regression": [[67, "part-e-writing-our-own-code-for-lasso-regression"]], "Part f: Stochastic gradient descent": [[67, "part-f-stochastic-gradient-descent"]], "Part g: Bias-variance trade-off and resampling techniques": [[67, "part-g-bias-variance-trade-off-and-resampling-techniques"]], "Part h): Cross-validation as resampling techniques, adding more complexity": [[67, "part-h-cross-validation-as-resampling-techniques-adding-more-complexity"]], "Partial Differential Equations": [[46, "partial-differential-equations"]], "Pitaya Smoothie": [[15, null]], "Plans for week 35": [[73, "plans-for-week-35"]], "Plans for week 36": [[74, "plans-for-week-36"]], "Plans for week 37, lecture Monday": [[75, "plans-for-week-37-lecture-monday"]], "Practical tips": [[57, "practical-tips"], [75, "practical-tips"]], "Practicalities": [[70, "practicalities"], [70, "id1"]], "Preamble: Note on writing reports, using reference material, AI and other tools": [[67, "preamble-note-on-writing-reports-using-reference-material-ai-and-other-tools"]], "Predicting New Points With A Trained Recurrent Neural Network": [[48, "predicting-new-points-with-a-trained-recurrent-neural-network"]], "Preprocessing our data": [[73, "preprocessing-our-data"]], "Prerequisites": [[72, "prerequisites"]], "Prerequisites and background": [[65, "prerequisites-and-background"]], "Prerequisites: Collect and pre-process data": [[47, "prerequisites-collect-and-pre-process-data"]], "Probability Distribution Functions": [[69, "probability-distribution-functions"]], "Program example for gradient descent with Ridge Regression": [[74, "program-example-for-gradient-descent-with-ridge-regression"], [75, "program-example-for-gradient-descent-with-ridge-regression"]], "Program for stochastic gradient": [[57, "program-for-stochastic-gradient"]], "Project 1 on Machine Learning, deadline October 6 (midnight), 2025": [[67, null]], "Properties of PDFs": [[69, "properties-of-pdfs"]], "Pros and cons": [[75, "pros-and-cons"]], "Pros and cons of trees, pros": [[53, "pros-and-cons-of-trees-pros"]], "Python installers": [[65, "python-installers"], [72, "python-installers"]], "Quickly add YAML metadata for MyST Notebooks": [[23, "quickly-add-yaml-metadata-for-myst-notebooks"]], "RMS prop": [[57, "rms-prop"]], "RMSProp algorithm, taken from Goodfellow et al": [[75, "rmsprop-algorithm-taken-from-goodfellow-et-al"]], "RMSProp: Adaptive Learning Rates": [[75, "rmsprop-adaptive-learning-rates"]], "RMSprop for adaptive learning rate with Stochastic Gradient Descent": [[75, "rmsprop-for-adaptive-learning-rate-with-stochastic-gradient-descent"]], "Random Numbers": [[69, "random-numbers"]], "Random forests": [[54, "random-forests"]], "Randomized PCA": [[55, "randomized-pca"]], "Reading material": [[72, "reading-material"]], "Reading recommendations:": [[73, "reading-recommendations"]], "Reading suggestions week 34": [[72, "reading-suggestions-week-34"]], "Readings and Videos:": [[75, "readings-and-videos"]], "Recurrent neural networks": [[56, "recurrent-neural-networks"]], "Recurrent neural networks: Overarching view": [[48, null]], "Reducing the number of degrees of freedom, overarching view": [[44, "reducing-the-number-of-degrees-of-freedom-overarching-view"], [73, "reducing-the-number-of-degrees-of-freedom-overarching-view"]], "Reformulating the problem": [[46, "reformulating-the-problem"]], "Regression Case": [[54, "regression-case"]], "Regression analysis and resampling methods": [[67, "regression-analysis-and-resampling-methods"]], "Regression analysis, overarching aims": [[72, "regression-analysis-overarching-aims"]], "Regression analysis, overarching aims II": [[72, "regression-analysis-overarching-aims-ii"]], "Regularization": [[45, "regularization"]], "Reminder from last week": [[73, "reminder-from-last-week"]], "Reminder on Newton-Raphson\u2019s method": [[74, "reminder-on-newton-raphson-s-method"]], "Reminder on Statistics": [[50, "reminder-on-statistics"]], "Reminder on different scaling methods": [[75, "reminder-on-different-scaling-methods"]], "Replace or not": [[57, "replace-or-not"], [75, "replace-or-not"]], "Required Technologies": [[65, "required-technologies"]], "Resampling Methods": [[50, null]], "Resampling and the Bias-Variance Trade-off": [[63, "resampling-and-the-bias-variance-trade-off"]], "Resampling methods": [[50, "id1"]], "Residual Error": [[73, "residual-error"], [74, "residual-error"]], "Resources on differential equations and deep learning": [[46, "resources-on-differential-equations-and-deep-learning"]], "Revision notes": [[30, "revision-notes"]], "Revisiting Ordinary Least Squares": [[74, "revisiting-ordinary-least-squares"]], "Revisiting our Linear Regression Solvers": [[57, "revisiting-our-linear-regression-solvers"]], "Rewriting the Covariance and/or Correlation Matrix": [[73, "rewriting-the-covariance-and-or-correlation-matrix"]], "Rewriting the fitting procedure as a linear algebra problem": [[72, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem"]], "Rewriting the fitting procedure as a linear algebra problem, more details": [[72, "rewriting-the-fitting-procedure-as-a-linear-algebra-problem-more-details"]], "Ridge Regression": [[74, "ridge-regression"]], "Ridge and LASSO Regression": [[73, "ridge-and-lasso-regression"], [74, "ridge-and-lasso-regression"], [74, "id2"]], "Ridge and Lasso Regression": [[49, null], [49, "id1"]], "SGD example": [[75, "sgd-example"]], "SGD vs Full-Batch GD: Convergence Speed and Memory Comparison": [[75, "sgd-vs-full-batch-gd-convergence-speed-and-memory-comparison"]], "SVD analysis": [[74, "svd-analysis"]], "Same code but now with momentum gradient descent": [[57, "same-code-but-now-with-momentum-gradient-descent"], [75, "same-code-but-now-with-momentum-gradient-descent"], [75, "id3"], [75, "id4"]], "Sample Roles and Directives": [[22, "sample-roles-and-directives"]], "Schedule first week": [[72, "schedule-first-week"]], "Schematic Regression Procedure": [[53, "schematic-regression-procedure"]], "Second moment of the gradient": [[75, "second-moment-of-the-gradient"]], "September 15-19": [[63, "september-15-19"]], "Setting up the Back propagation algorithm": [[56, "setting-up-the-back-propagation-algorithm"]], "Setting up the Matrix to be inverted": [[73, "setting-up-the-matrix-to-be-inverted"], [74, "setting-up-the-matrix-to-be-inverted"]], "Setting up the network using Autograd; The full program": [[46, "setting-up-the-network-using-autograd-the-full-program"]], "Should masked arrays be filled before processing or not?": [[30, "should-masked-arrays-be-filled-before-processing-or-not"]], "Show me": [[29, "show-me"]], "Similar (second order function now) problem but now with AdaGrad": [[57, "similar-second-order-function-now-problem-but-now-with-adagrad"], [75, "similar-second-order-function-now-problem-but-now-with-adagrad"]], "Simple Python Code to read in Data and perform Classification": [[53, "simple-python-code-to-read-in-data-and-perform-classification"]], "Simple case": [[73, "simple-case"], [74, "simple-case"]], "Simple code for solving the above problem": [[74, "simple-code-for-solving-the-above-problem"]], "Simple example code": [[75, "simple-example-code"]], "Simple example to illustrate Ordinary Least Squares, Ridge and Lasso Regression": [[74, "simple-example-to-illustrate-ordinary-least-squares-ridge-and-lasso-regression"]], "Simple geometric interpretation": [[74, "simple-geometric-interpretation"]], "Simple linear regression model using scikit-learn": [[44, "simple-linear-regression-model-using-scikit-learn"], [72, "simple-linear-regression-model-using-scikit-learn"]], "Simple one-dimensional second-order polynomial": [[62, "simple-one-dimensional-second-order-polynomial"]], "Simple program": [[74, "simple-program"], [75, "simple-program"]], "Slightly different approach": [[75, "slightly-different-approach"]], "Sneaking in automatic differentiation using Autograd": [[75, "sneaking-in-automatic-differentiation-using-autograd"]], "Software and needed installations": [[67, "software-and-needed-installations"], [72, "software-and-needed-installations"]], "Solving Differential Equations with Deep Learning": [[46, null]], "Solving the one dimensional Poisson equation": [[46, "solving-the-one-dimensional-poisson-equation"]], "Solving the wave equation with Neural Networks": [[46, "solving-the-wave-equation-with-neural-networks"]], "Some famous Matrices": [[66, "some-famous-matrices"]], "Some simple problems": [[57, "some-simple-problems"], [74, "some-simple-problems"]], "Some useful matrix and vector expressions": [[73, "some-useful-matrix-and-vector-expressions"]], "Splitting our Data in Training and Test data": [[44, "splitting-our-data-in-training-and-test-data"], [73, "splitting-our-data-in-training-and-test-data"]], "Standard steepest descent": [[57, "standard-steepest-descent"]], "Statistical analysis and optimization of data": [[65, "statistical-analysis-and-optimization-of-data"], [72, "statistical-analysis-and-optimization-of-data"]], "Steepest descent": [[57, "steepest-descent"], [74, "steepest-descent"]], "Stochastic Gradient Descent": [[75, "stochastic-gradient-descent"]], "Stochastic Gradient Descent (SGD)": [[57, "stochastic-gradient-descent-sgd"], [75, "stochastic-gradient-descent-sgd"]], "Stochastic variables and the main concepts, the discrete case": [[69, "stochastic-variables-and-the-main-concepts-the-discrete-case"]], "Strongly Convex Case": [[75, "strongly-convex-case"]], "Structure of translation files": [[41, "structure-of-translation-files"]], "Support Vector Machines, overarching aims": [[52, null]], "Systematic reduction": [[47, "systematic-reduction"]], "Teachers": [[72, "teachers"]], "Teachers and Grading": [[70, null]], "Teaching Assistants Fall semester 2023": [[70, "teaching-assistants-fall-semester-2023"]], "Tentative deadllines for projects": [[70, "tentative-deadllines-for-projects"]], "Testing the Means Squared Error as function of Complexity": [[44, "testing-the-means-squared-error-as-function-of-complexity"], [73, "testing-the-means-squared-error-as-function-of-complexity"]], "Textbooks": [[71, null]], "Thanks": [[30, "thanks"]], "The Algorithm before theorem": [[55, "the-algorithm-before-theorem"]], "The Breast Cancer Data, now with Keras": [[45, "the-breast-cancer-data-now-with-keras"]], "The CART algorithm for Classification": [[53, "the-cart-algorithm-for-classification"]], "The CART algorithm for Regression": [[53, "the-cart-algorithm-for-regression"]], "The CIFAR01 data set": [[47, "the-cifar01-data-set"]], "The Hessian matrix": [[74, "the-hessian-matrix"], [75, "the-hessian-matrix"]], "The Hessian matrix for Ridge Regression": [[74, "the-hessian-matrix-for-ridge-regression"], [75, "the-hessian-matrix-for-ridge-regression"]], "The IPython licensing terms": [[20, null]], "The Jacobian": [[73, "the-jacobian"]], "The MIT License (MIT)": [[19, null]], "The MNIST dataset again": [[47, "the-mnist-dataset-again"]], "The OLS case": [[74, "the-ols-case"]], "The RELU function family": [[45, "the-relu-function-family"]], "The Ridge case": [[74, "the-ridge-case"]], "The SVD, a Fantastic Algorithm": [[73, "the-svd-a-fantastic-algorithm"], [74, "the-svd-a-fantastic-algorithm"]], "The Softmax function": [[45, "the-softmax-function"]], "The \\chi^2 function": [[44, "the-chi-2-function"], [72, "the-chi-2-function"], [72, "id4"], [72, "id5"], [72, "id6"], [72, "id7"], [72, "id8"]], "The bias-variance tradeoff": [[50, "the-bias-variance-tradeoff"]], "The code for solving the ODE": [[46, "the-code-for-solving-the-ode"]], "The complete code with a simple data set": [[73, "the-complete-code-with-a-simple-data-set"]], "The cost/loss function": [[73, "the-cost-loss-function"]], "The course has two central parts": [[65, "the-course-has-two-central-parts"]], "The derivative of the cost/loss function": [[74, "the-derivative-of-the-cost-loss-function"], [75, "the-derivative-of-the-cost-loss-function"]], "The equations": [[74, "the-equations"]], "The equations for ordinary least squares": [[73, "the-equations-for-ordinary-least-squares"]], "The first Case": [[74, "the-first-case"]], "The gradient step": [[75, "the-gradient-step"]], "The ideal": [[74, "the-ideal"]], "The logistic function": [[51, "the-logistic-function"]], "The mean squared error and its derivative": [[73, "the-mean-squared-error-and-its-derivative"]], "The moons example": [[52, "the-moons-example"]], "The multilayer perceptron (MLP)": [[56, "the-multilayer-perceptron-mlp"]], "The network with one input layer, specified number of hidden layers, and one output layer": [[46, "the-network-with-one-input-layer-specified-number-of-hidden-layers-and-one-output-layer"]], "The plethora of machine learning algorithms/methods": [[72, "the-plethora-of-machine-learning-algorithms-methods"]], "The sensitiveness of the gradient descent": [[74, "the-sensitiveness-of-the-gradient-descent"]], "The singular value decomposition": [[49, "the-singular-value-decomposition"], [73, "the-singular-value-decomposition"], [74, "the-singular-value-decomposition"]], "The two-dimensional case": [[52, "the-two-dimensional-case"]], "Theoretical Convergence Speed and convex optimization": [[75, "theoretical-convergence-speed-and-convex-optimization"]], "Time decay rate": [[75, "time-decay-rate"]], "To our real data: nuclear binding energies. Brief reminder on masses and binding energies": [[72, "to-our-real-data-nuclear-binding-energies-brief-reminder-on-masses-and-binding-energies"]], "To update a translation": [[41, "to-update-a-translation"]], "ToDo": [[29, "todo"]], "Topics covered in this course: Statistical analysis and optimization of data": [[72, "topics-covered-in-this-course-statistical-analysis-and-optimization-of-data"]], "Towards the PCA theorem": [[55, "towards-the-pca-theorem"]], "Train and test datasets": [[45, "train-and-test-datasets"]], "Translation source files": [[41, "translation-source-files"]], "Translation workflow": [[41, null]], "Two-dimensional Objects": [[47, "two-dimensional-objects"]], "Type of problem": [[46, "type-of-problem"]], "Types of Machine Learning": [[72, "types-of-machine-learning"]], "Use": [[28, "use"]], "Use in Browser": [[29, "use-in-browser"]], "Use the books!": [[63, "use-the-books"]], "Use with node.js": [[29, "use-with-node-js"]], "Useful Python libraries": [[65, "useful-python-libraries"], [72, "useful-python-libraries"]], "Using Autograd": [[57, "using-autograd"]], "Using forward Euler to solve the ODE": [[46, "using-forward-euler-to-solve-the-ode"]], "Using gradient descent methods, limitations": [[57, "using-gradient-descent-methods-limitations"], [74, "using-gradient-descent-methods-limitations"], [75, "using-gradient-descent-methods-limitations"]], "Using maskedarray with matplotlib": [[30, "using-maskedarray-with-matplotlib"]], "Using the new package with numpy.core.ma": [[30, "using-the-new-package-with-numpy-core-ma"]], "Visualization": [[45, "visualization"], [45, "id1"]], "Visualizing the Tree, Classification": [[53, "visualizing-the-tree-classification"]], "Week 34: Introduction to the course, Logistics and Practicalities": [[72, null]], "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression": [[73, null]], "Week 36: Linear Regression and Gradient descent": [[74, null]], "Week 37: Gradient descent methods": [[75, null]], "Welcome to your Jupyter Book": [[21, null]], "What Is Generative Modeling?": [[72, "what-is-generative-modeling"]], "What does it mean?": [[73, "what-does-it-mean"], [74, "what-does-it-mean"]], "What is Machine Learning?": [[44, "what-is-machine-learning"]], "What is MyST?": [[22, "what-is-myst"]], "What is a good model?": [[44, "what-is-a-good-model"], [72, "what-is-a-good-model"]], "What is a good model? Can we define it?": [[72, "what-is-a-good-model-can-we-define-it"]], "When do we stop?": [[75, "when-do-we-stop"]], "Which activation function should I use?": [[45, "which-activation-function-should-i-use"]], "Why Combine Momentum and RMSProp?": [[75, "why-combine-momentum-and-rmsprop"]], "Why Linear Regression (aka Ordinary Least Squares and family)": [[72, "why-linear-regression-aka-ordinary-least-squares-and-family"]], "Wisconsin Cancer Data": [[51, "wisconsin-cancer-data"]], "With Lasso Regression": [[74, "with-lasso-regression"]], "Workflow of translations": [[41, "workflow-of-translations"]], "Writing Our First Generative Adversarial Network": [[48, "writing-our-first-generative-adversarial-network"]], "Writing our own PCA code": [[55, "writing-our-own-pca-code"]], "Writing the Cost Function": [[74, "writing-the-cost-function"]], "XGBoost: Extreme Gradient Boosting": [[54, "xgboost-extreme-gradient-boosting"]], "Yet another Example": [[74, "yet-another-example"]], "[0.4.4] on September 27, 2017": [[29, "on-september-27-2017"]], "[0.4.5] on November 06, 2017": [[29, "on-november-06-2017"]], "[0.4.6] on January 05, 2018": [[29, "on-january-05-2018"]], "[0.5.0] on August 15, 2018": [[29, "on-august-15-2018"]], "[0.5.2] on September 07, 2018": [[29, "on-september-07-2018"]], "[0.5.3] on November 11, 2018": [[29, "on-november-11-2018"]], "[0.5.4] on January 20, 2019": [[29, "on-january-20-2019"]], "[0.5.5] on February 07, 2019": [[29, "on-february-07-2019"]], "[0.6.0] on October 04, 2019": [[29, "on-october-04-2019"]], "a) Expression for Ridge regression": [[61, "a-expression-for-ridge-regression"]], "markdown-it-container": [[27, null]], "markdown-it-deflist": [[28, null]], "markdown-it-texmath": [[29, null]], "scikit-learn implementation": [[45, "scikit-learn-implementation"]]}, "docnames": [".venv/lib/python3.13/site-packages/a11y_pygments/a11y_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_colorblind/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_high_contrast/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_colorblind/README", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_high_contrast/README", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_dark/README", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_light/README", ".venv/lib/python3.13/site-packages/a11y_pygments/greative/README", ".venv/lib/python3.13/site-packages/a11y_pygments/pitaya_smoothie/README", ".venv/lib/python3.13/site-packages/alabaster-0.7.16.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README", ".venv/lib/python3.13/site-packages/idna-3.10.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/ipython-9.5.0.dist-info/licenses/COPYING", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/intro", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/notebooks", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/AUTHORS", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/mdit_py_plugins/container/README", ".venv/lib/python3.13/site-packages/mdit_py_plugins/deflist/README", ".venv/lib/python3.13/site-packages/mdit_py_plugins/texmath/README", ".venv/lib/python3.13/site-packages/numpy/ma/README", ".venv/lib/python3.13/site-packages/numpy/random/LICENSE", ".venv/lib/python3.13/site-packages/pip-25.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE", ".venv/lib/python3.13/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/AUTHORS", ".venv/lib/python3.13/site-packages/pybtex_docutils-1.0.3.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/pyzmq-27.0.2.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/soupsieve-2.8.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/sphinx-7.4.7.dist-info/LICENSE", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module", ".venv/lib/python3.13/site-packages/sphinx_book_theme/assets/translations/README", ".venv/lib/python3.13/site-packages/sphinxcontrib_bibtex-2.6.5.dist-info/licenses/LICENSE", ".venv/lib/python3.13/site-packages/zmq/backend/cffi/README", "chapter1", "chapter10", "chapter11", "chapter12", "chapter13", "chapter2", "chapter3", "chapter4", "chapter5", "chapter6", "chapter7", "chapter8", "chapter9", "chapteroptimization", "clustering", "exercisesweek34", "exercisesweek35", "exercisesweek36", "exercisesweek37", "exercisesweek38", "exercisesweek39", "intro", "linalg", "project1", "schedule", "statistics", "teachers", "textbooks", "week34", "week35", "week36", "week37"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": [".venv/lib/python3.13/site-packages/a11y_pygments/a11y_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_high_contrast_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/a11y_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/blinds_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_colorblind/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_dark_high_contrast/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_colorblind/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/github_light_high_contrast/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_dark/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/gotthard_light/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/greative/README.md", ".venv/lib/python3.13/site-packages/a11y_pygments/pitaya_smoothie/README.md", ".venv/lib/python3.13/site-packages/alabaster-0.7.16.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README.md", ".venv/lib/python3.13/site-packages/idna-3.10.dist-info/LICENSE.md", ".venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/ipython-9.5.0.dist-info/licenses/COPYING.rst", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/intro.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.md", ".venv/lib/python3.13/site-packages/jupyter_book/book_template/notebooks.ipynb", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/AUTHORS.rst", ".venv/lib/python3.13/site-packages/latexcodec-3.0.1.dist-info/licenses/LICENSE.rst", ".venv/lib/python3.13/site-packages/mdit_py_plugins/container/README.md", ".venv/lib/python3.13/site-packages/mdit_py_plugins/deflist/README.md", ".venv/lib/python3.13/site-packages/mdit_py_plugins/texmath/README.md", ".venv/lib/python3.13/site-packages/numpy/ma/README.rst", ".venv/lib/python3.13/site-packages/numpy/random/LICENSE.md", ".venv/lib/python3.13/site-packages/pip-25.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md", ".venv/lib/python3.13/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/AUTHORS.rst", ".venv/lib/python3.13/site-packages/pybtex_docutils-1.0.3.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/pyzmq-27.0.2.dist-info/licenses/LICENSE.md", ".venv/lib/python3.13/site-packages/soupsieve-2.8.dist-info/licenses/LICENSE.md", ".venv/lib/python3.13/site-packages/sphinx-7.4.7.dist-info/LICENSE.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", ".venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst", ".venv/lib/python3.13/site-packages/sphinx_book_theme/assets/translations/README.md", ".venv/lib/python3.13/site-packages/sphinxcontrib_bibtex-2.6.5.dist-info/licenses/LICENSE.rst", ".venv/lib/python3.13/site-packages/zmq/backend/cffi/README.md", "chapter1.ipynb", "chapter10.ipynb", "chapter11.ipynb", "chapter12.ipynb", "chapter13.ipynb", "chapter2.ipynb", "chapter3.ipynb", "chapter4.ipynb", "chapter5.ipynb", "chapter6.ipynb", "chapter7.ipynb", "chapter8.ipynb", "chapter9.ipynb", "chapteroptimization.ipynb", "clustering.ipynb", "exercisesweek34.ipynb", "exercisesweek35.ipynb", "exercisesweek36.ipynb", "exercisesweek37.ipynb", "exercisesweek38.ipynb", "exercisesweek39.ipynb", "intro.md", "linalg.ipynb", "project1.ipynb", "schedule.md", "statistics.ipynb", "teachers.md", "textbooks.md", "week34.ipynb", "week35.ipynb", "week36.ipynb", "week37.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 15, 22, 23, 24, 27, 29, 30, 31, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 59, 60, 61, 63, 65, 66, 67, 69, 70, 72, 73], "0": [0, 4, 8, 9, 10, 11, 15, 24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 70, 72, 73, 74, 75], "00": [44, 45, 49, 55, 72, 73], "000": [45, 47], "000000": [5, 12], "00000000e": [], "001": [46, 52, 57, 74, 75], "004": 49, "004113634617443131": 73, "004113634617443139": 73, "00411363461744314": 73, "004113634617443147": 73, "005b82": 2, "00622f": 2, "00727646693": [44, 72], "0072b2": 5, "00749c": 3, "008561": 5, "0086649156": [44, 72], "00e0e0": [0, 1], "01": [30, 44, 45, 46, 49, 53, 55, 57, 61, 71, 72, 73, 75], "010726": 14, "0110": 69, "01719003e": [], "02": [44, 48, 51, 56, 72], "02334824": [], "023b95": 11, "024c1a": 11, "02857": 48, "02f": 50, "03077640549": 48, "03097597e": [], "031": 49, "04": 55, "0458": 53, "05": [48, 50], "0550ae": [9, 10], "062292565": 48, "062435": [], "06730814": [], "07": [], "0713": [44, 72], "07285": 47, "08": [30, 69], "08078025e": [], "080808": 2, "08336233266": 48, "08376632": 73, "083766322923899": 73, "0837663229239043": 73, "0917": 53, "0969da4a": [9, 10, 11], "0d1117": [6, 7, 8], "0n": [44, 72], "0x113e21950": 61, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 24, 27, 29, 30, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 66, 68, 69, 70, 71, 72, 74, 75], "10": [0, 1, 7, 11, 14, 24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 66, 68, 69, 70, 72, 73, 74, 75], "100": [24, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 69, 70, 72, 73, 74, 75], "1000": [44, 45, 46, 48, 49, 52, 55, 57, 58, 62, 63, 65, 69, 72, 74, 75], "10000": [46, 49, 50, 54, 55, 57, 69], "100000": 52, "10001": 54, "1001": 69, "1002": 69, "1003": 69, "1005": 69, "1009": 69, "101": 60, "1011": 69, "1013": 69, "1013904243": 69, "1015": 69, "102": 60, "1023": 69, "1024": 47, "1026": 69, "1027": 69, "103": 45, "1030": 69, "1037": 69, "1038": 69, "1040": 69, "1047": 69, "107": 60, "108": [], "10th": 53, "10x": [44, 72], "11": [8, 44, 46, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 66, 67, 69, 71, 72, 73, 74, 75], "110": [], "1100": 69, "1101": 69, "111": [45, 51, 56], "112": 60, "11340253": [], "11590451": [], "116": 60, "116329": 9, "116633": 3, "117": 60, "118": 60, "12": [6, 7, 8, 15, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 62, 66, 69, 71, 72, 73, 74, 75], "120": 47, "121": [52, 53, 54, 60], "1215pm": [70, 72], "122": [52, 53, 54], "124": [44, 72], "125": 60, "127": [48, 60], "128": [47, 48, 57, 75], "129": 60, "1298": 53, "12pm": [70, 72], "13": [0, 1, 8, 14, 44, 46, 53, 56, 66, 69, 72], "131": 60, "133": 51, "135": 60, "136": 60, "14": [3, 8, 9, 10, 11, 44, 46, 48, 50, 52, 53, 54, 56, 66, 69, 71, 73], "141": 60, "1412": 75, "141414": 13, "143": 60, "1446729567": 48, "149": 60, "14g": 50, "15": [44, 46, 48, 50, 51, 52, 53, 56, 57, 67, 69, 72, 74, 75], "150": [48, 52], "152": 60, "153760": [], "156": 60, "157": [], "158": [], "159": 60, "15g": 50, "15pm": 72, "16": [13, 45, 46, 47, 48, 49, 52, 53, 54, 69, 72, 74], "160": 60, "1603": 47, "161": 60, "162": 60, "16231451": 48, "163": 60, "16384": 47, "164": 60, "167": 60, "17": [15, 45, 46, 52, 69], "172": 60, "173": 60, "176": 60, "178": 60, "179": 60, "1797": 45, "18": [46, 50, 51, 52, 53, 54, 69, 72], "1807": 48, "181036": 15, "18392847": [], "18c1c4": 15, "19": [2, 12, 46, 69, 72], "1940": [], "1943": 56, "19569961": 73, "19680801": 24, "1970": [66, 72], "1973": 53, "1979": 50, "1_1": 56, "1_2": 56, "1_3": 56, "1cm": [44, 52, 54, 69, 72], "1d": [45, 46, 47], "1e": [46, 48, 57, 58, 75], "1e10": 58, "1e1e1": 3, "1e4": 50, "1f": 45, "1k": 66, "1n": [44, 72], "1x": [44, 72], "2": [1, 6, 11, 13, 15, 23, 30, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 65, 66, 67, 69, 71, 75], "20": [5, 44, 45, 46, 50, 51, 52, 60, 61, 69, 70, 72, 73, 74, 75], "200": [44, 46, 47, 48, 52, 53, 54], "2000": [44, 73], "2001": 20, "2004": [57, 74], "2006": 71, "2007": [30, 37], "20072279": [], "2008": [37, 72, 75], "2009": 35, "2010": [16, 45], "2011": [16, 26, 42, 45, 75], "2012": [35, 75], "2013": [18, 32, 34], "2014": [48, 75], "2015": 45, "2016": [19, 44, 72], "2018": [36, 44, 50, 73], "2019": 31, "2020": [16, 26], "2021": [34, 50, 58, 73, 75], "2022": 72, "2024": [18, 32, 37, 42], "2025": [36, 62, 72, 73, 74, 75], "21": [30, 44, 45, 49, 51, 53, 56, 66, 72, 73, 74], "2116753732": 48, "215pm": [70, 72], "2167072": [], "22": [44, 45, 49, 56, 57, 66, 72, 73, 74], "221": 52, "225": 48, "22948497": [], "23": [30, 45, 56, 66], "24": [44, 45, 66, 72], "242424": 4, "24292f": [9, 10, 11], "25": [30, 46, 47, 48, 49, 50, 52, 53, 55, 73], "250": [46, 48, 51, 53], "25000": [], "250154": [], "252124": 25, "253775": [], "255": 47, "256": [48, 75], "25x": 67, "26": 29, "26303845": [], "264": [], "265": [], "265109911": 48, "266": [], "269": [], "27": 45, "270": [], "278": [74, 75], "27n_": 69, "28": [45, 47, 48], "283": [74, 75], "2830637392": 48, "2861": 69, "2873": 53, "2882": 69, "2886": 69, "2890": [44, 72], "2892": 69, "29": 73, "2915": 69, "2931": 72, "29364655": [], "294399745619595": [], "296247": [], "2968": 72, "2980": 72, "298273": [], "298375": [], "2990": 72, "2_": 56, "2_1": 56, "2_2": 56, "2_3": 56, "2_i": 56, "2_m": [50, 69], "2_t": 57, "2_x": 69, "2a": 61, "2a1968": 15, "2b": 69, "2b2b2b": [0, 1], "2c8f433990d1": 75, "2cm": 52, "2d": [45, 47, 55, 56, 65, 72], "2e": 50, "2f": [44, 51, 53, 54, 55, 56, 72], "2g": 46, "2g_i": 46, "2k": 47, "2m": 50, "2mvizaqfst8": 73, "2n": [44, 46, 47, 72, 73], "2nd": 53, "2p": 69, "2pt": 48, "2x": [44, 47, 52, 57, 72], "2x_ix_jy_iy_j": 52, "2x_j": 52, "2y_i": 54, "2y_j": 52, "3": [0, 1, 3, 6, 7, 8, 12, 14, 18, 20, 30, 32, 35, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 65, 66, 67, 68, 69, 70, 72, 74, 75], "30": [44, 45, 48, 50, 51, 54, 57, 70, 75], "30000": [44, 72], "3072": 47, "31": [56, 66, 69], "315": [50, 73, 75], "3155": [44, 49, 50, 73, 74, 75], "32": [47, 48, 50, 56, 57, 66, 69, 75], "3200": 45, "3250": 45, "3297": [], "33": [56, 66, 70], "3303": [], "3310": [], "332331": [], "333": 51, "3331": [], "3337": [], "34": [30, 66], "3436": [44, 72], "3437": [44, 72], "35": [44, 50, 67, 72, 74, 75], "3581341341": 48, "359": [49, 74], "36": [44, 49, 50, 62, 67, 69], "37": [67, 74], "370782966": 48, "38": [67, 69], "39": [44, 70, 72], "3d": [46, 47, 48, 50, 57, 60], "3d73a9": 13, "3f": [45, 47, 53], "3n": 66, "3x": [46, 52], "3x_i": 46, "3y": 52, "4": [2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 24, 30, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 66, 67, 69, 72, 74, 75], "40": [45, 50, 70, 72], "400": 48, "4000": 72, "40008b9a5380fcacce3976bf7c08af5b": 75, "4050": [71, 72], "41": 66, "4155": [46, 59], "41589548": [], "42": [45, 48, 52, 53, 54, 66], "43": [44, 51, 66], "4310": 72, "436462435": 48, "437a6b": 13, "44": [44, 66, 74, 75], "45": [70, 72], "46": [70, 72], "462": 51, "47": [70, 72], "473d18": 14, "479465113": 48, "47958494": [], "48": [], "48257387": [70, 72], "49": [49, 50, 55], "49152": 47, "4940954": [44, 72], "4990": 69, "4992": 69, "4997": 69, "4c4b4be8": 12, "4c4c7f": [53, 54], "4d": 47, "4f": 50, "4pm": [70, 72], "4y": 52, "4y_i": 54, "5": [2, 4, 5, 6, 9, 10, 11, 13, 14, 15, 24, 30, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 66, 67, 69, 72, 73, 74, 75], "50": [45, 46, 47, 48, 50, 51, 52, 54, 57, 72, 73, 75], "500": [45, 47, 48, 50, 53, 54, 57, 75], "5018": 69, "506": [], "507d50": [53, 54], "50j": 57, "50x10": 45, "51": 54, "510": 45, "512132": [], "515151": [2, 3], "5177783846": 48, "53": 53, "5391cf": 4, "54": [50, 69], "5411205": [], "54894451": [], "55": [30, 45], "56": 45, "56536": [44, 72], "569": 45, "57": [44, 52, 70, 72], "571": [49, 74], "58": [54, 70, 72], "58a6ff70": [7, 8], "591317992": 48, "5ca7e4": 14, "5cm": 69, "5f": [52, 75], "5x": [52, 62], "5y": 52, "6": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 62, 66, 69, 70, 72, 73, 74, 75], "60": [45, 47], "60000": 48, "6019067271": 48, "606439": [], "622cbc": 11, "625": 51, "63": 45, "64": [45, 47, 48, 57, 66, 72, 75], "64x50": 45, "65": [45, 52, 53], "66666691": 4, "66707b": 11, "66ccee": 4, "66e9ec": 15, "6730c5": 2, "6887363571": 48, "69": [30, 60, 69], "69069n_": 69, "691": [], "6980": 75, "6e7681": 6, "6e7781": [9, 10], "6f98b3": 12, "6n_": 69, "7": [0, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 66, 67, 69, 71, 72, 73, 75], "70": [45, 51], "702c00": 11, "70653767": 48, "71": 45, "724": 47, "72f088": 8, "73": [], "7304881": [], "737373": 5, "75": [49, 50, 52, 55], "76": [70, 72], "765": 51, "77": [70, 72], "7718": 53, "7782028952": 48, "77893972": [], "78": [], "797979": 14, "7998f2": 15, "79c0ff": [6, 7], "7d7d58": [53, 54], "7ee787": 6, "7f4707": [2, 3], "8": [0, 1, 3, 4, 6, 8, 10, 11, 12, 14, 15, 29, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 62, 63, 66, 69, 70, 72, 74], "80": [44, 45, 49, 52, 61, 73], "800": [48, 51], "8045e5": 3, "81": 45, "815am": [70, 72], "81b19b": 12, "8250df": [9, 10], "85": 45, "8702784034": 48, "8786ac": 15, "88": 72, "8a4600": 10, "8b949e": 6, "8c8c8c": 4, "8f": 50, "8g": 50, "8n": 66, "8x8": 45, "9": [0, 1, 2, 3, 6, 7, 8, 12, 13, 14, 15, 44, 45, 46, 48, 49, 50, 51, 52, 53, 55, 56, 57, 66, 69, 72, 75], "90": 45, "9040": 53, "91": [30, 70, 72], "912583": 2, "91cbff": 8, "92": [70, 72], "93": 60, "931": [44, 72], "933": [49, 74], "937": 69, "938": 69, "939": [44, 69, 72], "94": 69, "95": [45, 55], "953800": 9, "954": 69, "955820c21e8b": 48, "96": 50, "960": 69, "961": 69, "962": 69, "9649652536": 48, "96611194e": [], "974eb7": 13, "9780387310732": 71, "9780387848570": 71, "9781098134174": 72, "9781492032632": 71, "9781801819312": 72, "97898392": 73, "98": [44, 45, 60], "985": 69, "986": 69, "98661b": 13, "989": 69, "9898ff": [53, 54], "99": [57, 60, 75], "991": 69, "992": 69, "993": 69, "996": 49, "996b00": 5, "999": [53, 69, 75], "999999": 30, "9e86c8": 14, "9e8741": 14, "9f4e55": 13, "9x": 50, "9y": 50, "A": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 46, 47, 49, 50, 51, 54, 55, 56, 57, 59, 60, 63, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75], "AND": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 46], "AS": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "AT": 33, "And": [44, 47, 48, 49, 50, 53, 57, 64, 65, 67, 69, 74], "As": [24, 30, 44, 45, 46, 47, 48, 49, 50, 52, 54, 56, 57, 59, 60, 66, 67, 69, 72, 73, 74, 75], "At": [44, 48, 50, 57, 64, 72, 75], "BE": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 72], "BUT": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "BY": [16, 18, 31, 32, 35, 37, 42], "Be": [46, 62, 65, 72], "Being": 57, "But": [20, 24, 44, 45, 46, 47, 49, 50, 53, 54, 60, 69, 73], "By": [30, 44, 47, 49, 50, 56, 57, 61, 63, 66, 72, 73, 74, 75], "FOR": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "For": [22, 24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 62, 63, 65, 66, 67, 69, 71, 72, 73, 74, 75], "IF": [16, 18, 31, 32, 35, 37, 42, 50, 73, 75], "IN": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 71], "If": [20, 23, 27, 28, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 62, 65, 66, 67, 69, 72, 73, 74, 75], "In": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 65, 66, 67, 69, 71, 72, 73, 74, 75], "Ising": [49, 56, 73, 74], "It": [21, 22, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 62, 64, 65, 66, 67, 69, 72, 73, 74, 75], "Its": [45, 46, 48, 55], "NO": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "NOT": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "No": [30, 50, 53, 72, 73, 75], "Not": [44, 45, 49, 50, 73, 74, 75], "OF": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "ON": [16, 18, 31, 32, 35, 37, 42], "OR": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 69], "Of": 69, "On": [44, 47, 67, 69, 70, 71, 72, 75], "One": [44, 45, 47, 48, 49, 50, 51, 52, 55, 56, 57, 61, 69, 73, 74, 75], "Or": [44, 45, 50, 72], "SUCH": [16, 18, 31, 32, 35, 37, 42], "Such": [44, 50, 56, 60, 69, 75], "THE": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "TO": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "That": [23, 44, 49, 51, 54, 55, 56, 58, 67, 69, 72], "The": [16, 17, 22, 23, 26, 29, 30, 31, 34, 36, 37, 41, 48, 54, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71], "Then": [44, 45, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 72, 74, 75], "There": [24, 44, 47, 48, 49, 50, 52, 53, 55, 56, 58, 59, 66, 67, 69, 70, 72, 73, 74, 75], "These": [41, 44, 47, 48, 49, 52, 53, 54, 55, 56, 57, 58, 61, 62, 66, 67, 69, 70, 72, 73, 74, 75], "To": [17, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 64, 66, 69, 73, 74, 75], "WITH": [19, 26, 31, 34, 36], "With": [20, 23, 27, 44, 49, 50, 52, 53, 54, 55, 56, 58, 60, 63, 66, 67, 69, 72, 73], "_": [44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 66, 67, 72, 73, 74, 75], "_0": [49, 52, 54, 55, 57, 73, 74], "_1": [46, 49, 50, 52, 54, 55, 56, 57, 58, 66, 73, 74, 75], "_2": [46, 49, 52, 55, 56, 57, 66, 73, 75], "_3": 66, "_4": 66, "_9": [57, 75], "__array_finalize__": 30, "__class__": 54, "__doc__": 50, "__future__": [52, 53], "__getattribute__": 30, "__import__": 17, "__init__": [17, 45], "__main__": 46, "__name__": [17, 46, 54], "__new__": 30, "__path__": 17, "_auto1": [46, 47, 48, 49, 50, 51, 56, 57, 66, 69, 73, 74], "_auto10": [50, 56], "_auto11": 50, "_auto12": 50, "_auto2": [46, 47, 48, 49, 50, 56, 57, 66, 69], "_auto3": [47, 48, 49, 50, 56, 57, 66], "_auto4": [48, 50, 56, 57, 66], "_auto5": [48, 50, 56, 57, 66], "_auto6": [48, 50, 56, 66], "_auto7": [48, 50, 56, 66], "_auto8": [50, 56], "_auto9": [50, 56], "_build": [44, 65, 67, 71, 72], "_c": 45, "_center": [], "_compile_transl": 41, "_compon": 55, "_data": 30, "_depth": 53, "_export": [59, 60, 63], "_fraction": 53, "_i": [44, 45, 46, 49, 50, 51, 52, 55, 56, 57, 63, 67, 72, 73, 74, 75], "_j": [44, 45, 46, 47, 49, 50, 52, 57, 63, 67, 73, 74, 75], "_k": [57, 74, 75], "_l": 56, "_lambda": 50, "_leaf": 53, "_m": 54, "_mask": 30, "_multilayer_perceptron": [], "_n": [46, 49, 52, 55, 57, 73, 74, 75], "_node": 53, "_norm": [], "_p": [49, 52, 73, 74], "_parse_numpydoc_see_also_sect": 37, "_pydevd_bundl": 17, "_ratio": 55, "_sampl": 53, "_split": [50, 53, 67], "_t": [57, 75], "_test": [50, 67], "_varianc": 55, "_weight": 53, "a0": 47, "a0111f": 11, "a0faa0": [53, 54], "a1": [44, 72], "a11": [1, 15], "a12236": 2, "a2": [44, 72], "a25e53": 13, "a2bffc": 14, "a3": [44, 72], "a4": [44, 72], "a5d6ff": 7, "a_": [44, 45, 60, 66, 72, 73], "a_0": [44, 72], "a_1a": [44, 72], "a_2a": [44, 72], "a_3": [44, 72], "a_3a": [44, 72], "a_4": [44, 72], "a_4a": [44, 72], "a_h": 45, "a_i": [44, 45, 46, 56, 72], "a_j": [45, 56], "a_k": [44, 45, 56], "aa": [3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15], "aaa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "aaron": 71, "ab": [44, 46, 49, 57, 58, 72, 73, 75], "ab6369": 12, "ab_channel": 65, "abandon": 45, "abe338": [0, 1], "abid": 69, "abil": [44, 54], "abl": [44, 45, 48, 49, 50, 51, 54, 56, 57, 60, 62, 64, 67, 73, 74, 75], "about": [22, 23, 24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 63, 64, 65, 66, 67, 70, 75], "abov": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 69, 71, 72, 73, 75], "abovement": [50, 67, 72], "abscissa": [57, 74], "absent": 75, "absolut": [44, 46, 49, 50, 57, 72, 73, 74], "absorb": [73, 74], "abstract": [17, 45, 75], "abund": 75, "ac": 31, "acceler": [57, 75], "accept": [22, 30, 44, 47, 50, 53, 67, 73, 75], "access": [0, 1, 2, 3, 15, 47, 55, 69, 72, 75], "accid": [48, 50], "accompani": [44, 72, 73], "accomplish": [52, 53, 57, 75], "accord": [44, 45, 46, 49, 50, 53, 56, 57, 58, 69, 72, 74, 75], "accordingli": 55, "account": [30, 44, 47, 49, 57, 59, 60, 64, 69, 72, 75], "accumul": [56, 57, 69, 75], "accur": [44, 47, 48, 50, 54, 57, 75], "accuraci": [44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 72, 73, 74], "accuracy_scor": [44, 45, 54, 72], "accuracy_score_numpi": 45, "achiev": [44, 45, 49, 50, 52, 56, 66, 72, 75], "aco": 69, "acquaint": 65, "acquir": [45, 65, 72], "acr": [], "across": [45, 47, 50, 53, 61, 65, 72], "act": [45, 47, 66, 75], "action": [19, 26, 31, 34, 36, 69], "activ": [44, 46, 47, 48, 53, 59, 68, 70, 72, 75], "activest": 25, "actual": [30, 44, 45, 48, 49, 50, 52, 55, 59, 60, 62, 66, 69, 72, 73, 74, 75], "ad": [30, 45, 47, 48, 49, 52, 57, 59, 60, 66, 74, 75], "ada_clf": 54, "adaboostclassifi": 54, "adadelta": [57, 75], "adagrad": 67, "adam": [45, 47, 48, 67, 72], "adapt": [48, 50, 57, 61, 71, 74], "add": [17, 28, 29, 41, 44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 61, 62, 64, 69, 70, 72, 73, 74, 75], "add6ff": 5, "add_": 24, "add_subplot": [45, 51, 56, 58], "addendum": 49, "addeventlisten": 29, "addit": [30, 44, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 59, 65, 66, 67, 69, 70, 71, 72, 73], "addition": [56, 57, 74, 75], "address": [45, 53, 55, 57, 72, 75], "adjac": [47, 56], "adjoint": [49, 73], "adjust": [44, 49, 56, 57, 74, 75], "admir": [44, 72], "advanc": [48, 50, 56, 71, 72, 75], "advantag": [45, 47, 49, 50, 54, 57, 63, 66, 74, 75], "adversari": 72, "advis": [16, 18, 31, 32, 35, 37, 42], "afecionado": 72, "affect": [47, 59, 63], "affin": [44, 47, 52, 55, 73], "afford": 47, "aficionado": 72, "aforement": 58, "african": [], "after": [27, 44, 45, 46, 48, 49, 50, 53, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75], "afterward": [44, 72], "ag": [44, 51, 72, 73], "ag_0": 46, "again": [30, 44, 45, 48, 49, 50, 51, 52, 54, 55, 56, 57, 67, 69, 72, 73, 74], "against": [45, 48, 51, 54], "agegroup": 51, "agegroupmean": 51, "aggreg": [53, 54, 75], "agorithm": 54, "agre": [49, 50, 69, 73, 74, 75], "agreement": [57, 75], "ahead": 53, "ai": [44, 71], "aid": [55, 64, 75], "aim": [44, 45, 48, 50, 51, 55, 58, 60, 61, 63, 64, 65, 66, 67, 73], "ainv": 49, "airplan": 47, "aka": 49, "al": [44, 46, 48, 60, 61, 64, 71, 72, 73, 74], "alarm": [49, 51], "aldo": 73, "algebra": [44, 47, 49, 57, 65, 73, 74], "algorithm": [31, 44, 45, 46, 48, 49, 50, 51, 52, 57, 58, 60, 65, 66, 67, 69, 71], "align": [24, 44, 46, 49, 50, 51, 52, 57, 69, 72, 73, 74], "all": [18, 19, 20, 22, 23, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "allevi": [45, 57, 74], "alloc": [47, 66], "allow": [17, 22, 44, 45, 46, 47, 49, 50, 52, 54, 57, 59, 65, 66, 67, 72, 73, 74, 75], "almost": [44, 45, 50, 52, 55, 57, 69, 74, 75], "alon": [46, 53, 75], "along": [30, 46, 47, 48, 49, 50, 53, 54, 55, 59, 64, 65, 66, 72, 73, 74], "alpha": [44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 57, 58, 69, 72, 73, 74, 75], "alpha_": [54, 75], "alpha_0": 47, "alpha_1": 47, "alpha_2": 47, "alpha_i": [47, 57], "alpha_k": 57, "alpha_m": 54, "alpha_n": 47, "alpha_opt": 57, "alreadi": [29, 46, 47, 48, 49, 50, 54, 56, 59, 65, 66, 69, 72, 73, 74], "also": [20, 22, 23, 24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 65, 66, 67, 69, 72, 73, 74, 75], "alter": 45, "altern": [30, 44, 45, 48, 49, 50, 52, 53, 55, 57, 59, 62, 66, 67, 72, 73, 75], "although": [44, 45, 49, 50, 52, 54, 57, 60, 63, 64, 72, 75], "alwai": [30, 44, 47, 49, 50, 56, 57, 60, 63, 67, 69, 72, 73, 74, 75], "am": 48, "ame2016": [44, 72], "american": [], "amjith": 33, "among": [44, 47, 49, 53, 54, 56, 66, 72, 73], "amongst": 49, "amount": [44, 45, 47, 48, 50, 52, 54, 58, 65], "an": [19, 22, 26, 29, 30, 31, 34, 36, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 65, 66, 67, 69, 70, 71, 73, 74, 75], "an_": 69, "anaconda": [44, 45, 65, 67, 72], "analogi": 57, "analys": 50, "analysi": [45, 47, 48, 51, 58, 63, 66, 71, 75], "analyt": [46, 47, 49, 50, 51, 56, 57, 61, 65, 67, 72, 73, 74, 75], "analyz": [44, 45, 47, 48, 49, 50, 60, 67, 69, 73, 74, 75], "andrew": 45, "angl": [44, 47, 53, 73, 75], "anharmon": 47, "ani": [16, 18, 19, 20, 21, 23, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 63, 69, 72, 73, 75], "anim": [48, 56], "ann": 56, "annot": [44, 45, 47, 51, 52, 72], "announc": 72, "anom": 30, "anomali": 30, "anonym": 62, "anoth": [27, 30, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 66, 67, 69, 72, 73, 75], "ansatz": [44, 62, 72], "answer": [44, 45, 47, 49, 50, 63, 66, 67, 70, 72], "antialias": [46, 50], "anticip": 48, "anymor": [45, 52], "anyon": [48, 52, 59], "anyth": [45, 59, 60, 69], "anytim": [70, 72], "anywai": 30, "apach": 45, "apart": [30, 55, 57, 74, 75], "api": [45, 65, 72], "appar": 46, "appear": [44, 45, 47, 57, 66, 69], "append": [45, 47, 48, 52, 53, 57, 63, 72, 75], "appendix": 67, "appli": [44, 45, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 62, 67, 69, 71, 72, 73, 75], "applic": [44, 45, 47, 48, 49, 50, 51, 53, 56, 57, 60, 66, 69, 71, 72, 73, 74, 75], "apply_gradi": 48, "approach": [45, 46, 48, 49, 50, 53, 54, 55, 56, 57, 59, 60, 62, 65, 67, 69, 71, 73, 74], "approch": 67, "appropri": [46, 50, 53, 56, 57, 61, 65, 69, 75], "approv": 72, "approx": [44, 46, 47, 50, 54, 55, 57, 62, 67, 69, 72, 74, 75], "approxim": [44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 57, 63, 67, 69, 72, 73, 74, 75], "apt": [44, 65, 67, 72], "aq": 69, "ar": [16, 18, 20, 22, 23, 30, 31, 32, 35, 37, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "aragorn": 72, "arang": [45, 47, 48, 50, 51, 53, 54, 56, 57, 72, 75], "arbitrari": [45, 48, 50, 52, 56, 57, 69, 74], "arbitrarili": [44, 45, 55, 72, 75], "arc": 50, "architectur": [47, 48, 56], "archiv": 67, "area": [30, 44, 47, 50, 71, 72], "argmax": [45, 55], "argmin": [48, 54, 58], "argsort": 55, "argu": [30, 45, 57], "arguement": 63, "argument": [44, 46, 47, 49, 55, 56, 57, 61, 72, 73, 75], "aris": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 50, 56, 57, 69, 72, 74], "arithmet": [44, 57, 66, 72], "arm": [50, 73, 75], "armadillo": 66, "armin": 16, "around": [44, 45, 48, 49, 50, 55, 62, 67, 69, 72], "arrai": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 60, 62, 65, 67, 69, 73, 74, 75], "arrang": [47, 72], "arraybox": 57, "arriv": [44, 50, 53, 55, 66, 69, 72], "arrow": 56, "arrowprop": 52, "art": [44, 45, 65], "articl": [44, 47, 48, 50, 54, 63, 72, 73, 74, 75], "artifici": [44, 46, 51, 56, 71, 72], "artificialneuron": 56, "arug": 57, "arxiv": [47, 48, 75], "asarrai": [44, 50, 53, 73, 75], "asid": 73, "ask": [49, 50, 55, 56, 59, 63, 67], "aspect": [44, 50, 65, 72, 73], "assembl": 47, "assembli": [44, 72], "assert": 48, "assess": [44, 50, 67, 72, 73], "asset": 41, "assici": 48, "assign": [44, 51, 52, 53, 56, 57, 58, 59, 68, 70, 71, 72], "associ": [19, 26, 31, 34, 36, 44, 50, 53, 56, 58, 69, 72], "assum": [41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 63, 66, 67, 69, 72, 73, 74, 75], "assumpt": [44, 47, 49, 50, 53, 55, 69, 72, 73], "ast": [44, 49, 50, 72], "astyp": [48, 53, 54], "asymmetri": [44, 72], "asymptot": [48, 50, 75], "atom": [44, 72], "attain": 75, "attempt": [44, 48, 50, 51, 52, 54, 72, 73, 75], "attend": 72, "attent": [44, 66, 72], "attract": [44, 54, 72], "attribut": [30, 44, 53, 72], "audi": [44, 72], "audio": [47, 48], "august": [72, 73], "aurelien": [44, 71, 72], "austfjel": 50, "auth": 59, "authent": 59, "author": [19, 25, 26, 29, 34, 36, 37, 44, 45, 54, 69], "authour": 72, "auto": [41, 53, 54, 69], "auto_exampl": [67, 73], "autocor": 69, "autocorrelation_tim": 69, "autocorrelform": 69, "autocovari": 69, "autoencod": [48, 65, 72], "autoencond": 65, "autograd": [65, 72], "autom": [44, 65, 71, 72], "automac": 66, "automag": 72, "automat": [41, 44, 45, 46, 47, 48, 55, 60, 65, 66, 72], "automobil": 47, "autonom": 48, "avail": [30, 44, 45, 48, 50, 54, 55, 65, 66, 67, 68, 70, 71, 72], "avali": 64, "averag": [30, 44, 45, 47, 50, 53, 54, 57, 58, 69, 70, 72, 73], "avoid": [29, 30, 44, 48, 49, 50, 53, 55, 57, 62, 66, 73, 75], "awai": [46, 47, 50, 73, 75], "awar": [46, 54], "award": [70, 72], "ax": [24, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 64, 66, 67, 72], "axes3d": [46, 50, 57, 74, 75], "axes_grid1": 50, "axhlin": 52, "axi": [44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 62, 66, 69, 72, 73, 74, 75], "axiom": 49, "axvlin": [48, 52], "axvspan": 48, "b": [44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 69, 70, 72, 73, 74, 75], "b1": 52, "b19db4": 12, "b1bac4": 7, "b2": 52, "b3": 52, "b35900": 10, "b89784": 12, "b_": [44, 45, 66], "b_0": 44, "b_1": [44, 46, 56, 57, 75], "b_2": [44, 57], "b_5": [57, 75], "b_group": 53, "b_i": [44, 45, 46, 56, 72], "b_ia_": [44, 72], "b_ia_i": 44, "b_index": 53, "b_j": [45, 56], "b_k": [44, 45, 56, 57, 75], "b_m": 56, "b_score": 53, "b_valu": 53, "ba": 75, "babcock": 72, "bach": 75, "bachelor": [68, 70], "back": [44, 47, 48, 49, 50, 52, 53, 54, 59, 60, 66, 69, 72, 75], "backbon": 66, "backend": [34, 45, 48], "background": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 71, 72], "backpropag": [45, 75], "backslash": 29, "backtrack": 53, "backup": 66, "backward": [45, 46, 48, 56, 66, 75], "bad": [50, 61, 73], "badli": 69, "bag": [53, 65, 72], "bag_clf": 54, "baggin": 72, "baggingboot": 54, "baggingclassifi": 54, "baggingtre": 54, "bailei": [0, 1, 2, 3, 15], "balanc": [50, 75], "ballpark": 62, "band": 66, "bandwidth": 66, "banner": 20, "bar": [44, 50, 55, 67, 72], "barber": 71, "bare": [48, 54], "base": [16, 17, 20, 23, 28, 30, 44, 45, 47, 48, 49, 51, 52, 53, 54, 58, 59, 60, 61, 65, 69, 70, 71, 72, 73, 74], "basi": [49, 51, 52, 54, 55, 56, 57, 66, 73, 74], "basic": [50, 52, 56, 57, 58, 59, 65, 67, 69, 72], "basin": 75, "batch": [47, 48, 55, 56, 57, 74], "batch_shap": 48, "batch_siz": [45, 47, 48], "batchnorm": 48, "bay": 51, "bayesian": [49, 65, 71, 72], "bbbbbb": 4, "beauti": 29, "becam": 30, "becaus": [44, 45, 46, 47, 48, 49, 50, 52, 53, 56, 57, 58, 72, 73, 74, 75], "becom": [30, 44, 45, 46, 49, 50, 51, 53, 56, 57, 63, 69, 72, 73, 74, 75], "been": [30, 31, 44, 45, 46, 47, 48, 49, 50, 55, 56, 57, 64, 65, 66, 67, 72, 73, 75], "befor": [44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 69, 72, 73, 75], "beforehand": [30, 44, 69, 72], "began": 20, "begin": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 66, 69, 70, 72, 73, 74, 75], "behav": [30, 45, 50, 57, 74], "behavior": [30, 44, 45, 57, 72, 74, 75], "behaviour": [56, 75], "behind": [44, 45, 50, 52, 57, 72, 74], "being": [22, 44, 45, 46, 47, 48, 49, 51, 52, 54, 55, 56, 57, 61, 64, 69, 72, 73, 74, 75], "believ": [53, 66], "belong": [51, 52, 53, 57, 58, 74], "below": [17, 30, 37, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 62, 66, 67, 69, 72, 73, 74, 75], "benchmark": [30, 54], "benefici": [45, 57], "benefit": [44, 45, 48, 55, 57, 65, 72, 74, 75], "bengio": [45, 71, 72, 73, 75], "benign": [45, 51], "besid": [48, 49, 74], "bessel": [49, 73], "best": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 59, 60, 62, 70, 72, 73, 74, 75], "beta": [45, 47, 54, 55, 57, 60, 61, 63, 72, 73, 74], "beta1": [], "beta2": [], "beta_": [47, 57, 61, 73], "beta_0": [45, 47, 57, 73], "beta_1": [45, 47, 54, 57, 73, 75], "beta_1m_": 75, "beta_1x_i": 57, "beta_2": [47, 57, 75], "beta_2v_": 75, "beta_3": 47, "beta_i": [47, 75], "beta_j": [57, 73], "beta_k": 57, "beta_linreg": 57, "beta_m": 54, "beta_mg_m": 54, "beta_n": 47, "better": [44, 45, 46, 47, 48, 50, 53, 54, 55, 56, 57, 63, 64, 72, 73, 75], "between": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 67, 69, 72, 73, 74, 75], "beyond": [44, 45, 49, 50, 52, 57, 72, 73, 74, 75], "bf": [57, 58, 66, 69, 74], "bf5400": 5, "bg": 72, "bgd": [57, 75], "bia": [44, 45, 46, 47, 49, 52, 53, 54, 56, 57, 64, 72, 73, 74], "bias": [45, 46, 47, 49, 50, 53, 56, 63, 75], "bib": 22, "bibliographi": [22, 67], "bibtex": [22, 42], "big": [44, 45, 46, 49, 50, 58, 63, 75], "bigger": [45, 50, 73], "bigr": 56, "bike": 53, "bilbo": 72, "billion": [47, 56, 65, 75], "bin": [51, 69], "binari": [16, 18, 31, 32, 35, 37, 42, 44, 47, 49, 51, 53, 54, 56, 72], "binarycrossentropi": 48, "bind": 44, "binomi": [65, 69, 72], "binsboot": 50, "bioinformat": 44, "biolog": [45, 56], "bios1100": [65, 72], "bird": [44, 47], "birth": 72, "bishop": [71, 72], "bit": [45, 48, 63, 66, 69, 72], "bitwis": 69, "bivari": 46, "bk": [57, 75], "bla": [66, 72], "black": [52, 53, 58], "blame": 30, "block": [23, 27, 29, 40, 50, 54, 65, 66, 69, 72], "blockquot": 29, "blog": 72, "blogpost": 48, "blue": [44, 47], "bm": [], "bmatrix": [44, 45, 47, 49, 51, 52, 55, 57, 66, 72, 73, 74, 75], "bmi": 45, "bodi": [29, 44, 45, 48, 56], "bold": 45, "boldfac": [44, 49, 60, 73, 74], "boldsymbol": [44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 57, 58, 60, 61, 63, 67, 72, 74, 75], "boltzmann": [56, 65, 72], "book": [22, 23, 24, 61, 67, 71, 72, 73], "book1": 71, "bool": 30, "boolean": [30, 48, 61], "boost": [45, 53, 65, 72], "boostrap": 54, "bootstrap": [45, 57, 63, 65, 67, 72, 75], "born": 75, "borrow": 72, "boston_dataset": [], "bot": 52, "both": [22, 30, 44, 45, 48, 49, 50, 52, 53, 54, 57, 58, 59, 60, 61, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75], "bottl": 51, "bottou": 75, "bound": [52, 56, 75], "boundari": [46, 48, 52, 55, 56], "bousquet": 75, "bower": [27, 28], "box": [22, 48, 53], "boyd": [52, 57, 74], "bracket": [29, 48, 69], "brain": [45, 51, 56], "branch": [30, 53, 72], "break": [44, 48, 50, 55, 58, 72, 75], "breast": [49, 51, 55], "breviti": 57, "brew": [44, 65, 67, 72], "brg": 52, "brian": 35, "brief": [41, 67, 73], "briefli": [44, 60, 63, 72], "bring": [44, 49, 50, 54, 73, 75], "britt": [70, 72], "broad": 44, "broadli": 72, "brought": [57, 65, 72], "brownle": 48, "browser": [27, 28, 59, 72], "brute": [47, 49, 55, 73], "bsd": [18, 20, 32, 35, 37], "budget": 75, "buffer_s": 48, "bug": 29, "bugfix": 25, "bui": 48, "build": [22, 41, 44, 48, 49, 50, 54, 60, 66, 69, 72], "built": [23, 45, 47, 48, 50], "bunch": [41, 55], "bundl": [21, 41], "busi": [16, 18, 31, 32, 35, 37, 42], "byte": [66, 72], "c": [16, 18, 20, 26, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75], "c1": [52, 55], "c2": [52, 55], "c4a2f5": 15, "c5e478": 14, "c9d1d9": [6, 7, 8], "c_": [52, 53, 54, 57, 69, 74, 75], "c_0": 69, "c_1": 56, "c_2": 56, "c_3": 56, "c_4": 56, "c_i": [56, 57, 75], "c_k": 69, "ca": [45, 72], "caab6d": 12, "cach": 54, "cal": [44, 52, 54, 56, 57, 74, 75], "calcul": [44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 63, 66, 69, 72, 75], "california": 67, "call": [22, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75], "calor": [44, 73], "caltech": 20, "cambridg": [57, 71, 74], "can": [17, 20, 22, 23, 24, 27, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 73, 74], "cancel": [44, 57, 72, 73], "cancer": [49, 54], "cancerpd": 51, "candid": [52, 53, 54, 75], "cannot": [29, 44, 45, 48, 49, 50, 51, 52, 53, 67, 69, 73, 74, 75], "canopi": [44, 65, 67, 72], "canva": [59, 60, 63, 64, 67, 72], "cap": 49, "capabl": [44, 45, 52, 57, 65, 72], "capac": [46, 70], "capita": [], "caption": [64, 67], "captur": [48, 55, 56, 72], "car": [47, 48], "card": [44, 51, 72], "cardin": 45, "care": [55, 59, 63, 75], "carefulli": [57, 75], "carlo": [44, 50, 65, 69, 71, 72], "carri": [46, 50, 51, 67], "cart": 54, "case": [30, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 57, 58, 59, 60, 65, 66, 67, 72], "casella": 71, "cast": 45, "cat": [47, 48], "catch": 44, "categor": [44, 45, 47, 53, 55, 72], "categori": [44, 45, 47, 51, 54, 56, 58, 72], "categorical_crossentropi": [45, 47], "caus": [16, 18, 31, 32, 35, 37, 42, 44, 49, 50, 69, 72, 73, 74, 75], "causal": 44, "causat": [44, 72], "cax": 45, "cb": [50, 72], "cbar": 45, "cc": [44, 45, 49, 57, 72, 73, 74, 75], "cc398b": 5, "ccbb44": 4, "ccc": [49, 56, 74], "cdf": 69, "cdot": [44, 46, 50, 56, 57, 58, 66, 69, 72, 74, 75], "celebr": [57, 74], "cell": 48, "center": [44, 45, 50, 51, 52, 53, 55, 58, 62, 67, 69, 72, 73, 75], "central": [44, 47, 49, 50, 52, 60, 64, 66, 72, 73], "centroid": [58, 69], "centroid_differ": 58, "centuri": 47, "certain": [44, 47, 50, 51, 53, 69, 72, 73], "cf": 30, "cf222e": 9, "cffi": 43, "cg": 57, "cha": [], "chain": [44, 45, 57, 65, 69, 72], "challeng": 59, "chanc": [45, 49, 57, 69, 75], "chang": [20, 41, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 63, 66, 67, 69, 72, 73, 74, 75], "changelog": [27, 28], "channel": 47, "chapter": [44, 50, 54, 55, 60, 61, 63, 66, 67, 71, 72, 73, 74, 75], "chapter3": [44, 67], "charact": [27, 44, 47, 49, 72, 73, 74], "character": [52, 53, 54, 56, 69], "characterist": [44, 45, 47, 54, 57, 72], "charg": [19, 26, 31, 34, 36, 44, 72], "charl": [], "charset": 29, "chase": 48, "chatgpt": [59, 67], "chd": 51, "chddata": 51, "cheap": [49, 73, 74, 75], "cheaper": [45, 57, 75], "check": [21, 24, 30, 41, 45, 47, 48, 49, 55, 57, 59, 60, 63, 66, 72, 75], "checkmark": 47, "checkpoint": 48, "checkpoint_dir": 48, "checkpoint_prefix": 48, "chen": 54, "cheng": 73, "chiaramont": 46, "childcar": 60, "children": 60, "choic": [29, 44, 45, 46, 47, 48, 50, 53, 56, 57, 58, 64, 66, 72, 73, 74, 75], "choleski": [49, 66, 73, 74], "choos": [46, 47, 50, 53, 54, 55, 57, 58, 59, 62, 63, 67, 74], "chosen": [44, 45, 46, 50, 52, 53, 54, 57, 60, 69, 72, 74, 75], "chosen_datapoint": 45, "christian": 71, "christoph": [71, 72], "chunk": 75, "cifar": 47, "cifar10": 47, "circ": [45, 56, 75], "circl": [44, 52, 56, 73, 75], "circuit": 47, "circumfer": 53, "circumv": [45, 49, 57, 73, 74, 75], "citat": 42, "cite": [22, 64, 67], "ckpt": 48, "claim": [19, 26, 31, 34, 36], "clariti": 69, "class": [17, 27, 30, 44, 45, 47, 48, 50, 51, 52, 53, 55, 56, 57, 69, 72], "class_nam": [47, 53], "class_val": 53, "class_valu": 53, "classic": [30, 51, 53, 57], "classif": [44, 47, 49, 50, 51, 52, 55, 56, 65, 67, 71, 72, 73], "classifi": [44, 45, 48, 51, 53, 54, 55, 72], "classificaton": 45, "classifii": 54, "claus": [18, 20, 32, 35, 37], "clean": 45, "clear": [45, 49, 54, 56, 57, 75], "clearli": [44, 47, 49, 50, 51, 52, 69, 73, 74], "clever": [45, 54], "clf": [44, 50, 52, 53, 54, 72, 73], "clf3": 44, "clf_lasso": 50, "clf_ridg": 50, "cli": 59, "click": [27, 41], "clip": [47, 69, 75], "clock": 75, "clone": [59, 70], "close": [27, 44, 45, 46, 48, 50, 52, 53, 55, 56, 57, 58, 62, 69, 71, 72, 74, 75], "closer": [47, 49, 57, 73, 74, 75], "closest": [52, 55, 57, 58], "closur": [65, 72], "cloud": [65, 72], "cluster": [44, 45, 48, 50, 55, 65, 72], "cluster_label": 58, "cm": [24, 45, 46, 47, 50, 52, 57, 74, 75], "cmap": [24, 44, 45, 46, 47, 48, 50, 52, 53, 54, 72], "cmap_arg": 50, "cmd": [53, 59], "cn_": 69, "cnn": 56, "cnn_kera": 47, "cntk": [65, 72], "co": [44, 46, 47, 50, 53, 57, 72], "code": [6, 8, 16, 17, 18, 20, 23, 25, 26, 27, 31, 32, 35, 37, 41, 42, 44, 47, 48, 50, 51, 52, 62, 63, 65, 66, 69, 71], "codec": [25, 26], "coef": [44, 72], "coef0": 52, "coef_": [44, 49, 50, 52, 53, 57, 60, 72, 73, 74, 75], "coeff": 49, "coeffici": [44, 47, 49, 50, 51, 52, 53, 57, 62, 66, 72, 73, 75], "coerc": [44, 50, 72], "coin": [54, 69], "coin_toss": 54, "col": [44, 55, 72, 73], "colab": [65, 72], "cold": [24, 53], "colinear": [], "collabor": [64, 67], "collaps": 52, "collect": [20, 41, 46, 50, 54, 55, 61, 65, 69, 71, 72], "collinear": [49, 73, 74], "color": [24, 44, 47, 48, 50, 52, 53, 54, 69, 75], "color_channel": 47, "color_cod": 50, "colorbar": [45, 50, 64], "colsample_bytre": 54, "colsaobject": 54, "column": [44, 45, 46, 49, 50, 51, 52, 53, 55, 56, 60, 61, 62, 63, 66, 72, 73, 74, 75], "columntransform": 53, "com": [25, 31, 33, 36, 48, 50, 59, 60, 63, 64, 65, 67, 71, 72, 74, 75], "combin": [30, 45, 46, 49, 50, 51, 54, 59, 62, 69], "come": [30, 44, 45, 47, 48, 49, 56, 57, 58, 59, 72, 73, 74, 75], "comfort": 29, "command": [23, 30, 44, 45, 59], "comment": [44, 48, 49, 50, 64, 67], "commerci": [44, 65, 67, 72], "commit": [20, 59], "commod": [44, 72], "common": [44, 45, 47, 49, 50, 51, 53, 55, 57, 58, 60, 67, 69, 72, 73, 74, 75], "commonli": [44, 45, 48, 50, 51, 53, 57, 58, 73, 75], "commonmark": 22, "commun": [44, 56, 59, 67], "commut": 47, "commutatitav": 47, "compact": [44, 45, 47, 49, 50, 51, 53, 55, 56, 57, 58, 72, 73], "compair": 44, "compar": [44, 47, 48, 49, 50, 55, 57, 62, 66, 67, 72, 73, 74, 75], "comparison": [30, 46, 48, 57], "compat": [29, 30, 51], "compens": 75, "compet": 44, "competit": 54, "compil": [44, 45, 47, 48, 57, 65, 66, 72], "complet": [44, 46, 47, 48, 53, 56, 59, 60, 61, 62, 63, 64, 72], "completenn": 56, "complex": [45, 49, 52, 53, 55, 56, 57, 60, 63, 72, 74, 75], "complianc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "complic": [44, 45, 53, 57, 67, 72, 74, 75], "compoment": 73, "compon": [44, 45, 47, 48, 49, 50, 51, 53, 58, 60, 65, 72, 73, 74], "components_": 55, "compos": [53, 56, 57, 58, 65, 72], "compphys": [44, 50, 60, 64, 65, 67, 68, 70, 71, 72, 73, 74], "compress": [44, 72, 73], "compris": 50, "compromis": [49, 73, 74], "compulsori": [65, 72], "comput": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 72, 73, 74], "computation": [44, 47, 50, 53, 57, 69, 72, 74, 75], "computationalscienceuio": 72, "computerlab": 67, "concaten": [46, 48, 50, 58], "concav": [45, 57, 73, 74], "concentr": 54, "concept": [44, 46, 65, 72, 73], "conceptu": [56, 57, 74], "concern": [44, 45, 48, 51, 72, 74], "concic": 72, "conclud": [44, 49, 57, 75], "conclus": 45, "cond": 46, "conda": [44, 45, 65, 67, 72], "condis": 73, "condit": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 46, 48, 49, 50, 52, 53, 55, 57, 69, 72, 73, 75], "conduct": 65, "condwav": 46, "confid": [44, 49, 50, 51, 52, 63, 72, 73], "configur": 47, "confirm": [49, 56], "conform": 43, "confus": [49, 50, 51, 54, 66, 73], "confusion_matrix": 53, "congruenti": 69, "conjug": [48, 52], "conjugaci": 57, "conjunct": 47, "connect": [19, 26, 31, 34, 36, 44, 45, 47, 48, 53, 55, 56, 57, 66, 72, 73, 74], "consensu": 75, "consequ": [49, 50, 52, 54, 56, 57, 73, 74, 75], "consequenti": [16, 18, 31, 32, 35, 37, 42], "conserv": [49, 58, 73, 74], "consid": [30, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 60, 63, 66, 67, 69, 72, 73, 74, 75], "consider": [44, 45, 49, 57, 72, 73, 74], "consist": [30, 45, 46, 47, 48, 50, 56, 57, 67, 69, 73, 74], "consol": 27, "const": 29, "constant": [30, 44, 46, 48, 49, 50, 52, 56, 57, 60, 62, 69, 72, 73, 74, 75], "constitu": [44, 72], "constitut": [46, 50], "constrain": [45, 47, 49, 51, 55, 74], "constraint": [49, 50, 52, 57, 73, 74], "construct": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 66, 69, 72, 73], "constructor": 29, "consum": 75, "contact": [44, 72], "contain": [17, 25, 29, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 62, 63, 66, 67, 69, 71, 72, 73, 74, 75], "contemporari": 72, "content": [21, 22, 23, 27, 41, 45, 59, 64, 65, 66, 72, 74, 75], "context": [50, 54, 57, 67, 74, 75], "contigu": [30, 66], "contin": 63, "continu": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 63, 66, 67, 69, 72, 73, 74, 75], "contour": [53, 54, 57], "contourf": [52, 53, 54], "contract": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "contrast": [45, 48, 53, 54, 56, 72, 75], "contribut": [20, 44, 47, 49, 57, 62, 69, 72, 73, 74, 75], "contributor": [16, 18, 20, 25, 31, 32, 35, 37, 42, 44, 67], "control": [44, 45, 47, 53, 57, 59, 65, 72], "conv": [47, 48], "conv2d": [47, 48], "conv2dtranspos": 48, "convei": 72, "conveni": [30, 49, 50, 56, 57, 66, 67, 72, 74, 75], "convent": [56, 73], "converg": [45, 46, 48, 49, 52, 57, 58, 62, 73, 74], "convergencewarn": [], "convers": [64, 75], "convert": [23, 41, 44, 45, 48, 49, 53, 55, 57, 66, 72, 73, 74], "converttomatrix": 48, "convex": [48, 49, 51, 73], "convinc": [57, 74], "convolut": [45, 48, 65, 72], "cool": [48, 53], "coolwarm": [24, 50], "coordin": [20, 49, 56, 58, 73, 74, 75], "coorel": [], "copi": [19, 26, 30, 31, 34, 36, 44, 45, 58, 59, 73], "copyright": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "core": [20, 54], "corel": 72, "coronari": 51, "corr": [49, 51, 55, 73], "correalt": [55, 65], "correct": [44, 45, 46, 47, 48, 49, 51, 57, 59, 63, 64, 66, 69, 72, 73, 74], "correctli": [45, 46, 50, 51, 54, 62, 63, 67], "correl": [44, 45, 47, 49, 50, 51, 54, 56, 57, 65, 69, 72, 74, 75], "correlation_matrix": [49, 51, 55, 73], "correspond": [30, 44, 47, 49, 50, 52, 53, 55, 56, 65, 66, 67, 69, 72, 73, 74], "cortex": 56, "cosin": [47, 50], "cost": [44, 46, 47, 49, 50, 51, 52, 53, 56, 57, 60, 61, 62, 63, 67, 72], "cost_deep_grad": 46, "cost_funct": 46, "cost_function_deep": 46, "cost_function_deep_grad": 46, "cost_function_grad": 46, "cost_grad": 46, "cost_histori": [], "cost_ol": [], "cost_ridg": [], "cost_sum": 46, "costli": 75, "costol": [57, 75], "could": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 66, 67, 69, 72, 73, 74, 75], "coulomb": [44, 72], "count": [44, 53, 59, 68, 69, 70, 72], "counteract": 75, "counterpart": 72, "countor": 57, "coupl": [30, 48, 49, 50], "cours": [44, 45, 47, 49, 55, 59, 60, 61, 63, 64, 67, 70, 73], "coursework": 59, "courvil": [71, 72, 73, 75], "cov": [49, 50, 55, 66, 69, 72, 73], "cov_xi": [49, 55, 73], "cov_xx": [49, 55, 73], "cov_yi": [49, 55, 73], "covari": [44, 51, 65, 66, 72, 74], "covariance_matrix": [49, 55, 58], "cover": [44, 49, 65, 70, 71, 73, 74], "covert": [44, 72], "covxi": 69, "covxx": 69, "covxz": 69, "covyi": 69, "covyz": 69, "covzz": 69, "cpu": 45, "craft": 47, "crash": 75, "creat": [24, 27, 41, 45, 47, 48, 49, 53, 54, 55, 56, 59, 62, 63, 65, 72, 75], "create_biases_and_weight": 45, "create_convolutional_neural_network_kera": 47, "create_neural_network_kera": 45, "create_x": [49, 55], "creation": 30, "credit": [29, 44, 51, 70, 72], "crim": [], "crime": [], "criteria": [44, 48, 53, 54, 58, 69, 72], "criterion": [53, 54, 57, 62, 74, 75], "critic": [50, 67, 73], "critiqu": 67, "cross": [44, 45, 47, 51, 53, 54, 57, 59, 65, 69, 72, 73, 74, 75], "cross_entropi": 48, "cross_val_scor": 50, "cross_valid": [51, 54], "crossvalid": 50, "crucial": [45, 69, 75], "cs231": 47, "csr_matrix": [66, 72], "css": 29, "csv": [44, 48, 50, 51, 53], "ctnk": 45, "cubic": 44, "culprit": 30, "cumbersom": 49, "cumprod": 30, "cumsum": [30, 54, 55, 72], "cumul": [51, 54, 69, 75], "cumulative_heads_ratio": 54, "cup": 49, "current": [30, 45, 46, 47, 48, 57, 58, 59, 60, 71, 74, 75], "curs": [44, 73], "curv": [50, 51, 54, 56, 67], "curvatur": [57, 74, 75], "custom": [27, 50, 58], "custom_cmap": [53, 54], "custom_cmap2": [53, 54], "custom_lin": 24, "cutpoint": 53, "cv": [50, 51, 54], "cvxbook": [57, 74], "cvxopt": [49, 52, 73], "cycl": [45, 56], "cycler": 24, "d": [23, 30, 41, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 63, 64, 66, 69, 70, 72, 73, 74, 75], "d1": 30, "d166a3": 4, "d2": 30, "d2_g_t": 46, "d2a8ff": [6, 7], "d4d0ab": 0, "d71835": 3, "d9dee3": 8, "d_f": [57, 74], "d_g_t": 46, "d_net_out": 46, "da": 47, "dagger": [49, 66, 73, 74], "dai": [45, 53, 65], "damag": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "damp": 47, "darget": 53, "darkr": 69, "dat": [44, 72], "dat_id": [44, 50, 51, 53, 72], "data": [16, 18, 24, 30, 31, 32, 35, 37, 42, 46, 48, 49, 52, 54, 56, 57, 58, 60, 63, 64, 66, 67, 71, 74, 75], "data1": 58, "data2": 58, "data3": 58, "data4": 58, "data_id": [44, 50, 51, 53, 72], "data_indic": 45, "data_panda": 72, "data_path": [44, 50, 51, 53, 72], "databas": 45, "datafil": [44, 50, 51, 53, 72], "datafram": [44, 48, 49, 51, 53, 55, 72, 73], "datapoint": [45, 49, 50, 51, 55, 57, 60, 74, 75], "datasci": [59, 60, 63], "dataset": [44, 48, 50, 51, 52, 53, 54, 55, 57, 58, 60, 67, 72, 74, 75], "datatyp": 48, "date": [30, 59, 62, 67, 72, 73, 74, 75], "daughter": 54, "davi": [18, 32], "david": [25, 71], "dbb7ff": 8, "dbh": 45, "dbo": 45, "dcc6e0": [0, 1], "dcomposit": 66, "ddot": 46, "de": [20, 75], "dead": [30, 45], "deadlin": [59, 64], "deal": [19, 26, 31, 34, 36, 44, 45, 47, 49, 50, 52, 55, 57, 58, 63, 66, 69, 72, 73, 74, 75], "dealt": 44, "debt": 51, "debug": [44, 49, 50, 73, 74, 75], "debugg": 17, "decad": [44, 47, 75], "decai": [44, 57, 69, 72], "decemb": [70, 72], "decent": 54, "decid": [44, 46, 47, 49, 50, 53, 62, 73, 74, 75], "decim": [44, 72], "decis": [44, 45, 52, 55, 65, 71, 72], "decision_funct": 52, "decision_tre": 53, "decisiontreeclassifi": [53, 54], "decisiontreeregressor": [44, 53, 54], "declar": [44, 48, 64, 66, 72], "declare_namespac": 17, "decompos": [49, 50, 66, 73, 74], "decomposit": [44, 50, 56, 72], "decompost": [49, 73, 74], "deconvolut": 47, "decorrel": [54, 57, 75], "decreas": [45, 46, 48, 49, 50, 54, 55, 57, 63, 74, 75], "dedic": 64, "deduc": [44, 72], "deep": [47, 51, 56, 57, 65, 71, 73, 74], "deep_neural_network": 46, "deep_param": 46, "deep_tree_clf": [53, 54], "deep_tree_clf1": 53, "deep_tree_clf2": 53, "deepen": [49, 65, 72], "deeper": [44, 47, 48, 72], "deeplearningbook": [71, 72, 74, 75], "deer": 47, "def": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 61, 69, 72, 73, 74, 75], "def_covari": 69, "default": [6, 23, 29, 30, 44, 45, 46, 48, 50, 51, 66, 72, 73], "default_tim": 48, "defect": [49, 73, 74], "defici": [49, 73, 74], "defin": [17, 23, 27, 30, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 66, 67, 69, 73, 74, 75], "definit": [28, 45, 46, 49, 50, 51, 52, 54, 55, 56, 57, 66, 69, 73, 74, 75], "defint": 69, "degre": [47, 49, 50, 52, 53, 54, 55, 59, 60, 63, 64, 67, 69, 72, 74, 75], "deisenroth": 73, "del": 45, "delet": [50, 59], "delimit": [27, 29, 48], "deliv": [59, 68, 72], "delta": [44, 46, 47, 50, 52, 56, 57, 58, 72, 75], "delta_": [45, 66], "delta_0": 47, "delta_1": 47, "delta_2": 47, "delta_3": 47, "delta_4": 47, "delta_5": 47, "delta_h": [44, 45, 72], "delta_j": [47, 56], "delta_k": 56, "delta_l": [45, 47], "delta_momentum": [57, 75], "delta_n": [44, 47, 72], "delug": 65, "delv": 44, "demand": [57, 74], "demonstr": [44, 47, 49, 50, 51, 55, 56, 63, 65, 72, 73, 74, 75], "den": 48, "denomin": [45, 49, 75], "denot": [45, 46, 50, 51, 57, 69, 74, 75], "dens": [45, 47, 48], "densiti": [44, 46, 50, 69], "depart": [70, 72, 73, 74, 75], "depend": [22, 44, 45, 46, 48, 49, 50, 51, 52, 55, 56, 57, 59, 60, 65, 66, 67, 69, 72, 73, 74, 75], "depict": 69, "deploy": [44, 65, 67, 72], "depth": [21, 44, 47, 53, 54, 66], "der": 37, "deriv": [16, 18, 31, 32, 35, 37, 44, 45, 46, 50, 51, 52, 54, 55, 57, 62, 65, 67, 72], "derivati": 57, "derivative_fn": 57, "descend": [49, 53, 55, 73, 74], "descent": [44, 45, 47, 51, 52, 56, 72, 73], "describ": [44, 46, 48, 49, 50, 52, 54, 55, 56, 57, 63, 64, 66, 67, 72, 75], "descript": [44, 52, 53, 64, 67, 72], "design": [25, 31, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 56, 57, 61, 62, 67, 72, 74, 75], "designmatrix": [44, 72], "desir": [44, 46, 48, 49, 57, 58, 72, 73, 74, 75], "desktop": 59, "despit": [45, 56, 75], "destroi": 66, "det": [49, 66, 73, 74], "detail": [23, 27, 41, 44, 50, 55, 57, 58, 62, 66, 67, 73, 74, 75], "detect": [47, 52, 56], "determin": [44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 62, 66, 69, 72, 73, 74, 75], "determinist": [51, 57, 69, 74, 75], "dev": [45, 67], "develop": [30, 31, 44, 47, 49, 52, 54, 55, 56, 65, 66, 67, 72, 73], "deviat": [30, 44, 45, 46, 48, 49, 50, 61, 62, 63, 67, 69, 72, 73, 75], "devis": 56, "df": [48, 52, 55, 57, 72], "df1": 72, "di": [], "diag": [49, 52, 73, 74, 75], "diagnost": [45, 54], "diagon": [44, 49, 51, 57, 62, 63, 66, 69, 72, 73, 74, 75], "diagonaliz": [49, 73, 74], "diagram": 54, "diagsvd": 50, "dice": [50, 69], "dict": [50, 52], "dictionari": [], "did": [30, 44, 45, 49, 50, 51, 54, 55, 58, 60, 67, 72], "die": 45, "diff": 46, "diff1": 46, "diff2": 46, "diff_ag": 46, "diffeent": 52, "differ": [22, 27, 28, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 69, 71, 72, 73, 74], "differenti": [44, 47, 60, 65, 66, 72, 73, 74], "difficult": [44, 45, 50, 54, 57, 69, 72, 75], "difficulti": [44, 45, 57, 72, 74, 75], "diffonedim": 46, "digit": [44, 45, 47, 48, 50, 70, 72], "dilemma": [57, 75], "dilut": 45, "dim": [48, 55, 58, 66], "dimens": [44, 45, 46, 47, 48, 49, 52, 55, 58, 60, 66, 72, 73, 74], "dimension": [44, 48, 49, 50, 53, 55, 57, 58, 63, 65, 66, 67, 72, 73, 74, 75], "dimensionless": [44, 47, 72], "diment": 66, "diminish": 75, "dimnsion": 48, "diod": 47, "direct": [16, 18, 23, 31, 32, 35, 37, 42, 44, 45, 46, 48, 55, 56, 57, 58, 72, 73, 74, 75], "directli": [28, 45, 48, 49, 50, 62, 69, 73, 74], "directori": [17, 30], "disadvantag": [44, 72, 75], "disappear": [30, 47, 50], "disc_loss": 48, "disc_tap": 48, "discard": [50, 55, 75], "disciplin": [44, 47, 56], "disclaim": [16, 18, 31, 32, 35, 37, 42, 69], "discord": 72, "discourag": [57, 59, 74], "discov": [44, 72], "discover": 49, "discret": [45, 47, 49, 51, 57], "discrimin": [48, 51, 54, 55], "discriminator_loss": 48, "discriminator_loss_list": 48, "discriminator_model": 48, "discriminator_optim": 48, "discuss": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75], "diseas": 51, "disguis": [50, 73, 75], "disk": 75, "disord": [45, 51], "displai": [23, 29, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 67, 69, 72, 73, 75], "displaystyl": [44, 49, 61, 72, 73, 74, 75], "disregard": [44, 72], "dissimilar": [55, 58], "dist": 58, "distanc": [52, 53, 55, 58, 69], "distance_list": 53, "distinct": [47, 51, 52, 53, 54, 58], "distinctli": 52, "distinguish": [44, 48, 51, 52, 69, 72], "distplot": [], "distribut": [16, 18, 19, 20, 26, 31, 32, 34, 35, 36, 37, 41, 42, 44, 45, 48, 50, 51, 54, 55, 57, 58, 62, 63, 65, 66, 67, 72, 73, 74, 75], "distrubut": [44, 65, 67, 72], "div": [27, 29], "dive": [44, 52, 66, 72], "diverg": [45, 57, 74, 75], "divid": [30, 44, 45, 47, 49, 50, 51, 52, 53, 55, 56, 62, 63, 69, 72, 73, 75], "divis": [30, 50, 52, 53, 57, 62, 66, 69, 75], "dl": 28, "dm": 30, "dna": 51, "dnn": [44, 45, 46, 48, 56, 72], "dnn1": 48, "dnn2_gru2": 48, "dnn_kera": 45, "dnn_model": 45, "dnn_numpi": 45, "dnn_scikit": [44, 45, 72], "do": [19, 22, 24, 26, 31, 34, 36, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 72, 73, 74], "doc": [29, 44, 59, 60, 63, 65, 67, 68, 70, 71, 72], "document": [16, 18, 19, 21, 22, 23, 24, 26, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 48, 57, 59], "docutil": 34, "doe": [21, 29, 30, 44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 59, 60, 61, 62, 63, 66, 67, 69, 72, 75], "doesn": [29, 47, 53, 56, 72, 75], "dog": [45, 47, 48], "dollar": [24, 29], "domain": [30, 49, 52, 57, 67, 74], "domcontentload": 29, "domin": [44, 72], "don": [44, 45, 47, 49, 50, 52, 55, 57, 59, 60, 65, 67, 72, 73, 75], "done": [17, 29, 30, 44, 46, 47, 48, 49, 50, 53, 54, 55, 57, 60, 64, 66, 67, 72, 73, 74, 75], "dot": [44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 62, 66, 67, 69, 72, 73, 74, 75], "doubl": [47, 48, 60, 66, 72], "doubli": 45, "doubt": 67, "down": [30, 44, 47, 50, 53, 55, 56, 57, 74, 75], "download": [41, 44, 45, 47, 49, 50, 59, 64, 66, 71, 72], "downsampl": 47, "dozen": 45, "dq": 50, "draft": 64, "drag": 57, "dragon": 27, "dramat": 55, "drastic": 48, "draw": [48, 50, 54, 57, 74], "drawback": [44, 45, 47, 57, 73, 74, 75], "drawn": [45, 48, 50, 51, 55, 69, 72], "drive": [47, 48], "driven": 47, "drop": [44, 45, 49, 50, 55, 57, 69, 72, 73, 74], "dropna": [44, 50, 72], "dropout": 48, "dt": [46, 47, 57, 69], "dtype": [30, 44, 45, 47, 48, 58, 66, 72], "dual": 31, "dub": [44, 72], "duboi": 30, "due": [45, 46, 49, 50, 52, 54, 56, 57, 62, 70, 72, 73, 74, 75], "dugard": 30, "dummi": [], "dure": [30, 44, 45, 47, 48, 52, 53, 55, 64, 65, 67, 72, 75], "dwell": [], "dwh": 45, "dwo": 45, "dx": [46, 47, 52, 69], "dx_1": 69, "dx_1p": 50, "dx_2p": 50, "dx_mp": 50, "dx_n": 69, "dxp": 50, "dy": [45, 52, 69], "dynam": 48, "dz": 52, "e": [29, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 69, 70, 72, 73, 74, 75], "e1e1e1": 13, "e_": [44, 46, 72], "each": [20, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 65, 66, 68, 69, 70, 72, 73, 74, 75], "eapprox": [44, 72], "earli": [45, 57, 75], "earlier": [30, 44, 49, 51, 52, 53, 55, 56, 57, 64, 72, 73], "earthexplor": 50, "eas": [50, 53, 58], "easi": [29, 30, 44, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 65, 66, 72, 73, 74, 75], "easier": [41, 49, 50, 52, 53, 57, 59, 64, 67, 69, 72, 73, 74], "easiest": [57, 62], "easili": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 66, 67, 72, 73, 74, 75], "eastern": [70, 72], "ebind": [44, 72], "eblock": 53, "ec8e2c": 7, "econom": 31, "econometr": 72, "economi": 49, "ecosystem": [22, 65, 72], "ect": 68, "edg": 47, "edgecolor": 50, "edit": 41, "editor": [59, 64], "edu": [20, 57, 67, 74], "educ": [44, 67, 72], "ee6677": 4, "eff": 69, "effect": [25, 45, 48, 54, 57, 60, 61, 62, 69, 75], "effic": 45, "effici": [44, 47, 54, 57, 65, 66, 69, 72, 75], "effort": 63, "efron": 50, "egrad": 57, "eig": [49, 55, 57, 66, 69, 72, 73, 74, 75], "eigen": 69, "eigenpair": [49, 55, 73, 74], "eigenvalu": [44, 49, 52, 55, 57, 66, 72, 73, 74, 75], "eigenvector": [49, 55, 57, 73, 74], "eight": [66, 72], "eigval": [66, 69, 72], "eigvalu": [55, 57, 74, 75], "eigvec": [66, 69, 72], "eigvector": [55, 57, 74, 75], "eir": [70, 72], "eispack": [66, 72], "either": [17, 45, 49, 50, 51, 52, 53, 54, 55, 57, 62, 63, 67, 69, 72, 73, 74, 75], "eivind": 70, "eivinsto": 70, "ekstr\u00f8m": 48, "elabor": 69, "elarn": 47, "electr": [44, 47, 56, 72], "electron": 72, "eleg": 55, "element": [45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 57, 63, 64, 65, 66, 67, 71, 73, 75], "elementari": [54, 57, 66], "elementwis": [47, 57], "elementwise_grad": [46, 57], "elessar": 72, "elif": 58, "elim": 66, "elimin": [47, 52], "elin": [70, 72], "ell_": [], "ellipsi": 60, "els": [17, 27, 45, 47, 48, 51, 53, 56, 57, 60, 66], "elu": 45, "elus": [44, 72], "em": 27, "email": [64, 68, 70, 72], "emb": 24, "embed": [44, 55, 73], "embodi": [50, 67], "emit": 69, "emner": 71, "emph": 75, "emphas": [44, 54, 65, 72], "emphasi": [44, 65, 71, 72], "empir": [45, 55, 69], "emploi": [44, 45, 49, 50, 55, 57, 69, 72, 73, 74], "employ": 44, "empti": [50, 54, 59], "emul": 56, "en": [65, 67, 71], "enabl": [55, 75], "enbodi": 50, "encod": [25, 44, 47, 49, 53, 55, 58, 72, 73, 74], "encompass": [44, 67, 69], "encount": [44, 45, 49, 51, 57, 59, 67, 69, 72, 73, 74, 75], "encourag": [59, 67], "end": [24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 64, 66, 69, 70, 72, 73, 74, 75], "endblock": 40, "endfor": 40, "endif": 40, "endors": [16, 18, 31, 32, 35], "endpoint": [47, 50], "energi": [44, 48, 50], "enforc": 56, "eng": 71, "engin": [29, 44, 45, 47, 48, 65, 72], "english": [41, 67], "enjoi": 75, "enocurag": 67, "enorm": 47, "enough": [44, 50, 57, 72, 74, 75], "ensembl": [45, 53, 72], "ensur": [17, 44, 45, 46, 47, 49, 50, 55, 57, 62, 69, 73, 74, 75], "entail": 72, "enter": [49, 50, 73, 74, 75], "enthought": [44, 65, 67, 72], "entir": [20, 45, 47, 51, 53, 65, 69, 72, 75], "entireti": 20, "entiti": [53, 56, 66, 72], "entri": [30, 41, 44, 49, 52, 55, 56, 66, 72, 73, 75], "entropi": [45, 47, 51, 54, 57, 72, 74, 75], "enumer": [44, 45, 46, 47, 48, 50, 52, 72, 73, 75], "env": 69, "environ": [46, 65, 67, 72], "environemnt": 59, "eo": [44, 50], "eol": 44, "eosfit": 44, "epoch": [44, 45, 47, 48, 56, 57, 72, 75], "eppstein": 25, "epsilon": [44, 49, 50, 51, 57, 67, 72, 73, 74, 75], "epsilon_": [44, 72], "epsilon_0": [44, 72], "epsilon_1": [44, 72], "epsilon_2": [44, 72], "epsilon_i": [44, 72, 73], "eq": [47, 57, 58, 66, 69, 74], "eqnarrai": [47, 49, 50], "equal": [44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 60, 62, 66, 67, 69, 72, 73, 74, 75], "equat": [29, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 61, 63, 66, 69, 72, 75], "equilibrium": [46, 56], "equiv": [47, 57, 66, 69, 74, 75], "equival": [30, 44, 45, 49, 51, 52, 55, 57, 65, 66, 72, 73, 74, 75], "equivel": 63, "eras": 30, "erf": 69, "eriador": 72, "eric": [0, 1, 2, 3, 15, 30], "err": [44, 54], "err_": 50, "err_sqr": 46, "errat": [57, 74, 75], "erron": 46, "error": [29, 45, 46, 48, 49, 50, 51, 53, 55, 56, 57, 59, 60, 61, 62, 63, 65, 66, 67, 69, 75], "error_estimate_corr_tim": 69, "error_hidden": 45, "error_output": 45, "escap": [24, 29, 38, 39, 40, 57, 74, 75], "escapehtml": 27, "especi": [45, 47, 53, 56, 57, 59, 62, 67, 75], "essenti": [44, 49, 50, 53, 54, 56, 58, 59, 67, 69, 73, 74, 75], "establish": [44, 50, 54, 55, 60, 67], "estim": [44, 45, 49, 50, 51, 54, 55, 57, 63, 65, 69, 72, 73, 74, 75], "estimated_mse_fold": 50, "estimated_mse_kfold": 50, "estimated_mse_sklearn": 50, "et": [44, 46, 48, 60, 61, 64, 71, 72, 73, 74], "eta": [44, 45, 47, 52, 56, 57, 62, 72, 74, 75], "eta0": [52, 57], "eta_": 57, "eta_j": 75, "eta_t": [57, 75], "eta_v": [44, 45, 47, 72], "etc": [24, 44, 45, 47, 49, 51, 52, 53, 55, 56, 57, 58, 65, 66, 67, 69, 73, 74, 75], "ethic": 65, "euclidean": [44, 58, 73, 75], "euler": 29, "evalu": [44, 46, 47, 48, 49, 50, 53, 57, 59, 60, 61, 63, 67, 69, 72, 73, 74, 75], "evalut": [57, 67], "even": [16, 18, 30, 31, 32, 35, 37, 42, 44, 45, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 65, 66, 69, 72, 73, 74, 75], "evenli": 48, "event": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 49, 51, 54, 69], "eventu": [30, 44, 49, 50, 55, 56, 57, 67, 70, 73, 74, 75], "everi": [44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 56, 57, 58, 59, 65, 69, 70, 72, 73, 74, 75], "everyth": [30, 48, 56, 60, 62], "everywher": [30, 48, 57, 74], "evolv": 44, "exact": [44, 49, 55, 56, 57, 66, 69, 72, 73, 75], "exactli": [44, 47, 48, 50, 56, 62, 65, 73, 75], "exam": 72, "examin": 50, "exampl": [22, 24, 30, 44, 49, 55, 56, 57, 59, 60, 62, 64, 65, 66, 67, 69, 71], "exce": [45, 56, 57, 75], "exceed": 75, "excel": [44, 45, 48, 49, 54, 64, 67, 72, 73], "except": [17, 30, 47, 48, 50, 52, 53, 66], "excess": [44, 72], "exchang": 75, "excit": 44, "exclud": [45, 50, 56, 73, 75], "exclus": [44, 45, 47, 50, 69, 72], "execut": [23, 41, 46, 49, 57, 59, 73, 74, 75], "exemplari": [16, 18, 31, 32, 35, 37, 42], "exemplifi": [57, 75], "exercic": [70, 72], "exercis": [49, 65, 67, 68, 70, 72, 74, 75], "exhaust": [30, 50, 75], "exhibit": [44, 49, 50, 52, 72, 73], "exist": [44, 45, 46, 47, 49, 50, 51, 52, 53, 57, 63, 66, 67, 72, 74, 75], "exit": [49, 66, 73, 74], "exp": [44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 57, 60, 61, 63, 69, 73, 74, 75], "exp_term": 45, "expand": [49, 51, 55, 57, 74], "expans": [44, 47, 49, 52, 54, 56, 57, 72, 73, 74], "expect": [30, 44, 45, 49, 50, 51, 55, 56, 57, 59, 62, 65, 67, 72, 73, 75], "expectation_value_of_h_wrt_p": 69, "expens": [50, 54, 57, 60, 74, 75], "experi": [44, 45, 50, 52, 57, 59, 65, 67, 72, 73, 74, 75], "experiment": [30, 44, 48, 50, 53, 69, 72], "expert": [45, 53], "explain": [44, 50, 53, 54, 55, 57, 60, 63, 67, 72, 74], "explained_variance_ratio_": 55, "explan": 41, "explanatori": [44, 72], "explicit": [17, 44, 47, 50, 57, 66, 67, 72, 73, 74, 75], "explicitli": [44, 48], "explod": 45, "exploit": [44, 47, 56, 57, 72, 75], "explor": [45, 48, 50, 52, 57, 62, 65, 67, 72, 74, 75], "expon": 45, "exponenti": [44, 45, 49, 50, 54, 57, 69, 72, 74], "export": [53, 59, 60, 63, 64], "export_graphviz": 53, "export_text": 53, "exporttext": 53, "expos": 65, "express": [16, 18, 19, 26, 29, 31, 32, 34, 35, 36, 37, 42, 44, 46, 47, 49, 50, 51, 54, 56, 57, 62, 66, 67, 69, 72, 74, 75], "exptmean": 69, "exptvari": 69, "extend": [17, 29, 30, 44, 46, 51, 55, 57, 65, 72, 75], "extend_path": 17, "extens": [17, 22, 29, 42, 44, 56, 59, 65, 72], "extent": [44, 45, 50, 71], "extern": [30, 47, 50, 53], "extra": [45, 47, 49, 59, 70, 72, 73, 74], "extract": [44, 47, 49, 50, 51, 52, 55, 57, 60, 61, 66, 72, 73], "extrapol": [44, 72], "extrem": [44, 45, 48, 49, 50, 51, 52, 53, 57, 59, 60, 66, 73, 74, 75], "extremum": [57, 74], "extrins": 55, "ey": [44, 49, 50, 57, 58, 62, 66, 72, 73, 74, 75], "f": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 69, 70, 72, 73, 74, 75], "f1": 57, "f11": [44, 72], "f12": [44, 72], "f13": [44, 72], "f1_grad": 57, "f1d": 57, "f2": 57, "f26196": 15, "f2_grad_x1": 57, "f2_grad_x1_analyt": 57, "f2_grad_x2": 57, "f2_grad_x2_analyt": 57, "f2f2f2": 3, "f3": 57, "f3_grad": 57, "f3_grad_analyt": 57, "f4": 57, "f4_grad": 57, "f4_grad_analyt": 57, "f5": 57, "f5_grad": 57, "f5a394": 15, "f5ab35": 0, "f5f5f5": [12, 13], "f6": 57, "f6_for": 57, "f6_for_grad": 57, "f6_grad_analyt": 57, "f6_while": 57, "f6_while_grad": 57, "f7": 57, "f78c6c": 14, "f7_grad": 57, "f7_grad_analyt": 57, "f8": 57, "f8_grad": 57, "f8f8f2": [0, 1], "f9": [44, 57, 72], "f9_altern": 57, "f9_alternative_grad": 57, "f9_grad": 57, "f_": 54, "f_0": [47, 54], "f_1": [54, 57, 74], "f_2": [56, 57, 74], "f_3": 56, "f_d": 69, "f_grad": 57, "f_grad_analyt": 57, "f_i": [44, 50, 56, 60], "f_m": [47, 54], "f_n": 47, "f_vec": 46, "face": [57, 72, 74], "facecolor": [50, 52, 69], "facil": [44, 65], "facilit": 56, "fact": [44, 45, 47, 49, 53, 55, 56, 57, 72, 73, 74, 75], "facto": 75, "factor": [44, 45, 47, 49, 50, 53, 54, 55, 57, 66, 69, 72, 73, 74], "factori": 57, "fad000": 15, "fade": 50, "fae4c2": 2, "fafab0": [53, 54], "fail": [44, 50, 57, 70, 72, 74], "failur": 51, "fairli": [45, 46, 62, 69, 75], "faisal": [60, 73], "fake": 48, "fake_loss": 48, "fake_output": 48, "fall": [52, 53, 68], "fals": [30, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 58, 60, 61, 66, 72, 73, 74, 75], "famili": [44, 51, 52, 69, 73, 75], "familiar": [30, 44, 47, 49, 50, 52, 59, 65, 66, 67, 69, 72], "famou": [50, 56], "far": [44, 47, 48, 49, 50, 52, 55, 56, 57, 58, 60, 64, 72, 73, 74, 75], "fashion": [44, 53, 54, 72, 75], "fast": [29, 45, 47, 50, 54, 56, 57, 65, 69, 72, 74, 75], "faster": [30, 45, 55, 57, 75], "fastest": [57, 66, 74], "fatal": 29, "favor": [51, 75], "favorit": 69, "fc": 47, "fcfcfc": 5, "fdac54": 7, "fdf2e2": 3, "featur": [44, 45, 47, 49, 50, 51, 52, 54, 55, 56, 57, 59, 61, 62, 63, 65, 69, 72, 74, 75], "feature_nam": [45, 51, 53], "feautur": 53, "fed": 45, "feed": [44, 46, 47, 55, 65, 72], "feed_forward": 45, "feed_forward_out": 45, "feed_forward_train": 45, "feedback": [48, 64, 72], "feeddorward": 48, "feedforward": [45, 48, 56], "feel": [21, 44, 49, 50, 55, 57, 59, 60, 62, 65, 67, 70, 72], "feet": [], "fefef": 2, "fefeff": 15, "felt": 67, "fenc": 27, "fernando": 20, "fetch": [50, 59], "few": [21, 30, 45, 47, 48, 49, 53, 61, 62, 63, 69, 72], "fewer": [44, 53, 55, 63, 72, 75], "ff7b72": 6, "ff9492": 8, "ffa07a": [0, 1], "ffa657": 6, "ffb757": 8, "ffd700": 0, "ffd900": 1, "ffd9002e": [0, 1], "ffffff": [9, 10, 11], "ffnn": [45, 56], "fi": 37, "field": [30, 44, 47, 50, 56, 63, 65], "fieldmask": 30, "fifth": [44, 50, 72], "fig": [24, 44, 45, 46, 47, 48, 50, 51, 56, 57, 58, 67, 72], "fig_id": [44, 50, 51, 53, 72], "figaxi": 69, "figsiz": [24, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 72], "figur": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 65, 67, 72, 73, 74, 75], "figure_id": [44, 50, 51, 53, 72], "figurefil": [44, 50, 51, 53, 72], "file": [17, 19, 20, 21, 23, 26, 30, 31, 34, 36, 37, 44, 48, 49, 50, 51, 53, 59, 64, 67, 72], "file_prefix": 48, "filenam": 72, "fill": [49, 53, 62, 73, 74], "fill_valu": 30, "filter": [47, 48], "final": [29, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 62, 64, 67, 68, 69, 70, 72, 74], "financ": 44, "find": [30, 41, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 65, 67, 69, 72, 73, 74, 75], "fine": [30, 44, 58], "finish": [46, 64], "finit": [47, 49, 50, 56, 57, 61, 69, 73, 74], "finnicki": 59, "fire": 30, "first": [29, 30, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 62, 63, 66, 67, 69, 70, 71, 73, 75], "first_moment": 75, "first_term": 75, "firsteigvector": 55, "fit": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 61, 62, 63, 67, 69, 73, 75], "fit_beta": 73, "fit_intercept": [44, 49, 50, 60, 73, 74, 75], "fit_mod": 53, "fit_theta": [50, 75], "fit_transform": [44, 50, 52, 53, 55, 59, 63], "fiti": [44, 72], "five": [44, 53, 72, 73], "fix": [24, 44, 47, 48, 50, 54, 55, 56, 57, 67, 72], "flag": [29, 30, 48], "flat": [56, 57, 74, 75], "flatten": [45, 47, 48, 49, 66], "flavor": 22, "flexibl": [45, 50, 52, 54, 56, 72, 75], "flip": [70, 72], "float": [30, 44, 47, 48, 49, 53, 55, 57, 58, 66, 72, 73, 74], "float32": [48, 53], "float64": [30, 48, 66, 72], "flop": [49, 66, 73, 74], "flow": [45, 48, 56], "fluctuat": [49, 75], "fly": 55, "fm": 44, "fmax": 47, "fmesh": 57, "fn": 51, "focu": [44, 47, 48, 49, 50, 59, 65, 67, 71, 72, 73, 74, 75], "focus": [45, 50, 51, 66, 73, 75], "fold": [50, 53, 67], "folder": [17, 41, 44, 48, 50, 59, 64, 67, 72], "follow": [16, 17, 18, 19, 20, 22, 23, 26, 29, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75], "font": [51, 64, 69, 72], "fontdict": 69, "fontsiz": [45, 50, 52, 53, 54, 69], "fontweight": 45, "footprint": [47, 75], "foral": [52, 73], "forc": [30, 44, 49, 50, 54, 55, 73, 74, 75], "forcast": 48, "forcier": 16, "forecast": [48, 56], "forest": [44, 45, 53, 65, 72], "forget": [55, 75], "form": [16, 18, 31, 32, 35, 37, 42, 44, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 60, 65, 66, 67, 69, 72, 73, 74, 75], "formal": [47, 48, 58, 62, 69], "format": [29, 44, 45, 47, 48, 50, 51, 52, 53, 54, 55, 64, 65, 69, 71], "format_data": 48, "formatstrformatt": [50, 57, 74, 75], "formatt": 41, "formul": [48, 50, 55, 58], "formula": [29, 47, 57, 69, 74], "forth": [48, 56], "fortran": [44, 65, 66, 72], "fortran2003": [65, 72], "fortran2008": 67, "fortran90": 69, "fortun": [44, 55, 73], "forward": [44, 47, 50, 65, 66, 72, 75], "found": [20, 45, 46, 48, 49, 50, 56, 57, 63, 64, 67, 72, 73, 75], "foundat": [65, 72], "four": [48, 49, 50, 52, 56, 66, 68, 70, 72, 74], "fourier": [44, 72], "fourierdef1": 47, "fourierdef2": 47, "fourierseriessign": 47, "fourth": [56, 72, 73], "fp": 51, "frac": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 66, 67, 69, 72, 73, 74, 75], "fraction": 53, "frame": [51, 75], "framework": [45, 52, 54, 69], "frank": [49, 55], "frankefunct": [49, 50, 55], "fredli": [70, 72], "free": [19, 26, 31, 34, 36, 44, 50, 55, 57, 59, 60, 62, 65, 66, 67, 69, 70, 71, 72], "freecodecamp": 65, "freedom": [49, 74], "freeli": [44, 67], "freez": 59, "frequenc": [47, 50, 51, 69], "frequent": [44, 52, 53, 57, 74], "frequentist": 65, "fresh": 54, "fridai": [59, 70, 72], "friedman": [50, 63, 67, 71, 72], "friendli": 48, "fro": 67, "frodo": 72, "frog": 47, "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 26, 30, 31, 32, 34, 35, 36, 37, 41, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71], "from_cod": 53, "from_logit": [47, 48], "from_tensor_slic": 48, "front": [44, 48, 49, 72, 73, 74], "frustrat": [30, 59], "fulfil": [46, 49, 56, 73, 74], "full": [45, 47, 49, 51, 53, 54, 57, 69, 72, 73, 74], "full_matric": [49, 73, 74], "fulli": [47, 50, 56, 69], "fullnam": [38, 39, 40], "fun": [65, 72], "func": 46, "function": [22, 27, 30, 46, 47, 48, 49, 53, 58, 59, 60, 61, 62, 63, 64, 65, 66], "functionali": 55, "fundament": [44, 50, 65, 72], "funtion": 46, "furnish": [19, 26, 31, 34, 36], "further": [46, 51, 53, 63, 72], "furthermor": [44, 47, 49, 50, 51, 55, 56, 57, 65, 67, 72, 73, 74, 75], "futur": [44, 48, 52, 53, 72], "fy": [59, 67, 68, 70, 71, 72], "fys4155": 67, "fys5419": [71, 72], "fys5429": [71, 72], "f\u00f8470": [70, 72], "g": [30, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 57, 59, 62, 63, 69, 72, 73, 74, 75], "g0": 46, "g_": [46, 53, 54, 75], "g_0": 46, "g_1": [46, 54], "g_2": [46, 54], "g_analyt": 46, "g_dnn_ag": 46, "g_euler": 46, "g_i": 46, "g_m": [47, 54], "g_n": 47, "g_re": 46, "g_t": [46, 75], "g_t_d2t": 46, "g_t_d2x": 46, "g_t_dt": 46, "g_t_hessian": 46, "g_t_hessian_func": 46, "g_t_jacobian": 46, "g_t_jacobian_func": 46, "g_trial": 46, "g_trial_deep": 46, "g_vec": 46, "gain": [45, 49, 51, 53, 54, 57, 73, 74], "galleri": [44, 72], "game": 48, "gamge": 72, "gamma": [44, 46, 52, 53, 54, 55, 57, 72, 74], "gamma1": 52, "gamma2": 52, "gamma_": [44, 72], "gamma_0": 54, "gamma_1": 54, "gamma_1x": 54, "gamma_i": [44, 52, 69, 72], "gamma_j": 57, "gamma_k": [57, 74], "gamma_m": 54, "gamma_x": [44, 72], "gap": [52, 75], "gate": [48, 56], "gather": [44, 45, 56, 73], "gaug": 56, "gaussbacksub": 66, "gaussian": [48, 49, 50, 52, 58, 62, 69, 72], "gaussian_point": 58, "gaussian_rbf": 52, "gave": [57, 75], "gavra": 72, "gbc": 72, "gca": [46, 50, 52, 57], "gd": [45, 74], "gd_clf": 54, "gdclassiffiercgain": 54, "gdclassiffierconfus": 54, "gdclassiffierroc": 54, "gdm": 57, "gdregress": 54, "ge": [45, 49, 51, 69, 73, 74], "gen_loss": 48, "gen_tap": 48, "gender": [44, 72], "genener": 48, "gener": [41, 44, 45, 46, 47, 49, 50, 52, 54, 55, 56, 57, 58, 59, 60, 62, 64, 66, 67, 69, 71, 73, 74, 75], "generaliz": 60, "generallay": 56, "generate_and_save_imag": 48, "generate_imag": 48, "generate_latent_point": 48, "generate_simple_clustering_dataset": 58, "generated_imag": 48, "generator_loss": 48, "generator_loss_list": 48, "generator_model": 48, "generator_optim": 48, "genom": 65, "geodes": 55, "geoff": 75, "geometr": [44, 57, 72, 75], "geometri": 49, "georg": 71, "geotif": 50, "geq": [46, 49, 52, 53, 57, 73, 74, 75], "gerard": 30, "geron": [44, 71, 72], "get": [22, 23, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75], "get_dummi": 53, "get_paramet": 46, "get_split": 53, "get_yaxi": 52, "get_yticklabel": 50, "getmask": 30, "gh": 59, "giant": 75, "gibb": [65, 72], "gif": 48, "gini": 54, "gini_index": 53, "ginvers": 57, "git": [41, 44, 59, 65, 72], "gitcdn": 29, "giter": [57, 75], "github": [20, 44, 64, 65, 67, 68, 70, 71, 72, 73], "gitignor": 59, "gitlab": [29, 44, 59, 65, 67, 72], "give": [21, 30, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 62, 63, 65, 67, 69, 72, 73, 74, 75], "given": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 63, 66, 69, 72, 73, 74, 75], "global": [28, 50, 51, 57, 74, 75], "glorot": 45, "gmail": [25, 31, 33, 36], "gnew": 57, "go": [21, 29, 41, 44, 45, 47, 49, 50, 52, 53, 55, 56, 57, 59, 60, 62, 72, 73, 74], "goal": [44, 51, 53, 72], "goe": [44, 45, 46, 49, 50, 57, 58, 59, 63, 66, 72, 73, 74, 75], "goessner": 29, "golden": 57, "gone": [29, 49, 73, 74], "gong": 45, "good": [16, 18, 31, 32, 35, 37, 42, 45, 47, 48, 49, 50, 53, 54, 55, 57, 59, 62, 65, 69, 71, 73, 74, 75], "goodfellow": [48, 71, 72, 73, 74], "googl": [45, 48, 65, 72], "got": [30, 45, 50, 67], "gotten": 72, "gov": 50, "govern": 72, "gp": 71, "gpu": [45, 57, 65, 72, 75], "grad": [46, 57, 75], "grad_analyt": 57, "grad_ol": 62, "grad_ridg": 62, "grade": [67, 68], "gradient": [44, 47, 48, 51, 52, 53, 56, 65, 72, 73], "gradient_desc": 75, "gradientboostingclassifi": 54, "gradientboostingregressor": 54, "gradients_of_discrimin": 48, "gradients_of_gener": 48, "gradienttap": 48, "gradual": [45, 58], "grai": [20, 48, 50], "granger": 35, "grant": [19, 26, 31, 34, 36], "graph": [45, 53, 55, 56, 57, 60, 64, 74, 75], "graph_from_dot_data": 53, "graphic": [44, 45, 53, 59, 72], "grasp": 44, "gray_r": [45, 47], "grayscal": 47, "great": [49, 57, 59, 74, 75], "greater": [45, 51, 69, 73], "greatli": 57, "greedi": 53, "green": [44, 47, 53, 69], "grei": 48, "grid": [45, 47, 50, 51, 52, 56, 69, 73, 75], "grossli": [57, 74], "ground": [44, 72], "group": [44, 50, 51, 53, 58, 59, 64, 65, 67, 68, 70, 72], "groupbi": [44, 72], "grow": [45, 47, 53, 54, 75], "growth": [44, 72], "gru": 48, "guarante": [44, 48, 57, 69, 72, 73, 74, 75], "guess": [45, 48, 54, 57, 58, 74, 75], "guestrin": 54, "gui": 59, "guid": [24, 45], "guidelin": 64, "g\u00f6ssner": 29, "h": [44, 45, 49, 50, 52, 57, 59, 63, 69, 70, 71, 72, 73, 74, 75], "h1": 46, "h_": [44, 57, 72, 74, 75], "h_0": 75, "h_1": [46, 57, 74], "h_2": [46, 57, 74], "h_m": 54, "h_t": 75, "ha": [29, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 69, 72, 73, 74, 75], "haanen": [70, 72], "habit": [44, 73], "had": [44, 45, 50, 51, 57, 72, 74, 75], "hadamard": [45, 56, 57, 75], "half": [45, 52, 53], "halv": 54, "hand": [41, 44, 45, 46, 47, 49, 55, 56, 57, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75], "handi": [47, 67], "handl": [44, 45, 46, 49, 53, 55, 59, 62, 65, 73, 74, 75], "handle_unknown": 53, "handsid": 56, "handwrit": 56, "handwritten": [45, 49], "happen": [45, 46, 47, 48, 49, 50, 54, 57, 69, 73, 74, 75], "hard": [45, 51, 52, 54, 57, 74, 75], "hardcopi": [65, 72], "harder": [44, 45, 63, 73], "harmon": 47, "hash": 75, "hasn": [], "hassl": [44, 65, 72], "hast": [65, 72], "hasti": [44, 50, 60, 61, 63, 64, 67, 71, 72, 73], "hat": [44, 45, 49, 50, 51, 53, 54, 55, 56, 57, 60, 61, 62, 63, 66, 73, 74, 75], "hauser": 20, "have": [20, 23, 29, 30, 31, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75], "have_sys_un_h": 43, "haven": 45, "he": 51, "head": [29, 48, 54, 69], "header": [44, 72], "heads_proba": 54, "health": [44, 73], "hear": [44, 57, 72, 75], "heart": [44, 51, 72], "heatmap": [44, 45, 47, 51, 61, 64, 72], "heavi": 75, "heavili": 44, "heavisid": 45, "height": [45, 47, 50, 73], "held": [57, 75], "help": [22, 44, 45, 48, 56, 57, 59, 60, 67, 72, 75], "helper": [41, 48, 58], "henc": [44, 49, 50, 52, 53, 54, 56, 57, 72, 73, 74, 75], "henrik": [70, 72], "her": 51, "here": [20, 22, 24, 27, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 65, 66, 67, 69, 72, 73, 74, 75], "hereaft": [44, 52, 56, 72], "herebi": [19, 26, 31, 34, 36], "hermitian": 66, "hessenberg": 66, "hessian": [44, 46, 49, 57], "heterogen": [53, 54], "hex": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "hi": 51, "hidden": [45, 47, 48, 56], "hidden_bia": 45, "hidden_bias_gradi": 45, "hidden_layer_s": [44, 45, 72], "hidden_neuron": 48, "hidden_weight": 45, "hidden_weights_gradi": 45, "hierarch": [49, 73, 74], "high": [44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 57, 58, 65, 66, 67, 72, 73, 74, 75], "higher": [44, 45, 47, 49, 50, 52, 57, 62, 67, 72, 73, 74, 75], "highest": [45, 46], "highli": [44, 47, 48, 54, 63, 65, 66, 71, 72, 73, 74, 75], "highlight": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "highwai": [], "hing": 52, "hint": [57, 59, 60, 73, 74], "hinton": 75, "hip": 65, "hire": 44, "hist": [48, 50, 51, 69], "histogram": [50, 51, 69], "histor": [51, 55], "histori": [41, 47, 48, 56, 59, 75], "hitherto": 49, "hjorth": [70, 72, 73, 74, 75], "hobbi": 69, "hoc": [49, 73, 74], "hoff": 71, "hold": [45, 47, 50, 57, 58, 74, 75], "holder": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 72], "holdgraf_evidence_2014": 22, "home": [], "homepag": [67, 72], "homework": [50, 57, 74, 75], "homogen": [45, 47, 53, 54, 57, 75], "honchar": 46, "hopefulli": [44, 55, 59, 63, 69, 72, 75], "horizont": 55, "horlyk": [70, 72], "hors": [47, 51, 72], "hot": [24, 45, 53], "hour": [45, 65, 68, 69, 70, 72, 75], "how": [21, 23, 27, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75], "howev": [16, 18, 31, 32, 35, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 65, 66, 67, 69, 72, 73, 74, 75], "href": 29, "hspace": [44, 48, 52, 54, 69, 72], "hstack": 45, "htf": 72, "html": [24, 29, 44, 60, 64, 65, 67, 68, 70, 71, 72, 73, 74, 75], "http": [25, 29, 30, 31, 44, 47, 48, 50, 57, 59, 60, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75], "huang": [44, 72], "huber": [44, 72], "huge": [45, 47, 48, 65, 75], "human": [44, 45, 47, 50, 53, 56, 73], "humid": 53, "hundr": 45, "hungri": 45, "hybrid": 68, "hydrogen": [44, 72], "hyperbol": [45, 48, 56], "hyperparam": 52, "hyperparamet": [47, 48, 49, 50, 53, 57, 62, 67, 73, 74, 75], "hyperplan": 55, "h\u00f8rlyk": [70, 72], "i": [0, 16, 17, 18, 19, 20, 21, 23, 24, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75], "i0": [44, 72], "i1": [44, 50, 52, 56, 72, 73, 75], "i2": [44, 52, 56, 72], "i3": [44, 56, 72], "i5": [44, 72], "i_": [57, 74, 75], "i_1": [49, 50], "i_2": [49, 50], "i_t": 75, "ian": 71, "ic": [45, 67], "id": [29, 51, 57, 74, 75], "ida": [70, 72], "idea": [30, 44, 45, 46, 47, 48, 50, 53, 54, 56, 57, 64, 66, 67, 73, 74, 75], "ideal": [44, 46, 50, 52, 57, 69, 72, 75], "idem": 50, "ident": [29, 49, 50, 56, 57, 61, 62, 66, 73, 74], "identifi": [30, 44, 45, 51, 53, 55, 56, 57, 58, 72, 73], "idx": 27, "ieor": 69, "ifi": 71, "ifs": [65, 72], "ignor": [44, 45, 47, 53, 59, 73, 75], "ii": [24, 66, 69], "iii": [66, 72], "ij": [44, 45, 47, 50, 52, 56, 58, 60, 66, 69, 72, 73, 75], "ik": [44, 66, 72, 73], "iki": 37, "ill": 75, "illinoi": 31, "illustr": [49, 51, 54, 56, 57, 58, 64, 65, 72], "ilsvrc": 75, "im": 50, "imag": [24, 45, 47, 48, 50, 53, 55, 56, 58, 71, 72], "image_at_epoch_": 48, "image_batch": 48, "image_height": 47, "image_path": [44, 50, 51, 53, 72], "image_width": 47, "imageio": 50, "imagenet": 75, "images_from_seed_imag": 48, "imagin": 45, "immedi": [44, 47, 48, 50, 65, 72, 75], "implement": [0, 17, 29, 30, 37, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 63, 64, 67, 69, 72, 73, 74, 75], "impli": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 47, 49, 50, 51, 57, 66, 73, 74, 75], "implicit": [47, 75], "implicitli": [55, 69], "import": [17, 20, 24, 30, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 67, 69, 75], "importantli": 47, "importerror": 17, "impos": [44, 50, 55, 56, 72], "imposs": [44, 49, 72, 73, 74], "impract": 75, "impress": [44, 56, 72], "improv": [30, 44, 48, 49, 53, 54, 55, 57, 59, 67, 73, 74], "impur": 53, "imread": 50, "imshow": [45, 47, 48, 50], "in3050": [71, 72], "in3310": 72, "in4080": [71, 72], "in4300": [71, 72], "in4310": 71, "in5400": 47, "in5550": 71, "in_out_neuron": 48, "inaccur": [57, 74], "inact": 56, "inadequ": [44, 72], "inappropri": 75, "inch": [50, 73], "incident": [16, 18, 31, 32, 35, 37, 42], "includ": [16, 18, 19, 20, 23, 24, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 59, 60, 61, 62, 63, 64, 65, 69, 70, 71, 72, 73, 74], "include_bia": [50, 53], "incom": [56, 60], "incorrect": 45, "incoveni": 52, "increas": [44, 45, 47, 48, 49, 50, 53, 56, 57, 63, 67, 69, 72, 73, 75], "increasingli": [30, 69], "increment": 75, "ind": 50, "inde": [44, 46, 48, 49, 50, 57, 72, 73, 74], "indefinit": 48, "independ": [44, 49, 50, 51, 52, 56, 57, 69, 72, 73, 74, 75], "index": [44, 45, 47, 48, 54, 58, 65, 66, 67, 69, 71, 72], "index_col": [44, 72], "indic": [20, 30, 37, 44, 45, 47, 48, 49, 50, 53, 54, 55, 57, 60, 67, 72, 73], "indirect": [16, 18, 31, 32, 35, 37, 42], "indispens": 50, "individu": [20, 45, 50, 51, 54, 56, 69, 72, 73, 75], "indu": [], "indx": 66, "indx1": 46, "indx2": 46, "indx3": 46, "ineffici": [47, 57], "inequ": [52, 57], "inequaltii": 74, "inertia": 57, "inexperi": 30, "inf": 30, "inf1000": [65, 72], "inf1100": [65, 72], "inf1100l": [65, 72], "inf1110": [65, 72], "inf3000": 72, "infeas": [53, 75], "infer": [44, 45, 48, 50, 71, 72], "inferenc": 45, "infil": [44, 50, 51, 53, 72], "infin": [49, 50, 51, 55, 63, 73, 74], "infinit": [47, 75], "infinitesim": 69, "influenc": [50, 54, 62], "influenti": 45, "info": [27, 72], "inform": [21, 23, 24, 30, 41, 44, 45, 47, 48, 50, 53, 55, 56, 57, 58, 66, 67, 71, 72, 74, 75], "inforom": 59, "infrequ": 75, "infti": [47, 50, 57, 69, 74], "ingeni": [57, 74, 75], "ingredi": [44, 53, 72], "inher": [50, 75], "inherit": [17, 66, 72, 75], "init": 23, "initi": [30, 44, 45, 46, 50, 54, 57, 58, 62, 66, 69, 72, 74, 75], "inject": 58, "inlin": [22, 29, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 66, 69, 72, 73, 74, 75], "inner": [44, 57, 73], "innerhtml": 29, "inp": 48, "inplac": 57, "input": [22, 30, 44, 45, 47, 48, 49, 50, 51, 52, 56, 57, 58, 60, 67, 69, 72, 73, 74, 75], "input_dim": 45, "input_shap": [47, 48], "inputs": 45, "inputs_shuffl": [44, 45, 73], "inquiri": 64, "insert": [22, 47, 49, 50, 52, 54, 69, 73, 74], "insid": [17, 48, 51], "insight": [44, 45, 49, 65, 72, 73, 74], "insist": [50, 57, 73, 75], "inspir": [3, 44, 45, 56, 67, 72], "instabl": 46, "instal": [29, 44, 45, 49, 50, 53, 59, 64], "instanc": [30, 44, 45, 46, 48, 50, 53, 55, 57, 60, 72, 73, 74, 75], "instanti": 54, "instead": [20, 30, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 57, 58, 61, 64, 66, 69, 72, 73, 75], "institut": [20, 45], "instruct": [23, 44, 45, 59], "int": [44, 45, 46, 47, 48, 49, 50, 55, 57, 58, 66, 69, 73, 75], "int32": 54, "int_": [47, 50, 69], "int_0": 69, "int_a": 69, "intak": [44, 73], "integ": [45, 46, 57, 58, 66, 69, 72], "integer_vector": 45, "integr": [25, 47, 50, 69, 72], "intellig": [44, 58, 71, 72], "intend": 54, "intens": [45, 62], "intention": 58, "interact": [24, 44, 50, 53, 56, 65, 67, 72], "intercept": [44, 50, 52, 55, 57, 60, 61, 62, 63, 72, 73, 74, 75], "intercept_": [44, 50, 52, 53, 57, 72, 73, 75], "interchang": [49, 56, 66], "interconnect": 45, "interesit": [], "interest": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 63, 65, 67, 69, 72, 73, 74], "interfac": [44, 45, 59, 66, 73], "interior": [44, 53, 72], "intermedi": [66, 73, 75], "intern": [45, 54, 56], "internation": 41, "interpol": [45, 47, 48, 50, 56], "interpr": [49, 73, 74], "interpret": [44, 45, 50, 53, 54, 56, 57, 59, 60, 66, 67, 69], "interrupt": [16, 18, 31, 32, 35, 37, 42], "interv": [44, 47, 49, 50, 51, 57, 63, 69, 72, 73, 74], "intial": [57, 74], "intract": [44, 48, 73], "intrins": [47, 55, 66, 69, 72], "intro": [65, 71, 72], "introduc": [44, 45, 49, 50, 52, 54, 56, 66, 67, 69, 72, 74, 75], "introduct": [45, 46, 48, 57, 71, 73, 74, 75], "introductori": [44, 48, 66, 71, 72, 73], "intuit": [44, 49, 50, 52, 56, 57, 67, 72, 75], "inv": [44, 49, 57, 61, 72, 73, 74, 75], "invalid": 29, "invalu": [44, 57, 65, 72, 74], "invari": 45, "invd": 49, "inver": 52, "invers": [44, 47, 50, 57, 72, 73, 74, 75], "inverse_transform": 52, "invert": [44, 49, 51, 54, 57, 60, 62, 72, 75], "investig": 29, "invh": [57, 75], "invok": 52, "involv": [30, 44, 46, 50, 51, 55, 56, 72, 73, 75], "io": [41, 44, 65, 67, 68, 70, 71, 72, 73], "ion": 24, "ip": [44, 52, 69, 72], "ipca": 55, "ipynb": [22, 65, 72], "ipython": [44, 49, 51, 53, 55, 58, 65, 67, 72, 73], "iq": 50, "iri": [52, 53], "irreduc": 50, "irrelev": [49, 73, 74], "irrespect": [44, 72], "irvin": 67, "isaac": 36, "isaacmus": 36, "iseffici": [], "isn": 49, "isnul": [], "isomap": 55, "issu": [30, 45, 53, 59, 66, 75], "it_arrai": 57, "item": [40, 44, 57, 72], "items": [66, 72], "iter": [45, 46, 48, 50, 52, 57, 58, 62, 67, 69, 74, 75], "its": [18, 20, 30, 31, 32, 35, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 65, 66, 67, 69, 72, 74, 75], "itself": [28, 49, 50, 56, 67, 69, 72, 73], "j": [27, 28, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 66, 67, 69, 71, 72, 73, 74, 75], "j1": 66, "j_": 50, "j_lasso_sk": 50, "j_ridge_sk": 50, "j_sk": 50, "jackknif": [50, 65, 72], "jacobian": [46, 57, 74], "janko": 20, "jason": 48, "javascript": 29, "jax": [65, 72, 75], "jeff": 16, "jensen": [70, 72, 73, 74, 75], "jerom": [63, 67, 71], "jhauser": 20, "ji": [56, 66], "jit": 57, "jj": [44, 49, 50, 72], "jk": [44, 45, 50, 56, 66, 72], "jl": [44, 72], "jm": 66, "jnp": 57, "job": [46, 52, 54, 59], "join": [44, 48, 50, 51, 53, 72], "joint": [48, 49], "jonathan": 33, "json": 41, "judg": [57, 74], "judgement": 50, "julia": [29, 65, 66, 67], "jump": [69, 75], "junk": 48, "jupit": 72, "jupyt": [22, 23, 24, 44, 59, 60, 63, 65, 67, 71, 72], "jupyterbook": 22, "jupytext": 23, "just": [22, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 64, 65, 69, 72, 73, 74, 75], "justif": 44, "justifi": [47, 54], "k": [31, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 65, 66, 67, 69, 70, 72, 73, 74, 75], "k0": 51, "k1": 51, "kaggl": [50, 67], "kappa_d": 69, "karl": [70, 72], "karush": 52, "katex": 29, "katrin": [70, 72], "keep": [24, 30, 44, 45, 48, 49, 50, 55, 57, 58, 59, 62, 66, 67, 72, 73, 74, 75], "keepdim": [45, 50, 54, 66], "kei": [45, 47, 50, 56, 75], "kellei": 35, "kenneth": 16, "kept": [48, 50, 58], "kera": [44, 48, 65, 67, 72], "kernel": [23, 44, 45, 47, 65, 72, 73], "kernel_regular": [45, 47], "kernel_s": 48, "kernelpca": 55, "kev": [44, 72], "kevin": [31, 71, 72], "kevinsheppard": 31, "keyword": [62, 66, 72], "kfold": 50, "kg": 45, "ki": 66, "kick": [45, 57, 75], "kiener": 46, "kilomet": [50, 73], "kim": [18, 32], "kind": [19, 22, 26, 31, 34, 36, 44, 46, 47, 48, 52, 56, 57, 58, 72, 73], "kingma": 75, "kj": [50, 56, 66, 73, 75], "kjm": [65, 72], "kkt": 52, "kl": 69, "km": [56, 72], "kmean": 58, "kmeanspoint": 58, "kn_k": 58, "know": [41, 44, 45, 46, 49, 50, 52, 57, 59, 60, 61, 63, 64, 65, 72, 73, 74], "knowledg": [44, 65, 72], "known": [20, 45, 47, 48, 49, 50, 51, 52, 53, 56, 62, 66, 67, 69, 71, 73, 75], "kondev": [44, 72], "kp": 69, "kpca": 55, "kramdown": 29, "kroneck": 58, "kt": 29, "kuhn": 52, "kvalsund": [70, 72], "kwown": [44, 72], "l": [44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 56, 57, 66, 67, 69, 72, 74, 75], "l0": 51, "l1": [44, 45, 47, 51, 72], "l1_l2": [45, 47], "l1regl": 49, "l2": [45, 47], "l_": [66, 75], "l_1": 51, "l_2": [51, 57, 74, 75], "l_i": 75, "l_j": 56, "la": 57, "la_": 24, "la_i": 56, "la_k": 56, "lab": [64, 65, 67, 72], "label": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 64, 65, 66, 67, 69, 72, 73, 74, 75], "labelencod": [51, 54], "labels": [50, 52, 53], "labels_shuffl": [44, 45, 73], "laboratori": 68, "lack": [44, 72, 75], "lagari": 46, "lagrang": [52, 55], "lam": 62, "lambda": [44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 57, 61, 62, 63, 64, 67, 69, 72, 73, 74, 75], "lambda_": 55, "lambda_0": 55, "lambda_1": [49, 52, 55, 73, 74], "lambda_2": [52, 55], "lambda_i": [52, 55], "lambda_iy_i": 52, "lambda_jy_iy_j": 52, "lambda_k": 52, "lambda_n": [49, 52, 73, 74], "lamda": 45, "land": 52, "landmark": 52, "landscap": [57, 62, 74, 75], "langl": [44, 50, 55, 69, 72, 73], "languag": [22, 41, 44, 45, 48, 52, 65, 66, 67, 71, 72], "lapack": [66, 72], "laplac": 49, "laptop": [59, 65], "larg": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 57, 62, 65, 66, 67, 69, 71, 72, 73, 74, 75], "larger": [44, 47, 49, 50, 52, 54, 55, 57, 61, 69, 72, 73, 74, 75], "largest": [48, 52, 55], "lasso": [44, 51, 65, 72, 75], "lasso_sk": 50, "last": [44, 45, 47, 48, 49, 50, 51, 52, 56, 60, 61, 63, 66, 67, 69, 70, 72, 74], "latent": 48, "latent_dim": 48, "latent_point": 48, "latent_space_value_rang": 48, "later": [30, 44, 45, 48, 51, 52, 56, 57, 58, 59, 63, 65, 67, 72, 75], "latest": [48, 59, 65], "latest_checkpoint": 48, "latex": [25, 26, 64, 72], "latexcodec": [25, 26], "latter": [44, 47, 50, 51, 52, 55, 57, 66, 69, 72, 73, 74, 75], "lattic": 56, "law": 44, "layer": [44, 48, 57, 72, 75], "lbfg": [51, 53, 54], "lc_messag": 41, "lcc": [49, 50], "lda": 55, "ldot": [44, 50, 55, 67, 72], "le": [49, 51, 54, 57, 61, 69, 73, 74, 75], "lead": [20, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 66, 69, 72, 73, 74, 75], "leaf": 53, "leaki": 45, "leakyrelu": 48, "lear": [57, 74], "learn": [30, 47, 48, 49, 50, 51, 52, 53, 54, 56, 66, 70, 71], "learnabl": 47, "learner": 54, "learnig": 72, "learning_r": [52, 54], "learning_rate_init": [44, 45, 72], "learning_schedul": [57, 75], "learnt": 67, "least": [30, 44, 51, 52, 54, 55, 61, 62, 65, 66, 69], "leat": [57, 75], "leav": [44, 45, 47, 49, 50, 53, 55, 72, 74], "lectur": [44, 45, 49, 54, 55, 56, 57, 65, 66, 67, 68, 70, 71, 73], "lecturenot": [44, 65, 67, 71, 72], "left": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 66, 67, 69, 72, 73, 74, 75], "leftarrow": [52, 56], "legend": [24, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 59, 72, 73, 74, 75], "leinonen": 72, "len": [44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 60, 61, 66, 72, 73, 74, 75], "length": [44, 45, 47, 48, 52, 53, 57, 60, 65, 72, 73, 74, 75], "length_of_sequ": 48, "leq": [44, 49, 51, 52, 57, 58, 69, 72, 73, 74, 75], "less": [44, 45, 47, 48, 49, 50, 52, 53, 57, 65, 69, 72, 73, 74, 75], "lessen": 45, "let": [23, 29, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 69, 72, 73, 74, 75], "letter": [44, 60, 66, 69, 72, 73], "level": [27, 44, 45, 49, 50, 53, 65, 66, 67, 68, 70, 72, 75], "leverag": 75, "lexer": [25, 26], "li": [52, 55], "liabil": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "liabl": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "lib": [], "liberti": 75, "liblinear": 54, "librari": [44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 66, 67, 69, 71, 73, 74, 75], "licenc": 37, "licens": [18, 32, 35, 36, 44, 45, 65, 67, 72], "lie": [44, 50, 55, 69, 72, 73], "life": [44, 45, 52, 56, 72], "lifetim": 57, "light": [1, 15], "like": [22, 23, 27, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 64, 65, 66, 67, 69, 72, 73, 74, 75], "likelihood": [44, 45, 49, 53, 72, 73], "lim_": 69, "limit": [16, 18, 19, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 49, 50, 52, 56, 66, 67, 72, 73], "lin_clf": 52, "lin_model": [], "lin_reg": 53, "linalg": [44, 46, 49, 50, 52, 55, 57, 61, 66, 69, 72, 73, 74, 75], "line": [22, 23, 24, 30, 41, 44, 47, 50, 52, 55, 57, 59, 60, 64, 72, 74, 75], "line1": 52, "line2": 52, "line2d": 24, "line3": 52, "line_model": 59, "line_ms": 59, "line_predict": 59, "linear": [45, 47, 49, 50, 51, 53, 54, 55, 56, 60, 61, 62, 63, 65, 67, 69, 75], "linear_model": [44, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 63, 72, 73, 74, 75], "linear_regress": 50, "linearli": [49, 73, 74, 75], "linearloc": [50, 57, 74, 75], "linearregress": [44, 50, 51, 53, 59, 60, 63, 72, 73, 75], "linearsvc": 52, "lineat": 74, "liner": [45, 47], "linerar": 54, "linewidth": [44, 46, 48, 50, 52, 53, 54], "link": [29, 30, 44, 48, 53, 56, 59, 64, 65, 67, 68, 70, 72], "linlag": 49, "linpack": [66, 72], "linreg": [44, 72], "linspac": [24, 44, 46, 47, 48, 50, 52, 53, 54, 57, 60, 61, 63, 66, 69, 72, 73, 75], "linu": 48, "linux": [44, 45, 65, 67, 72], "liquid": [44, 72], "list": [16, 18, 28, 29, 30, 31, 32, 35, 37, 42, 45, 46, 47, 48, 53, 59, 65, 67, 72, 75], "listedcolormap": [53, 54], "literatur": [45, 51, 58, 71], "littl": [45, 47, 53, 56, 75], "live": [52, 60], "ll": [22, 44, 62, 69, 72, 73], "lle": [44, 73], "llm": 64, "lloyd": [48, 58], "lmb": [44, 46, 49, 50, 73, 74, 75], "lmbd": [44, 45, 47, 72], "lmbd_val": [44, 45, 47, 72], "lmbda": [57, 74, 75], "ln": [45, 57, 74], "load": [28, 45, 48, 50, 51, 53, 54, 75], "load_boston": [], "load_breast_canc": [45, 51, 53, 54, 55], "load_data": [47, 48], "load_digit": [45, 47], "load_iri": [52, 53], "loc": [47, 50, 51, 52, 53, 54, 72], "local": [41, 44, 45, 47, 51, 56, 57, 59, 73, 74, 75], "locat": [31, 46, 47, 52, 59], "log": [27, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 57, 59, 64, 66, 67, 72, 75], "log10": [44, 49, 50, 73, 74, 75], "log_": [44, 72], "log_clf": 54, "logarithm": [44, 49, 51, 61, 66, 72], "logbook": 67, "logic": [44, 45, 53, 72], "logical_or": 30, "login": 59, "logist": [44, 45, 46, 52, 53, 54, 55, 56, 57, 65, 73, 74, 75], "logisticregress": [51, 53, 54, 55], "logit": 51, "logreg": [51, 53, 54, 55], "logspac": [24, 44, 45, 47, 49, 50, 72, 73, 74, 75], "long": [44, 45, 47, 48, 56, 57, 72, 74, 75], "longer": [46, 47, 52, 54, 58, 66, 69, 72, 75], "loocv": 50, "look": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 63, 64, 66, 67, 69, 72, 73, 74, 75], "loop": [30, 45, 48, 50, 54, 56, 58, 60, 61, 62, 65, 66, 72, 75], "lose": 45, "loss": [16, 18, 31, 32, 35, 37, 42, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 57, 62, 66, 67, 72], "loss_fil": 48, "lossfil": 48, "lost": [30, 48], "lot": [22, 24, 45, 48, 50, 60, 63, 64, 75], "low": [44, 50, 53, 54, 55, 67, 72, 73], "lower": [44, 45, 47, 50, 53, 54, 60, 66, 73, 75], "lowercas": [66, 72], "lowest": [53, 57, 69, 75], "lr": [45, 47, 48, 54], "lstat": [], "lstm": 48, "lstm_2layer": 48, "lstsq": [44, 72, 73], "lt": 50, "lu": [44, 49, 72, 73, 74], "lubksb": 66, "luckili": 46, "ludcmp": 66, "lux": 66, "lvert": 45, "lw": [24, 44, 72], "m": [26, 27, 30, 34, 42, 44, 45, 46, 47, 49, 50, 52, 53, 54, 55, 56, 57, 59, 66, 69, 70, 71, 72, 73, 74, 75], "m_": [53, 56], "m_0": 75, "m_1": 58, "m_h": [44, 72], "m_k": 58, "m_l": 56, "m_n": [44, 72], "m_p": [44, 72], "m_t": [57, 75], "ma": 55, "machin": [45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 59, 60, 66, 71, 73, 75], "machinelearn": [44, 50, 60, 64, 65, 67, 68, 70, 71, 72, 73, 74], "machineri": 41, "mackai": 71, "macro": 29, "made": [30, 44, 45, 47, 48, 49, 50, 51, 53, 55, 56, 67, 72, 73, 75], "mae": [44, 72], "magic": 48, "magnitud": [45, 50, 51, 57, 73, 75], "mai": [16, 18, 30, 31, 32, 35, 41, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 57, 63, 65, 66, 67, 69, 72, 73, 74, 75], "mail": [68, 70], "main": [25, 44, 45, 47, 48, 49, 50, 51, 53, 66, 67, 71, 73, 74, 75], "mainli": [44, 49, 50, 51, 53, 72, 73], "maintain": [20, 50, 75], "major": [21, 30, 45, 50, 53, 54, 57, 66, 72, 74, 75], "make": [24, 30, 41, 45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 57, 59, 60, 62, 63, 65, 66, 67, 69, 71, 72, 74, 75], "make_axes_locat": 50, "make_moon": [52, 53, 54], "make_pipelin": [44, 50, 54, 73], "makedir": [44, 50, 51, 53, 72], "malcondit": 66, "malign": [45, 51, 53], "mammographi": 49, "manag": [44, 46, 47, 59, 65, 67, 72, 75], "mandatori": [27, 70, 72], "mani": [22, 23, 30, 31, 41, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 69, 71, 72, 73, 74, 75], "manifold": 55, "manner": 47, "manual": [50, 73, 75], "map": [41, 44, 45, 46, 50, 51, 52, 55, 56, 58, 69, 72], "marc": 73, "marchant": 30, "margin": [30, 44, 49, 52], "marit": [44, 72], "mark": 72, "markdownfil": 23, "markdownit": 29, "markdownitdeflist": 28, "markedli": 22, "marker": [27, 51, 66, 72], "markov": [65, 72], "markup": [22, 27], "marsaglia": 69, "mask_or": 30, "masked_arrai": 30, "maskedrecord": 30, "mass": [44, 45, 49, 57, 73, 74], "massag": [44, 72], "masses2016": [44, 72], "masses2016ol": [44, 72], "masses2016tre": 44, "masseval2016": [44, 72], "master": [29, 68, 70], "mat": [65, 72], "mat1100": [65, 72], "mat1110": [65, 72], "mat1120": [65, 72], "match": [27, 45, 48, 49, 57, 58, 59, 73, 74, 75], "materi": [16, 18, 31, 32, 35, 37, 42, 48, 49, 51, 57, 59, 66, 68, 70], "math": [24, 29, 47, 51, 56, 57, 66, 69, 71, 72, 75], "mathbb": [29, 44, 48, 49, 50, 51, 52, 55, 56, 57, 58, 61, 63, 66, 67, 69, 72, 73, 74, 75], "mathbf": [44, 49, 50, 51, 52, 57, 63, 66, 67, 72, 73, 74, 75], "mathcal": [45, 49, 50, 51, 57, 67], "matheemat": 47, "mathemat": [44, 50, 55, 56, 57, 65, 66, 69, 71, 72, 75], "mathemati": 72, "mathrm": [44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 67, 69, 72, 73, 74, 75], "matmul": [45, 46, 49], "matnat": 71, "matplotlib": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 63, 65, 66, 67, 69, 72, 73, 74, 75], "matplotlibrc": 30, "matric": [44, 45, 47, 48, 50, 51, 52, 55, 57, 60, 61, 65, 73, 74], "matrix": [44, 46, 47, 48, 50, 51, 52, 54, 57, 61, 62, 63, 67, 69], "matshow": 45, "matter": [46, 47, 57, 73, 74, 75], "matthia": [25, 26, 34, 42], "max": [44, 45, 46, 47, 48, 53, 54, 56, 57, 70, 72, 74, 75], "max_depth": [44, 53, 54], "max_diff": 46, "max_diff1": 46, "max_diff2": 46, "max_it": [44, 45, 52, 57, 72], "max_iter": 58, "max_leaf_nod": 54, "max_sampl": 54, "maxdegre": [44, 50, 54, 73], "maxdepth": 54, "maxim": [45, 48, 49, 51, 52, 55], "maximum": [44, 46, 47, 49, 51, 52, 53, 54, 57, 58, 72, 73, 74, 75], "maxpolydegre": [49, 50, 73, 74, 75], "maxpooling2d": 47, "mbox": [24, 49, 50, 73, 74], "mcculloch": 56, "md": [22, 23, 27, 28, 29, 55], "mdoel": 48, "me": [27, 30], "mean": [24, 29, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 65, 66, 67, 69, 72, 75], "mean_absolute_error": [44, 72], "mean_divisor": 58, "mean_i": 69, "mean_matrix": 58, "mean_squared_error": [44, 48, 50, 51, 54, 59, 63, 72, 73], "mean_squared_log_error": [44, 72], "mean_vector": 58, "mean_x": 69, "meaning": [44, 48, 51, 72], "meansquarederror": [44, 72], "meant": [47, 51, 54, 57], "meanwhil": 75, "measur": [30, 44, 45, 46, 49, 50, 53, 55, 56, 58, 60, 62, 67, 69, 72, 73, 75], "mechan": [44, 48, 69, 72, 75], "median": [44, 72, 73, 75], "medicin": 56, "medium": [24, 48, 52, 57, 75], "medv": [], "meet": [44, 70], "mehta": [44, 72, 73, 74], "member": 64, "memori": [47, 48, 55, 56, 57, 62, 66], "mentat": 37, "mention": [44, 56, 57, 67, 69, 72, 74, 75], "merchant": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "mere": [44, 67], "merg": [19, 26, 31, 34, 36], "meshgrid": [46, 49, 50, 52, 53, 54, 55], "mess": 59, "messag": [20, 41, 49, 57], "messi": 46, "met": [16, 18, 31, 32, 35, 37, 42, 44, 47, 52, 73], "meta": 29, "meteorolog": 53, "meter": [50, 73], "method": [30, 44, 45, 46, 47, 48, 49, 51, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 71, 73], "metion": 50, "metric": [44, 45, 47, 50, 51, 53, 54, 58, 59, 72, 73], "metropoli": [65, 72], "mev": [44, 69, 72], "mgd": [57, 75], "mglearn": [65, 72], "mgrid": 57, "mhjensen": [], "mi": 54, "mia": [70, 72], "michael": 25, "microsoft": 71, "mid": 45, "midel": 48, "midnight": 59, "midpoint": 53, "might": [30, 44, 45, 46, 48, 50, 53, 57, 59, 61, 62, 73, 74, 75], "migth": 61, "mild": 53, "millimet": [50, 73], "million": [44, 72, 73, 75], "mimic": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 30, 56], "min": [29, 35, 44, 46, 49, 52, 53, 74], "min_": [44, 46, 49, 58, 61, 72, 73, 74], "min_samples_leaf": 53, "mind": [20, 44, 50, 57, 59, 62, 72, 73, 74, 75], "mindboard": 48, "mine": [65, 72], "mini": [45, 55, 56, 57, 74], "minibatch": [45, 55, 57], "minibathc": [57, 75], "miniforge3": [], "minim": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 73, 74, 75], "minima": [44, 45, 51, 57, 72, 74, 75], "minimum": [44, 45, 46, 50, 52, 53, 55, 57, 73, 74, 75], "minmaxscal": [44, 73, 75], "minor": 69, "minst": 45, "minu": 51, "mirjalili": 72, "mirror": 53, "misc": 50, "misclassif": [52, 53, 54], "misclassifi": [52, 54], "miser": 44, "mismatch": 45, "miss": [30, 51, 54], "mistak": [48, 63], "mit": [27, 28, 29, 36, 71], "mitig": 75, "mix": [45, 46, 72], "mixtur": [57, 75], "mk": [53, 66], "mkdir": [44, 50, 51, 53, 72], "ml": [44, 45, 54, 57, 66, 67, 73, 74, 75], "mlab": 69, "mle": [49, 51], "mlp": 45, "mlpclassifi": 45, "mlpregressor": [44, 72], "mm": 66, "mml": 73, "mn": [56, 69], "mnist": [45, 55], "mo": 41, "mod": 69, "mode": [29, 68, 70, 72], "model": [20, 46, 47, 49, 51, 52, 53, 54, 55, 57, 58, 60, 62, 63, 64, 65, 67, 69, 71, 73, 74, 75], "model_select": [44, 45, 47, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 72, 73, 74, 75], "moder": [54, 75], "modern": [44, 50, 51, 65, 72, 75], "modest": 75, "modif": [16, 18, 30, 31, 32, 35, 37, 42, 46, 56, 57], "modifi": [17, 19, 20, 26, 29, 31, 34, 36, 41, 44, 45, 47, 49, 51, 52, 54, 56, 57, 72, 73, 74, 75], "modul": [17, 28, 30, 31, 40, 44, 60, 66, 72], "modular": 69, "modulo": 69, "moe": [55, 73], "moment": [49, 50, 57, 69], "mondai": [70, 72], "monitor": [57, 75], "monoton": [49, 56, 69], "mont": [44, 50, 65, 69, 71, 72], "montli": 60, "moor": [49, 50], "more": [2, 17, 21, 23, 24, 25, 30, 41, 44, 45, 46, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 65, 69], "moreov": [22, 30, 44, 47], "morten": [70, 72, 73, 74, 75], "mortenhj": 72, "most": [22, 30, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 65, 67, 69, 72, 73, 74, 75], "mostli": [45, 55, 62, 75], "motion": [44, 57], "motiv": [45, 48], "moulin": 75, "move": [30, 44, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 67, 69, 73, 74], "mpl": [51, 72], "mpl_toolkit": [46, 50, 57, 74, 75], "mplot3d": [46, 50, 57, 74, 75], "mplregressor": 45, "mr_": 30, "mrecord": 30, "mse": [44, 48, 49, 50, 53, 54, 59, 60, 61, 63, 64, 67, 72, 73, 74, 75], "mse_simpletre": 54, "mselassopredict": [49, 74], "mselassotrain": [49, 74], "mseownridgepredict": [50, 73, 74, 75], "msepredict": [49, 74], "mseridgepredict": [44, 49, 50, 73, 74, 75], "msetrain": [49, 74], "msg": 41, "msle": [44, 72], "mt": [51, 56], "mu": [44, 50, 55, 57, 69, 72, 75], "mu0": 69, "mu1": 69, "mu2": 69, "mu_": [50, 69, 73, 75], "mu_i": [50, 73, 75], "mu_n": 55, "mu_x": 69, "much": [44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 59, 64, 66, 67, 69, 72, 73, 74, 75], "multi": [44, 45, 47, 51, 65, 72], "multiclass": [45, 51], "multidimension": [55, 56, 72], "multilay": 45, "multinomi": 51, "multipl": [41, 46, 48, 49, 50, 51, 56, 57, 59, 69, 73, 74, 75], "multipli": [47, 49, 50, 55, 57, 62, 66, 69, 73, 74, 75], "multiplum": 52, "multivari": [44, 46, 54, 55, 65, 69, 72], "multivariate_norm": [55, 58], "multpli": 60, "murphi": [55, 71, 72], "muse": 36, "must": [16, 17, 18, 22, 31, 32, 35, 37, 42, 45, 46, 49, 50, 52, 54, 56, 57, 58, 59, 64, 69, 73, 74, 75], "mutat": 51, "mutual": [45, 47, 50, 57], "mx_": 69, "my": [30, 41, 72], "myenv": [], "myriad": [44, 65, 72], "myself": 30, "mz1": 69, "mz2": 69, "m\u00f8svatn": 50, "n": [24, 27, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 72, 73, 74, 75], "n1": 66, "n2": 66, "n8grai": 20, "n_": [45, 46, 47, 52, 56, 69], "n_0": [56, 69], "n_boostrap": [50, 54], "n_bootstrap": 50, "n_categori": [45, 47], "n_cluster": 58, "n_compon": 55, "n_epoch": [57, 75], "n_estim": 54, "n_examples_to_gener": 48, "n_featur": [45, 62], "n_filter": 47, "n_hidden": 46, "n_hidden_neuron": [44, 45, 72], "n_i": 69, "n_input": [44, 45, 47, 73], "n_instanc": 53, "n_iter": 75, "n_job": 54, "n_k": 58, "n_l": [56, 69], "n_layer": 45, "n_m": 53, "n_neuron": 45, "n_neurons_connect": 47, "n_neurons_layer1": 45, "n_neurons_layer2": 45, "n_point": 58, "n_sampl": [50, 52, 53, 54, 58, 62], "n_split": 50, "n_step": 48, "n_t": 46, "n_x": 46, "nabla": [45, 57, 74, 75], "nabla_": [46, 57, 74, 75], "nabla_w": 57, "nag": 57, "naimi": [44, 72], "naiv": 51, "naive_kmean": 58, "name": [16, 17, 18, 27, 31, 32, 35, 41, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 62, 64, 65, 66, 67, 69, 70, 72, 73, 74], "namespac": 17, "nan": 30, "narrow": [57, 75], "nathaniel": 20, "nation": [45, 49], "nativ": [29, 65, 72], "natur": [44, 45, 48, 52, 53, 56, 57, 67, 69, 71, 72, 74, 75], "navier": 56, "navig": [59, 75], "nb": 69, "nb_": 66, "nbconvert": 72, "nd": 58, "ndarrai": [30, 50], "ne": [53, 54, 66, 69, 73, 74], "nearest": [45, 47, 50, 55], "nearli": [57, 74], "neat": 72, "neccesari": 50, "necess": 46, "necessari": [44, 45, 47, 48, 52, 58, 62, 72], "necessarili": [44, 48, 55, 69, 72], "necesserali": 49, "neck": 51, "need": [23, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 69, 73, 74, 75], "neg": [44, 45, 47, 49, 50, 51, 54, 57, 66, 69, 72, 74], "neg_mean_squared_error": 50, "neglect": [69, 75], "neglig": [16, 18, 31, 32, 35, 37, 42, 69], "neighbor": [47, 50, 55], "neither": [18, 31, 32, 35, 48, 57, 75], "neq": [57, 58, 69, 74], "nervou": 56, "nest": [27, 53, 56], "nesterov": 57, "net": [37, 46, 48, 56], "netlib": [66, 72], "network": [44, 53, 57, 65, 71, 73], "neural": [44, 57, 65, 71, 73], "neural_network": [44, 45, 46, 72], "neuralnetwork": 45, "neuron": [45, 46, 47, 48, 56], "neutral": [44, 72], "neutron": [44, 72], "never": [30, 45, 48, 50, 53, 69], "new": [20, 41, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 61, 64, 66, 72, 73, 74, 75], "new_chang": [57, 75], "new_hobbit": 72, "new_ma": 30, "newaxi": [44, 47, 50, 53], "newli": [44, 72], "newlin": 29, "newton": [45, 51, 52, 57, 69], "next": [44, 45, 46, 47, 48, 49, 50, 52, 53, 57, 58, 59, 60, 72, 73, 74, 75], "next_guess": 57, "next_input": 48, "ng": 45, "ni": 58, "nice": [44, 45, 49, 55, 72, 73, 74], "nicer": [62, 75], "nip": 75, "niter": [57, 74, 75], "nitric": [], "nlambda": [44, 49, 50, 73, 74, 75], "nlp": 71, "nm": 69, "nm_n": [44, 72], "nmse": 50, "nn": [46, 49, 50, 56, 66, 72], "nn_model": 45, "nnmin": 46, "node": [27, 28, 45, 47, 53, 54, 56], "nois": [44, 48, 49, 50, 52, 53, 54, 57, 62, 63, 67, 72, 73, 74, 75], "noise_dimens": 48, "noisi": [45, 50, 67, 75], "nomask": 30, "non": [30, 44, 45, 47, 49, 50, 51, 53, 54, 55, 56, 57, 58, 62, 66, 69, 72, 73, 74], "nondifferenti": 75, "none": [44, 45, 46, 48, 49, 53, 54, 57, 69, 72, 73], "noninfring": [19, 26, 31, 34, 36], "nonlinear": [47, 50, 52, 53, 55, 56], "nonneg": [50, 53, 57, 74], "nonparametr": 50, "nonsens": 69, "nonsingular": 66, "nonumb": [47, 51, 52, 57, 66], "nor": [18, 31, 32, 35, 45, 48, 57, 75], "norm": [44, 45, 49, 50, 52, 55, 57, 62, 72, 73, 74, 75], "normal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 65, 66, 67, 69, 72, 73, 74, 75], "normali": [66, 72], "norwai": [50, 67, 72, 74, 75], "notabl": 30, "notat": [44, 46, 49, 50, 57, 58, 69, 72, 73, 74], "note": [20, 22, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 56, 57, 58, 59, 60, 62, 65, 66, 69, 71, 72, 75], "notebook": [22, 44, 45, 47, 53, 59, 60, 63, 64, 65, 67, 72], "noteworthi": 75, "noth": [17, 29, 45, 46, 49, 52, 56, 58, 69, 73, 74], "notic": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 48, 49, 56, 57, 66, 69, 72], "notion": 47, "novel": [47, 50, 54, 72], "novemb": [45, 70, 72], "now": [29, 30, 41, 44, 46, 48, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 63, 65, 66, 67, 69, 72, 73], "nowadai": [44, 45, 47, 53, 65, 72], "nox": [], "np": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 69, 72, 73, 74, 75], "npm": [27, 28, 29], "npr": 46, "nsampl": 50, "nt": 46, "nu": 69, "nuclear": [49, 73, 74], "nuclei": [44, 69, 72], "nucleon": [44, 72], "nucleu": [44, 72], "num": 48, "num_coordin": 46, "num_hidden_neuron": 46, "num_it": [46, 62], "num_neuron": 46, "num_neurons_hidden": 46, "num_point": 46, "num_tre": 54, "num_valu": 46, "number": [29, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 70, 72, 74], "numberid": 51, "numberparamet": 47, "numer": [30, 44, 49, 50, 53, 54, 55, 56, 57, 65, 66, 71, 72, 73, 74, 75], "numpi": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 67, 69, 73, 74, 75], "numpydocstr": 37, "nunmpi": [49, 73], "nve_frngahw": 74, "nx": 46, "ny": 69, "o": [30, 44, 45, 48, 49, 50, 51, 52, 53, 55, 66, 70, 71, 72, 73, 74, 75], "obei": [50, 55, 57, 73, 75], "object": [30, 44, 45, 48, 52, 54, 59, 63, 66, 72, 75], "obliqu": [49, 73, 74], "observ": [44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 69, 72, 74, 75], "obtain": [19, 26, 31, 34, 36, 44, 45, 49, 50, 51, 52, 53, 54, 56, 57, 58, 61, 66, 67, 69, 72, 73, 74, 75], "obviou": [49, 50, 55, 69, 73, 74], "obviouli": 72, "obvious": [44, 48, 49, 50, 66, 72], "oc": [73, 74], "occupi": [], "occur": [44, 50, 52, 53, 66, 69, 72], "octob": [70, 72], "od": 44, "odd": [44, 47, 51, 72, 73, 75], "odenum": 46, "odesi": 46, "oen": 44, "off": [21, 22, 23, 45, 47, 48, 49, 53, 57, 64, 69, 75], "offer": [50, 55, 65, 66, 68, 70, 72], "offic": [70, 72], "offici": [68, 72], "often": [31, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 65, 66, 67, 69, 72, 73, 74, 75], "ofter": [66, 72], "ol": [44, 57, 61, 63, 73, 75], "old": [30, 45, 49, 54, 57, 59, 62], "old_ma": 30, "oliph": 30, "ols_paramet": 60, "ols_sk": 50, "ols_svd": 50, "olsbeta": 74, "olstheta": [44, 49], "omega": [46, 47, 50], "omega_0": 47, "omit": [44, 49, 72, 73, 74], "onc": [45, 50, 53, 55, 57, 64], "one": [17, 20, 22, 30, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 63, 64, 65, 66, 67, 69, 70, 72, 73, 75], "onehot": 45, "onehot_vector": 45, "onehotencod": 53, "ones": [44, 46, 49, 50, 52, 53, 54, 55, 57, 60, 62, 66, 67, 72, 73, 74, 75], "ones_lik": 48, "ong": 73, "onl": 47, "onli": [20, 30, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 69, 72, 73, 74, 75], "onlin": [55, 59, 64, 68, 75], "onto": [41, 49, 55, 73, 74], "open": [27, 44, 45, 48, 50, 51, 53, 59, 65, 67, 68, 70, 72], "oper": [30, 44, 45, 47, 49, 50, 54, 55, 56, 57, 59, 60, 65, 69, 72, 73, 74, 75], "operation": 69, "oplu": 69, "opmiz": [57, 75], "opportun": 44, "oppos": [50, 57], "opposit": [45, 49, 52, 73, 74], "opt": [45, 49, 67, 72, 74], "optim": [44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 60, 61, 63, 67], "optimis": [45, 47], "option": [27, 30, 44, 45, 47, 49, 50, 52, 55, 59, 62, 66, 73, 75], "optmiz": [45, 52, 57, 73], "oral": 72, "orang": 44, "order": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 59, 66, 67, 69, 72, 73, 74], "ordinari": [44, 46, 47, 51, 55, 57, 61, 62, 65], "oreilli": [71, 72], "org": [22, 29, 30, 44, 47, 48, 60, 64, 65, 66, 67, 71, 72, 73, 74, 75], "organ": [50, 51, 54, 66], "orient": [45, 49, 69, 73, 74], "origin": [16, 25, 30, 31, 41, 44, 47, 49, 50, 52, 55, 56, 57, 59, 66, 72, 73, 74, 75], "orthogn": [49, 73, 74], "orthogon": [44, 49, 50, 52, 55, 57, 66, 72, 73, 74], "orthonorm": [49, 73, 74], "os": [70, 72], "oscar": 45, "oscil": [47, 57, 75], "oskar": 72, "oskarlei": 72, "osl": 62, "oslo": [44, 65, 67, 68, 70, 72, 73, 74, 75], "osx": [44, 65, 67, 72], "other": [16, 18, 19, 23, 26, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 49, 50, 51, 52, 54, 57, 58, 60, 63, 65, 68, 69, 70, 71, 73, 74, 75], "otherwis": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 45, 48, 51, 57, 66, 72, 75], "ouput": [49, 51, 56], "our": [41, 45, 46, 47, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 65, 66, 69, 75], "ourmodel": 44, "ourselv": [44, 49, 50, 52, 55, 57, 72, 73, 74], "out": [16, 18, 19, 21, 24, 26, 29, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 65, 66, 67, 69, 72, 73, 75], "out_fil": 53, "outcom": [44, 51, 53, 54, 56, 69, 73], "outdoor": 53, "outer": [50, 56, 57], "outfil": 48, "outlier": [44, 52, 72, 73, 75], "outlin": [50, 54, 55], "outlook": 53, "outperform": [54, 75], "output": [23, 27, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 66, 67, 69, 72, 73, 74, 75], "output_bia": 45, "output_bias_gradi": 45, "output_shap": 48, "output_weight": 45, "output_weights_gradi": 45, "outputlayer1": 56, "outputlayer2": 56, "outsid": 48, "over": [20, 44, 45, 47, 48, 49, 50, 53, 54, 56, 57, 59, 60, 63, 66, 67, 72, 73, 74, 75], "over1": 57, "overal": [45, 54, 75], "overcast": 53, "overcom": [56, 57], "overdetermin": [44, 72], "overfit": [44, 45, 47, 50, 53, 54, 57, 75], "overflow": [49, 75], "overhead": 56, "overlap": [47, 51, 52, 53], "overleaf": 64, "overlin": [44, 49, 50, 53, 54, 55, 58, 66, 72, 73, 75], "overshoot": 75, "overst": 44, "overtrain": 48, "overview": [22, 47, 64], "own": [17, 48, 49, 50, 52, 56, 57, 60, 62, 65, 66, 74, 75], "owner": [16, 42], "ownmsepredict": 44, "ownmsetrain": 44, "ownridgebeta": 73, "ownridgetheta": [44, 50, 73, 74, 75], "ownypredictridg": 44, "ownytilderidg": 44, "ox": 31, "oxid": [], "p": [27, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 69, 72, 73, 74, 75], "p0": 46, "p1": 46, "p_": [46, 48, 52, 53], "p_hidden": 46, "p_i": [49, 69], "p_j": 69, "p_n": 69, "p_output": 46, "p_x": 69, "pack": [44, 72], "packag": [17, 25, 28, 41, 44, 45, 47, 48, 49, 52, 55, 57, 59, 64, 65, 67, 69, 73, 74, 75], "packtpub": 72, "packtpublish": 72, "pad": [47, 48], "page": [21, 22, 23, 28, 30, 44, 65, 72, 74, 75], "pai": [44, 45, 53, 57, 59, 75], "pair": [44, 46, 47, 53, 65, 69, 72], "paltform": 59, "panda": [44, 48, 49, 50, 51, 53, 55, 65, 67, 74, 75], "pandoc": 28, "panel": 72, "paper": [45, 75], "paper_fil": 75, "paradigm": [44, 72], "paragraph": 64, "parallel": [54, 57, 65, 66, 72], "param": [27, 46], "paramat": 46, "paramet": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 61, 62, 63, 67, 69, 74, 75], "parameter": [44, 50, 54, 72, 73], "parametr": [44, 50, 72, 73], "paramt": [47, 49], "parser": [27, 28, 29], "part": [30, 31, 44, 45, 47, 49, 50, 54, 61, 63, 64, 66, 68, 69, 70, 72, 73], "partial": [44, 45, 49, 50, 51, 52, 54, 55, 56, 57, 60, 69, 72, 73, 74, 75], "particip": [59, 65, 68, 70, 72], "particl": [44, 48, 57, 69, 72], "particular": [16, 18, 19, 21, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 49, 50, 53, 54, 55, 56, 57, 60, 67, 69, 71, 72, 73, 74, 75], "particularli": [49, 50, 52, 55, 57, 69, 73, 74, 75], "partit": [45, 48, 53], "partli": [50, 72], "partner": 59, "pass": [46, 47, 56, 58, 75], "password": 67, "past": [54, 69, 75], "patch": [50, 69], "path": [17, 23, 44, 48, 50, 51, 53, 65, 72, 75], "pathcollect": 61, "patholog": 29, "patient": 51, "patter": 48, "pattern": [44, 47, 48, 56, 71, 72, 75], "paul": 30, "pauli": [37, 44, 72], "pav": 37, "pc": [55, 59, 65], "pca": [44, 51, 65, 72, 73], "pd": [44, 48, 49, 50, 51, 53, 55, 72, 73, 74, 75], "pde": 46, "pdf": [44, 47, 48, 49, 50, 53, 59, 60, 63, 64, 67, 71, 72], "pedagog": [44, 72, 73], "penal": [50, 62, 73, 75], "penalti": [50, 57, 62, 67, 73, 75], "penros": [49, 50], "pentagon": [57, 74], "peopl": [45, 53, 57, 65, 75], "per": [30, 44, 45, 50, 68, 70, 72, 75], "percentag": [54, 55, 70], "perceptron": [44, 45, 51, 72], "peregrin": 72, "perez": 20, "perfect": [44, 45, 57, 72, 75], "perfectli": [48, 50], "perform": [30, 44, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 60, 62, 63, 65, 66, 67, 69, 72, 73, 74, 75], "performac": 48, "perhap": [44, 49, 57, 72, 73, 74, 75], "perimet": 45, "period": [45, 48, 69], "permiss": [16, 18, 19, 26, 31, 32, 34, 35, 36, 59], "permit": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "permut": 55, "persist": 57, "person": [19, 20, 26, 31, 34, 36, 49, 50, 51, 60, 64, 68, 70, 72, 73], "perspect": 71, "pertin": [56, 72], "petal": [52, 53], "peter": [25, 71, 73], "phantom": 69, "phase": [41, 50, 56], "phenomena": 69, "phenomenon": 75, "phi": 52, "phi_k": 52, "philipp": 25, "philosophi": 57, "phone": [70, 72], "photo": [48, 72], "php": 67, "phrase": [41, 44, 72], "physic": [44, 45, 48, 51, 56, 57, 69, 70, 71, 72, 73, 74, 75], "pi": [29, 46, 47, 49, 50, 51, 53, 56, 57, 69], "pick": [45, 53, 54, 55, 57, 58, 75], "pickl": 45, "pictur": [30, 44, 72], "pie": [65, 72], "piec": [55, 58], "pierr": 30, "pillow": [44, 65, 67, 72], "pinv": [49, 50, 57, 67, 73, 74, 75], "pip": [44, 45, 59, 65, 67, 72], "pip3": [44, 45, 67, 72], "pipelin": [44, 50, 52, 54, 73], "pippin": 72, "pit": 48, "pitfal": [50, 73], "pitt": 56, "pixel": [45, 47, 48, 72], "pixel_height": [45, 47], "pixel_width": [45, 47], "pkg_resourc": 17, "pkgutil": 17, "place": [30, 44, 48, 50, 52, 57, 59, 66, 67, 72, 74], "plai": [44, 47, 48, 49, 50, 52, 55, 62, 65, 67, 72, 73, 74], "plain": [52, 54, 56, 57, 58, 74, 75], "plan": [50, 53, 70, 71, 72], "plane": [52, 53], "plateau": [49, 74, 75], "platform": [65, 72], "plausibl": 56, "pleas": [30, 57, 67, 70, 72], "plenti": 45, "plethora": [47, 56], "plot": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75], "plot_all_sc": [67, 73], "plot_confusion_matrix": [51, 54], "plot_count": 50, "plot_cumulative_gain": [51, 54], "plot_data": 45, "plot_dataset": 52, "plot_decision_boundari": [53, 54], "plot_import": 54, "plot_max": 48, "plot_min": 48, "plot_model": 48, "plot_numb": 48, "plot_predict": 52, "plot_regression_predict": 53, "plot_result": 48, "plot_roc": [51, 54], "plot_surfac": [46, 50, 57], "plot_train": 53, "plot_tre": [53, 54], "plt": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 63, 66, 69, 72, 73, 74, 75], "plu": [44, 47, 49, 51, 62, 72, 73], "plugin": [17, 27, 28, 29], "pm": 52, "pmatrix": 46, "pml": 71, "pn": 47, "png": [44, 48, 50, 51, 53, 72], "point": [30, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 62, 63, 64, 66, 67, 69, 70, 72, 73, 74, 75], "point_1": 48, "point_2": 48, "poisson": [65, 69, 72], "poli": [50, 52], "poly100_kernel_svm_clf": 52, "poly3": 44, "poly3_plot": 44, "poly_featur": [52, 53, 59], "poly_features10": 53, "poly_fit": 53, "poly_fit10": 53, "poly_kernel_svm_clf": 52, "poly_model": 59, "poly_ms": 59, "poly_predict": 59, "polydegre": [44, 49, 50, 54, 73], "polygon": [57, 74], "polym": 56, "polymi": 67, "polynomi": [44, 49, 50, 51, 52, 53, 54, 55, 59, 61, 63, 64, 67, 72, 73, 75], "polynomial_featur": [50, 59, 60, 61], "polynomial_svm_clf": 52, "polynomialfeatur": [44, 50, 52, 53, 59, 60, 63, 73], "polytrop": [44, 50], "pool": 47, "pool_siz": 47, "poor": [45, 57, 74, 75], "poorli": [44, 73], "popul": [44, 49, 72, 73], "popular": [44, 45, 47, 50, 51, 52, 53, 55, 56, 59, 65, 66, 67, 69, 73], "popularli": [44, 72], "portabl": 54, "portion": [19, 26, 34, 36, 55, 57, 75], "pose": [44, 48, 49, 50, 55, 69, 72], "posit": [44, 45, 46, 47, 49, 51, 52, 54, 55, 57, 58, 66, 69, 72, 73, 74, 75], "possibl": [16, 18, 30, 31, 32, 35, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 69, 70, 72, 73, 74, 75], "possibli": [50, 52, 57, 67], "post": 24, "posterior": 49, "postpon": [44, 73], "postscript": 67, "postul": 49, "potenti": [44, 47, 49, 50, 56, 57, 73, 75], "pott": 56, "power": [22, 44, 45, 49, 50, 52, 53, 56, 57, 72, 73, 74, 75], "pp": [49, 50, 63], "practic": [44, 49, 50, 51, 52, 60, 62, 63, 67, 69, 73], "practition": [44, 45, 47, 72, 75], "pre": 72, "preambl": 17, "preced": [45, 55, 56, 69], "preceed": 48, "preceq": 52, "precis": [44, 46, 49, 55, 57, 66, 67, 69, 72, 73, 75], "pred": 50, "predicit": 44, "predict": [44, 45, 49, 50, 51, 52, 53, 54, 59, 60, 61, 63, 65, 67, 71, 72, 73, 74, 75], "predict_prob": 45, "predict_proba": [51, 54], "predictor": [44, 49, 50, 51, 53, 54, 55, 72, 73, 75], "prefer": [44, 45, 50, 52, 53, 55, 57, 59, 64, 65, 67, 72], "prefil": 30, "prepar": [30, 44, 50, 66, 67, 72, 73], "preprocess": [44, 48, 50, 51, 52, 53, 54, 55, 59, 60, 61, 62, 63, 67], "prerequisit": 44, "prescript": 67, "presenc": [23, 57], "present": [30, 44, 49, 50, 51, 53, 56, 57, 66, 67, 69, 72, 73, 74, 75], "preserv": [30, 47, 55, 66], "press": [57, 59, 71, 74], "pretrain": [45, 48], "pretti": [44, 48, 52, 53, 65, 67, 72], "prettier": 41, "prev_centroid": 58, "prevent": [57, 69, 75], "previou": [44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 59, 60, 66, 67, 69, 73, 74, 75], "previous": [46, 47, 53, 54, 69], "price": [44, 48, 53, 57, 75], "primal": 52, "primari": [44, 51, 72], "prime": 69, "princip": [44, 49, 51, 65, 72, 73, 74], "principl": [44, 50, 51, 52, 58, 72], "print": [23, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 62, 66, 69, 72, 73, 74, 75], "print_funct": [52, 53], "printout": [44, 72], "prior": [16, 18, 31, 32, 35, 44, 49, 50, 72], "privat": 44, "prob": [45, 69], "probabilist": [44, 71, 72, 73], "probabl": [44, 45, 47, 48, 50, 51, 54, 57, 65, 72, 73, 75], "problem": [30, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 63, 65, 66, 67, 69], "probml": 71, "proce": [44, 49, 50, 51, 52, 53, 54, 55, 57, 66, 72, 73], "procedur": [46, 48, 49, 50, 52, 54, 55, 57, 73, 74, 75], "proceed": 66, "process": [29, 44, 46, 48, 50, 53, 54, 56, 57, 65, 66, 67, 69, 71, 72, 74, 75], "procur": [16, 18, 31, 32, 35, 37, 42], "prod": 71, "prod_": [45, 49, 51], "produc": [44, 47, 48, 49, 50, 53, 54, 55, 56, 57, 62, 64, 65, 66, 69, 72, 73], "product": [16, 18, 31, 32, 35, 44, 45, 47, 49, 50, 51, 52, 56, 57, 60, 61, 65, 66, 72, 73, 75], "profess": [44, 72], "profit": [16, 18, 31, 32, 35, 37, 42], "program": [44, 45, 48, 49, 50, 52, 56, 58, 59, 65, 66, 68, 69, 70, 72, 73], "programm": 66, "progress": [45, 48, 58, 75], "prohibit": 50, "project": [20, 37, 44, 45, 46, 47, 49, 55, 57, 59, 63, 65, 68, 73, 74, 75], "project_root_dir": [44, 50, 51, 53, 72], "promin": 56, "promis": 52, "promot": [16, 18, 31, 32, 35, 70, 72], "prompt": 64, "prone": [53, 59], "pronounc": [57, 65, 72, 75], "proof": [44, 55, 56, 57, 72, 74], "prop": 75, "prop_cycl": 24, "propag": [30, 46, 47, 57, 75], "proper": [44, 46, 50, 51, 64], "properli": [22, 45, 50, 52, 54, 57, 62, 64, 67, 75], "properti": [29, 30, 44, 45, 47, 56, 57, 60, 66, 72], "proport": [44, 45, 49, 53, 55, 57, 69, 72, 73], "propos": [45, 48, 50, 54, 67, 72, 75], "propto": [49, 57, 74, 75], "proton": [44, 72], "prove": [47, 57, 74, 75], "provid": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 64, 65, 66, 67, 69, 72, 73, 74, 75], "proxi": [45, 57, 75], "prune": 53, "pseudo": [66, 69, 75], "pseudocod": 67, "pseudoinv": 49, "pseudoinvers": [49, 50, 67], "pseudorandom": [50, 69], "psychologi": [44, 72], "pt": 57, "public": [44, 59, 65, 72], "publish": [19, 26, 31, 34, 36], "pull": 59, "punish": [44, 45, 72], "pure": [47, 53, 69], "purest": 53, "puriti": 53, "purpos": [16, 18, 19, 22, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 47, 54, 56, 58, 72], "push": 59, "put": [30, 41, 45, 64, 75], "putmask": 30, "py": [17, 30, 41, 49], "pybtex": 34, "pycod": 72, "pydata": 65, "pydevd_extension_api": 17, "pydevd_plugin": 17, "pydevd_plugin_plugin_nam": 17, "pydot": 53, "pygment": 0, "pyhton2": 72, "pylab": [51, 72], "pypi": 65, "pyplot": [24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 63, 66, 69, 72, 73, 74, 75], "pythagora": 49, "python": [17, 26, 30, 41, 45, 46, 47, 49, 50, 52, 55, 56, 57, 58, 62, 64, 67, 69, 73, 75], "python2": [44, 67], "python3": [44, 65, 67, 72], "pythonpath": 17, "pytorch": [44, 65, 67, 72], "pyzmq": 43, "q": [49, 50, 52, 55, 69], "qp": 52, "qquad": [46, 55, 57, 66, 75], "qr": [49, 50, 66, 73, 74], "quad": [45, 57, 66], "quadrat": [44, 52, 53, 57, 72], "qualit": [48, 53, 67, 69], "qualiti": [44, 53, 65, 72, 73], "quantifi": 45, "quantil": 54, "quantit": [44, 50, 53, 67, 72], "quantiti": [44, 46, 49, 50, 51, 53, 54, 55, 56, 58, 60, 66, 69, 72, 73, 74, 75], "quantum": [48, 56, 71, 72], "quartil": [44, 73, 75], "quench": 49, "queri": 53, "question": [44, 49, 50, 53, 55, 56, 57, 67, 70, 72, 73, 75], "qugan": 48, "quick": [30, 48, 69], "quicker": 75, "quickli": [30, 45, 47, 53, 55, 57, 74, 75], "quit": [45, 49, 50, 53, 54, 56, 59, 73, 74], "quot": 48, "r": [29, 33, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 65, 66, 67, 69, 73, 74, 75], "r2": [44, 49, 50, 63, 72, 73, 74], "r2_score": [44, 72], "r2score": [44, 72], "r_": [30, 75], "r_0": 75, "r_1": 53, "r_2": 53, "r_j": 53, "r_m": 53, "r_t": 75, "rad": [], "rade": [], "radial": [52, 56], "radioact": 69, "radiu": [44, 45, 73, 75], "radziej": 25, "ragan": 35, "rain": 53, "rais": 30, "ram": 75, "ramanujam": 33, "ramp": 45, "ran0": 69, "ran1": 69, "ran2": 69, "ran3": 69, "rand": [44, 48, 49, 50, 53, 54, 57, 59, 63, 66, 72, 73, 74, 75], "randint": [50, 53, 57, 75], "randn": [24, 44, 45, 46, 49, 50, 53, 55, 57, 59, 62, 72, 73, 74, 75], "random": [24, 44, 45, 46, 47, 48, 49, 50, 52, 53, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 72, 73, 74, 75], "random_forest_model": 54, "random_index": [57, 75], "random_indic": [45, 47], "random_st": [51, 52, 53, 54, 55], "randomforestclassifi": 54, "randomli": [45, 50, 53, 57, 58, 62, 74, 75], "rang": [24, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 62, 63, 66, 69, 72, 73, 74, 75], "rangl": [44, 50, 55, 69, 72, 73], "rangle_x": 69, "rank": [49, 73, 74], "rankdir": 48, "raphson": [45, 52, 57], "rapidli": [44, 75], "rare": [45, 57, 75], "raschka": [72, 73], "rasckha": 72, "rashcka": [74, 75], "rate": [45, 46, 47, 48, 52, 53, 54, 56, 57, 62, 74], "rather": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 66, 69, 72, 73, 74], "ratio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 48, 51, 53, 54, 55], "rational": [44, 72], "ravel": [49, 50, 51, 52, 53, 54, 55, 57, 66], "raw": [41, 47, 75], "rbf": [52, 55, 56], "rbf_kernel_svm_clf": 52, "rbf_pca": 55, "rc": 69, "rcond": [44, 72, 73], "rcparam": [24, 30, 45, 47, 51, 52, 53, 54, 69, 72], "re": [46, 48, 57, 59, 74], "reach": [45, 48, 49, 50, 53, 54, 56, 57, 58, 74, 75], "react": 29, "read": [41, 44, 46, 47, 48, 49, 50, 51, 52, 55, 56, 60, 61, 63, 64, 66, 67, 69, 71, 74], "read_csv": [44, 50, 51, 53], "read_fwf": [44, 72], "reader": [44, 50, 64, 66, 69, 72, 73, 75], "readi": [44, 45, 49, 50, 52, 54, 55, 56, 66, 72], "readili": 45, "readm": [59, 64], "readthedoc": 65, "real": [44, 45, 48, 51, 54, 55, 56, 60, 62, 63, 66, 73], "real_loss": 48, "real_output": 48, "realist": [52, 72], "realiti": 69, "realiz": [30, 45, 56], "realli": [30, 44, 45, 72], "rearrang": 57, "reason": [44, 45, 47, 48, 54, 57, 71, 72, 74, 75], "reassign": 45, "recal": [49, 50, 53, 54, 55, 56, 66, 69, 72, 73, 74, 75], "recarrai": 30, "recast": 47, "receiv": [45, 47, 54, 56, 69], "recent": [44, 50, 57, 71, 75], "recept": [47, 56], "receptive_field": 47, "recip": [25, 44, 50, 51, 66, 67, 72, 73], "reciproc": 49, "recogn": [44, 48, 49, 54, 72], "recognit": [44, 45, 47, 56, 71, 72], "recommen": 72, "recommend": [44, 46, 47, 48, 49, 50, 52, 57, 59, 63, 64, 65, 66, 67, 71, 74, 75], "reconsid": 53, "reconstruct": 55, "record": [20, 54, 67, 68, 70, 72], "recreat": 59, "rectangl": [53, 57, 74], "rectangular": [49, 73, 74], "rectifi": [45, 47, 56], "recur": [44, 65, 72], "recurr": [44, 45, 65, 72], "recurs": [53, 65, 66, 72], "red": [44, 47, 48, 50, 52, 53, 75], "redefin": [44, 54, 72, 73, 74], "redefinit": 74, "redistribut": [16, 18, 31, 32, 35, 37, 42], "reduc": [45, 47, 49, 50, 53, 54, 55, 57, 72, 74, 75], "reduct": [44, 54, 55, 65, 69, 72, 73], "reegress": 67, "ref": 64, "refer": [22, 44, 45, 46, 47, 49, 50, 55, 56, 57, 58, 64, 66, 71, 72, 73, 74, 75], "referansestil": 64, "referenc": 46, "refin": 56, "refit": 50, "reflect": [44, 45, 48, 49, 67, 69, 72], "refresh": [65, 72], "refreshprogrammingskil": 72, "reg": [54, 55], "regard": [45, 53, 57], "regardless": [56, 60], "regexp": 29, "reggi": 30, "regim": 75, "region": [47, 48, 50, 53, 56, 67, 75], "regist": [17, 50, 69], "reglasso": [49, 74], "regr_1": [44, 53], "regr_2": [44, 53], "regr_3": [44, 53], "regress": [45, 52, 55, 56, 60, 64, 65, 66], "regressor": [44, 51, 54], "regret": [], "regridg": [44, 49, 50, 73, 74, 75], "regular": [22, 29, 30, 44, 47, 48, 49, 50, 51, 53, 57, 61, 62, 70, 72, 73, 74, 75], "regularli": [30, 59], "reilli": [44, 71, 72], "reinforc": [44, 52, 65, 72], "reiter": 45, "reitz": 16, "reject": 51, "rel": [29, 44, 48, 50, 51, 53, 56, 57, 69, 72, 73, 75], "relat": [44, 45, 47, 48, 49, 55, 57, 58, 63, 66, 69, 72, 73, 74], "relationship": [44, 48, 53, 62, 72], "relativeerror": [44, 72, 73], "releas": [45, 65, 72], "relev": [44, 45, 49, 51, 55, 65, 67, 69, 72, 74, 75], "reli": [44, 50, 52, 75], "reliabilti": 67, "reliabl": [51, 69], "relu": [47, 48, 72], "remain": [45, 46, 48, 50, 56, 66, 69, 73, 75], "remaind": 69, "reman": 46, "remark": 45, "rememb": [30, 44, 52, 57, 64, 66, 67, 72, 75], "remind": [44, 49, 55, 57, 63, 66, 69], "remot": 59, "remov": [29, 48, 49, 50, 62, 73, 74, 75], "renam": [41, 59], "render": [22, 27, 28, 29, 44, 72, 73], "reorder": [49, 51, 73, 74], "reorgan": [44, 72], "repeat": [44, 45, 47, 48, 49, 50, 53, 54, 55, 57, 58, 66, 67, 69, 72, 73, 74, 75], "repeated": 72, "repeatedli": [44, 50, 54, 57], "repet": 47, "repetit": [50, 72, 73], "rephras": [57, 74], "replac": [44, 45, 47, 48, 49, 50, 54, 56, 58, 65, 67, 72, 73, 74], "replica": 50, "repo": [59, 67], "report": [72, 75], "repositori": [20, 41, 48, 64, 67, 72], "reposotori": [], "repres": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 67, 69, 72, 73, 74, 75], "represent": [44, 45, 47, 50, 69, 72], "representd": 47, "reproduc": [16, 18, 24, 30, 31, 32, 35, 37, 42, 44, 49, 50, 53, 56, 59, 60, 62, 64, 65, 69, 72, 73], "repuls": [44, 72], "request": [29, 44, 57, 75], "requir": [27, 28, 29, 30, 44, 45, 47, 48, 49, 50, 52, 53, 55, 56, 57, 59, 61, 62, 63, 64, 66, 72, 73, 74, 75], "res1": 46, "res2": 46, "res3": 46, "res_analyt": 46, "res_analytical1": 46, "res_analytical2": 46, "res_analytical3": 46, "resaml": 50, "resampl": [44, 51, 54, 65, 72, 73], "rescal": [44, 55, 56, 75], "rescu": 49, "reseach": 50, "research": [44, 48, 57, 65, 71, 72, 75], "resembl": [50, 69], "reserv": [16, 18, 31, 32, 35, 37, 42, 45, 49, 50, 69], "reshap": [44, 45, 46, 47, 48, 50, 52, 53, 54, 66, 72, 73], "resid": 75, "residenti": [], "residu": [44, 49, 57, 72], "resiz": [49, 73, 74], "resnet": 75, "resort": 75, "resourc": [72, 75], "respect": [44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 61, 62, 67, 69, 72, 73, 74, 75], "respond": 56, "respons": [44, 51, 53, 56, 72, 73], "rest": [23, 44, 49, 62, 73, 74, 75], "restat": [44, 56, 72], "restor": 48, "restored_discrimin": 48, "restored_gener": 48, "restrict": [19, 26, 31, 34, 36, 44, 47, 53, 56, 72], "result": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 75], "retail": [], "retain": [16, 18, 31, 32, 35, 37, 42, 49, 50, 73, 74, 75], "return": [27, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 60, 61, 66, 69, 72, 73, 74, 75], "return_data": 58, "return_sequ": 48, "return_x_i": 53, "reus": [45, 47, 50, 63, 64, 67], "reveal": [44, 56, 72], "revers": [45, 66], "review": [65, 66], "revis": 20, "revisit": 58, "revolut": 72, "reward": [44, 48, 72], "rewrit": [30, 44, 47, 49, 50, 51, 52, 54, 55, 56, 57, 60, 63, 66, 67, 69, 74, 75], "rewritten": [46, 50, 52, 54, 69], "rewrot": 57, "rf": 54, "rgb": 47, "rgoj5yh7evk": 65, "rh": 50, "rho": [44, 54, 57, 75], "rho_1": 54, "rho_2": 54, "rho_m": 54, "rich": [44, 72], "rid": 30, "ride": 53, "rideclass": 53, "ridedata": 53, "ridg": [51, 55, 57, 64, 65, 72], "ridge_paramet": 61, "ridge_sk": 50, "ridgebeta": 74, "ridgetheta": 49, "right": [16, 18, 19, 26, 29, 31, 32, 34, 35, 36, 37, 42, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 63, 66, 67, 69, 72, 73, 74, 75], "right_sid": 46, "rightarrow": [44, 45, 49, 50, 52, 55, 56, 57, 69, 72, 73, 74, 75], "rigor": [44, 72, 73, 74], "ring": 50, "rise": [44, 72], "risk": [44, 57, 72, 74, 75], "rival": 48, "river": [], "rlm": 72, "rm": [69, 75], "rmse": [], "rmsporp": [57, 75], "rmsprop": [45, 47, 48, 57, 67], "rnd_clf": 54, "rng": 69, "rnn": [48, 56], "rnn1": 48, "rnn2": 48, "rnn_2layer": 48, "rnn_input": 48, "rnn_output": 48, "rnn_train": 48, "rntrick1": 69, "rntrick2": 69, "rntrick3": 69, "rntrick4": 69, "ro": [44, 57, 72, 74, 75], "robert": [63, 67, 71], "robust": [25, 44, 72, 75], "robustscal": [44, 73, 75], "roc": [51, 54], "role": [44, 46, 49, 50, 52, 62, 65, 67, 72, 73, 74, 75], "roll": 50, "ronach": 16, "room": [44, 70, 72], "root": [17, 44, 49, 53, 57, 59, 69, 73, 74, 75], "root_directori": 17, "rot": 72, "rotat": [45, 52, 53, 54], "rotation_matrix": 53, "roughli": [45, 47, 62], "round": [51, 53, 57], "routin": [57, 66, 72, 74], "row": [44, 45, 46, 49, 50, 53, 55, 60, 66, 72, 73, 74], "rr": [29, 49, 73, 74], "rrr": [49, 73, 74], "rubric": 40, "rudg": [], "rug": [57, 74, 75], "rule": [44, 45, 49, 50, 57, 67, 72, 73, 74], "run": [23, 41, 44, 45, 46, 48, 49, 50, 52, 53, 55, 57, 59, 64, 65, 67, 72, 73, 74, 75], "runtim": [45, 50, 58, 59], "rust": [44, 65, 66, 72], "rvert": 45, "rvert_2": 45, "s_": [47, 50], "s_1": 50, "s_i": [50, 51], "s_j": 50, "s_k": 50, "s_phenomenon": 67, "saddl": [57, 74, 75], "safeguard": [62, 75], "sai": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 63, 66, 67, 69, 72, 73, 74, 75], "said": [50, 53, 57, 74], "sake": [44, 49, 51, 55, 72, 73, 74], "sale": [44, 72], "sam": 72, "same": [22, 27, 30, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 58, 59, 60, 62, 64, 66, 67, 69, 72, 73, 74], "samm": 54, "sampl": [21, 24, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 62, 63, 65, 66, 67, 69, 72, 73, 75], "sample_vari": 58, "sampleexptvari": 69, "samwis": 72, "sandbox": 30, "sasha": 30, "sastri": 55, "satisfactori": [44, 72], "satisfi": [45, 46, 47, 50, 52, 57, 66, 69, 74], "satur": [45, 50], "save": [27, 28, 44, 48, 50, 51, 53, 57, 64, 72, 75], "save_fig": [44, 50, 51, 53, 54, 72], "savefig": [44, 48, 50, 51, 53, 69, 72], "savetxt": 48, "saw": [49, 73], "scalabl": 54, "scalar": [46, 49, 50, 54, 73], "scale": [44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 70, 72, 74], "scale_mean": 48, "scale_std": 48, "scaler": [44, 51, 52, 53, 54, 55, 61, 67, 73], "scan": [49, 51], "scari": 49, "scatter": [44, 45, 50, 51, 52, 53, 58, 59, 61, 72, 73, 75], "scenario": [50, 57, 74, 75], "schedul": [57, 75], "scheme": [45, 57, 74, 75], "schrage": 69, "sch\u00f8yen": [50, 73, 75], "scienc": [44, 45, 54, 56, 57, 65, 68, 69, 70, 71, 74], "scientif": [44, 64, 65, 67, 72], "scientist": [29, 44, 72], "scikit": [30, 47, 49, 50, 52, 53, 54, 57, 59, 60, 64, 65, 66, 67, 71], "scikit_learn": 44, "scikitlearn": 72, "scikitplot": [51, 54], "scipi": [30, 44, 47, 49, 50, 57, 65, 66, 67, 72, 73, 74], "scl": 50, "scm": 59, "score": [44, 45, 47, 50, 51, 53, 54, 55, 59, 60, 63, 67, 70, 72, 73, 75], "scores_kfold": 50, "scratch": [45, 57, 60], "script": [28, 29, 30, 41], "sdg": [57, 75], "sdv4f4s2sb8": [74, 75], "seaborn": [44, 45, 47, 50, 51, 72], "seamless": [44, 65, 67, 72], "search": [44, 45, 47, 49, 53, 57, 59, 72, 74, 75], "sebastian": 72, "sebastianraschka": 72, "sec": 50, "second": [44, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 59, 60, 64, 65, 66, 69, 70, 72, 73, 74], "second_mo": 75, "second_term": 75, "secondari": 75, "secondeigvector": 55, "secondli": 56, "section": [30, 48, 55, 60, 64, 66, 67, 69, 73, 75], "sector": 44, "see": [20, 21, 22, 23, 24, 27, 28, 30, 37, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 60, 62, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75], "seed": [24, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 57, 58, 62, 64, 69, 72, 73, 74, 75], "seed_imag": 48, "seek": [45, 46, 52], "seem": [45, 47, 48, 75], "seemingli": [44, 72], "seen": [44, 45, 47, 49, 54, 56, 69], "segment": [57, 74], "seismic": 50, "seldomli": [44, 72], "select": [30, 41, 45, 49, 50, 52, 53, 54, 55, 59, 64, 67, 68, 69, 70, 71, 72, 73, 74, 75], "selevet": 59, "self": [30, 45, 49, 73], "sell": [19, 26, 31, 34, 36, 48], "semest": [51, 68], "semi": [52, 57, 74, 75], "semilogx": 50, "send": [49, 56, 57, 70, 72], "senior": [68, 70], "sens": [44, 48, 50, 52, 72], "sensibl": 47, "sensit": [44, 49, 50, 53, 57, 72, 73, 75], "sent": 46, "sentenc": [48, 56], "separ": [44, 45, 46, 48, 50, 52, 53, 56, 58, 62, 65, 67, 69, 72, 75], "septemb": [62, 67, 72], "sequenc": [47, 48, 51, 53, 54, 56, 57, 65, 66, 69, 72, 74], "sequenti": [45, 47, 48, 54, 56, 69], "seri": [30, 44, 45, 46, 47, 48, 49, 50, 54, 55, 56, 57, 66, 72, 73, 74], "serif": [51, 69, 72], "serv": [22, 44, 45, 46, 47, 49, 51, 57, 71, 72, 73, 74, 75], "servic": [16, 18, 31, 32, 35, 37, 41, 42, 67], "session": [45, 59, 64, 67, 68, 70, 72], "set": [20, 29, 30, 45, 48, 49, 50, 51, 52, 54, 55, 57, 58, 60, 61, 62, 65, 66, 67, 69, 70, 75], "set_major_formatt": 50, "set_major_loc": 50, "set_tick": [45, 52], "set_ticklabel": 45, "set_titl": [44, 45, 46, 47, 51, 56, 58, 72], "set_xlabel": [44, 45, 46, 47, 51, 56, 72], "set_xlim": [51, 56], "set_xticklabel": 45, "set_ylabel": [44, 45, 46, 47, 51, 72], "set_ylim": [51, 56], "set_ytick": 51, "set_yticklabel": [45, 50], "set_zlim": 50, "seth": 48, "setminu": 50, "setosa": [52, 53], "setosa_or_versicolor": 52, "setp": 50, "setup": [45, 48, 50, 52, 65, 72, 73, 74], "sever": [44, 47, 49, 50, 51, 52, 53, 55, 56, 57, 60, 65, 66, 67, 69, 72, 73, 74, 75], "sgd": [45, 47, 74], "sgd_clf": 52, "sgdclassifi": 52, "sgdreg": 57, "sgdregressor": 57, "sgn": [49, 73, 74], "shall": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "shallow": [57, 75], "shape": [44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 62, 66, 72, 73, 74, 75], "share": [20, 45, 47, 59, 72], "share_mask": 30, "shareabl": 59, "she": 51, "sheppard": 31, "shibukawa": 19, "shift": [45, 50, 56, 59, 62, 69, 73, 75], "ship": 47, "shire": 72, "short": [41, 48, 49, 64, 67], "shortcom": [57, 74, 75], "shorten": 48, "shorter": 69, "shorthand": 72, "shortli": [66, 72], "should": [20, 23, 27, 41, 44, 46, 47, 49, 50, 52, 53, 55, 56, 59, 62, 63, 64, 66, 67, 69, 72, 73, 75], "shouldn": 30, "show": [21, 22, 23, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 69, 72, 73, 74, 75], "show_shap": 48, "shown": [44, 48, 49, 52, 56, 57, 66, 73, 74, 75], "shrink": [47, 49, 50, 52, 55, 73, 74, 75], "shrinkag": [49, 50, 73, 74], "shrunk": 55, "shuffl": [44, 45, 48, 50, 57, 73, 75], "side": [44, 46, 49, 52, 56, 57, 66, 67, 72, 74], "sigh": [65, 72], "sigma": [44, 45, 49, 50, 51, 54, 55, 56, 57, 63, 66, 67, 69, 72, 73, 74, 75], "sigma0": 69, "sigma1": 69, "sigma2": 69, "sigma_": [49, 66, 72, 73, 74], "sigma_0": [49, 73, 74], "sigma_1": [49, 73, 74], "sigma_2": [49, 73, 74], "sigma_fn": [51, 56], "sigma_i": [44, 49, 72, 73, 74], "sigma_j": [49, 73, 74], "sigma_m": [50, 69], "sigma_n": [55, 69], "sigma_t": 57, "sigma_x": 69, "sigmoid": [45, 46, 48, 51, 52, 54, 56], "sigmundson": [50, 73, 75], "sign": [24, 45, 46, 51, 52, 54, 69, 70], "signal": [45, 47, 54, 56, 75], "signifi": 48, "signific": [45, 75], "significantli": [45, 57, 62, 69, 74, 75], "sim": [48, 49, 50, 57, 63, 69], "similar": [22, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 62, 65, 66, 67, 72, 74], "similarli": [44, 45, 47, 49, 52, 54, 57, 69, 72, 73, 74, 75], "simpl": [22, 25, 29, 45, 46, 47, 49, 50, 51, 52, 54, 55, 56, 58, 60, 61, 65, 66, 69], "simple_plot": 30, "simplepredict": 54, "simpler": [25, 44, 45, 49, 50, 51, 57, 60, 65, 67, 72, 74, 75], "simplernn": 48, "simplest": [44, 45, 47, 48, 53, 54, 56, 58, 67, 72], "simpletre": 54, "simpli": [44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 65, 66, 67, 69, 72, 73, 74, 75], "simplic": [46, 49, 50, 51, 52, 53, 54, 55, 56, 58, 73, 74, 75], "simplicti": [49, 73, 74], "simplifi": [29, 44, 50, 53, 62, 65, 67, 72, 73, 75], "simplist": [47, 50, 69], "simul": [50, 62, 75], "simultan": [50, 75], "sin": [44, 45, 46, 47, 48, 53, 56, 57, 66, 72], "sinc": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 60, 62, 66, 67, 69, 71, 72, 73, 74, 75], "sine": [47, 56], "singl": [20, 44, 45, 46, 47, 49, 50, 51, 52, 53, 56, 57, 62, 63, 66, 69, 72, 73, 74, 75], "singular": [44, 50, 57, 66, 72], "sinusoid": 47, "site": [44, 67, 68, 73], "situat": [44, 48, 49, 51, 57, 69, 72, 73, 74, 75], "six": [47, 69], "size": [44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 57, 62, 64, 66, 67, 69, 72], "sizesp": 75, "sketch": 54, "ski": 53, "skill": 44, "skip": 55, "skl": [44, 50, 72, 73, 75], "sklearn": [44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 61, 63, 64, 72, 73, 74, 75], "skplt": [51, 54], "sl": [50, 73, 75], "slack": 52, "slender": 33, "slice": [46, 66, 72], "slide": [44, 47, 60, 67, 69, 72, 73, 74], "slight": [22, 50, 57], "slightli": [45, 46, 47, 49, 50, 51, 54, 69, 73, 74], "slope": [52, 55, 56], "slow": [30, 44, 46, 52, 57, 62, 73, 74, 75], "slower": [30, 49, 66, 72, 73, 74, 75], "slowest": 66, "slowli": [56, 75], "slp": 45, "small": [21, 22, 44, 45, 46, 47, 49, 50, 52, 53, 54, 55, 56, 57, 62, 65, 66, 69, 72, 73, 74, 75], "smaller": [44, 45, 46, 49, 50, 52, 53, 55, 57, 69, 72, 73, 74, 75], "smallest": [44, 48, 58, 72], "smallest_row_index": 58, "smodin": 41, "smooth": [44, 47, 50, 57, 67, 72, 74, 75], "smoother": 75, "sn": [44, 45, 47, 50, 51, 72], "sne": 55, "so": [19, 23, 26, 29, 30, 31, 34, 36, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75], "soar": 50, "social": 44, "soft": [45, 51, 54, 56], "soften": 52, "softmax": [47, 51], "softwar": [16, 18, 19, 26, 31, 32, 34, 35, 36, 42, 44, 52, 65, 66], "sokogskriv": 64, "sol": 52, "sole": [44, 50, 72], "solid": [44, 51], "solut": [44, 45, 46, 47, 49, 50, 52, 54, 55, 57, 62, 66, 67, 69, 72, 73, 74, 75], "solution_ev": 75, "soluton": 46, "solv": [44, 45, 47, 49, 50, 52, 54, 55, 56, 57, 60, 66, 67, 72, 73], "solve_expdec": 46, "solve_ode_deep_neural_network": 46, "solve_ode_neural_network": 46, "solve_pde_deep_neural_network": 46, "solveod": 46, "solveode_popul": 46, "solver": [46, 51, 52, 53, 54, 66, 72], "some": [16, 21, 22, 24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 67, 69, 72, 75], "some_model": [50, 73, 75], "somehow": 48, "someon": 60, "someth": [44, 45, 47, 48, 51, 53, 55, 59, 63, 64, 67, 69, 72, 73], "sometim": [44, 45, 55, 56, 57, 58, 63, 73, 75], "soon": [66, 70, 73], "sophist": [44, 72], "sopt": 57, "sort": [49, 50, 53, 55, 69], "sound": [47, 49], "sourc": [16, 18, 20, 32, 35, 37, 42, 44, 45, 47, 50, 65, 66, 67, 69, 72, 75], "space": [44, 45, 48, 49, 52, 53, 55, 56, 57, 58, 69, 73, 74, 75], "span": [22, 44, 47, 49, 53, 55, 66, 72, 73, 74], "spare": 45, "spars": [47, 50, 62, 66, 72, 75], "sparse_mtx": [66, 72], "sparsecategoricalcrossentropi": 47, "sparsiti": [54, 62], "spatial": [45, 46, 47, 56], "speak": 69, "special": [16, 18, 22, 30, 31, 32, 35, 37, 42, 50, 51, 54, 56, 57, 66, 69, 72, 73, 74, 75], "specif": [16, 18, 20, 22, 31, 32, 35, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 59, 60, 65, 66, 67, 69, 71, 72, 73, 74], "specifi": [27, 44, 47, 49, 50, 51, 53, 55, 57, 58, 69, 72, 74, 75], "specifici": [44, 54, 72], "spectacular": 47, "spectral": 45, "speech": [44, 45, 47, 48, 56], "speed": [30, 45, 46, 48, 57], "spend": [60, 69, 75], "spent": 67, "sphere": [44, 73, 75], "sphinx": [22, 41, 42], "sphinx_book_them": 41, "sphinxcontrib": 42, "spike": 75, "spin": 50, "spite": 44, "spitzer": 25, "spline": 52, "split": [41, 45, 47, 48, 49, 50, 52, 53, 54, 55, 58, 60, 61, 64, 67, 69, 72, 74, 75], "splite": 44, "splitter": [45, 54], "spoiler": 27, "spontan": 69, "spot": 47, "spread": [44, 55, 69, 72, 73], "springer": [63, 67, 71, 72], "spuriou": [57, 75], "sqquar": 74, "sqrsignal": 47, "sqrt": [47, 48, 49, 50, 52, 54, 55, 57, 69, 73, 74, 75], "squar": [45, 46, 47, 48, 51, 52, 53, 55, 57, 58, 59, 61, 62, 65, 66, 69], "squarederror": 54, "squaredeuclidean": 58, "squash": 56, "src": [29, 41], "srtm": 50, "srtm_data_norway_1": 50, "sso": 64, "stabil": [49, 67, 75], "stabl": [44, 48, 49, 50, 53, 60, 64, 65, 67, 72, 73, 74, 75], "stack": [47, 48], "stage": [49, 57, 59, 67, 75], "stagnat": 75, "stai": [44, 46, 48, 49, 55, 72, 73, 75], "stand": [22, 44, 49, 53, 56, 72, 73, 74], "standard": [44, 45, 48, 49, 50, 51, 52, 54, 56, 61, 62, 63, 66, 67, 69, 72, 74, 75], "standardscal": [44, 50, 51, 52, 53, 54, 55, 61, 73, 75], "standpoint": 75, "stanford": [57, 74], "start": [17, 22, 23, 30, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 66, 69, 70, 72, 73, 74, 75], "start_tim": 58, "starter": 22, "stat": 50, "state": [24, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 57, 65, 69, 72, 73, 74], "statement": [44, 51, 66, 72], "static": 41, "stationari": [74, 75], "statist": [44, 45, 47, 48, 51, 53, 54, 55, 56, 57, 58, 63, 66, 67, 71, 73, 74, 75], "statu": [44, 51, 59, 72], "stavang": 50, "stb": 41, "std": [44, 48, 50, 62, 72, 73, 75], "steep": [57, 74, 75], "steepest": 75, "stefan": [29, 37], "step": [30, 44, 45, 46, 48, 50, 51, 53, 54, 55, 56, 57, 58, 59, 62, 66, 67, 72, 74], "step_fn": [51, 56], "step_length": [57, 75], "step_siz": 75, "steps_list": 53, "stereo": 47, "sticki": 29, "still": [20, 30, 44, 46, 47, 49, 50, 55, 57, 69, 73, 74, 75], "stimuli": 56, "stk": [71, 72], "stk2100": [71, 72], "stk3155": [59, 67, 68, 70], "stk4021": [71, 72], "stk4051": [71, 72], "stk4155": [68, 70], "stk5000": 71, "stochast": [44, 45, 49, 50, 52, 55, 56, 74], "stock": 48, "stoke": 56, "stone": [44, 51], "stop": [45, 48, 53, 57, 58, 62, 74], "storag": [49, 73, 74], "store": [22, 30, 44, 45, 46, 47, 50, 55, 57, 69, 72, 75], "storehaug": [70, 72], "stori": 30, "str": [45, 47, 48], "straight": [44, 50, 52, 57, 72, 74], "straightforward": [44, 46, 47, 49, 50, 52, 53, 54, 57, 66, 72, 73, 74], "strategi": [44, 45, 53, 72], "stratifi": 50, "stream": 75, "strength": [44, 49, 58, 73, 74], "stretch": 55, "strict": [16, 18, 31, 32, 35, 37, 42, 52, 57, 74], "strictli": [52, 57, 74], "stride": [48, 66], "strike": 50, "string": 45, "stroke": 51, "strong": [47, 50, 53, 54, 56, 66, 69, 75], "strongli": [44, 52, 59, 64, 65, 66], "stronli": [], "structur": [17, 21, 22, 44, 45, 46, 47, 50, 53, 54, 56, 65, 72], "stuck": [45, 57, 74, 75], "student": [29, 44, 59, 67, 68, 70, 71, 72], "studi": [44, 47, 48, 49, 50, 51, 52, 55, 56, 57, 65, 67, 71, 72, 73, 74, 75], "studier": 71, "style": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 42, 51, 53, 64, 66, 72], "stylesheet": 29, "st\u00f8land": 70, "sub": [53, 56, 75], "subarrai": 30, "subclass": 30, "subdivid": [44, 66, 72], "subfield": 44, "subgradi": 75, "subject": [19, 26, 31, 34, 36, 50, 52, 69], "sublicens": [19, 26, 31, 34, 36], "sublinear": 75, "submit": 72, "subplot": [24, 44, 45, 47, 48, 50, 51, 52, 53, 54, 58, 72], "subplots_adjust": [52, 69], "subprogram": [66, 72], "subproject": 20, "subract": [44, 73], "subroutin": [44, 72], "subscript": 45, "subsequ": [45, 48, 49, 50, 56, 66, 69, 73, 74], "subset": [45, 50, 53, 56, 57, 65, 72, 74, 75], "subspac": [44, 52, 55, 73], "substanti": [19, 26, 30, 34, 36, 53, 54, 75], "substep": 55, "substitut": [16, 18, 31, 32, 35, 37, 42, 47, 50, 56, 60, 66], "subsubset": 53, "subtask": 50, "subtl": 45, "subtract": [44, 48, 49, 50, 55, 57, 62, 63, 66, 67, 69, 73, 75], "subtre": 53, "succeed": [44, 48, 72], "success": [27, 47, 51, 53, 57, 69], "successfulli": [48, 53], "succinctli": 75, "sudo": [44, 65, 67, 72], "suffer": [44, 45, 46, 49, 54, 72, 73, 74], "suffici": [45, 50, 52, 55, 57, 74], "suggest": [30, 45, 57, 67, 71, 74, 75], "suit": [52, 56], "suitabl": [44, 59, 63, 69, 73, 75], "sum": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 63, 66, 69, 72, 73, 74, 75], "sum_": [44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 63, 66, 67, 69, 72, 73, 74, 75], "sum_i": [44, 46, 49, 50, 52, 57, 63, 67, 73, 74, 75], "sum_j": [50, 62, 75], "sum_ja_": 44, "sum_k": [50, 52, 56, 66], "sum_logist": 57, "sum_m": 47, "sum_n": 47, "sum_nx_": 47, "summar": [49, 50, 53], "summari": [27, 45, 47, 48, 54, 68, 74, 75], "summat": [44, 47, 60, 73, 74], "sunni": 53, "super": [49, 73, 74, 75], "superfici": 47, "superscript": [45, 56], "supervis": [44, 49, 50, 51, 53, 56, 65, 72, 73, 74], "supplement": [51, 67], "suppli": 29, "support": [23, 29, 41, 43, 44, 45, 53, 54, 55, 57, 64, 65, 72, 73, 75], "suppos": [44, 49, 50, 51, 52, 54, 55, 56, 57, 66, 72, 73, 74, 75], "suppress": [49, 57, 74], "sure": [24, 30, 44, 45, 48, 50, 60, 64, 67], "surf": 50, "surfac": [44, 50, 72, 75], "surpass": 50, "surpris": [30, 44, 72], "surround": [47, 65], "survei": [44, 49, 50, 72, 73], "svc": [52, 53, 54], "svd": [44, 50, 55, 72], "svdinv": 49, "svm": [52, 53, 54, 55], "svm_clf": [52, 54], "svn": 30, "swath": [49, 73, 74], "switch": 44, "sy": [17, 57, 74, 75], "symbol": [45, 49, 55, 57, 65, 69, 72, 73, 74], "symmeteri": 45, "symmetr": [44, 49, 52, 55, 56, 57, 66, 72, 73], "symmetri": 50, "sympi": [44, 65, 67, 72], "synonim": 69, "syntax": [0, 22, 28, 57], "system": [28, 43, 44, 45, 47, 48, 50, 51, 53, 54, 56, 57, 59, 65, 66, 67, 72, 74, 75], "systemat": [48, 50], "t": [24, 29, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 69, 70, 72, 74, 75], "t0": [47, 50, 57, 75], "t1": [46, 57, 75], "t2": 46, "t3": 46, "t_": 46, "t_0": [46, 53, 57, 75], "t_1": [57, 75], "t_b": 54, "t_i": [45, 46, 49, 56, 73, 74], "t_j": 56, "t_k": 53, "tabl": [29, 53, 67, 69, 70, 72], "tabul": [44, 72], "tabular": 72, "tackl": 48, "tag": [27, 28, 46, 47, 48, 49, 50, 51, 56, 57, 58, 66, 69, 73, 74], "taht": [44, 72], "tail": [27, 69], "tailor": [46, 52, 55, 72], "taiwan": [44, 72], "take": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 63, 65, 66, 69, 72, 73, 74, 75], "taken": [44, 45, 47, 50, 54, 57, 66], "tan": 47, "tangent": [45, 48, 56, 57, 74], "tanh": [45, 48, 51, 52, 56], "target": [44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 62, 63, 72, 73, 74, 75], "target_nam": 53, "task": [44, 45, 47, 50, 53, 55, 56, 58, 67, 72, 75], "tau": [47, 49, 69], "taught": 72, "tax": [], "taylor": [46, 57, 74], "taylornr": [57, 74], "tc": 52, "teach": [59, 68, 72], "team": [37, 45], "teaser": 44, "technic": [44, 49, 50, 57, 67, 74, 75], "techniqu": [44, 45, 52, 54, 57, 65, 69, 71, 72, 73, 75], "technologi": [44, 45], "tell": [44, 48, 50, 54, 55, 57, 60, 69, 75], "temp": 45, "temp1": 45, "temp2": 45, "temperatur": [44, 53, 72], "templat": [62, 64], "temporari": 30, "temporarili": 45, "ten": [47, 72], "tend": [47, 49, 50, 52, 53, 54, 56, 57, 58, 73, 75], "tendenc": [44, 72], "tension": 50, "tensor": 47, "tensorflow": [44, 46, 48, 52, 58, 65, 66, 67, 71, 72, 73], "term": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 62, 63, 67, 69, 72, 73, 74, 75], "term1": [49, 50, 55], "term2": [49, 50, 55], "term3": [49, 50, 55], "term4": [49, 50, 55], "termin": [44, 48, 49, 53, 54, 57, 59, 73, 74, 75], "terminarl": 59, "terrain": 50, "terrain1": 50, "test": [29, 30, 47, 48, 49, 50, 51, 52, 53, 54, 57, 60, 63, 64, 66, 67, 69, 72, 74, 75], "test_acc": 47, "test_accuraci": [45, 47], "test_error": 50, "test_imag": [47, 48], "test_ind": 50, "test_input": 48, "test_label": [47, 48], "test_loss": 47, "test_pr": 45, "test_predict": 45, "test_rnn": 48, "test_scor": [51, 54], "test_siz": [44, 45, 47, 49, 50, 54, 59, 61, 73, 74, 75], "test_split": 53, "testerror": [44, 50, 73], "testi": 48, "testpredict": 48, "testx": 48, "tex": [24, 29], "text": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 22, 23, 44, 45, 46, 48, 49, 52, 53, 55, 57, 59, 62, 64, 66, 69, 71, 73, 74, 75], "textbf": [], "textbook": [60, 67, 73, 74], "textual": 53, "textur": 45, "tf": [45, 47, 48, 57, 58, 74], "th": [44, 45, 46, 49, 50, 51, 53, 56, 57, 58, 66, 67, 69, 72, 73, 75], "than": [30, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 61, 65, 69, 72, 73, 75], "thank": [48, 50, 73, 75], "theano": [45, 65, 72], "thei": [20, 22, 27, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 60, 62, 64, 66, 67, 69, 72, 73, 74, 75], "them": [17, 41, 44, 45, 47, 48, 50, 52, 53, 54, 55, 56, 57, 62, 66, 67, 72, 73], "theme": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 41, 44, 59, 72], "themselv": [44, 67, 69, 72, 75], "thenc": 50, "theorem": [46, 50, 51, 73, 74], "theoret": [44, 48, 54], "theori": [16, 18, 31, 32, 35, 37, 42, 44, 45, 47, 52, 53, 56, 57, 63, 65, 67, 71, 72, 75], "thereaft": [44, 49, 50, 55, 56, 66, 67, 72], "therebi": [44, 49, 51, 55, 67, 72, 73, 74], "therefor": [44, 45, 46, 47, 48, 50, 51, 52, 55, 57, 63, 69, 72, 73, 74, 75], "therein": 55, "thereof": [44, 50, 57, 72, 75], "theta": [44, 45, 48, 49, 50, 51, 57, 60, 67, 69, 72, 73, 74, 75], "theta1": 75, "theta2": 75, "theta_": [44, 45, 50, 51, 57, 72, 73, 74, 75], "theta_0": [44, 49, 50, 51, 60, 72, 73, 74, 75], "theta_0x_": [44, 72, 73], "theta_1": [44, 49, 50, 51, 72, 73, 74, 75], "theta_1x_": [44, 72, 73], "theta_1x_0": [44, 72], "theta_1x_1": [44, 51, 72], "theta_1x_2": [44, 72], "theta_1x_i": [51, 73, 74, 75], "theta_2": [44, 72, 73], "theta_2x_": [44, 72, 73], "theta_2x_0": [44, 72], "theta_2x_1": [44, 72], "theta_2x_2": [44, 51, 72], "theta_2x_i": 73, "theta_3x_i": 73, "theta_4x_i": 73, "theta_closed_form": 62, "theta_closed_formol": 62, "theta_closed_formridg": 62, "theta_gdol": 62, "theta_gdridg": 62, "theta_i": [44, 45, 49, 72, 73, 74], "theta_j": [44, 49, 50, 62, 72, 73, 75], "theta_k": [74, 75], "theta_linreg": [57, 74, 75], "theta_ol": 62, "theta_p": 51, "theta_px_p": 51, "theta_ridg": 62, "theta_t": [57, 75], "theta_tru": 62, "thetaith": 75, "thetavalu": 49, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 75], "thing": [23, 30, 44, 45, 46, 48, 49, 51, 53, 59, 60, 62, 69, 72], "think": [44, 45, 47, 48, 50, 53, 56, 57, 58, 69, 72, 73, 74, 75], "third": [30, 44, 47, 50, 57, 70, 72, 74, 75], "thirti": 51, "thorughout": 72, "those": [22, 44, 47, 49, 50, 52, 53, 54, 55, 66, 67, 72, 73, 74, 75], "though": [45, 46, 47, 48, 57, 60, 61, 63, 66, 69, 75], "thought": [50, 58, 67, 69], "thousand": [44, 45, 67, 73, 75], "three": [44, 45, 47, 49, 50, 52, 53, 56, 66, 67, 68, 69, 70, 72, 73, 74], "threshold": [45, 47, 53, 54, 55, 56, 57, 75], "through": [44, 45, 46, 47, 48, 49, 50, 52, 55, 56, 57, 58, 59, 65, 66, 67, 69, 72, 73, 74, 75], "throughout": [44, 48, 49, 58, 59, 65, 66, 69, 72], "throw": [29, 47, 50, 69], "thu": [20, 44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 57, 70, 72, 73, 74, 75], "thumb": [44, 50, 67, 73], "thursdai": [], "tibshirani": [50, 63, 67, 71, 72], "tick_param": 50, "ticker": [50, 57, 69, 74, 75], "tif": 50, "tight_layout": [45, 51], "tightli": 55, "tild": [44, 49, 50, 51, 55, 63, 67, 69, 72, 73, 74, 75], "till": [44, 48, 51, 52, 53, 54, 56, 66, 72, 73], "time": [41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 69, 72, 73, 74], "timeit": 48, "timer": 48, "timeseri": 30, "tini": [45, 75], "tip": 47, "titl": [44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 57, 59, 64, 69, 72, 74, 75], "tm": 29, "tmp": 57, "tn": [46, 47, 51], "to_categor": [45, 47, 48], "to_categorical_numpi": 45, "to_numer": [44, 50, 72], "todai": 47, "togeth": [44, 47, 50, 52, 55, 57, 65, 72], "toi": 58, "token": 27, "told": 57, "toler": [46, 58], "tolist": 48, "tomographi": 56, "too": [44, 46, 48, 49, 50, 53, 55, 57, 61, 62, 69, 71, 73, 74, 75], "took": [52, 72], "tool": [22, 29, 44, 45, 47, 50, 57, 59, 65, 73], "toolbox": 52, "top": [23, 44, 47, 49, 50, 53, 54, 63, 65, 72], "topic": [21, 44, 49, 50, 51, 52, 65, 67, 73, 74], "topolog": [47, 56], "topologi": [45, 56], "torkjellsdatt": [70, 72], "tort": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "toss": [54, 69], "total": [44, 45, 46, 47, 48, 50, 51, 52, 54, 55, 56, 57, 58, 66, 69, 70, 72, 73, 74, 75], "total_loss": 48, "totalclustervari": 58, "totalscatt": 58, "toward": [45, 46, 51, 56, 57, 59, 74], "towardsdatasci": 75, "town": [], "tp": [48, 51], "tpng": 53, "tpu": [57, 65, 72], "tqdm": 50, "tr": [], "track": [47, 57, 58, 59, 66, 73, 74, 75], "tract": [], "tractabl": [44, 72, 73], "trade": [49, 53, 64, 75], "tradeoff": [44, 49, 63, 67, 72, 73, 74], "tradit": [44, 45, 48, 50, 72], "train": [46, 47, 49, 50, 52, 53, 54, 55, 56, 57, 60, 61, 64, 67, 74, 75], "train_accuraci": [44, 45, 47, 72], "train_dataset": 48, "train_end": [44, 45, 73], "train_error": 50, "train_imag": [47, 48], "train_ind": 50, "train_label": [47, 48], "train_pr": 45, "train_siz": [44, 45, 47, 73], "train_step": 48, "train_test_split": [44, 45, 47, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 72, 73, 74, 75], "train_test_split_numpi": [44, 45, 73], "trainable_vari": 48, "trained_model": [50, 73, 75], "trainerror": [44, 73], "traini": 48, "training_checkpoint": 48, "training_dataset": 48, "training_gradi": [57, 75], "trainingerror": 50, "trainpredict": 48, "trainscor": 48, "trainx": 48, "trait": [44, 72], "trajectori": [48, 75], "transfer": [53, 72], "transform": [44, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 65, 66, 72, 73, 74, 75], "transit": [50, 56], "translat": [45, 48, 50, 54, 72, 73, 75], "transpos": [45, 49, 55, 66, 73, 74], "travers": [44, 49], "travi": 30, "treat": [23, 44, 45, 47, 50, 56, 57, 62, 69, 72, 73, 74, 75], "tree": [44, 45, 65, 72], "tree_clf": [53, 54], "tree_clf_": 53, "tree_clf_sr": 53, "tree_reg": 53, "tree_reg1": 53, "tree_reg2": 53, "trend": 69, "treue": 51, "trevor": [63, 67, 71], "tri": [30, 46, 47, 48, 53, 57, 60, 75], "triain": 44, "trial": [44, 46, 48, 50, 57, 69, 72, 74, 75], "triangl": [57, 74], "triangular": 66, "trick": [47, 48, 52, 55, 57, 69, 75], "trickier": 69, "tridiagon": 66, "trillion": 65, "trim": 27, "trivial": [44, 45, 49, 55, 69, 72, 74], "troffa": [25, 26, 34, 42], "troubl": [44, 52, 56, 59, 73, 75], "truck": 47, "true": [27, 30, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 69, 72, 73, 74, 75], "true_beta": 73, "true_fun": 50, "true_theta": [50, 75], "truli": 72, "try": [17, 29, 30, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 62, 65, 66, 67, 69, 72, 73, 74, 75], "tr\u00f6ger": 25, "tucker": 52, "tuesdai": [70, 72], "tumor": [51, 53], "tumour": 51, "tunabl": 45, "tune": [48, 53, 57, 66, 72, 75], "turn": [44, 45, 49, 50, 51, 52, 53, 54, 55, 56, 57, 66, 67, 69, 72, 73, 74, 75], "tutori": [45, 48], "tv": 46, "tveito": 46, "tweak": [45, 48, 54, 69], "twice": [57, 74], "twist": 55, "two": [22, 23, 30, 37, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 61, 66, 67, 68, 69, 71, 72, 73, 74, 75], "tx": [57, 74, 75], "tx_1": [57, 74], "txt": [48, 59, 64], "ty": [57, 74], "type": [21, 30, 41, 44, 45, 47, 50, 52, 54, 57, 66, 69, 73, 74, 75], "typeset": 64, "typic": [20, 44, 45, 46, 47, 48, 49, 51, 53, 54, 56, 57, 59, 60, 64, 69, 72, 73, 74, 75], "typo": 67, "u": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 66, 67, 69, 71, 72, 73, 74, 75], "u_": 66, "u_i": 56, "u_m": 54, "ua": [44, 72], "ubuntu": [44, 65, 67, 72], "uci": 67, "ufunc": 30, "uio": [59, 64, 67, 70, 71], "uk": 31, "un": 58, "unabl": 59, "unari": [66, 72], "unbalanc": [50, 53], "unbias": [44, 49, 50, 72], "uncent": [50, 73, 75], "uncertainti": [44, 49, 72], "uncertitud": 69, "unchang": [45, 47], "uncom": 30, "uncorrel": [54, 69], "undefin": [49, 73, 74], "under": [20, 29, 31, 37, 44, 45, 49, 50, 54, 57, 65, 67, 72, 73, 74, 75], "underdetermin": [44, 72], "underfit": [45, 50], "underflowproblem": 49, "undergo": 49, "undergradu": [68, 70], "underli": [44, 45, 53, 57, 62, 69, 72, 75], "underlin": [38, 39, 40], "underscor": 29, "underset": [48, 58], "understand": [23, 30, 44, 45, 47, 49, 50, 54, 57, 58, 59, 63, 64, 65, 72, 73, 74, 75], "understood": [30, 52, 57], "underwai": 30, "undesir": 52, "undetermin": [49, 52], "undo": 48, "unexpect": 50, "unexpected": 69, "unexplain": 62, "unfair": [50, 73], "unfortun": [30, 45, 52, 53, 54], "unicode_liter": [52, 53], "uniform": [44, 45, 49, 50, 55, 57, 67, 69, 72, 74, 75], "uniformli": [57, 69, 74, 75], "unifrompdf": 69, "unimport": [57, 74], "union": [49, 50], "uniqu": [44, 46, 50, 57, 58, 66, 72], "unique_cluster_label": 58, "unit": [44, 45, 47, 48, 49, 54, 56, 62, 69, 72, 73, 74, 75], "unitari": [49, 50, 66, 73, 74], "unitarili": [66, 72], "uniti": 69, "univari": 69, "univers": [31, 44, 45, 46, 57, 65, 67, 68, 70, 72, 73, 74, 75], "unix": [43, 45], "unknow": [44, 66, 72], "unknown": [44, 45, 47, 48, 49, 50, 52, 54, 57, 66, 67, 72, 73, 74, 75], "unknowwn": 56, "unlabel": 45, "unless": [37, 44, 47, 50, 55, 57, 67, 72, 74], "unlik": [45, 47, 52, 57, 74, 75], "unnecessarili": 53, "unord": 47, "unpickl": 30, "unpleas": 30, "unpublish": 75, "unravel": 45, "unrol": [47, 55], "unscal": 63, "unseen": [44, 51, 53, 59], "unstabl": 45, "unsupervis": [44, 45, 48, 56, 65, 72], "unsymmetr": [66, 72], "until": [30, 45, 46, 48, 53, 56, 57, 58, 74, 75], "untouch": 44, "unusu": 56, "up": [30, 45, 47, 48, 49, 50, 52, 54, 55, 57, 58, 60, 62, 63, 64, 65, 66, 67, 69, 70, 75], "updat": [30, 45, 46, 54, 56, 57, 58, 59, 62], "uploa": 72, "upload": [59, 64, 65, 67, 71], "upon": [44, 45, 50, 51, 55, 66], "upper": [44, 52, 53, 60, 66, 73], "uppercas": [66, 72], "upsampl": 48, "upscal": 48, "upward": 30, "url": [72, 73], "us": [16, 18, 19, 20, 22, 23, 26, 27, 31, 32, 34, 35, 36, 37, 41, 42, 48, 49, 50, 52, 53, 54, 55, 56, 58, 59, 61, 64, 66, 69, 71], "usag": [44, 52, 65, 72, 73], "usd": [], "usd10000": [], "use_bia": 48, "usecol": [44, 72], "useless": 45, "user": [29, 30, 44, 45, 46, 48, 50, 51, 59, 65, 66, 67, 72, 73], "usernam": [59, 67], "usetex": 69, "usg": 50, "usr": 69, "usual": [44, 47, 48, 51, 56, 57, 58, 72, 75], "ut": 49, "utf": 29, "util": [27, 45, 47, 48, 50, 51, 54, 58, 63, 72], "ux": 66, "v": [6, 8, 46, 48, 49, 50, 55, 57, 59, 65, 73, 74], "v0": 69, "v1": 69, "v2": [27, 28, 69], "v5": [27, 28], "v_": 75, "v_0": [55, 75], "v_t": 75, "va": 45, "vahid": 72, "val": 57, "val_accuraci": 47, "val_loss": 48, "vale": 46, "valid": [27, 44, 45, 48, 51, 53, 54, 57, 65, 69, 72, 73, 75], "validation_data": 47, "validation_split": 48, "valu": [30, 41, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 64, 65, 66, 67, 72, 75], "valuat": 53, "valueerror": 30, "valy": 48, "van": [37, 44, 63, 67, 72, 73, 74, 75], "vandenbergh": [52, 57, 74], "vandermond": [44, 72], "vanilla": [44, 50, 55, 58, 73, 75], "vanish": [45, 48, 57, 69, 74], "var": [27, 28, 49, 50, 54, 55, 63, 67, 69, 73], "var_x": 69, "varabl": 52, "varepsilon": [49, 50, 63], "varepsilon_": [49, 50], "varepsilon_i": [49, 50], "vari": [44, 45, 47, 49, 50, 54, 72], "variabl": [44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 57, 58, 66, 72, 73, 75], "varianc": [44, 45, 49, 51, 53, 54, 55, 57, 58, 62, 64, 65, 66, 69, 72, 73, 74, 75], "variance_i": [49, 55, 73], "variance_x": [49, 55, 73], "variant": [44, 45, 50, 52, 56, 57, 72, 73, 74, 75], "variat": [22, 47, 48, 55, 72], "varieti": [44, 47, 56, 65, 67, 72], "variou": [25, 41, 45, 47, 49, 50, 51, 52, 53, 55, 56, 57, 60, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75], "varydimens": 48, "vast": 75, "vastli": 47, "vaue": 45, "vault": 44, "vdot": [46, 57, 74, 75], "ve": [41, 67, 75], "vec": 50, "vector": [44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 61, 62, 65, 74, 75], "vector_mean": 58, "ventur": [44, 52, 65, 72], "venv": 59, "verbos": [45, 47, 48], "veri": [25, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 62, 67, 69, 71, 72, 73, 74, 75], "verifi": [29, 47, 55, 66, 72], "versatil": [52, 72], "versicolor": [52, 53], "version": [30, 44, 47, 54, 57, 58, 59, 65, 66, 67, 69, 72], "versu": [45, 75], "vert": [44, 45, 49, 50, 51, 52, 53, 55, 57, 60, 61, 72, 73, 74, 75], "vert_1": [49, 50, 73, 74, 75], "vert_2": [49, 50, 55, 61, 73, 74, 75], "via": [44, 49, 50, 51, 52, 53, 54, 55, 56, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75], "vidal": 55, "video": [44, 45, 56, 65, 68, 70, 72, 73, 74], "view": [29, 30, 45, 47, 49, 50, 56, 57, 69, 71, 72, 74, 75], "violat": 52, "virginica": 53, "viridi": [44, 45, 46, 47, 72], "virtanen": 37, "virtual": [45, 75], "viscos": 57, "viscou": 57, "visibl": 59, "vision": [44, 47], "visit": 75, "visual": [44, 47, 55, 56, 62, 65, 72, 73], "visualis": 45, "visualstudio": [59, 60, 63], "viz": [50, 52, 69], "vmap": 57, "vmax": [45, 50], "vmh0zpt0tli": 75, "vmin": [45, 50], "voic": 47, "volatil": 75, "volum": [44, 47, 72], "vote": [54, 72], "voting_clf": 54, "votingclassifi": 54, "votingsimpl": 54, "vscode": [4, 5, 7, 9, 10, 11, 12, 13, 14, 29], "vstack": [49, 55, 66, 69, 72, 73], "vt": [49, 73, 74], "w": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 66, 69, 72, 73, 74, 75], "w1": 52, "w2": [52, 55], "w3": 52, "w_": [45, 56], "w_1": [52, 66], "w_1x_": 52, "w_1x_1": 52, "w_2": [52, 66], "w_2x_": 52, "w_2x_2": 52, "w_3": 66, "w_4": 66, "w_hidden": 46, "w_i": [45, 46, 54], "w_ix_i": 56, "w_j": 66, "w_m": 66, "w_output": 46, "w_px_": 52, "w_px_p": 52, "w_t": [], "wa": [30, 37, 45, 47, 48, 49, 50, 51, 54, 55, 56, 58, 61, 66, 72, 73, 75], "wai": [16, 18, 30, 31, 32, 35, 37, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 62, 63, 66, 69, 72, 73, 74, 75], "walk": 53, "walker": 69, "wall": 75, "walt": 37, "wang": [44, 72], "want": [20, 24, 30, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 67, 69, 72, 73, 74, 75], "warn": [27, 48], "warrant": 50, "warranti": [16, 18, 19, 26, 31, 32, 34, 35, 36, 37, 42], "wast": [47, 75], "watch": [65, 74, 75], "wave": 47, "wavelet": 52, "wcag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "we": [30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 73, 74], "weak": [53, 54, 58], "weaker": 75, "weather": [45, 56], "web": [65, 68, 70, 72], "webpag": 72, "websit": [50, 66, 67, 68, 72], "wedg": [52, 69], "wednesdai": [70, 72], "wee": 55, "week": [44, 49, 50, 51, 67, 68, 70], "weekli": [59, 60, 65, 67, 68, 70, 71, 72], "weight": [45, 46, 47, 50, 51, 53, 54, 56, 57, 62, 69, 75], "weigth": 46, "welcom": [52, 59, 65], "well": [21, 24, 30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 59, 60, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75], "went": [30, 52], "were": [30, 41, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 58, 69, 72, 75], "wessel": [44, 63, 67, 72, 73, 74, 75], "what": [20, 30, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 69, 75], "whatev": 47, "when": [20, 22, 23, 30, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 66, 67, 69, 72, 73, 74], "whenev": [57, 59, 69, 75], "where": [29, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75], "wherea": [22, 50, 69, 75], "wherefrom": 67, "wherein": [45, 56], "whether": [16, 18, 19, 22, 26, 30, 31, 32, 34, 35, 36, 37, 42, 44, 47, 49, 51, 53, 67, 69, 72], "which": [23, 25, 29, 30, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74], "whichev": [45, 47], "while": [30, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 59, 60, 63, 64, 69, 72, 73, 74, 75], "white": 53, "whiteboad": 75, "whiteboard": [73, 74, 75], "who": [44, 59], "whole": [45, 47, 48, 49, 53, 55, 57, 75], "whom": [19, 26, 31, 34, 36], "whose": [44, 50, 54, 69, 73], "whow": [55, 73], "why": [29, 30, 44, 45, 47, 50, 57, 59, 60, 61, 63, 67, 73, 74], "wide": [44, 45, 47, 50, 51, 56, 65, 66, 67, 72], "widehat": 50, "width": [44, 47, 52, 53, 72], "wieringen": [44, 63, 67, 72, 73, 74, 75], "wiki": [30, 67], "wikipedia": 67, "win": [54, 75], "wind": 53, "window": 28, "wing": [70, 72], "winther": 46, "wiothout": 50, "wiscons": 51, "wisconsin": 54, "wisdom": [50, 73, 75], "wise": [45, 49, 56, 57, 73, 74, 75], "wish": [30, 44, 46, 49, 51, 52, 55, 57, 58, 62, 66, 67, 72, 73, 74, 75], "with_std": [44, 73], "wither": 50, "within": [29, 44, 46, 47, 48, 51, 53, 56, 57, 58, 69, 71, 72, 74], "withinclust": 58, "without": [16, 17, 18, 19, 26, 28, 30, 31, 32, 34, 35, 36, 37, 42, 44, 45, 49, 50, 52, 53, 55, 56, 57, 59, 62, 67, 72, 73, 74, 75], "won": [44, 59, 72], "wonder": [30, 52], "word": [41, 44, 45, 47, 48, 49, 50, 51, 58, 63, 69, 72, 73, 74, 75], "work": [16, 24, 26, 29, 30, 44, 45, 48, 50, 51, 52, 53, 57, 59, 60, 62, 63, 64, 65, 67, 68, 69, 70, 72, 73, 75], "workabl": 75, "workaround": 29, "workhors": 75, "workload": 75, "workshop": 72, "world": [44, 52, 60, 73], "worldwid": [44, 72], "worri": 59, "wors": [44, 45, 47, 48, 50, 72, 75], "worth": [30, 53, 63], "worthi": 67, "would": [30, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 62, 64, 66, 67, 69, 72, 73, 74, 75], "wouldn": 30, "wrap": [50, 66, 72], "write": [22, 23, 30, 44, 45, 46, 47, 49, 50, 51, 52, 56, 57, 59, 60, 62, 66, 72, 73, 75], "written": [16, 18, 22, 23, 31, 32, 35, 44, 46, 47, 49, 55, 56, 57, 60, 65, 66, 67, 69, 72, 73, 74, 75], "wrong": [45, 52, 59], "wrongli": 54, "wrote": [25, 49, 55, 73], "wrt": [54, 57, 75], "wth": [54, 57, 75], "www": [30, 31, 64, 65, 66, 67, 71, 72, 74, 75], "wx_1": 52, "x": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 72, 74, 75], "x0": 52, "x1": [48, 52, 53, 54, 57], "x1_exampl": 52, "x1d": 52, "x2": [52, 53, 54, 57], "x2d": [52, 55], "x2d_train": 55, "x2dsl": 55, "x3": 52, "x_": [44, 46, 47, 49, 50, 52, 54, 55, 57, 58, 66, 69, 72, 73, 74, 75], "x_0": [44, 49, 55, 62, 66, 72, 73], "x_1": [44, 46, 49, 50, 51, 52, 53, 54, 55, 57, 62, 66, 69, 72, 73, 74, 75], "x_2": [44, 46, 49, 50, 51, 52, 53, 54, 55, 57, 66, 69, 72, 73, 74], "x_3": [52, 66, 69], "x_4": 66, "x_6": 62, "x_center": 55, "x_data": 45, "x_data_ful": 45, "x_hidden": 46, "x_i": [44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 66, 69, 72, 73, 74, 75], "x_input": 46, "x_ix_": [44, 72], "x_iy_i": 52, "x_j": [44, 46, 52, 53, 56, 60, 69, 73, 75], "x_jy_j": 52, "x_k": [56, 58, 66, 69, 73], "x_l": 69, "x_m": [50, 56, 66, 69], "x_mean": [62, 75], "x_n": [44, 46, 47, 50, 52, 55, 56, 57, 66, 69, 72, 74], "x_new": [53, 54], "x_norm": [62, 75], "x_offset": [50, 73, 75], "x_output": 46, "x_p": [47, 51, 53], "x_poli": 53, "x_poly10": 53, "x_pred": 48, "x_prev": 46, "x_reduc": 55, "x_sampl": [], "x_scale": 52, "x_small": 57, "x_std": [62, 75], "x_t": 75, "x_test": [44, 45, 47, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 73, 74, 75], "x_test_": 61, "x_test_own": 50, "x_test_scal": [44, 50, 51, 53, 54, 55, 73, 75], "x_tot": 48, "x_train": [44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 72, 73, 74, 75], "x_train_": 61, "x_train_mean": [50, 73, 75], "x_train_own": 50, "x_train_r": 63, "x_train_scal": [44, 50, 51, 53, 54, 55, 73, 75], "x_val": 45, "xarrai": [65, 72], "xavier": 45, "xbnew": [57, 74, 75], "xcode": [44, 65, 67, 72], "xdclassiffierconfus": 54, "xdclassiffierroc": 54, "xg_clf": 54, "xgb": 54, "xgbclassifi": 54, "xgboost": 53, "xgboot": 54, "xgbregressor": 54, "xgparam": 54, "xgtree": 54, "xi": [52, 57, 75], "xi_": 52, "xi_1": 52, "xi_i": 52, "xk": 52, "xla": [57, 65, 72], "xlabel": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 69, 72, 73, 74, 75], "xlim": [50, 54], "xm": 53, "xmesh": 57, "xnew": [44, 57, 72, 74, 75], "xp": 69, "xpanda": [44, 73], "xpd": [49, 55, 73], "xplot": 44, "xscale": [44, 73], "xsr": 53, "xt_x": [57, 74, 75], "xtest": 50, "xtick": [47, 50, 52, 53], "xtrain": 50, "xu": [44, 72], "xx": [44, 66, 72], "xy": [44, 50, 52, 66, 72], "xytext": 52, "xyz": 29, "xz": [66, 72], "y": [29, 30, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 69, 72, 73, 74, 75], "y1": 48, "y2": 48, "y3": 48, "y_": [44, 45, 49, 50, 54, 55, 66, 72, 73], "y_0": [44, 49, 55, 66, 72, 73], "y_1": [44, 49, 52, 53, 55, 57, 66, 72, 73, 74, 75], "y_1y_1": 52, "y_1y_1k": 52, "y_1y_2": 52, "y_1y_2k": 52, "y_1y_n": 52, "y_1y_nk": 52, "y_2": [44, 49, 52, 53, 55, 66, 72, 73], "y_2y_1": 52, "y_2y_1k": 52, "y_2y_2": 52, "y_2y_2k": 52, "y_3": [44, 53, 66], "y_4": 66, "y_center": [62, 75], "y_data": [44, 45, 49, 50, 72, 73, 74, 75], "y_data_ful": 45, "y_decis": 52, "y_fit": [44, 73], "y_i": [44, 45, 49, 50, 51, 52, 53, 54, 55, 56, 57, 63, 66, 67, 72, 73, 74, 75], "y_if_": 54, "y_ix_": [44, 72], "y_ix_i": [51, 52, 57, 73, 74, 75], "y_iy_jk": 52, "y_j": [50, 52, 56, 67], "y_k": 56, "y_m": 66, "y_mean": [62, 75], "y_model": [44, 48, 49, 50, 72, 73, 74, 75], "y_n": [52, 57, 74, 75], "y_ny_1": 52, "y_ny_1k": 52, "y_ny_2": 52, "y_ny_2k": 52, "y_ny_n": 52, "y_ny_nk": 52, "y_offset": [50, 61, 73, 75], "y_plot": 53, "y_pred": [44, 45, 48, 50, 51, 52, 53, 54, 73, 75], "y_pred1": 53, "y_pred2": 53, "y_pred_rf": 54, "y_pred_tre": 54, "y_proba": [51, 54], "y_sampl": [], "y_scaler": [50, 73, 75], "y_test": [44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 73, 74, 75], "y_test_onehot": 45, "y_test_predict": [], "y_tot": 48, "y_train": [44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 59, 60, 61, 63, 72, 73, 74, 75], "y_train_mean": [50, 73, 75], "y_train_onehot": 45, "y_train_predict": [], "y_train_r": 63, "y_train_scal": [50, 73, 75], "y_val": 45, "ye": [30, 47, 50, 51], "year": [44, 65, 72], "yet": [29, 44, 45, 50, 52, 55, 57, 64, 72], "yi": [57, 75], "yield": [44, 46, 49, 50, 52, 54, 56, 57, 58, 66, 69, 72, 74, 75], "yk": 52, "ylabel": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 69, 72, 73, 74, 75], "ylim": [47, 50], "ym": 53, "ymesh": 57, "yn": 44, "yo": [52, 53, 54], "yoshiki": 19, "yoshua": [45, 71], "you": [21, 22, 23, 24, 27, 28, 30, 41, 44, 45, 47, 48, 49, 50, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75], "young": 44, "your": [17, 22, 23, 24, 29, 30, 45, 46, 48, 49, 50, 52, 55, 57, 59, 61, 63, 64, 65, 66, 72, 74, 75], "your_model_object": 60, "yourself": [55, 57, 72, 74], "youtu": [73, 74], "youtub": [65, 74, 75], "ypred": 50, "ypredict": [44, 57, 72, 73, 74, 75], "ypredict2": [57, 74, 75], "ypredictlasso": [49, 74], "ypredictol": [44, 49, 74], "ypredictown": [50, 73, 75], "ypredictownridg": [50, 73, 74, 75], "ypredictridg": [44, 49, 50, 73, 74, 75], "ypredictskl": [50, 73, 75], "ytest": 50, "ytick": [47, 50, 52, 53], "ytild": [44, 50, 72, 73], "ytildelasso": [49, 74], "ytildenp": [44, 72, 73], "ytildeol": [44, 49, 74], "ytildeownridg": [50, 73, 74, 75], "ytilderidg": [49, 50, 73, 74, 75], "ytrain": 50, "yuxi": 72, "yx": [66, 72], "yy": [66, 72], "yz": [66, 72], "z": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 66, 69, 72, 73], "z_": [45, 46, 56, 66, 72], "z_0": [66, 72], "z_1": [66, 72], "z_2": [66, 72], "z_c": 45, "z_h": 45, "z_hidden": 46, "z_i": [45, 56], "z_j": [45, 56], "z_k": [56, 73], "z_m": 45, "z_mod": 53, "z_o": 45, "z_output": 46, "za": 37, "zaman": 69, "zaxi": 50, "zero": [30, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 66, 67, 69, 72, 73, 74, 75], "zeros_lik": 48, "zeroth": 73, "zfill": 48, "zip": [48, 50], "zm_h": [44, 72], "zn": [], "zone": [], "zoom": 72, "zscout": 20, "zx": [66, 72], "zy": [66, 72], "zz": [66, 72], "\u00f8yvind": [50, 73, 75]}, "titles": ["A11Y Dark", "A11Y High Contrast Dark", "A11Y High Contrast Light", "A11Y Light", "Blinds Dark", "Blinds Light", "Github Dark", "Github Dark Colorblind", "Github Dark High Contrast", "Github Light", "Github Light Colorblind", "Github Light High Contrast", "Gotthard Dark", "Gotthard Light", "Greative", "Pitaya Smoothie", "<no title>", "<no title>", "<no title>", "The MIT License (MIT)", "The IPython licensing terms", "Welcome to your Jupyter Book", "Markdown Files", "Notebooks with MyST Markdown", "Content with notebooks", "<no title>", "<no title>", "markdown-it-container", "markdown-it-deflist", "markdown-it-texmath", "A guide to masked arrays in NumPy", "NCSA Open Source License", "<no title>", "Authors", "<no title>", "<no title>", "<no title>", "License for Sphinx", "<no title>", "<no title>", "<no title>", "Translation workflow", "<no title>", "<no title>", "3. Linear Regression", "14. Building a Feed Forward Neural Network", "15. Solving Differential Equations with Deep Learning", "16. Convolutional Neural Networks", "17. Recurrent neural networks: Overarching view", "4. Ridge and Lasso Regression", "5. Resampling Methods", "6. Logistic Regression", "8. Support Vector Machines, overarching aims", "9. Decision trees, overarching aims", "10. Ensemble Methods: From a Single Tree to Many Trees and Extreme Boosting, Meet the Jungle of Methods", "11. Basic ideas of the Principal Component Analysis (PCA)", "13. Neural networks", "7. Optimization, the central part of any Machine Learning algortithm", "12. Clustering and Unsupervised Learning", "Exercises week 34", "Exercises week 35", "Exercises week 36", "Exercises week 37", "Exercises week 38", "Exercises week 39", "Applied Data Analysis and Machine Learning", "2. Linear Algebra, Handling of Arrays and more Python Features", "Project 1 on Machine Learning, deadline October 6 (midnight), 2025", "Course setting", "1. Elements of Probability Theory and Statistical Data Analysis", "Teachers and Grading", "Textbooks", "Week 34: Introduction to the course, Logistics and Practicalities", "Week 35: From Ordinary Linear Regression to Ridge and Lasso Regression", "Week 36: Linear Regression and Gradient descent", "Week 37: Gradient descent methods"], "titleterms": {"": [52, 54, 74, 75], "0": 29, "04": 29, "05": 29, "06": 29, "07": 29, "1": [44, 59, 60, 61, 62, 63, 64, 67, 73], "11": 29, "15": [29, 63], "19": 63, "1a": 62, "2": [29, 44, 59, 60, 61, 62, 63, 64, 72, 73, 74], "20": 29, "2017": 29, "2018": 29, "2019": 29, "2023": 70, "2025": 67, "27": 29, "2a": [], "2b": [], "3": [29, 31, 44, 59, 60, 61, 62, 63, 64, 73], "34": [59, 72], "35": [60, 73], "36": [61, 74], "37": [62, 75], "38": 63, "39": 64, "3a": 62, "3b": 62, "4": [29, 44, 59, 60, 61, 62, 63, 64, 73], "4a": 62, "4b": 62, "5": [29, 44, 60, 62, 63, 64], "6": [29, 67], "8": 75, "A": [30, 44, 45, 48, 52, 53, 72], "And": [72, 73, 75], "But": 75, "In": 70, "Ising": 50, "The": [19, 20, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 59, 65, 72, 73, 74, 75], "To": [41, 72], "With": [48, 74], "a11i": [0, 1, 2, 3], "about": [20, 72, 73, 74], "abov": 74, "abstract": 64, "accuraci": 75, "across": 75, "activ": [45, 56], "ad": [44, 50, 64, 67, 72, 73], "adaboost": 54, "adagrad": [57, 75], "adam": [57, 75], "adapt": [54, 75], "add": 23, "adjust": 45, "advanc": 67, "adversari": 48, "again": [47, 53], "ai": [67, 72], "aim": [52, 53, 72], "aka": 72, "al": 75, "algebra": [66, 72], "algorithm": [53, 54, 55, 56, 72, 73, 74, 75], "algortithm": [57, 74], "all": 52, "an": [23, 44, 48, 54, 59, 64, 72], "analys": [49, 73, 74], "analysi": [44, 49, 50, 55, 65, 67, 69, 72, 73, 74], "analyt": [44, 60, 62], "ani": [57, 74], "anoth": [53, 74], "api": 27, "appli": 65, "approach": [44, 52, 58, 72, 75], "approxim": 56, "architectur": 45, "arrai": [30, 66, 72], "assist": 70, "august": 29, "author": 33, "autocorrel": 69, "autograd": [46, 57, 75], "automat": [57, 75], "avail": 64, "avali": [], "averag": 75, "b": 67, "back": [45, 55, 56, 73, 74], "background": [65, 67], "bag": 54, "base": [57, 75], "basic": [44, 49, 51, 53, 54, 55, 66, 73, 74], "batch": [45, 75], "bay": 49, "befor": [30, 55], "better": 52, "bia": [50, 63, 67, 75], "binari": 45, "bind": 72, "bird": 54, "blind": [4, 5], "block": 24, "boldsymbol": [62, 73], "book": [21, 63], "boost": 54, "bootstrap": [50, 54], "boston": [], "breast": 45, "brief": 72, "bring": 56, "browser": 29, "bsd": 31, "build": [45, 47, 53], "c": [67, 72], "calcul": [62, 73, 74], "can": [72, 75], "cancer": [45, 51, 53, 55], "cart": 53, "case": [52, 54, 69, 73, 74, 75], "cdn": 29, "cell": 23, "central": [57, 65, 69, 74], "chain": 56, "challeng": 75, "chang": 54, "changelog": 29, "channel": 72, "chi": [44, 72], "choic": 61, "choos": [45, 75], "cifar01": 47, "citat": 22, "classic": 55, "classif": [45, 53, 54], "classifi": 52, "claus": 31, "clip": 45, "cluster": 58, "cnn": 47, "code": [24, 45, 46, 49, 53, 55, 56, 57, 58, 59, 60, 64, 67, 72, 73, 74, 75], "collect": [45, 47], "color": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "colorblind": [7, 10], "combin": 75, "commun": 72, "compar": [46, 54, 60], "comparison": [74, 75], "compet": 75, "compil": 41, "complet": 73, "complex": [44, 50, 67, 73], "complic": 50, "compon": [31, 55], "comput": [53, 63, 75], "computerlab": 72, "con": [53, 75], "concept": 69, "condit": 74, "conjug": 57, "constraint": 75, "contain": 27, "content": [24, 30], "contn": 72, "contrast": [1, 2, 8, 11], "contributor": 33, "converg": 75, "convex": [52, 57, 74, 75], "convolut": [47, 56], "copyright": 20, "core": 30, "correct": 75, "correl": [55, 73], "correspond": [], "cost": [45, 54, 73, 74, 75], "cours": [65, 68, 71, 72], "covari": [49, 55, 69, 73], "cover": 72, "creat": [23, 60, 64], "creator": 33, "cross": [50, 67], "cython": 72, "d": 67, "dark": [0, 1, 4, 6, 7, 8, 12], "data": [44, 45, 47, 50, 51, 53, 55, 59, 61, 62, 65, 69, 72, 73], "dataset": [45, 47, 62], "david": 72, "deadlin": [67, 72], "deadllin": 70, "decai": [46, 75], "decis": [53, 54], "decomposit": [49, 55, 66, 73, 74], "deeep": [], "deep": [45, 46, 72, 75], "defin": [45, 72], "definit": 63, "deflist": 28, "degre": [44, 61, 73], "deliver": [59, 60, 63, 64], "deliveri": 67, "dens": 44, "depend": 29, "deriv": [49, 56, 60, 61, 63, 73, 74, 75], "descent": [46, 54, 57, 62, 67, 74, 75], "design": 73, "detail": [47, 72], "develop": [20, 45], "diagon": 55, "differ": [30, 52, 75], "differenti": [46, 57, 75], "diffus": 46, "dimens": 75, "dimension": [46, 47, 52, 62], "direct": 22, "disadvantag": 53, "discret": 69, "discrimin": 72, "distribut": [49, 69], "do": [45, 75], "document": 64, "doe": [73, 74], "domain": 69, "down": 45, "dropout": 45, "e": 67, "economi": [73, 74], "electron": 67, "element": [44, 69, 72], "elimin": 66, "empir": 75, "energi": 72, "ensembl": 54, "entropi": 53, "environ": [44, 59], "equat": [44, 46, 56, 73, 74], "error": [44, 54, 72, 73, 74], "essenti": 72, "et": 75, "etc": 72, "euler": 46, "evalu": 45, "evid": 75, "exampl": [23, 27, 45, 46, 47, 48, 50, 51, 52, 53, 54, 72, 73, 74, 75], "exercis": [44, 50, 59, 60, 61, 62, 63, 64, 73], "expect": [63, 69], "experi": 69, "explor": 44, "exponenti": [46, 75], "express": [60, 61, 63, 73], "extend": 74, "extrapol": 48, "extrem": [54, 72], "ey": 54, "f": 67, "fall": 70, "famili": [45, 72], "famou": 66, "fantast": [73, 74], "faq": 29, "featur": [29, 30, 53, 60, 66, 73], "februari": 29, "feed": [45, 56], "figur": 64, "file": [22, 41], "fill": 30, "final": [56, 73, 75], "find": [60, 62], "fine": 45, "first": [48, 56, 72, 74], "fit": [44, 54, 59, 60, 72, 74], "fix": [73, 74, 75], "forc": 47, "forest": 54, "form": 62, "format": [67, 72], "formula": 62, "forward": [45, 46, 56], "foster": 72, "fourier": 47, "frank": 50, "freedom": [44, 61, 73], "frequent": [73, 75], "frequentist": [44, 72], "from": [49, 54, 56, 72, 73, 74, 75], "full": [46, 75], "function": [44, 45, 50, 51, 52, 54, 55, 56, 57, 67, 69, 72, 73, 74, 75], "further": [47, 49, 73, 74], "g": 67, "gan": 48, "gaussian": 66, "gd": [57, 75], "gener": [48, 53, 72], "geometr": [55, 74], "get": 64, "gini": 53, "github": [6, 7, 8, 9, 10, 11, 59], "goal": [59, 60, 61, 62, 63, 64], "good": [44, 64, 72], "goodfellow": 75, "gotthard": [12, 13], "grade": [70, 72], "gradient": [45, 46, 54, 57, 62, 67, 74, 75], "greativ": 14, "growth": 46, "guid": 30, "h": 67, "ha": 65, "handl": [66, 72], "hessian": [73, 74, 75], "hidden": 46, "high": [1, 2, 8, 11], "histori": 30, "hous": [], "how": 60, "hyperparamet": [45, 61], "hyperplan": 52, "i": [22, 44, 45, 72], "id3": 53, "idea": 55, "ideal": 74, "ii": 72, "illustr": 74, "implement": [45, 60, 61, 62], "implic": [49, 73, 74], "import": [49, 66, 72, 73, 74], "improv": [45, 75], "includ": [57, 67, 75], "incorpor": 37, "increment": 55, "index": 53, "inform": 70, "input": 46, "instal": [27, 28, 65, 67, 72], "instructor": 70, "interpret": [49, 55, 63, 72, 73, 74], "introduc": [55, 57, 73], "introduct": [44, 50, 64, 65, 66, 67, 72], "invers": [49, 66], "invert": [73, 74], "ipython": 20, "iter": 54, "its": 73, "j": 29, "jacobian": 73, "januari": 29, "jax": 57, "julia": 72, "jungl": 54, "jupyt": 21, "kera": [45, 47], "kernel": [52, 55], "lab": [74, 75], "lagrangian": 52, "lasso": [49, 50, 67, 73, 74], "last": [73, 75], "later": [49, 73, 74], "layer": [45, 46, 47, 56], "learn": [22, 44, 45, 46, 55, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 72, 73, 74, 75], "least": [49, 50, 60, 63, 67, 72, 73, 74, 75], "lectur": [72, 74, 75], "level": 54, "librari": [65, 72], "licens": [19, 20, 27, 28, 29, 31, 37], "light": [2, 3, 5, 9, 10, 11, 13], "likelihood": 51, "limit": [45, 57, 69, 74, 75], "linear": [44, 52, 57, 59, 66, 72, 73, 74], "link": [49, 55, 71, 73], "literatur": 67, "logist": [51, 72], "loss": [73, 74, 75], "lu": 66, "ma": 30, "machin": [44, 52, 57, 65, 67, 72, 74], "main": [30, 69, 72], "make": [44, 53, 54, 64, 73], "mani": [54, 56], "markdown": [22, 23, 24, 27, 28, 29], "mask": 30, "maskedarrai": 30, "mass": 72, "materi": [67, 72, 73, 74, 75], "math": [49, 73, 74], "mathemat": [47, 49, 52, 73, 74], "matplotlib": 30, "matric": [49, 66, 72], "matrix": [45, 49, 55, 56, 60, 66, 72, 73, 74, 75], "matter": 44, "max": 73, "me": 29, "mean": [44, 73, 74], "meet": [49, 54, 69, 72, 73], "memori": 75, "mercer": 52, "metadata": 23, "method": [50, 53, 54, 57, 67, 72, 74, 75], "metric": 63, "midnight": 67, "min": 73, "mini": 75, "minibatch": 75, "minim": 72, "mit": 19, "ml": 72, "mlp": 56, "mnist": [47, 48], "model": [44, 45, 48, 50, 56, 59, 61, 72], "moment": 75, "momentum": [57, 67, 75], "mondai": [74, 75], "moon": [52, 53], "more": [22, 47, 50, 66, 67, 72, 73, 74, 75], "motiv": 75, "move": 75, "multilay": 56, "multipl": [45, 47, 61], "multipli": 52, "myst": [22, 23, 24], "ncsa": 31, "need": [67, 72], "network": [45, 46, 47, 48, 51, 56, 72, 75], "neural": [45, 46, 47, 48, 51, 56, 72, 75], "new": [30, 48, 62], "newton": [74, 75], "node": 29, "non": [52, 75], "none": 75, "normal": [44, 45], "notat": 56, "note": [30, 67, 73, 74], "notebook": [23, 24], "novemb": 29, "now": [45, 53, 57, 74, 75], "nuclear": [44, 72], "numba": 72, "number": [44, 46, 69, 73, 75], "numer": [46, 67, 69], "numpi": [30, 66, 72], "object": 47, "obtain": 55, "octob": [29, 67], "od": 46, "off": [50, 63, 67], "ol": [49, 50, 59, 60, 62, 67, 74], "one": [46, 56, 62, 74], "open": 31, "oper": 66, "optim": [30, 45, 52, 57, 62, 65, 72, 73, 74, 75], "order": [57, 62, 75], "ordinari": [49, 50, 60, 63, 67, 72, 73, 74, 75], "organ": [44, 72], "oslo": 71, "other": [48, 53, 55, 56, 66, 67, 72], "our": [20, 44, 48, 49, 55, 57, 67, 72, 73, 74], "outcom": [65, 72], "output": [24, 46], "overarch": [44, 48, 52, 53, 72, 73], "overview": [54, 72, 75], "own": [44, 54, 55, 67, 72, 73], "packag": [30, 66, 72], "panda": [72, 73], "paramet": [72, 73], "paramt": 62, "part": [57, 65, 67, 74], "partial": 46, "pass": 45, "pca": 55, "pdf": 69, "perceptron": 56, "perform": [45, 53], "period": 47, "perspect": 45, "pitaya": 15, "plan": [73, 74, 75], "plethora": 72, "point": 48, "poisson": 46, "polici": 20, "polynomi": [47, 60, 62, 74], "popul": 46, "popular": 72, "practic": [57, 70, 72, 75], "pre": [45, 47], "preambl": 67, "predict": 48, "preprocess": [73, 75], "prerequisit": [47, 65, 72], "present": 64, "princip": 55, "principl": 47, "pro": [53, 75], "probabl": [49, 69], "problem": [45, 46, 57, 72, 73, 74, 75], "procedur": [53, 72], "process": [30, 45, 47], "program": [46, 57, 67, 74, 75], "project": [50, 64, 67, 70, 72], "prop": 57, "propag": [45, 56], "properti": [49, 69, 73, 74, 75], "python": [44, 53, 59, 65, 66, 72], "quick": 52, "quickli": 23, "r": 72, "random": [54, 55, 69], "raphson": 74, "rate": [67, 75], "read": [53, 72, 73, 75], "real": [50, 72], "recommend": [72, 73], "record": 30, "recurr": [48, 56], "reduc": [44, 73], "reduct": 47, "refer": 67, "referenc": 64, "reformul": 46, "regress": [44, 49, 50, 51, 53, 54, 57, 59, 61, 62, 63, 67, 72, 73, 74, 75], "regular": 45, "relat": [], "relev": [71, 73], "relu": 45, "remark": 47, "remind": [50, 52, 72, 73, 74, 75], "replac": [57, 75], "report": [64, 67], "repositori": 59, "requir": [46, 65], "resampl": [50, 63, 67], "rescal": [50, 73], "residu": [73, 74], "resourc": 46, "result": [73, 74], "revis": 30, "revisit": [57, 74, 75], "rewrit": [72, 73], "ridg": [44, 49, 50, 61, 62, 63, 67, 73, 74, 75], "rm": 57, "rmsprop": 75, "role": 22, "rule": [56, 75], "rung": 67, "same": [57, 75], "sampl": [22, 55], "scalabl": 75, "scale": [61, 62, 63, 73, 75], "schedul": 72, "schemat": 53, "scheme": 46, "scienc": 72, "scikit": [44, 45, 55, 72, 73, 74, 75], "second": [57, 62, 75], "semest": 70, "sensit": 74, "septemb": [29, 63, 74, 75], "session": [74, 75], "set": [44, 46, 47, 53, 56, 59, 68, 72, 73, 74], "setup": 59, "sgd": [57, 75], "should": [30, 45], "show": 29, "similar": [57, 75], "simpl": [44, 48, 53, 57, 62, 72, 73, 74, 75], "simplest": 62, "singl": 54, "singular": [49, 55, 73, 74], "size": [73, 74, 75], "sklearn": 60, "slightli": 75, "smoothi": 15, "sneak": 75, "soft": 52, "softmax": 45, "softwar": [37, 67, 72], "solv": [46, 74], "solver": 57, "some": [57, 66, 73, 74], "sourc": [31, 41], "specifi": 46, "speed": 75, "sphinx": 37, "split": [44, 59, 73], "squar": [44, 49, 50, 54, 60, 63, 67, 72, 73, 74, 75], "standard": [57, 73], "start": 64, "state": 44, "statist": [49, 50, 65, 69, 72], "steepest": [54, 57, 74], "step": 75, "stochast": [57, 67, 69, 75], "stop": 75, "strongli": [72, 75], "structur": 41, "suggest": 72, "summari": [70, 72], "superposit": 47, "supervis": 45, "support": 52, "svd": [49, 73, 74], "synthet": 62, "systemat": 47, "t": 73, "take": 60, "taken": [72, 75], "teach": 70, "teacher": [70, 72], "team": 20, "technic": 73, "techniqu": [50, 55, 67], "technologi": 65, "tensorflow": [45, 47], "tent": [70, 72], "term": 20, "test": [44, 45, 59, 61, 73], "texmath": 29, "text": 72, "textbook": [71, 72], "than": 74, "thank": 30, "theorem": [49, 52, 55, 56, 69], "theoret": 75, "theori": 69, "theta": 62, "thi": 72, "time": 75, "tip": [57, 75], "todo": 29, "togeth": 56, "tool": [67, 72], "top": 45, "topic": 72, "toward": 55, "trade": [50, 63, 67], "tradeoff": 50, "train": [44, 45, 48, 59, 72, 73], "transform": 47, "translat": 41, "tree": [53, 54], "tuesdai": 74, "tune": 45, "two": [47, 52, 65], "type": [46, 48, 56, 72], "uio": 72, "univers": [56, 71], "unsupervis": 58, "up": [44, 46, 53, 56, 59, 72, 73, 74], "updat": [41, 67, 75], "us": [28, 29, 30, 44, 45, 46, 47, 51, 57, 60, 62, 63, 65, 67, 72, 73, 74, 75], "usag": 75, "v": [47, 75], "valid": [50, 67], "valu": [49, 55, 63, 69, 73, 74], "vari": 75, "variabl": [69, 74], "varianc": [50, 63, 67], "variou": 44, "vector": [52, 56, 60, 66, 72, 73], "versu": 72, "video": 75, "view": [44, 48, 54, 73], "virtual": 59, "visual": [45, 53], "wai": [53, 67], "wave": 46, "we": [72, 75], "wednesdai": 74, "week": [59, 60, 61, 62, 63, 64, 72, 73, 74, 75], "weekli": [], "welcom": 21, "what": [22, 44, 72, 73, 74], "when": 75, "which": [45, 75], "why": [72, 75], "wisconsin": 51, "workflow": 41, "write": [48, 55, 64, 67, 74], "x": 73, "xgboost": 54, "yaml": 23, "yet": 74, "your": [21, 44, 54, 60, 62, 67, 73]}}) \ No newline at end of file diff --git a/doc/LectureNotes/_build/jupyter_execute/.venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.ipynb b/doc/LectureNotes/_build/jupyter_execute/.venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.ipynb index b96978e73..fe0b695d3 100644 --- a/doc/LectureNotes/_build/jupyter_execute/.venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.ipynb +++ b/doc/LectureNotes/_build/jupyter_execute/.venv/lib/python3.13/site-packages/jupyter_book/book_template/markdown-notebooks.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "2c4ae3e0", + "id": "089950cb", "metadata": {}, "source": [ "# Notebooks with MyST Markdown\n", @@ -19,7 +19,7 @@ { "cell_type": "code", "execution_count": null, - "id": "bd842239", + "id": "87c2f6e9", "metadata": {}, "outputs": [], "source": [ @@ -28,7 +28,7 @@ }, { "cell_type": "markdown", - "id": "0b607518", + "id": "04f8b494", "metadata": {}, "source": [ "When your book is built, the contents of any `{code-cell}` blocks will be\n", diff --git a/doc/LectureNotes/_build/jupyter_execute/exercisesweek38.ipynb b/doc/LectureNotes/_build/jupyter_execute/exercisesweek38.ipynb index dcba467a5..79e833a51 100644 --- a/doc/LectureNotes/_build/jupyter_execute/exercisesweek38.ipynb +++ b/doc/LectureNotes/_build/jupyter_execute/exercisesweek38.ipynb @@ -402,13 +402,15 @@ "# for p in range(1, 5):\n", "# predictions = ...\n", "# targets = ...\n", + "#\n", + "# X = ...\n", + "# X_train, X_test, y_train, y_test = ...\n", "# for b in range(bootstraps):\n", - "# x_sample, y_sample = ...\n", - "# X = ...\n", - "# X_train, X_test, y_train, y_test = ...\n", + "# X_train_re, y_train_re = ...\n", "#\n", - "# #this is where you fit your model on the sampled data\n", + "# # fit your model on the sampled data\n", "#\n", + "# # make predictions on the test data\n", "# predictions[b, :] =\n", "# targets[b, :] =\n", "#\n", diff --git a/doc/LectureNotes/exercisesweek38.ipynb b/doc/LectureNotes/exercisesweek38.ipynb index f58edd704..c26fbccf9 100644 --- a/doc/LectureNotes/exercisesweek38.ipynb +++ b/doc/LectureNotes/exercisesweek38.ipynb @@ -402,13 +402,15 @@ "# for p in range(1, 5):\n", "# predictions = ...\n", "# targets = ...\n", + "#\n", + "# X = ...\n", + "# X_train, X_test, y_train, y_test = ...\n", "# for b in range(bootstraps):\n", - "# x_sample, y_sample = ...\n", - "# X = ...\n", - "# X_train, X_test, y_train, y_test = ...\n", + "# X_train_re, y_train_re = ...\n", "#\n", - "# #this is where you fit your model on the sampled data\n", + "# # fit your model on the sampled data\n", "#\n", + "# # make predictions on the test data\n", "# predictions[b, :] =\n", "# targets[b, :] =\n", "#\n",