-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
62 lines (49 loc) · 1.32 KB
/
main.tex
File metadata and controls
62 lines (49 loc) · 1.32 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
\documentclass[%
a4paper,
fontsize=10pt,
landscape,
pagesize,
headinclude,
DIV=12,
BCOR=0mm,
]{scrartcl}
\usepackage[margin=5mm,headsep=1mm,footskip=1mm]{geometry}
\usepackage{wrapfig}
% Uncomment for debugging layout
%\usepackage{showframe}
% Include preamble and shortcuts
\input{preamble}
\usepackage{shortcuts}
% Set graphic path
\graphicspath{{./figures/}}
% Document metadata
\title{MP - Cheat Sheet}
\author{Ramon Kaspar}
\date{26.05.2025}
\hypersetup{
pdftitle={Machine Perception - Cheat Sheet},
}
% === BEGIN DOCUMENT ===
\begin{document}
\begin{multicols*}{4}
\raggedcolumns % Prevent forced column balancing
% Suppress enumeration of sections if desired
%\setcounter{secnumdepth}{0}
% Optional title
%\maketitle
% Content sections
% \input{sections/_example_}
\input{sections/01_basics}
\input{sections/02_CNN}
\input{sections/03_RNN}
\input{sections/04_VAE}
\input{sections/05_Autoregressive-Models}
\input{sections/06_GAN}
\input{sections/07_Normalizing-Flows}
\input{sections/08_Diffusion-Model}
\input{sections/09_Foundation-Model}
\input{sections/10_Parametric-Human-Body-Model}
\input{sections/11_Egocentric-CV}
\input{sections/12_Implicit-Representations}
\end{multicols*}
\end{document}