Skip to content
This repository was archived by the owner on Dec 9, 2022. It is now read-only.

Commit f40fb8d

Browse files
committed
corrected notebook front matter
1 parent ed29842 commit f40fb8d

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

_notebooks/book_equations.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Equations\n",
8+
"> Supplementary material on Equations\n",
9+
"\n",
810
"- permalink: /book_equations\n",
911
"\n",
1012
"*This notebook lists all the equations in the book. If you decide to print them on a T-Shirt, I definitely want a copy! ;-)*\n",

_notebooks/extra_gradient_descent_comparison.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Comparison of Batch, Mini-Batch and Stochastic Gradient Descent\n",
8+
"> Supplementary material on Gradient Descent\n",
9+
"\n",
810
"- permalink: /extra_gradient_descent_comparison"
911
]
1012
},

_notebooks/math_linear_algebra.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Math - Linear Algebra\n",
8+
"> Supplementary material on Linear Algebra\n",
9+
"\n",
810
"- permalink: /math_linear_algebra\n",
911
"\n",
1012
"*Linear Algebra is the branch of mathematics that studies [vector spaces](https://en.wikipedia.org/wiki/Vector_space) and linear transformations between vector spaces, such as rotating a shape, scaling it up or down, translating it (ie. moving it), etc.*\n",

_notebooks/tools_matplotlib.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Tools - matplotlib\n",
8+
"> Supplementary material on matplotlib\n",
9+
"\n",
810
"- permalink: /tools_matplotlib\n",
911
"\n",
1012
"*This notebook demonstrates how to use the matplotlib library to plot beautiful graphs.*"

_notebooks/tools_numpy.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Tools - NumPy\n",
8+
"> Supplementary material on numpy\n",
9+
"\n",
810
"- permalink: /tools_numpy\n",
911
"\n",
1012
"*NumPy is the fundamental library for scientific computing with Python. NumPy is centered around a powerful N-dimensional array object, and it also contains useful linear algebra, Fourier transform, and random number functions.*\n",

_notebooks/tools_pandas.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"metadata": {},
66
"source": [
77
"# Tools - pandas\n",
8+
"> Supplementary material on pandas\n",
9+
"\n",
810
"- permalink: /tools_pandas\n",
911
"\n",
1012
"*The `pandas` library provides high-performance, easy-to-use data structures and data analysis tools. The main data structure is the `DataFrame`, which you can think of as an in-memory 2D table (like a spreadsheet, with column names and row labels). Many features available in Excel are available programmatically, such as creating pivot tables, computing columns based on other columns, plotting graphs, etc. You can also group rows by column value, or join tables much like in SQL. Pandas is also great at handling time series.*\n",

0 commit comments

Comments
 (0)