提交 f1a5927a authored 作者: Frederic's avatar Frederic

Add sharing and futur section.

上级 1356a6f8
all: presentation.pdf
all: presentation.pdf sharing.pdf
clean:
rm -f pygpu_ndarray.so core.* *.o *~
......@@ -11,3 +11,9 @@ presentation.pdf: presentation.tex
pdflatex presentation
bibtexall
pdflatex presentation
sharing.pdf: sharing.tex
pdflatex sharing
pdflatex sharing
bibtexall
pdflatex sharing
......@@ -326,6 +326,8 @@ print f([0, 1, 2])
\item Has been used for scientific publications, Kaggle competitions, used by many researchers at LISA
\item Still under rapid development, however the API shouldn't break without warning
\item Documentation is incomplete, but quickly improving
\item Active mailing list with participants from outside our lab
\item Core technology for a least one Silicon-Valley start-up
\item Features currently in development:
\begin{itemize}
\item Recurrent neural networks (RNNs), based on the GroundHog framework developed at LISA
......
\documentclass[utf8x,xcolor=pdftex,dvipsnames,table]{beamer}
\usetheme{Malmoe} % Now it's a beamer presentation with the lisa theme!
\setbeamertemplate{footline}[page number]
\usecolortheme{beaver}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[utf8x]{inputenc}
%\logo{\includegraphics[width=.8in]{UdeM_NoirBleu_logo_Marie_crop}}
\usepackage{listings}
\newcommand{\superscript}[1]{\ensuremath{^{\textrm{#1}}}}
\mode<presentation>
\title{Theano, Pylearn2, libgpuarray: Sharing and Future}
\author{%
\footnotesize
Frédéric Bastien, Bart van Merriënboer \newline
Département d'Informatique et de Recherche Opérationnelle \newline
Université de Montréal \newline
Montréal, Canada \newline
\texttt{\{bastienf, vanmerb\}@iro.umontreal.ca} \newline \newline
}
\date{OML Workshop 2014}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}[plain]
\titlepage
\vspace{-5em}
\includegraphics[width=1in]{../hpcs2011_tutorial/pics/lisabook_logo_text_3.png}
\hfill
\includegraphics[width=.8in]{../hpcs2011_tutorial/pics/UdeM_NoirBleu_logo_Marie_crop}
\end{frame}
\section{Sharing}
\begin{frame}{Simplifying code sharing between}\setcounter{page}{1}
\begin{enumerate}
\item<1-> License: \begin{bf}Suggest BSD\end{bf} as it is used by many software in our field.
\begin{itemize}
\item Common license help share code.
\item When reusing code, don't forget to keep the license and the copyright notice
\end{itemize}
\item<2-> Common base object! \begin{bf}libgpuarray\end{bf}
\item<3-> Otherwise: put important implementation(e.g. convolution) in \begin{bf}separate file\end{bf} and \begin{bf}use raw ptr/shape/strides\end{bf} as inputs. Document that interface.
\item<4-> Acknowledge reuse \begin{bf}in section on web site\end{bf} AND \begin{bf}in papers\end{bf} about the software we reuse! (and use too)
\end{enumerate}
\end{frame}
\section{Future}
\begin{frame}
\tableofcontents[currentsection]
\end{frame}
\begin{frame}{Theano}
\begin{itemize}
\item Easier C code development and better documentation of that
\item Faster compilation
\item Multi-GPU
\item Better looping (update to scan)
\item Allow checkpoint with GPU to reload without GPU
\item Less memory allocation(lower Theano overhead)
\item Faster convolution
\end{itemize}
\end{frame}
\begin{frame}{Pylearn2}
\begin{itemize}
\item RNN
\item Better hyperparameter search support, using e.g. Hyperopt
\item Documentation
\item Checkpoint
\item Better support for sparse dataset
- Machine translation examples
- Gated activations for conditional computation
- Variational Auto-Encoders
\end{itemize}
\end{frame}
\begin{frame}{libgpuarray}
\begin{itemize}
\item Find other project to use it?
\item More functionality as NumPy
\item Move some of the functionality from Python/Theano to the C level
%\item - Trouver un moyen d'autotuner les kernels générés pour le device sur lequel ils roulent
\end{itemize}
\end{frame}
\end{document}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论