Unverified Commit 3926c905 authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

put back error on warnings for sphinx (#3671)

parent 47834820
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# You can set these variables from the command line. # You can set these variables from the command line.
SPHINXOPTS = # -W # turn warnings into errors SPHINXOPTS = -W # turn warnings into errors
SPHINXBUILD = sphinx-build SPHINXBUILD = sphinx-build
SPHINXPROJ = torchvision SPHINXPROJ = torchvision
SOURCEDIR = source SOURCEDIR = source
......
...@@ -29,24 +29,21 @@ def deform_conv2d( ...@@ -29,24 +29,21 @@ def deform_conv2d(
Args: Args:
input (Tensor[batch_size, in_channels, in_height, in_width]): input tensor input (Tensor[batch_size, in_channels, in_height, in_width]): input tensor
offset (Tensor[batch_size, 2 * offset_groups * kernel_height * kernel_width, offset (Tensor[batch_size, 2 * offset_groups * kernel_height * kernel_width, out_height, out_width]):
out_height, out_width]): offsets to be applied for each position in the offsets to be applied for each position in the convolution kernel.
convolution kernel. weight (Tensor[out_channels, in_channels // groups, kernel_height, kernel_width]): convolution weights,
weight (Tensor[out_channels, in_channels // groups, kernel_height, kernel_width]): split into groups of size (in_channels // groups)
convolution weights, split into groups of size (in_channels // groups)
bias (Tensor[out_channels]): optional bias of shape (out_channels,). Default: None bias (Tensor[out_channels]): optional bias of shape (out_channels,). Default: None
stride (int or Tuple[int, int]): distance between convolution centers. Default: 1 stride (int or Tuple[int, int]): distance between convolution centers. Default: 1
padding (int or Tuple[int, int]): height/width of padding of zeroes around padding (int or Tuple[int, int]): height/width of padding of zeroes around
each image. Default: 0 each image. Default: 0
dilation (int or Tuple[int, int]): the spacing between kernel elements. Default: 1 dilation (int or Tuple[int, int]): the spacing between kernel elements. Default: 1
mask (Tensor[batch_size, offset_groups * kernel_height * kernel_width, mask (Tensor[batch_size, offset_groups * kernel_height * kernel_width, out_height, out_width]):
out_height, out_width]): masks to be applied for each position in the masks to be applied for each position in the convolution kernel. Default: None
convolution kernel. Default: None
Returns: Returns:
Tensor[batch_sz, out_channels, out_h, out_w]: result of convolution Tensor[batch_sz, out_channels, out_h, out_w]: result of convolution
Examples:: Examples::
>>> input = torch.rand(4, 3, 10, 10) >>> input = torch.rand(4, 3, 10, 10)
>>> kh, kw = 3, 3 >>> kh, kw = 3, 3
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment