提交 4086f394 authored 作者: Frederic's avatar Frederic

DOC: add url to script that compare the 2 conv 3d implementation.

上级 5c5a16e0
...@@ -566,6 +566,10 @@ conv3D = Conv3D() ...@@ -566,6 +566,10 @@ conv3D = Conv3D()
:func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>` that is faster :func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>` that is faster
on GPU. on GPU.
:see: Someone made a script that show how to swap the axis between
both 3d convolution implementation in Theano. See the last
`attachment <https://groups.google.com/d/msg/theano-users/1S9_bZgHxVw/0cQR9a4riFUJ>`_.
""" """
def computeH(V,W,b,d): def computeH(V,W,b,d):
......
...@@ -178,6 +178,10 @@ def conv3d(signals, filters, ...@@ -178,6 +178,10 @@ def conv3d(signals, filters,
Another way to define signals: (batch, time, in channel, row, column) 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)
:see: Someone made a script that show how to swap the axis between
both 3d convolution implementation in Theano. See the last
`attachment <https://groups.google.com/d/msg/theano-users/1S9_bZgHxVw/0cQR9a4riFUJ>`_.
""" """
if isinstance(border_mode, str): if isinstance(border_mode, str):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论