Skip to content

Commit 9ab5e3b

Browse files
committed
fixed two typo
1 parent 60cf5e3 commit 9ab5e3b

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The cheat sheet will also appeal to someone who is preparing for a job interview
1212
This open-source book adopts the [Springer latex template](http://www.springer.com/authors/book+authors?SGWID=0-154102-12-970131-0).
1313

1414
##How to compile on Windows
15-
1. Install [Tex Live 2012](http://www.tug.org/texlive/), then add its `bin` path for example `D:\texlive\2012\bin\win32` to he PATH environment variable.
15+
1. Install [Tex Live 2014](http://www.tug.org/texlive/), then add its `bin` path for example `D:\texlive\2012\bin\win32` to he PATH environment variable.
1616
2. Install [TeXstudio](http://texstudio.sourceforge.net/).
1717
3. Configure TeXstudio.
1818
Run TeXstudio, click `Options-->Configure Texstudio-->Commands`, set `XeLaTex` to `xelatex -synctex=1 -interaction=nonstopmode %.tex`.

chapterLinearRegression.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ \section{MLE}
3434
Now let us apply the method of MLE to the linear regression setting. Inserting the definition of the Gaussian into the above, we find that the log likelihood is given by
3535
\begin{align}
3636
\ell(\vec{\theta})& =\sum\limits_{i=1}^N \log\left[\dfrac{1}{\sqrt{2\pi}\sigma}\exp\left(-\dfrac{1}{2\sigma^2}(y_i-\vec{w}^T\vec{x}_i)^2\right)\right] \\
37-
& =-\dfrac{1}{2\sigma^2}\text{RSS}(\vec{w})-\dfrac{\vec{w}}{2}\log(2\pi\sigma^2)
37+
& =-\dfrac{1}{2\sigma^2}\text{RSS}(\vec{w})-\dfrac{N}{2}\log(2\pi\sigma^2)
3838
\end{align}
3939

4040
RSS stands for \textbf{residual sum of squares} and is defined by

machine-learning-cheat-sheet.pdf

-24.4 KB
Binary file not shown.

notation.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ \section*{General math notation}
1717
\textbf{Symbol} & \textbf{Meaning} \\
1818
\noalign{\smallskip}\hline\noalign{\smallskip}
1919
$\lfloor x \rfloor$ & Floor of $x$, i.e., round down to nearest integer\\
20-
$\lceil x \rceil$ & Ceiling of $x$, i.e., round down to nearest integer\\
20+
$\lceil x \rceil$ & Ceiling of $x$, i.e., round up to nearest integer\\
2121
$\vec{x} \otimes \vec{y}$ & Convolution of $\vec{x}$ and $\vec{y}$\\
2222
$\vec{x} \odot \vec{y}$ & Hadamard (elementwise) product of $\vec{x}$ and $\vec{y}$\\
2323
$a \wedge b$ & logical AND\\

0 commit comments

Comments
 (0)