-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
83 lines (53 loc) · 1.19 KB
/
main.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
\documentclass[10pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{bm}
\usepackage{amssymb}
\usepackage{float}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfig}
\usepackage[table,xcdraw]{xcolor}
\usepackage{hyperref}
\graphicspath{{images/}}
\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareMathOperator*{\argmin}{arg\,min}
\newcommand{\cmp}[1]{\bm{\tilde{#1}}}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\author{Nicolò Brandizzi}
\title{Machine Learning Summaries and Solved Exercises}
\begin{document}
\maketitle
\tableofcontents
\newpage
\input{Chapters/intro.tex}
\newpage
\input{Chapters/bayes.tex}
\newpage
\input{Chapters/linear_models.tex}
\newpage
\input{Chapters/probabilistic_classification.tex}
\newpage
\input{Chapters/multitple_learners.tex}
\newpage
\input{Chapters/mdp.tex}
\newpage
\input{Chapters/hmm.tex}
\newpage
\input{Chapters/ndrl.tex}
\newpage
\input{Chapters/dim_reduction.tex}
\newpage
\input{Chapters/kernel.tex}
\newpage
\input{Chapters/ann.tex}
\newpage
\input{Chapters/cnn.tex}
\newpage
\input{Chapters/unsupervised.tex}
\newpage
\newpage
\input{Chapters/exams.tex}
\end{document}