提交 7eb53fc2 authored 作者: affanv14's avatar affanv14

add docs

上级 b92db391
...@@ -735,6 +735,10 @@ def conv3d(input, ...@@ -735,6 +735,10 @@ def conv3d(input,
Factor by which to subsample (stride) the input. Factor by which to subsample (stride) the input.
Also called dilation elsewhere. Also called dilation elsewhere.
num_groups : int
Divides the image, kernel and output tensors into num_groups
separate groups. Each which carry out convolutions separately
Returns Returns
------- -------
Symbolic 5D tensor Symbolic 5D tensor
...@@ -986,6 +990,9 @@ def conv3d_grad_wrt_inputs(output_grad, ...@@ -986,6 +990,9 @@ def conv3d_grad_wrt_inputs(output_grad,
filter_dilation : tuple of len 3 filter_dilation : tuple of len 3
The filter dilation used in the forward pass. The filter dilation used in the forward pass.
Also known as input striding. Also known as input striding.
num_groups : int
Divides the image, kernel and output tensors into num_groups
separate groups. Each which carry out convolutions separately
Returns Returns
------- -------
...@@ -1246,6 +1253,9 @@ def conv3d_grad_wrt_weights(input, ...@@ -1246,6 +1253,9 @@ def conv3d_grad_wrt_weights(input,
filter_dilation : tuple of len 3 filter_dilation : tuple of len 3
The filter dilation used in the forward pass. The filter dilation used in the forward pass.
Also known as input striding. Also known as input striding.
num_groups : int
Divides the image, kernel and output tensors into num_groups
separate groups. Each which carry out convolutions separately
Returns Returns
------- -------
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论