File size: 6,215 Bytes
d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 d37700c d431d95 |
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
\documentclass[table]{hfstyle/hf}
% Basic packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{url}
\usepackage{lineno}
\usepackage{enumitem}
\usepackage{listings}
% Math and symbols
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{nicefrac}
\usepackage{siunitx}
% Tables and figures
\usepackage{multirow}
\usepackage{bigdelim}
\usepackage{longtable}
\usepackage{tabularray}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{makecell}
\usepackage{adjustbox}
% Color, boxes and tables
\usepackage[most]{tcolorbox}
\usepackage[table,xcdraw,dvipsnames]{xcolor}
% Text and formatting
\usepackage{xspace}
\usepackage{soul}
\usepackage{csquotes}
\usepackage{arydshln}
% Bibliography and references
\usepackage{natbib}
% Special packages
\usepackage{todonotes}
\usepackage[absolute]{textpos}
\usepackage{pifont}
\usepackage{bold-extra}
\usepackage{pgf-pie}
\usepackage{epigraph}
% Algorithms
\usepackage{algorithm}
\usepackage{algpseudocode}
% Hyperref (load last)
\usepackage{hyperref}
\definecolor{linkcolor}{RGB}{0, 0, 128}
\hypersetup{
colorlinks = true,
citecolor = linkcolor,
linkcolor = linkcolor,
urlcolor = linkcolor,
}
% Custom commands
\newcommand{\cmark}{\ding{51}}%
\newcommand{\xmark}{\ding{55}}%
\setlist[itemize]{leftmargin=*,itemsep=0em,parsep=0.3em,topsep=0.3em}
\DeclareUnicodeCharacter{2212}{\ensuremath{-}}
\addtolength{\extrarowheight}{\belowrulesep}
\aboverulesep=0pt
\belowrulesep=0pt
\definecolor{maroon}{HTML}{F26035}
\definecolor{yellow}{HTML}{FDBC42}
\definecolor{lavender}{HTML}{734f96}
\definecolor{darkergrey}{HTML}{444444}
\definecolor{midgrey}{HTML}{e6eded}
\definecolor{neutralEight}{HTML}{343434}
\definecolor{neutralFive}{HTML}{838383}
\definecolor{neutralThree}{HTML}{bebebe}
\definecolor{neutralOne}{HTML}{dedede}
\definecolor{lightgrey}{HTML}{fafcfc}
\usepackage{tikz}
\newcommand{\cblock}[3]{
\hspace{-1.5mm}
\begin{tikzpicture}
[
node/.style={square, minimum size=10mm, thick, line width=0pt},
]
\node[fill={rgb,255:red,#1;green,#2;blue,#3}] () [] {};
\end{tikzpicture}%
}
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
\definecolor{maroon}{HTML}{F26035}
\definecolor{yellow}{HTML}{FDBC42}
\definecolor{darkred}{RGB}{156, 39, 33}
\definecolor{darkblue}{RGB}{31, 90, 153}
\definecolor{forestgreen}{rgb}{0.13, 0.55, 0.13}
\definecolor{olmoDarkBlue}{HTML}{012e59}
\definecolor{olmoBlue}{HTML}{265ed4}
\definecolor{olmoLightBlue}{HTML}{012e59}
\definecolor{olmoTeal}{HTML}{00d5ff}
\definecolor{olmoYellow}{HTML}{ffbb00}
\definecolor{olmoOrange}{HTML}{ff9100}
\newcommand{\nol}[1]{{\color{purple} [nol]: #1}}
% Code snippets definitions
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mycodestyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mycodestyle}
\usepackage{setspace}
\usepackage{nicematrix}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{P}[1]{>{\centering\let\newline\\\arraybackslash\columncolor{ai2lightpink}}m{#1}}
\addtolength{\extrarowheight}{\belowrulesep}
\aboverulesep=0pt
\belowrulesep=0pt
\newcommand{\orr}[1]{\textcolor{red}{[OZ:#1]}}
\tcbuselibrary{minted}
\usemintedstyle{colorful}
\renewcommand{\theFancyVerbLine}{\color{olmoBlue}\footnotesize\arabic{FancyVerbLine}}
\setminted[python]{
linenos,
breaklines,
fontsize=\footnotesize,
xleftmargin=2em
}
\crefname{tcb@cnt@pbox}{code}{code}
\Crefname{tcb@cnt@pbox}{Code}{Code}
\crefname{assumption}{assumption}{assumption}
\Crefname{assumption}{Assumption}{Assumptions}
\newtcolorbox[auto counter]{pbox}[2][]{
breakable,
colback=white,
title=\textbf{Code~\thetcbcounter: #2},
#1,fonttitle=\sffamily,
fontupper=\sffamily,
arc=10pt,
colframe=hf4,
coltitle=hf3,
colbacktitle=hf4,
toptitle=0.25cm,
bottomtitle=0.125cm
}
\input{preamble}
\input{math_commands}
\input{handles}
\input{snippets/code_specs}
\title{
Robot Learning: A Tutorial
}
\newcommand{\huggingface}{\raisebox{-1.5pt}{\includegraphics[height=1.05em]{logos/hf.pdf}}\xspace}
\newcommand{\coreContrib}{\raisebox{.33em}{\hspace{.05em}\includegraphics[height=.5em]{logos/core.png}}\xspace}
\newcommand{\hf}{\raisebox{.28em}{\hspace{.05em}\includegraphics[height=1em]{logos/hf.pdf}}\xspace}
\newcommand{\ensps}{\raisebox{.3em}{\hspace{.05em}\includegraphics[height=.65em]{logos/ensps_logo.pdf}}\xspace}
\newcommand{\oxford}{\raisebox{.3em}{\hspace{.05em}\includegraphics[height=1em]{logos/oxford_logo.png}}\xspace}
\authorOne[]{Francesco Capuano \oxford \hf}
\authorOne[]{Caroline Pascal\hf}
\authorOne[]{Adil Zouitine\hf}
\authorOne[]{Thomas Wolf\hf}
\authorOne[]{Michel Aractingi\hf}
\contribution[]{\oxford University of Oxford, \hf Hugging Face}
\newcommand{\fix}{\marginpar{FIX}}
\newcommand{\new}{\marginpar{NEW}}
\abstract{
\input{sections/00_abstract}
}
\begin{document}
\maketitle
\tableofcontents
\input{sections/A_foreword.tex}
\newpage
\input{sections/01_introduction}
\newpage
\input{sections/02_classic_robotics}
\newpage
\input{sections/03_reinforcement_learning.tex}
\newpage
\input{sections/04_imitation_learning.tex}
\newpage
\input{sections/05_foundation_models.tex}
\newpage
\input{sections/07_conclusions.tex}
\bibliographystyle{hfstyle/plainnat}
\bibliography{main}
\end{document}
|