From 6bdf99d37abc5ccb0c2bbeb69550a39f0f831779 Mon Sep 17 00:00:00 2001 From: Bai Yifan Date: Mon, 28 Oct 2019 10:18:06 +0800 Subject: [PATCH] fix dcn doc about Mask introduction, test=develop, test=document_fix (#20836) --- python/paddle/fluid/layers/nn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/paddle/fluid/layers/nn.py b/python/paddle/fluid/layers/nn.py index d1bfe27a496..e74a02ca93d 100755 --- a/python/paddle/fluid/layers/nn.py +++ b/python/paddle/fluid/layers/nn.py @@ -16906,9 +16906,9 @@ def deformable_conv(input, float32, float64. offset (Variable): The input coordinate offset of deformable convolution layer. A Tensor with type float32, float64. - Mask (Variable, Optional): The input mask of deformable covolution layer. - A Tensor with type float32, float64.It should be None when you use - deformable_conv_v2. + Mask (Variable, Optional): The input mask of deformable convolution layer. + A Tensor with type float32, float64. It should be None when you use + deformable convolution v1. num_filters(int): The number of filter. It is as same as the output image channel. filter_size (int|tuple): The filter size. If filter_size is a tuple, -- GitLab