forked from LxMLS/lxmls-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guide.tex
125 lines (84 loc) · 2.84 KB
/
guide.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
\documentclass{report}
\usepackage[a4paper,top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
\usepackage{url}
\usepackage{palatino}
\usepackage{mathpazo}
\linespread{1.05} % Palatino needs more leading (space between lines)
\usepackage[procnames]{listings}
\usepackage{bm}
\input{pythonlisting}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsmath}
\usepackage{eucal}
\usepackage{latexsym}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[algo2e,boxed,linesnumbered]{algorithm2e}
\usepackage{natbib}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage[textwidth=1.6cm,textsize=footnotesize]{todonotes}
\usepackage{multirow}
%%% VER
\usepackage{fancybox}
%Hyper ref must be the last import
\usepackage{qtree}
\input{listings_def}
\input{math}
\newtheorem{theorem}{\textbf{Theorem}}[chapter]
\newtheorem{definition}{\textbf{Definition}}[chapter]
\newtheorem{example}{\textbf{Example}}[chapter]
\newtheorem{remark}{\textbf{Remark}}[chapter]
\newtheorem{exercise}{\textbf{Exercise}}[chapter]
\newcommand{\afm}[1]{{\textcolor{blue}{\bf [{\sc afm:} #1]}}}
\newcommand{\jg}[1]{{\textcolor{red}{\bf [{\sc jg:} #1]}}}
\newcommand{\gka}[1]{{\textcolor{green}{\bf [{\sc gka:} #1]}}}
\newcommand{\posi}{Part-of-Speech induction}
\newcommand{\pos}{Part-of-Speech}
\newcommand*{\code}[1]{\texttt{#1}}
\newcommand*{\pd}[2]{\frac{\partial#1}{\partial#2}}
\newcommand*{\pdd}[2]{\frac{\partial^2 #1}{\partial #2^2}}
\newcommand*{\vect}[1]{\ensuremath{\bm{#1}}}
\newcommand\independent{\protect\mathpalette{\protect\independenT}{\perp}}
\def\independenT#1#2{\mathrel{\rlap{$#1#2$}\mkern2mu{#1#2}}}
\begin{document}
%\author{Jo\~{a}o Gra\c{c}a \and Andr\'{e} Martins \and Luis Sarmento}
\title{LxMLS - Lab Guide}
\maketitle
\renewcommand{\chaptername}{Day}
\setcounter{chapter}{-1}
%\chapter{Introduction}
\chapter{Basic Tutorials}
\input{pages/intro/intro.tex}
%\section*{Related Exercises in Python}
%\input{pages/day0/ipython}
\section{Python Exercises}
\input{pages/day0/scipy}
\chapter{\label{day:classification}Classification}
\input{pages/classification/classification.tex}
\chapter{\label{day:seq}Sequence Models}
\input{pages/sequences/sequences.tex}
\chapter{\label{day:seq_disc}Learning Structured Predictors}
\input{pages/seq_discriminative/seq_discriminative.tex}
\chapter{Syntax and Parsing}
\input{pages/parsing/parsing.tex}
%\chapter{Unsupervised Learning}
%\input{pages/unsupervised/unsupervised.tex}
\chapter{Big Data I: Introduction}
\input{pages/bigdata/introduction.tex}
\chapter{Big Data II: Distributed EM}
\input{pages/bigdata/em.tex}
% \appendix
% \chapter{Installation Guide}
% \input{pages/appendix/installation}
% \chapter{Data Sets}
% \input{pages/appendix/data-sets}
%\bibliographystyle{plain}
\bibliographystyle{apalike}
\bibliography{guide}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: