-
Notifications
You must be signed in to change notification settings - Fork 0
/
poster.tex
193 lines (155 loc) · 3.91 KB
/
poster.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
\documentclass[final,dvipsnames]{beamer}
\PassOptionsToPackage{english}{babel}
\PassOptionsToPackage{
size = custom,
width = 80,
height = 110,
scale = 1.5,
debug,
}{beamerposter}
\usepackage{utfprpgtex-poster}
\usepackage{graphicx}
\usepackage[absolute,overlay]{textpos}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{shadings}
\usepackage{amsmath,amssymb,latexsym}
\usepackage[many]{tcolorbox}
\newtcolorbox{subblock}[1][]{
beamer,
no shadow,
width=\textwidth+7pt,
enlarge left by=-3pt,
colframe=block body.bg,
bottom=0pt,
top=0pt,
left=0pt,
right=0pt,
boxrule=0cm,
toptitle=0pt,
bottomtitle=-1pt,
fonttitle=\normalfont,
adjusted title=#1,
interior titled code={
\shade[left color=Maroon!80,right color=Dandelion,middle color=Salmon]
(title.south west) --
(title.south east) {[rounded corners] --
(title.north east) --
(title.north west)} --
(title.south west);
}
}
\title{
Automatic Driving
}
\author{
DeeCamp Team 40 - Racer Zero
}
\date{}
%% ----- Contents -----
\begin{document}
\begin{frame}[t, fragile = singleslide]{}
\begin{columns}[t]
\begin{column}{0.02\textwidth}
\end{column}
%% Logo
\begin{column}{0.16\textwidth}
\flushleft
\includegraphics[width = 0.8\columnwidth]{./assets/deecamp_logo.jpg}
\end{column}
%% ----- Title -----
\begin{column}{0.6\textwidth}
\titlepage
\end{column}
\begin{column}{0.24\textwidth}
\end{column}
\end{columns}
%% ----- Content -----
\begin{columns}[t]
%% ----- Column 1 -----
\begin{column}{0.3\textwidth}
%% Task Overview
\begin{block}{Task Overview}
\begin{itemize}
\item Our task is to deploy an end-to-end automatic driving system on a real car, including perception, model inference and control submodules.
\end{itemize}
%% Car photo
\begin{figure}[ht]
\centering
\includegraphics[width = 0.6\columnwidth]{./assets/auto_car.jpeg}
\caption{Our Automatic Driving Car}
\label{fig:label}
\end{figure}
%% System
\begin{figure}[ht]
\centering
\includegraphics[width = \columnwidth]{./assets/system.jpeg}
\caption{Our System Architecture}
\label{fig:label}
\end{figure}
\end{block}
%% Contribution
\begin{block}{Contribution}
\begin{itemize}
\item Design a reinforcement learning algorithm with PPO.
\item Design a LIDAR perception data fusion algorithm.
\item Model integration \& interface deployment.
\end{itemize}
\end{block}
%% Approach
\begin{block}{Approach}
%% Training environment
\begin{subblock}[Training Environment]
\begin{itemize}
\item We employ 8 high performance machines, each with 2 NVidia 2080Ti GPU.
\item Ray \& RLlib: We use scalable and distributed reinforcement learning lib to accelerate training process.
\end{itemize}
\begin{figure}[ht]
\centering
\includegraphics[width = 0.6\columnwidth]{./assets/ray_logo.png}
\caption{Ray Lib}
\label{fig:label}
\end{figure}
\end{subblock}
%% LIDAR Algorithm
\begin{subblock}[LIDAR Algorithm]
\begin{itemize}
\item There is a blind area near the LIDAR.
\item With 3 LIDAR, we design a data fusion and context perception algorithm to shrink blind area.
\end{itemize}
\end{subblock}
\end{block}
\end{column}
%% ----- Column 2 -----
%% RL Algorithm
\begin{column}{0.3\textwidth}
\begin{subblock}[RL Algorithm]
\begin{itemize}
\item We train our model in a simulator powered by ml-agents.
\begin{figure}[ht]
\centering
\includegraphics[width = 0.9\columnwidth]{./assets/simulator.jpeg}
\caption{Simulator}
\label{fig:label}
\end{figure}
\end{itemize}
\end{subblock}
%% CAN Interface
\begin{subblock}[CAN Interface]
\end{subblock}
\end{column}
%% ----- Column 3 -----
\begin{column}{0.3\textwidth}
%% Experiment Results
\begin{block}{Experiment Results}
\end{block}
%% Conclusion
\begin{block}{Conclusion}
\end{block}
%% Reference
\begin{block}{Reference}
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}