提交 86814d96 authored 作者: Frederic's avatar Frederic

[DOC] small doc update.

上级 877d21fc
...@@ -551,7 +551,8 @@ def conv3D(V, W, b, d): ...@@ -551,7 +551,8 @@ def conv3D(V, W, b, d):
This is for optimization. This is for optimization.
:note: The GPU implementation is very slow. You should use :note: The GPU implementation is very slow. You should use
:func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>` for a :func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>` or
:func:`conv3d_fft <theano.sandbox.cuda.fftconv.conv3d_fft>` for a
GPU graph instead. GPU graph instead.
:see: Someone made a script that shows how to swap the axes :see: Someone made a script that shows how to swap the axes
......
...@@ -176,7 +176,8 @@ def conv3d(signals, filters, ...@@ -176,7 +176,8 @@ def conv3d(signals, filters,
:note: Another way to define signals: (batch, time, in channel, row, column) :note: Another way to define signals: (batch, time, in channel, row, column)
Another way to define filters: (out channel,time,in channel, row, column) Another way to define filters: (out channel,time,in channel, row, column)
:note: See the `conv3d_fft`_ or `conv3d2d`_ for GPU implementations. :note: For the GPU, you can use this implementation or
:func:`conv3d_fft <theano.sandbox.cuda.fftconv.conv3d_fft>`.
:see: Someone made a script that shows how to swap the axes between :see: Someone made a script that shows how to swap the axes between
both 3d convolution implementations in Theano. See the last both 3d convolution implementations in Theano. See the last
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论