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

numpydoc for theano/tensor/nnet/ConvTransp3D.py

上级 880f6f86
...@@ -11,7 +11,12 @@ from theano.gradient import DisconnectedType ...@@ -11,7 +11,12 @@ from theano.gradient import DisconnectedType
class ConvTransp3D(theano.Op): class ConvTransp3D(theano.Op):
""" "Transpose" of Conv3D (Conv3D implements multiplication by an implicitly defined matrix W. This implements multiplication by its transpose) """ """
"Transpose" of Conv3D (Conv3D implements multiplication by an implicitly
defined matrix W. This implements multiplication by its transpose).
"""
__props__ = () __props__ = ()
def c_code_cache_version(self): def c_code_cache_version(self):
...@@ -19,10 +24,17 @@ class ConvTransp3D(theano.Op): ...@@ -19,10 +24,17 @@ class ConvTransp3D(theano.Op):
def make_node(self, W, b, d, H, RShape=None): def make_node(self, W, b, d, H, RShape=None):
""" """
:param W: Weights, filter Parameters
:param b: bias, shape == (W.shape[0],) ----------
:param d: strides when moving the filter over the input W
:param H: The output of Conv3D Weights, filter
b
Bias, shape == (W.shape[0],).
d
Strides when moving the filter over the input.
H
The output of Conv3D.
""" """
W_ = T.as_tensor_variable(W) W_ = T.as_tensor_variable(W)
b_ = T.as_tensor_variable(b) b_ = T.as_tensor_variable(b)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论