forked from Han8931/deep_statistical_learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
executable file
·120 lines (99 loc) · 2.95 KB
/
main.tex
File metadata and controls
executable file
·120 lines (99 loc) · 2.95 KB
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
\documentclass[oneside, a4paper,11pt]{book}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage[T1]{fontenc} % use 8-bit T1 fonts
\usepackage{hyperref} % hyperlinks
\usepackage{url} % simple URL typesetting
\usepackage{booktabs} % professional-quality tables
\usepackage{nicefrac} % compact symbols for 1/2, etc.
\usepackage{microtype} % microtypography
\usepackage{listings}
\usepackage{xcolor}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
\usepackage[autostyle]{csquotes}
\usepackage{dsfont}
% \usepackage{algorithm,algpseudocode}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{multicol}
\usepackage{hyperref}
\usepackage{amssymb}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{lemma}
\newtheorem{proof}{proof}
\newtheorem{definition}{Definition}
\newtheorem{proposition}{Proposition}
\newtheorem{corollary}{Corollary}
\newcommand\scalemath[2]{\scalebox{#1}{\mbox{\ensuremath{\displaystyle #2}}}}
\newcommand{\cyan}[1]{\textcolor{cyan}{#1}}
\input{math-com.tex}
\begin{document}
\begin{titlepage}
\begin{center}
\vspace*{5.5cm}
\textbf{\Huge Deep Statistical Learning}\\
\vspace{2.5cm}
\includegraphics[width=0.4\textwidth]{./logo/ntunlp_logo.png}\\
\vspace{1.5cm}
\Large My Note \\
\vspace{1.5cm}
Han Cheol Moon\\
School of Computer Science and Engineering\\
Nanyang Technological University\\
Singapore\\
\texttt{hancheol001@edu.ntu.edu.sg}
\date{\today}
\end{center}
\end{titlepage}
% \frontmatter
% \maketitle
\tableofcontents
\newpage
\mainmatter
\include{./sections/intro}
\include{./sections/bayes/bayes}
\include{./sections/learning}
\part{Kernel Methods}
\input{./sections/kernel/kernel_methods}
\input{./sections/gaussian_process/gp}
\input{./sections/svm/svm}
% \include{./sections/explicit_models/explicit}
\part{Generative Modeling}
\include{./sections/sampling}
\include{./sections/gibbs}
\include{./sections/lda/topic_modeling}
\input{./sections/generative/generative}
% \input{./sections/hmm/hmm}
\input{./sections/diffusion/diffusion_model}
\part{Natural Language Processing}
\input{./sections/nlp/nlp}
\backmatter
% bibliography, glossary and index would go here.
\nocite{*}
\bibliographystyle{unsrt}
\bibliography{references}
\end{document}