-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.tex
123 lines (82 loc) · 3.99 KB
/
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
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
\documentclass[11pt]{article}
% --- Packages ---
\usepackage[usenames, dvipsnames]{color} % Cool colors
\usepackage{enumerate, amsmath, amsthm, amssymb, mathrsfs, algorithm, algpseudocode, fontawesome, pifont, subfig, fullpage, csquotes, dashrule, tikz, bbm, booktabs, bm, hyperref, wasysym}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage[numbers]{natbib}
\usepackage[normalem]{ulem}
% --- Misc. ---
\hbadness=10000 % No "underfull hbox" messages.
\setlength{\parindent}{0pt} % Removes all indentation.
% -- Commands --
\input{commands}
% Nice coloring of references.
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
breaklinks=true,
urlcolor=dblue,
linkcolor=dgreen,
linkbordercolor=dgreen,
citecolor=dblue,
citebordercolor=dblue
}
\title{ICML 2019 Notes \\ \Large{Long Beach, CA, USA}}
\author{David Abel\footnote{\durl{http://david-abel.github.io}} \\ \durl{[email protected]}}
\date{June 2019}
\begin{document}
\maketitle
\tableofcontents
\newpage
This document contains notes I took during the events I managed to make it to at ICML, in Long Beach, CA, USA. Please feel free to distribute it and shoot me an email at \durl{[email protected]} if you find any typos or other items that need correcting.
\section{Conference Highlights}
I spent most of my time at the RL sessions this round (and sadly missed all of the keynotes), so most of my reflections (and notes) are concentrated on RL:
\begin{enumerate}
\item Lots of great work on off-policy evaluation and off-policy learning (see, for instance, work by \citet{hanna2018importance,le2019batch,fujimoto2018off,gottesman2019combining}, and talks in Section~\ref{sec:off_pol}). These problem settings are really important, as I (and many others) anticipate RL applications will come along with loads of data from sub-optimal policies.
\item Exploration was a hot topic again, and rightfully so (see work by~\citet{mavrin2019distributional,fatemi2019dead,hazan2018provably,shani2019exploration}). Along with off-policy evaluation (and a few others), it's one of the foundational problems in RL that we're in a good position to make serious progress on at the moment.
\item Some really nice work continuing to clarify distributional RL~\cite{bellemare2017distributional} (see work by~\cite{rowland2019statistics,mavrin2019distributional,qu2018nonlinear}).
\item The AI for climate change workshop on Friday was fantastic and extremely well attended (standing room only for the talks I was there for). I've said this after previous conferences, but: as we all know, there are profoundly important problems, and the tools of ML can be extremely effective in their current form.
\item I really think we need to standardize evaluation in RL. Not that we only need a single method for doing so, or a single domain, but at the moment there is far too much variance in evaluation protocols.
\item Loved the panel at the RL for real life workshop (see Section~\ref{sec:panel})
\end{enumerate}
% ------------
% -- Sunday --
% ------------
\newpage
\section{Monday June 10th: Tutorials}
\input{days/monday_6_10_19.tex}
% ------------
% -- Monday --
% ------------
\newpage
\section{Tuesday June 11th: Main Conference}
\input{days/tuesday_6_11_19.tex}
% ------------
% -- Tuesday --
% ------------
\newpage
\section{Wednesday June 12th: Main Conference}
\input{days/wednesday_6_12_19.tex}
% --------------
% -- Thursday --
% --------------
\newpage
\section{Thursday June 13th: Main Conference}
\input{days/thursday_6_13_19.tex}
% ------------
% -- Friday --
% ------------
\newpage
\section{Friday June 14th: Workshops}
\input{days/friday_6_14_19.tex}
\section*{Edits}
Many thanks to the following individuals for sending along helpful edits/catching typos:
\begin{itemize}
\item Zeno Zantner for catching typos.
\item Brandon Amos for catching typos.
\end{itemize}
% --- Bibliography ---
\newpage
\bibliographystyle{plainnat}
\bibliography{icml}
\end{document}