Removed a couple of slow notebooks from RTD auto-rendering.

Trying to address the timeouts in RTD rendering.

Also fixed bad itemized list in autodiff cookbook, and a few minor warnings:
Issue: #2092
This commit is contained in:
George Necula 2020-02-15 11:43:10 +01:00
parent 18420936c4
commit 370558def3
4 changed files with 6 additions and 2 deletions

View File

@ -94,6 +94,8 @@ exclude_patterns = [
'notebooks/neural_network_with_tfds_data.ipynb',
# Slow notebook
'notebooks/Neural_Network_and_Data_Loading.ipynb',
'notebooks/score_matching.ipynb',
'notebooks/maml.ipynb',
]
# The name of the Pygments (syntax highlighting) style to use.

View File

@ -157,7 +157,8 @@ You can then see the generated documentation in
Update notebooks
----------------
Open the notebook with http://colab.research.google.com, update it, ``Run all cells`` then
Open the notebook with http://colab.research.google.com (then `Upload` from your
local repo), update it as needed, ``Run all cells`` then
``Download ipynb``. You may want to test that it executes properly, using ``sphinx-build`` as
explained above.

View File

@ -443,7 +443,7 @@ with 3 input parameters:
* ``c`` is a constvar and stands for the ``ones`` constant,
* ``b`` corresponds to the free variable ``arg`` captured in the ``inner`` function,
* ``a`` corresponds to the ``inner`` parameter ``x`.
* ``a`` corresponds to the ``inner`` parameter ``x``.
The primitive takes three arguments ``b a c``.

View File

@ -672,6 +672,7 @@
},
"source": [
"This shape makes sense: if we start with a function $f : \\mathbb{R}^n \\to \\mathbb{R}^m$, then at a point $x \\in \\mathbb{R}^n$ we expect to get the shapes\n",
"\n",
"* $f(x) \\in \\mathbb{R}^m$, the value of $f$ at $x$,\n",
"* $\\partial f(x) \\in \\mathbb{R}^{m \\times n}$, the Jacobian matrix at $x$,\n",
"* $\\partial^2 f(x) \\in \\mathbb{R}^{m \\times n \\times n}$, the Hessian at $x$,\n",