-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslide.tex
144 lines (115 loc) · 3.46 KB
/
slide.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
\documentclass[10pt]{beamer}
\usetheme{metropolis}
% --------
% Packages
% --------
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\usepackage{ragged2e}
\usepackage{etoolbox}
\apptocmd{\frame}{}{\justifying}{} % Allow optional arguments after frame.
%encoding
%--------------------------------------
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
%--------------------------------------
%Portuguese-specific commands
%--------------------------------------
\usepackage[portuguese]{babel}
%--------------------------------------
%Hyphenation rules
%--------------------------------------
\usepackage{hyphenat}
\hyphenation{mate-mática recu-perar}
%--------------------------------------
%encoding
%--------------------------------------
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
%--------------------------------------
%Portuguese-specific commands
%--------------------------------------
\usepackage[portuguese]{babel}
%--------------------------------------
%Hyphenation rules
%--------------------------------------
\usepackage{hyphenat}
\hyphenation{mate-mática recu-perar}
%--------------------------------------
% Math
%--------------------------------------
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{defn}{Definição}[section]
\newtheorem{conj}{Conjecture}[section]
\newtheorem{exmp}{Example}[section]
%--------------------------------------
% Extra
%--------------------------------------
\usepackage{array}
\usepackage{graphicx}
\graphicspath{{images/}}
%--------------------------------------
% Diagrams
%--------------------------------------
\usepackage{tikz}
\usetikzlibrary{positioning}
\tikzset{basic/.style={draw,fill=blue!20,text width=1em,text badly centered}}
\tikzset{input/.style={basic,circle}}
\tikzset{output/.style={basic,circle}}
\tikzset{weights/.style={basic,rectangle}}
\tikzset{functions/.style={basic,circle,fill=blue!10}}
%--------------------------------------
% New Commands
%--------------------------------------
\newcommand{\exptd}[1]{\mathbf{E}\left[#1\right]}
\newcommand{\vt}[1]{\boldsymbol{#1}}
\newcommand{\trans}[1]{{#1}^\intercal}
\newcommand{\norm}[1]{\lvert#1\rvert}
\newcommand{\cov}[2]{\textbf{cov}\left(#1,\, #2\right)}
%--------------------------------------
% Beamer Colors
%--------------------------------------
\usepackage{xcolor}
\definecolor{blob}{RGB}{204,243,255}
\setbeamercolor{block title}{bg=blue!30}
\setbeamercolor{block body}{bg=blob}
%--------------------------------------
\title{LEVI \- Inteligência Artificial}
%\subtitle{A modern beamer theme}
\date{\today}
\author{Marcos Benevides}
\institute{Universidade Federal do Maranhão}
\begin{document}
\maketitle
\begin{frame}{Table of contents}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents%[hideallsubsections]
\end{frame}
\input{00-dimensionalidade}
\input{01-regressao}
\input{04-perceptrons}
\input{05-validacao}
% END
%--------------------------------------
{\setbeamercolor{palette primary}{fg=black, bg=yellow}
\begin{frame}[standout]
Perguntas?
\end{frame}
}
\begin{frame}{Créditos:}
Baseado nos materiais de:
\begin{itemize}
\item \href{http://deeplearning.cs.cmu.edu/}{http://deeplearning.cs.cmu.edu}
\end{itemize}
\end{frame}
\begin{frame}[allowframebreaks]{Referências}
\bibliography{references}
\bibliographystyle{apalike}
\end{frame}
\end{document}