This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path06.tex
68 lines (53 loc) · 1.44 KB
/
06.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
\documentclass{exam}
\usepackage{amsmath, amsfonts}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage[super]{nth}
\DeclareMathOperator*{\argmin}{argmin}
\usepackage[hyperfootnotes=false]{hyperref}
\usepackage[usenames,dvipsnames]{color}
\newcommand{\note}[1]{
\noindent~\\
\vspace{0.25cm}
\fcolorbox{Red}{Orange}{\parbox{0.99\textwidth}{#1\\}}
%{\parbox{0.99\textwidth}{#1\\}}
\vspace{0.25cm}
}
\qformat{\thequestion. \textbf{\thequestiontitle}\hfill}
\bonusqformat{\thequestion. \textbf{\thequestiontitle}\hfill}
\pagestyle{headandfoot}
%%%%%% MODIFY FOR EACH SHEET!!!! %%%%%%
\newcommand{\duedate}{01.12.2021 (15:00)}
\newcommand{\due}{{\bf This assignment is due on \duedate.} }
\firstpageheader
{Due: \duedate}
{{\bf\lecture}\\ \assignment{1}}
{\lectors\\ \semester}
\runningheader
{Due: \duedate}
{\assignment{1}}
{\semester}
%%%%%% MODIFY FOR EACH SHEET!!!! %%%%%%
\firstpagefooter
{}
{\thepage}
{}
\runningfooter
{}
{\thepage}
{}
\headrule
\pointsinrightmargin
\bracketedpoints
\marginpointname{pt.}
\begin{document}
\begin{questions}
\titledquestion{Deep Q Learning}
\indent
\begin{itemize}
\item Implement the Deep Q-Network (DQN) in \emph{deep\_q\_learning.py}. Try to vary the DQN architecture (wider, deeper) and record your observations.
\item Add a replay buffer to solve the \texttt{LunarLander-v2} environment.
How does the replay buffer size affect training performance?
\end{itemize}
\end{questions}
\end{document}