-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
63 lines (40 loc) · 916 Bytes
/
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
\documentclass[11pt]{article}
%Importing custom commands
\usepackage{latex_goon/latex_goon}
\title{Decoder-Only Transformers}
\author{Garrett Goon}
\begin{document}
\vspace{1truecm}
%
%
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\begin{center}
{\huge \bf{Decoder-Only Transformers}}
\end{center}
\begin{abstract}
Notes on various aspects of Decoder-Only Transformers. Conventions are in
App.~\ref{app_conventions}.
\end{abstract}
\tableofcontents
\renewcommand*{\thefootnote}{\arabic{footnote}}
\setcounter{footnote}{0}
\include{architecture.tex}
\newpage
\include{ssm.tex}
\newpage
\include{training.tex}
\newpage
\include{finetuning.tex}
\newpage
\include{parallelism.tex}
\newpage
\include{vision.tex}
\newpage
\include{moe.tex}
\newpage
\include{inference.tex}
\newpage
\include{appendix.tex}
\bibliographystyle{latex_goon/utphys}
\bibliography{bibliography}
\end{document}