Addressing review comments

add_depthwiseConv_op_gpu
Kavya Srinet 7 years ago
parent d7d3b41146
commit 54791af658

@ -4,7 +4,7 @@ IO
isParameter
is_parameter
-----------
.. autofunction:: paddle.v2.fluid.io.is_parameter
:noindex:

@ -11,7 +11,7 @@ __all__ = [
def is_parameter(var):
"""Check whether the variable is a Parameter
"""Check whether the variable is a Parameter.
This function checks whether the input variable is a Parameter.
@ -19,7 +19,7 @@ def is_parameter(var):
var : The input variable.
Returns:
boolean result whether the variable is a Parameter
boolean result whether the variable is a Parameter.
"""
return isinstance(var, Parameter)

Loading…
Cancel
Save