Begun logistic regression, added missing figures

This commit is contained in:
Sam Perry
2016-11-05 12:07:22 +00:00
parent 3cd5bd4fb7
commit 70c158e428
12 changed files with 9 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

+9
View File
@@ -259,5 +259,14 @@ the calculation of the hypothesis function. The results of $\alpha=1.2,
\label{PolynomialAlphaLambdaFunc}
\end{figure}
\section{Logistic Regression}
\subsection{In the \code{logistic\_regression} folder, fill out the
\code{sigmoid(z)} function in \code{sigmoid.m}}
\begin{lstlisting}
function output=sigmoid(z)
% Implement sigmoid function as shown in the sigmoid function formula.
output = 1.0 ./ (1.0 + exp(1) .^ -z);
\end{lstlisting}\leavevmode \\
% \printbibliography
\end{document}