Newer
Older
Presentations / Kaggle / NIPS / mchrzasz.tex
@mchrzasz mchrzasz on 17 Dec 2015 13 KB an update
  1. \documentclass[11 pt,xcolor={dvipsnames,svgnames,x11names,table}]{beamer}
  2.  
  3. \usepackage[english]{babel}
  4. \usepackage{polski}
  5.  
  6.  
  7. \usetheme[
  8. bullet=circle, % Other option: square
  9. bigpagenumber, % circled page number on lower right
  10. topline=true, % colored bar at the top of the frame
  11. shadow=false, % Shading for beamer blocks
  12. watermark=BG_lower, % png file for the watermark
  13. ]{Flip}
  14.  
  15. %\logo{\kern+1.em\includegraphics[height=1cm]{SHiP-3_LightCharcoal}}
  16.  
  17. \usepackage[lf]{berenis}
  18. \usepackage[LY1]{fontenc}
  19. \usepackage[utf8]{inputenc}
  20.  
  21. \usepackage{emerald}
  22. \usefonttheme{professionalfonts}
  23. \usepackage[no-math]{fontspec}
  24. \defaultfontfeatures{Mapping=tex-text} % This seems to be important for mapping glyphs properly
  25.  
  26. \setmainfont{Gillius ADF} % Beamer ignores "Experience in Machine Learning and Data Analysis applications to business, medicine and science, including but not limited to image recognition, EEG/MRI decoding, Diabetic Retinopathy Detection, High Energy Physics.main font" in favor of sans font
  27. \setsansfont{Gillius ADF} % This is the font that beamer will use by default
  28. % \setmainfont{Gill Sans Light} % Prettier, but harder to read
  29.  
  30. \setbeamerfont{title}{family=\fontspec{Gillius ADF}}
  31.  
  32. \input t1augie.fd
  33.  
  34. %\newcommand{\handwriting}{\fontspec{augie}} % From Emerald City, free font
  35. %\newcommand{\handwriting}{\usefont{T1}{fau}{m}{n}} % From Emerald City, free font
  36. % \newcommand{\handwriting}{} % If you prefer no special handwriting font or don't have augie
  37.  
  38. %% Gill Sans doesn't look very nice when boldfaced
  39. %% This is a hack to use Helvetica instead
  40. %% Usage: \textbf{\forbold some stuff}
  41. %\newcommand{\forbold}{\fontspec{Arial}}
  42.  
  43. \usepackage{graphicx}
  44. \usepackage[export]{adjustbox}
  45.  
  46. \usepackage{amsmath}
  47. \usepackage{amsfonts}
  48. \usepackage{amssymb}
  49. \usepackage{bm}
  50. \usepackage{colortbl}
  51. \usepackage{mathrsfs} % For Weinberg-esque letters
  52. \usepackage{cancel} % For "SUSY-breaking" symbol
  53. \usepackage{slashed} % for slashed characters in math mode
  54. \usepackage{bbm} % for \mathbbm{1} (unit matrix)
  55. \usepackage{amsthm} % For theorem environment
  56. \usepackage{multirow} % For multi row cells in table
  57. \usepackage{arydshln} % For dashed lines in arrays and tables
  58. \usepackage{siunitx}
  59. \usepackage{xhfill}
  60. \usepackage{grffile}
  61. \usepackage{textpos}
  62. \usepackage{subfigure}
  63. \usepackage{tikz}
  64.  
  65. %\usepackage{hepparticles}
  66. \usepackage[italic]{hepparticles}
  67.  
  68. \usepackage{hepnicenames}
  69.  
  70. % Drawing a line
  71. \tikzstyle{lw} = [line width=20pt]
  72. \newcommand{\topline}{%
  73. \tikz[remember picture,overlay] {%
  74. \draw[crimsonred] ([yshift=-23.5pt]current page.north west)
  75. -- ([yshift=-23.5pt,xshift=\paperwidth]current page.north west);}}
  76.  
  77.  
  78.  
  79. % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
  80. \usepackage{tikzfeynman} % For Feynman diagrams
  81. \usetikzlibrary{arrows,shapes}
  82. \usetikzlibrary{trees}
  83. \usetikzlibrary{matrix,arrows} % For commutative diagram
  84. % http://www.felixl.de/commu.pdf
  85. \usetikzlibrary{positioning} % For "above of=" commands
  86. \usetikzlibrary{calc,through} % For coordinates
  87. \usetikzlibrary{decorations.pathreplacing} % For curly braces
  88. % http://www.math.ucla.edu/~getreuer/tikz.html
  89. \usepackage{pgffor} % For repeating patterns
  90.  
  91. \usetikzlibrary{decorations.pathmorphing} % For Feynman Diagrams
  92. \usetikzlibrary{decorations.markings}
  93. \tikzset{
  94. % >=stealth', %% Uncomment for more conventional arrows
  95. vector/.style={decorate, decoration={snake}, draw},
  96. provector/.style={decorate, decoration={snake,amplitude=2.5pt}, draw},
  97. antivector/.style={decorate, decoration={snake,amplitude=-2.5pt}, draw},
  98. fermion/.style={draw=gray, postaction={decorate},
  99. decoration={markings,mark=at position .55 with {\arrow[draw=gray]{>}}}},
  100. fermionbar/.style={draw=gray, postaction={decorate},
  101. decoration={markings,mark=at position .55 with {\arrow[draw=gray]{<}}}},
  102. fermionnoarrow/.style={draw=gray},
  103. gluon/.style={decorate, draw=black,
  104. decoration={coil,amplitude=4pt, segment length=5pt}},
  105. scalar/.style={dashed,draw=black, postaction={decorate},
  106. decoration={markings,mark=at position .55 with {\arrow[draw=black]{>}}}},
  107. scalarbar/.style={dashed,draw=black, postaction={decorate},
  108. decoration={markings,mark=at position .55 with {\arrow[draw=black]{<}}}},
  109. scalarnoarrow/.style={dashed,draw=black},
  110. electron/.style={draw=black, postaction={decorate},
  111. decoration={markings,mark=at position .55 with {\arrow[draw=black]{>}}}},
  112. bigvector/.style={decorate, decoration={snake,amplitude=4pt}, draw},
  113. }
  114.  
  115. % TIKZ - for block diagrams,
  116. % from http://www.texample.net/tikz/examples/control-system-principles/
  117. % \usetikzlibrary{shapes,arrows}
  118. \tikzstyle{block} = [draw, rectangle,
  119. minimum height=3em, minimum width=6em]
  120.  
  121.  
  122.  
  123.  
  124. \usetikzlibrary{backgrounds}
  125. \usetikzlibrary{mindmap,trees} % For mind map
  126. \newcommand{\degree}{\ensuremath{^\circ}}
  127. \newcommand{\E}{\mathrm{E}}
  128. \newcommand{\Var}{\mathrm{Var}}
  129. \newcommand{\Cov}{\mathrm{Cov}}
  130. \newcommand\Ts{\rule{0pt}{2.6ex}} % Top strut
  131. \newcommand\Bs{\rule[-1.2ex]{0pt}{0pt}} % Bottom strut
  132.  
  133. \graphicspath{{images/}} % Put all images in this directory. Avoids clutter.
  134.  
  135. % SOME COMMANDS THAT I FIND HANDY
  136. % \renewcommand{\tilde}{\widetilde} % dinky tildes look silly, dosn't work with fontspec
  137. \newcommand{\comment}[1]{\textcolor{comment}{\footnotesize{#1}\normalsize}} % comment mild
  138. \newcommand{\Comment}[1]{\textcolor{Comment}{\footnotesize{#1}\normalsize}} % comment bold
  139. \newcommand{\COMMENT}[1]{\textcolor{COMMENT}{\footnotesize{#1}\normalsize}} % comment crazy bold
  140. \newcommand{\Alert}[1]{\textcolor{Alert}{#1}} % louder alert
  141. \newcommand{\ALERT}[1]{\textcolor{ALERT}{#1}} % loudest alert
  142. %% "\alert" is already a beamer pre-defined
  143. \newcommand*{\Scale}[2][4]{\scalebox{#1}{$#2$}}%
  144.  
  145. \def\Put(#1,#2)#3{\leavevmode\makebox(0,0){\put(#1,#2){#3}}}
  146.  
  147. \usepackage{gmp}
  148. \usepackage[final]{feynmp-auto}
  149.  
  150. \usepackage[backend=bibtex,style=numeric-comp,firstinits=true]{biblatex}
  151. \bibliography{bib}
  152. \setbeamertemplate{bibliography item}[text]
  153.  
  154. \makeatletter\let\frametextheight\beamer@frametextheight\makeatother
  155.  
  156. % suppress frame numbering for backup slides
  157. % you always need the appendix for this!
  158. \newcommand{\backupbegin}{
  159. \newcounter{framenumberappendix}
  160. \setcounter{framenumberappendix}{\value{framenumber}}
  161. }
  162. \newcommand{\backupend}{
  163. \addtocounter{framenumberappendix}{-\value{framenumber}}
  164. \addtocounter{framenumber}{\value{framenumberappendix}}
  165. }
  166.  
  167.  
  168. \definecolor{links}{HTML}{2A1B81}
  169. %\hypersetup{colorlinks,linkcolor=,urlcolor=links}
  170.  
  171. % For shapo's formulas:
  172. \def\lsi{\raise0.3ex\hbox{$<$\kern-0.75em\raise-1.1ex\hbox{$\sim$}}}
  173. \def\gsi{\raise0.3ex\hbox{$>$\kern-0.75em\raise-1.1ex\hbox{$\sim$}}}
  174. \newcommand{\lsim}{\mathop{\lsi}}
  175. \newcommand{\gsim}{\mathop{\gsi}}
  176. \newcommand{\wt}{\widetilde}
  177. %\newcommand{\ol}{\overline}
  178. \newcommand{\Tr}{\rm{Tr}}
  179. \newcommand{\tr}{\rm{tr}}
  180. \newcommand{\eqn}[1]{&\hspace{-0.7em}#1\hspace{-0.7em}&}
  181. \newcommand{\vev}[1]{\rm{$\langle #1 \rangle$}}
  182. \newcommand{\abs}[1]{\rm{$\left| #1 \right|$}}
  183. \newcommand{\eV}{\rm{eV}}
  184. \newcommand{\keV}{\rm{keV}}
  185. \newcommand{\GeV}{\rm{GeV}}
  186. \newcommand{\im}{\rm{Im}}
  187. \newcommand{\disp}{\displaystyle}
  188. \def\be{\begin{equation}}
  189. \def\ee{\end{equation}}
  190. \def\ba{\begin{eqnarray}}
  191. \def\ea{\end{eqnarray}}
  192. \def\d{\partial}
  193. \def\l{\left(}
  194. \def\r{\right)}
  195. \def\la{\langle}
  196. \def\ra{\rangle}
  197. \def\e{{\rm e}}
  198. \def\Br{{\rm Br}}
  199.  
  200.  
  201.  
  202. \author{ {\fontspec{Trebuchet MS}Marcin Chrz\k{a}szcz} (Universit\"{a}t Z\"{u}rich, IFJ PAN)}
  203. \institute{UZH}
  204. \title[Physics Prize; Flavour of Physics Challange ]{Physics Prize; Flavour of Physics Challange}
  205. \date{25 September 2014}
  206.  
  207.  
  208. \begin{document}
  209. \tikzstyle{every picture}+=[remember picture]
  210.  
  211. {
  212. \setbeamertemplate{sidebar right}{\llap{\includegraphics[width=\paperwidth,height=\paperheight]{bubble2}}}
  213. \begin{frame}[c]%{\phantom{title page}}
  214. \begin{center}
  215. \begin{center}
  216. \begin{columns}
  217. \begin{column}{0.75\textwidth}
  218. \flushright\fontspec{Trebuchet MS}\bfseries \Huge {Physics Prize Flavours of Physics Challange}
  219. \end{column}
  220. \begin{column}{0.02\textwidth}
  221. {~}
  222. \end{column}
  223. \begin{column}{0.23\textwidth}
  224. % \hspace*{-1.cm}
  225. \vspace*{-3mm}
  226. \includegraphics[width=0.6\textwidth]{lhcb-logo}
  227. \end{column}
  228. \end{columns}
  229. \end{center}
  230. \quad
  231. \vspace{3em}
  232. \begin{columns}
  233. \begin{column}{0.44\textwidth}
  234. \flushright \vspace{-1.8em} {\fontspec{Trebuchet MS} \Large Marcin Chrząszcz\\\vspace{-0.1em}\small \href{mailto:mchrzasz@cern.ch}{mchrzasz@cern.ch}}
  235.  
  236. \end{column}
  237. \begin{column}{0.53\textwidth}
  238. \includegraphics[height=1.3cm]{uzh-transp}{~}{~}
  239. \includegraphics[height=1.1cm]{ifj.png}
  240. \end{column}
  241. \end{columns}
  242.  
  243. \vspace{1em}
  244. \footnotesize\textcolor{gray}{Universit\"{a}t Z\"{u}rich, \\ Institute of Nuclear Physics, Polish Academy of Science}\normalsize\\
  245. \vspace{0.5em}
  246.  
  247. \textcolor{normal text.fg!50!Comment}{NIPS conference, Montreal\\December 11, 2015}
  248. \end{center}
  249. \end{frame}
  250. }
  251.  
  252. \begin{frame}[c]{From domain to challenge and back}
  253. {~}
  254. \begin{minipage}{\textwidth}
  255. \includegraphics[width=0.95\textwidth]{images/problem.png}\\
  256. {\color{ PineGreen}{$\Rrightarrow$}} Not all solutions can be reimported back to HEP {\color{ PineGreen}{$\rightarrowtail$}} Physics prize for the ones that can!
  257. \end{minipage}
  258. \vspace*{2.cm}
  259. \end{frame}
  260.  
  261. \begin{frame}[c]{Physics Prize}
  262. {~}
  263. \begin{minipage}{\textwidth}
  264. {\color{ PineGreen}{$\Rrightarrow$}} HEP meets ML Award\\
  265. An award will be given to the team that, as judged by the LHCb collaboration members on the organizing committee, creates a model that is the most useful for the LHCb experiment. The selection criteria include:
  266. \begin{itemize}
  267. \item The simplicity/straightforwardness/originality of the approach.
  268. \item The computing requirements (CPU and memory demands).
  269. \item The suitability for use in production.
  270. \item The robustness with respect to lack of training statistics.
  271. \end{itemize}
  272. The winning team will be awarded $2000~\$ $ and invited to meet the LHCb collaboration physicists at dedicated {\color{PineGreen}{\href{https://indico.cern.ch/event/433556/other-view?view=lhcb_meeting}{workshop}}} held by University of Zurich on Feb. 18-20, 2016. \\ We thank Intel for supporting this prize.
  273.  
  274. \pause
  275. \begin{exampleblock}{Upgrade:}
  276. Due to high level of submitted solutions we decided to increase award TWO physics prices, $2000~\$ $ each.
  277. \end{exampleblock}
  278.  
  279.  
  280.  
  281. \end{minipage}
  282. \vspace*{2.cm}
  283. \end{frame}
  284.  
  285. \begin{frame}[c]{Other members of the physics prize committee}
  286. {~}
  287. \begin{minipage}{\textwidth}
  288. \begin{center}
  289. \begin{columns}
  290. \column{0.22\textwidth}
  291. \includegraphics[width=0.93\textwidth]{images/pkoppenburg.jpg} \\P. Koppenburg
  292. \column{0.22\textwidth}
  293. \includegraphics[width=0.93\textwidth, height=2cm]{images/tblake.pdf} \\T. Blake
  294. \column{0.22\textwidth}
  295. \includegraphics[width=0.83\textwidth]{images/Marc-OlivierBettler.jpg} \\M. Bettler
  296.  
  297. \column{0.22\textwidth}
  298. \includegraphics[width=0.93\textwidth]{images/dettori2.jpg} \\F. Dettori
  299.  
  300. \end{columns}
  301.  
  302. \begin{columns}
  303. \column{0.22\textwidth}
  304. \column{0.23\textwidth}
  305. \includegraphics[width=0.93\textwidth]{images/andrey.jpg} \\A. Ustyuzhanin
  306. \column{0.27\textwidth}
  307. \includegraphics[width=0.73\textwidth]{images/tatiana.png} \\T. Likhomanenko
  308.  
  309. \column{0.22\textwidth}
  310.  
  311. \end{columns}
  312.  
  313. \end{center}
  314.  
  315. \end{minipage}
  316. \vspace*{2.cm}
  317. \end{frame}
  318.  
  319.  
  320. \begin{frame}[c]{And the winners are:}
  321. {~}
  322. \begin{minipage}{\textwidth}
  323. %\pause
  324. \begin{columns}
  325. \column{0.2\textwidth}
  326. \includegraphics[width=0.95\textwidth]{images/gaitan.pdf}
  327. \column{0.8\textwidth}
  328. {\color{PineGreen}{Vincens Gaitan}}, R\&D director in the Grupo AIA. Studied physics and got a PhD in Machine Learning in 1993 with the ALEPH. \\
  329. Very good physics understanding of the problem and the tests!
  330.  
  331.  
  332.  
  333.  
  334. \end{columns}
  335. {~}\\{~}\\
  336.  
  337. {\color{PineGreen}{ $\Rrightarrow$ }} Derived a number of very different approaches (some being hacks) that are well documented in this {\color{PineGreen}{ \href{http://blog.kaggle.com/2015/10/27/passing-the-tests-strategies-used-in-cerns-flavour-of-physics/}{blog} }}
  338.  
  339. {\color{PineGreen}{ $\Rrightarrow$ }} Interesting ideas of doping the background training sample with simulated events from other channel, thus forcing the classifier to be less dependent on data-MC differences.
  340.  
  341.  
  342. \begin{exampleblock}{}
  343. This technique might help in the every analysis where DATA/MC differences are problematic.
  344. \end{exampleblock}
  345.  
  346.  
  347. \end{minipage}
  348. \vspace*{2.cm}
  349. \end{frame}
  350.  
  351. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  352.  
  353. \begin{frame}[c]{And the winners are:}
  354. {~}
  355. \begin{minipage}{\textwidth}
  356. %\pause
  357. \begin{columns}
  358. \column{0.2\textwidth}
  359. \includegraphics[width=0.95\textwidth]{images/raklin.jpg}
  360. \column{0.8\textwidth}
  361. {\color{PineGreen}{Alexander Rakhlin}}, self-employed, previously
  362. Uniastrum Bank.\\ Finished National Research University of Electronic Technology (MIET).
  363.  
  364.  
  365.  
  366. \end{columns}
  367. {~}\\
  368.  
  369. {\color{PineGreen}{ $\Rrightarrow$ }} Experience in Machine Learning and Data Analysis applications to business, medicine and science, including but not limited to image recognition, EEG/MRI decoding, Diabetic Retinopathy Detection, \textbf{High Energy Physics}.
  370.  
  371.  
  372. {\color{PineGreen}{ $\Rrightarrow$ }} This solutions really makes us optimistic as it solves problem that we are usually facing in rare decays:
  373. \begin{itemize}
  374. \item Small statistics
  375. \item Imperfect MC
  376. \item Translating information from control to signal channel.
  377. \end{itemize}
  378.  
  379.  
  380.  
  381. \end{minipage}
  382. \vspace*{2.cm}
  383. \end{frame}
  384. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5
  385.  
  386. \begin{frame}[c]{Advertisement}
  387. {~}
  388. \begin{minipage}{\textwidth}
  389. {\color{PineGreen}{ $\Rrightarrow$ }} The physics winners are invited to the ''Heavy Flavour Data mining'' workshop at Zurich.\\
  390. {\color{PineGreen}{ $\Rrightarrow$ }} You are ALL INVITED! Please come and help us discover NP.\\
  391. {\color{PineGreen}{ $\Rrightarrow$ }} Register: {\color{PineGreen}{ \href{https://indico.cern.ch/event/433556/other-view?view=lhcb_meeting}{LINK} }}.
  392. \begin{center}
  393. \includegraphics[width=0.75\textwidth]{images/zurich-switzerland.jpg}
  394. \end{center}
  395. \end{minipage}
  396. \vspace*{2.cm}
  397. \end{frame}
  398.  
  399. \backupbegin
  400.  
  401.  
  402. \backupend
  403.  
  404. \end{document}