提交 cdcbda6e authored 作者: Iban Harlouchet's avatar Iban Harlouchet

numpydoc for theano/sandbox/cuda/GpuConvGrad3D.py

上级 7691524a
...@@ -15,14 +15,25 @@ from theano.sandbox.cuda import (CudaNdarrayType, HostFromGpu, ...@@ -15,14 +15,25 @@ from theano.sandbox.cuda import (CudaNdarrayType, HostFromGpu,
class GpuConvGrad3D(GpuOp): class GpuConvGrad3D(GpuOp):
""" GPU version of gradient of ConvGrad3D with respect to W """ """
GPU version of gradient of ConvGrad3D with respect to W.
"""
def make_node(self, V, d, WShape, dCdH): def make_node(self, V, d, WShape, dCdH):
""" """
:param V: visible
:param d: strides Parameters
:param WShape: shapes of the weights -> shape of this op output ----------
:param dCdH: other input with what V will be convolved. V
Visible.
d
Strides.
WShape
Shapes of the weights -> shape of this op output.
dCdH
Other input with what V will be convolved.
""" """
V_ = as_cuda_ndarray_variable(V) V_ = as_cuda_ndarray_variable(V)
d_ = T.as_tensor_variable(d) d_ = T.as_tensor_variable(d)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论