-
Notifications
You must be signed in to change notification settings - Fork 0
/
präsentation.tex
97 lines (79 loc) · 2.13 KB
/
präsentation.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
93
94
95
96
97
\documentclass[aspectratio=169, 10pt]{beamer}
\usetheme{metropolis}
\usetikzlibrary{shapes, snakes, spy, positioning}
\setbeamercolor{background canvas}{bg=white}
\metroset{
numbering=fraction,
progressbar=frametitle,
block=fill,
subsectionpage=progressbar,
}
\usefonttheme[onlymath]{serif}
\usepackage[ngerman]{babel}
\usepackage[style=iso-numeric]{biblatex}
\usepackage{csquotes}
\usepackage{mathtools, graphicx, booktabs, pgfplots, xcolor}
\usepackage[font=footnotesize]{caption}
\usepackage{listings}
\usepackage{hyperref}
\definecolor{mDarkBrown}{HTML}{604c38}
\definecolor{mDarkTeal}{HTML}{23373b}
\definecolor{mLightBrown}{HTML}{EB811B}
\definecolor{mLightGreen}{HTML}{14B03D}
\definecolor{mBackground}{HTML}{FFFFFF}
\definecolor{myblue}{HTML}{6699cc}
\definecolor{myorange}{HTML}{eb801a}
\lstset{%
language=Python,
basicstyle=\small\ttfamily,
keywordstyle=\color{mLightBrown}\bfseries,
commentstyle=\color{mLightGreen},
stringstyle=\color{mLightGreen},
backgroundcolor=\color{mBackground},
numbers=none,
numberstyle=\tiny\ttfamily,
stepnumber=2,
showspaces=false,
showstringspaces=false,
showtabs=false,
frame=none,
framerule=1pt,
tabsize=2,
rulesep=5em,
captionpos=b,
breaklines=true,
breakatwhitespace=false,
framexleftmargin=0em,
framexrightmargin=0em,
xleftmargin=0em,
xrightmargin=0em,
aboveskip=1em,
belowskip=1em,
morekeywords={usetheme,institute,maketitle,@metropolis@titleformat,%
plain,setbeamercolor,metroset,setsansfont,setmonofont},
}
\addbibresource{bibliography.bib}
\graphicspath{{./Grafiken/}}
\captionsetup{belowskip=0pt}
\input{tex/commands}
\title{Neuronale Netzwerke und deren Optimierung}
\subtitle{Gradient Descent und Backpropagation}
\institute{Hochschule Esslingen --- University of Applied Sciences}
\author{Tim Hilt}
\date{2. Juni 2020}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}{Gliederung}
\tableofcontents
\end{frame}
\input{tex/supervisedlearning}
\input{tex/neuralnetworks}
\input{tex/training}
\input{tex/keras}
\begin{frame}[standout]
Fragen?
\end{frame}
\printbibliography[title=Literaturverzeichnis]
\end{document}