Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ae7a5a91
提交
ae7a5a91
authored
8月 21, 2014
作者:
Bart
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Minor changes
上级
f914a40c
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
15 行增加
和
15 行删除
+15
-15
presentation.tex
doc/omlw2014/presentation.tex
+15
-15
没有找到文件。
doc/omlw2014/presentation.tex
浏览文件 @
ae7a5a91
...
@@ -42,9 +42,9 @@ Montréal, Canada \newline
...
@@ -42,9 +42,9 @@ Montréal, Canada \newline
Python <-
\{
NumPy/SciPy/libgpuarray
\}
<- Theano <- Pylearn2
Python <-
\{
NumPy/SciPy/libgpuarray
\}
<- Theano <- Pylearn2
\begin{itemize}
\begin{itemize}
\item
Python: OO coding language
\item
Python: OO coding language
\item
Numpy: n-dimension array object and scientific computing toolbox
\item
Numpy: n-dimension
al
array object and scientific computing toolbox
\item
SciPy: sparse matrix object and more scientific computing functionality
\item
SciPy: sparse matrix object
s
and more scientific computing functionality
\item
libgpuarray:
gpu
n-dimentional array object in C for CUDA and OpenCL
\item
libgpuarray:
GPU
n-dimentional array object in C for CUDA and OpenCL
\item
Theano: compiler/symbolic graph manipulation
\item
Theano: compiler/symbolic graph manipulation
\item
Pylearn2: machine learning framework
\item
Pylearn2: machine learning framework
\end{itemize}
\end{itemize}
...
@@ -57,8 +57,8 @@ Montréal, Canada \newline
...
@@ -57,8 +57,8 @@ Montréal, Canada \newline
\item
Comprehensive standard library
\item
Comprehensive standard library
\item
Dynamic type and memory management
\item
Dynamic type and memory management
\item
Slow execution
\item
Slow execution
\item
Easily extensible
from
C
\item
Easily extensible
with
C
\item
Popular in *web
-dev
* and *scientific communities*
\item
Popular in *web
development
* and *scientific communities*
\end{itemize}
\end{itemize}
\end{frame}
\end{frame}
...
@@ -69,9 +69,9 @@ Montréal, Canada \newline
...
@@ -69,9 +69,9 @@ Montréal, Canada \newline
\item
Not suitable for high-performance computing!
\item
Not suitable for high-performance computing!
\end{itemize}
\end{itemize}
\item
NumPy provides a
N
-dimensional numeric array in Python
\item
NumPy provides a
n
$
n
$
-dimensional numeric array in Python
\begin{itemize}
\begin{itemize}
\item
Perfect for high-performance computing
.
\item
Perfect for high-performance computing
\item
Slices of arrays are views (no copy)
\item
Slices of arrays are views (no copy)
\end{itemize}
\end{itemize}
...
@@ -79,12 +79,12 @@ Montréal, Canada \newline
...
@@ -79,12 +79,12 @@ Montréal, Canada \newline
\begin{itemize}
\begin{itemize}
\item
Elementwise computations
\item
Elementwise computations
\item
Linear algebra, Fourier transforms
\item
Linear algebra, Fourier transforms
\item
Pseudorandom number
s from
many distributions
\item
Pseudorandom number
generators, supporting
many distributions
\end{itemize}
\end{itemize}
\item
SciPy provides lots more, including
\item
SciPy provides lots more, including
\begin{itemize}
\begin{itemize}
\item
Sparse matri
x
\item
Sparse matri
ces
\item
More linear algebra
\item
More linear algebra
\item
Solvers and optimization algorithms
\item
Solvers and optimization algorithms
\item
Matlab-compatible I/O
\item
Matlab-compatible I/O
...
@@ -104,9 +104,9 @@ Montréal, Canada \newline
...
@@ -104,9 +104,9 @@ Montréal, Canada \newline
\end{frame}
\end{frame}
\begin{frame}
{
Why scripting for GPUs?
}
\begin{frame}
{
Why scripting for GPUs?
}
\begin{bf}
They
C
omplement each other
\end{bf}
\begin{bf}
They
c
omplement each other
\end{bf}
GPUs are everything that
scripting/
high level languages are not
GPUs are everything that high level languages are not
\begin{itemize}
\begin{itemize}
\item
Highly parallel
\item
Highly parallel
...
@@ -115,7 +115,7 @@ Montréal, Canada \newline
...
@@ -115,7 +115,7 @@ Montréal, Canada \newline
\item
So hard to program that meta-programming is easier.
\item
So hard to program that meta-programming is easier.
\end{itemize}
\end{itemize}
\begin{bf}
Best of both:
\end{bf}
eas
y scripted development invokes GPU kernel
.
\begin{bf}
Best of both:
\end{bf}
eas
ily scripted code which invokes high-performance GPU kernels
.
\begin{bf}
Theano C code generation removes overhead
\end{bf}
from
\begin{bf}
Theano C code generation removes overhead
\end{bf}
from
function call between Python and C, by launching many C functions at once.
function call between Python and C, by launching many C functions at once.
...
@@ -128,7 +128,7 @@ Montréal, Canada \newline
...
@@ -128,7 +128,7 @@ Montréal, Canada \newline
\begin{itemize}
\begin{itemize}
\item
Syntax as close to NumPy as possible
\item
Syntax as close to NumPy as possible
\item
Compiles most common expressions to C for CPU and GPU
\item
Compiles most common expressions to C for CPU and
/or
GPU
\item
Limited expressivity means lots of opportunities for expression-level optimizations
\item
Limited expressivity means lots of opportunities for expression-level optimizations
\begin{itemize}
\begin{itemize}
\item
No subroutines -> global optimization
\item
No subroutines -> global optimization
...
@@ -158,8 +158,8 @@ Montréal, Canada \newline
...
@@ -158,8 +158,8 @@ Montréal, Canada \newline
\item
Easy to try variants of implemented algorithms, and to extend them (using Theano)
\item
Easy to try variants of implemented algorithms, and to extend them (using Theano)
\item
Contains a collection of:
\item
Contains a collection of:
\begin{itemize}
\begin{itemize}
\item
Training
A
lgorithms (i.e., Stochastic and Batch GD, model-specific rules)
\item
Training
a
lgorithms (i.e., Stochastic and Batch GD, model-specific rules)
\item
Costs
and Estimation Criteria, supervised and unsupervised (NLL, Score M
atching, NCE)
\item
Costs
, supervised/unsupervised and exact/estimated (NLL, Score m
atching, NCE)
\item
Models (NNets, ConvNets, RBMs, k-means, PCA, SVMs)
\item
Models (NNets, ConvNets, RBMs, k-means, PCA, SVMs)
\item
Datasets (MNIST, CIFAR-10) and preprocessors (LCN, ZCA)
\item
Datasets (MNIST, CIFAR-10) and preprocessors (LCN, ZCA)
\end{itemize}
\end{itemize}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论