Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[hyperref={pdfpagelabels=false},usepdftitle=false]{beamer}
2
\usetheme{Frankfurt} % see http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html as fallback
3
\usecolortheme{beaver}
4
\usefonttheme{professionalfonts}
5
\usepackage{hyperref}
6
\usepackage[utf8]{inputenc} % this is needed for german umlauts
7
\usepackage[english]{babel} % this is needed for german umlauts
8
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
9
\usepackage{tikz}
10
\usepackage{incgraph}
11
12
\beamertemplatenavigationsymbolsempty
13
14
% Begin:Move navigation from top to bottom
15
\setbeamertemplate{navigation symbols}{}
16
\makeatletter
17
\setbeamertemplate{footline}
18
{%
19
\pgfuseshading{beamer@barshade}%
20
\ifbeamer@sb@subsection%
21
\vskip-9.75ex%
22
\else%
23
\vskip-7ex%
24
\fi%
25
\begin{beamercolorbox}[ignorebg,ht=2.25ex,dp=3.75ex]{section in head/foot}
26
\insertnavigation{\paperwidth}
27
\end{beamercolorbox}%
28
\ifbeamer@sb@subsection%
29
\begin{beamercolorbox}[ignorebg,ht=2.125ex,dp=1.125ex,%
30
leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
31
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
32
\end{beamercolorbox}%
33
\fi%
34
}%
35
\setbeamertemplate{headline}{%
36
}
37
\makeatother
38
% End:Move navigation from top to bottom
39
40
41
\begin{document}
42
43
\title{Art in Machine Learning}
44
\subtitle{\href{https://github.com/MartinThoma/}{github.com/MartinThoma/}}
45
\author{Martin Thoma}
46
\date{15. Januar 2016}
47
\subject{Machine Learning}
48
49
\frame{\titlepage}
50
51
\section{Examples}
52
\subsection{Examples}
53
54
\incgraph{0099.jpg}
55
56
\section{ML-Basics}
57
\subsection{ML-Basics}
58
59
\begin{frame}{Was ist Machine Learning?}
60
\begin{block}{Definition by Tom Mitchell: ML}
61
A computer program is said to learn from \textbf{experience} $E$ with
62
respect to some class of \textbf{tasks} $T$ and \textbf{performance
63
measure} $P$, if its performance at tasks in $T$, as measured by $P$,
64
improves with experience $E$.
65
\end{block}
66
\end{frame}
67
68
\end{document}
69