Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7b285bba
提交
7b285bba
authored
10月 26, 2016
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use different doc format to work around rest limitation.
上级
39bfada8
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
36 行增加
和
123 行删除
+36
-123
dnn.txt
doc/library/gpuarray/dnn.txt
+18
-64
dnn.txt
doc/library/sandbox/cuda/dnn.txt
+18
-59
没有找到文件。
doc/library/gpuarray/dnn.txt
浏览文件 @
7b285bba
...
...
@@ -132,70 +132,24 @@ To get an error if Theano can not use cuDNN, use this Theano flag:
cudnn.h must be readable by everybody.
* :ref:`Convolution <libdoc_gpuarray_dnn_convolution>`
* :ref:`Pooling <libdoc_gpuarray_dnn_pooling>`
* :ref:`Batch Normalization <libdoc_gpuarray_dnn_bn>`
* :ref:`RNN <libdoc_gpuarray_dnn_rnn>`
* :ref:`Softmax <libdoc_gpuarray_dnn_softmax>`
* :ref:`Internal Ops <libdoc_gpuarray_dnn_internal_ops>`
dnn_present, dnn_available
.. _libdoc_gpuarray_dnn_convolution:
Convolution
===========
.. automodule:: theano.gpuarray.dnn
:noindex:
:members: dnn_conv, dnn_conv3d, dnn_gradweight, dnn_gradweight3d, dnn_gradinput, dnn_gradinput3d
.. _libdoc_gpuarray_dnn_pooling:
Pooling
=======
.. automodule:: theano.gpuarray.dnn
:noindex:
:members: dnn_pool
.. _libdoc_gpuarray_dnn_bn:
Batch Normalization
===================
.. automodule:: theano.gpuarray.dnn
:noindex:
:members: dnn_batch_normalization_train, dnn_batch_normalization_test
.. _libdoc_gpuarray_dnn_rnn:
RNN
===
Without dropout support.
.. automodule:: theano.gpuarray.dnn
:noindex:
:members: RNNBlock
.. _libdoc_gpuarray_dnn_softmax:
Softmax
=======
You can manually use the op :class:`GpuDnnSoftmax
<theano.gpuarray.dnn.GpuDnnSoftmax>` to use its extra feature.
.. _libdoc_gpuarray_dnn_internal_ops:
Internal Ops
============
- Convolution:
- :func:`theano.gpuarray.dnn.dnn_conv`, :func:`theano.gpuarray.dnn.dnn_conv3d`.
- :func:`theano.gpuarray.dnn.dnn_gradweight`, :func:`theano.gpuarray.dnn.dnn_gradweight3d`.
- :func:`theano.gpuarray.dnn.dnn_gradinput`, :func:`theano.gpuarray.dnn.dnn_gradinput3d`.
- Pooling:
- :func:`theano.gpuarray.dnn.dnn_pool`.
- Batch Normalization:
- :func:`theano.gpuarray.dnn.dnn_batch_normalization_train`
- :func:`theano.gpuarray.dnn.dnn_batch_normalization_test`.
- RNN:
- :class:`theano.gpuarray.dnn.RNNBlock`
- Softmax:
- You can manually use the op :class:`GpuDnnSoftmax
<theano.gpuarray.dnn.GpuDnnSoftmax>` to use its extra feature.
List of Implemented Operations
==============================
.. automodule:: theano.gpuarray.dnn
:noindex:
:members: GpuDnnConvDesc, GpuDnnConv, GpuDnnConvGradW, GpuDnnConvGradI,
GpuDnnPoolDesc, GpuDnnPool, GpuDnnPoolGrad,
GpuDnnBatchNormInference, GpuDnnBatchNorm, GpuDnnBatchNormGrad,
GpuDnnSoftmax, GpuDnnSoftmaxGrad
:members:
doc/library/sandbox/cuda/dnn.txt
浏览文件 @
7b285bba
...
...
@@ -2,7 +2,7 @@
=======================================
:mod:`theano.sandbox.cuda.dnn` -- cuDNN
=======================================
=======================================
r
.. moduleauthor:: LISA
...
...
@@ -145,65 +145,24 @@ get an error when cuDNN can not be used with them, use this flag:
cudnn.h must be readable by everybody.
* :ref:`Convolution <libdoc_cuda_dnn_convolution>`
* :ref:`Pooling <libdoc_cuda_dnn_pooling>`
* :ref:`Batch Normalization <libdoc_cuda_dnn_bn>`
* :ref:`RNN <libdoc_cuda_dnn_rnn>`
* :ref:`Softmax <libdoc_cuda_dnn_softmax>`
* :ref:`Internal Ops <libdoc_cuda_dnn_internal_ops>`
.. _libdoc_cuda_dnn_convolution:
Convolution
===========
.. automodule:: theano.sandbox.cuda.dnn
:noindex:
:members: dnn_conv, dnn_conv3d, dnn_gradweight, dnn_gradinput
.. _libdoc_cuda_dnn_pooling:
Pooling
=======
.. automodule:: theano.sandbox.cuda.dnn
:noindex:
:members: dnn_pool
.. _libdoc_cuda_dnn_bn:
Batch Normalization
===================
.. automodule:: theano.sandbox.cuda.dnn
:noindex:
:members: dnn_batch_normalization_train, dnn_batch_normalization_test
.. _libdoc_cuda_dnn_rnn:
RNN
===
`New back-end only! <libdoc_gpuarray_dnn_rnn>`_
.. _libdoc_cuda_dnn_softmax:
Softmax
=======
You can manually use the op :class:`GpuDnnSoftmax
<theano.sandbox.cuda.dnn.GpuDnnSoftmax>` to use its extra feature.
- Convolution:
- :func:`theano.sandbox.cuda.dnn.dnn_conv`, :func:`theano.sandbox.cuda.dnn.dnn_conv3d`.
- :func:`theano.sandbox.cuda.dnn.dnn_gradweight`.
- :func:`theano.sandbox.cuda.dnn.dnn_gradinput`.
- Pooling:
- :func:`theano.sandbox.cuda.dnn.dnn_pool`.
- Batch Normalization:
- :func:`theano.sandbox.cuda.dnn.dnn_batch_normalization_train`
- :func:`theano.sandbox.cuda.dnn.dnn_batch_normalization_test`.
- RNN:
- :class:`New back-end only! <theano.gpuarray.dnn.RNNBlock>`.
- Softmax:
- You can manually use the op :class:`GpuDnnSoftmax
<theano.sandbox.cuda.dnn.GpuDnnSoftmax>` to use its extra feature.
.. _libdoc_cuda_dnn_internal_ops:
Internal Op
s
============
List of Implemented Operation
s
============
==================
.. automodule:: theano.sandbox.cuda.dnn
:noindex:
:members: GpuDnnConvDesc, GpuDnnConv, GpuDnnConv3d, GpuDnnConvGradW,
GpuDnnConv3dGradW, GpuDnnConvGradI, GpuDnnConv3dGradI,
GpuDnnPoolDesc, GpuDnnPool, GpuDnnPoolGrad,
GpuDnnBatchNormInference, GpuDnnBatchNorm, GpuDnnBatchNormGrad,
GpuDnnSoftmax, GpuDnnSoftmaxGrad
:members:
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论