-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDL.tex
92 lines (77 loc) · 2.19 KB
/
DL.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
% !TeX spellcheck = en_US
\PassOptionsToPackage{table}{xcolor}
\documentclass{scrartcl}
\usepackage{etex}
\include{header/zusammenfassung}
\include{header/hyperref}
\include{header/listings}
\include{header/math_commands}
\usepackage{tikz}
\usepackage{adjustbox}
\usepackage{float}
\usepackage{bm}
%\usepackage{bbding}
\usepackage{setspace}
\usepackage{tabularx}
\usepackage{fixmath}
\usetikzlibrary{arrows}
\usetikzlibrary{calc}
\usetikzlibrary{matrix}
\usetikzlibrary{intersections}
\usetikzlibrary{decorations.markings}
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
\newcommand{\buchSeite}[1]{{\color{red} \small (p.#1)}}
\newcommand{\dingfamily}{\fontencoding{U}\fontfamily{ding}\selectfont}
\newcommand{\chooseSymbol}[1]{{\dingfamily\symbol{#1}}}
\newcommand{\FiveStarOpen}{\chooseSymbol{'071}}
\newcommand{\bol}[1]{\ensuremath{\mathbold{#1}}}
\newcommand{\bolv}{\ensuremath{\mathbold{v}}}
\newcommand{\bolA}{\ensuremath{\mathbold{A}}}
\newcommand{\bolt}{\ensuremath{\mathbold{\theta}}}
\newcommand{\diag}{\ensuremath{\text{diag}}}
\newcommand{\Exp}{\ensuremath{\mathbb{E}}}
\newcommand{\var}{\ensuremath{\text{Var}}}
\newcommand{\cov}{\ensuremath{\text{Cov}}}
\newcommand{\half}{\ensuremath{\frac{1}{2}}}
\newcommand{\mysum}{\sum_{i=1}^{n}}
\newcommand{\ts}{\textsuperscript}
\usepackage{circuitikz}
\usepackage{pgfplots}
\tikzstyle{3x3mask}=[
matrix of nodes,
nodes={draw, minimum size=8mm, anchor=center},
column sep=0mm
]
% Spaltenabstand bei multicols
\setlength{\columnsep}{1.5em}
\title{Deep Learning}
\author{Simon Kassian Locher, Max Schwendeler}
\begin{document}
\selectlanguage{english}
\lstset{language=Python}
\lstset{style=Python}
\begin{titlepage}
{\scshape \maketitle}
% \vfill
% \hspace{5cm}
\centering
\begin{minipage}{18cm}
\centering
\includegraphics[width=0.95\linewidth]{header/cnn.png}
\end{minipage}
\end{titlepage}
\setcounter{tocdepth}{2}
\tableofcontents
\newpage
\input{sections/LinAlg}
\input{sections/ProbInf}
\input{sections/NumComp}
\input{sections/MLbase}
\input{sections/DeepFFN}
\input{sections/Regularization}
\input{sections/Optimization}
\input{sections/CNN}
\input{sections/Recurrent}
\input{sections/Practical}
\input{sections/StatML}
\end{document}