We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d3b41 commit 54791afCopy full SHA for 54791af
doc/api/v2/fluid/io.rst
@@ -4,7 +4,7 @@ IO
4
5
6
7
-isParameter
+is_parameter
8
-----------
9
.. autofunction:: paddle.v2.fluid.io.is_parameter
10
:noindex:
python/paddle/v2/fluid/io.py
@@ -11,15 +11,15 @@
11
12
13
def is_parameter(var):
14
- """Check whether the variable is a Parameter
+ """Check whether the variable is a Parameter.
15
16
This function checks whether the input variable is a Parameter.
17
18
Args:
19
var : The input variable.
20
21
Returns:
22
- boolean result whether the variable is a Parameter
+ boolean result whether the variable is a Parameter.
23
"""
24
return isinstance(var, Parameter)
25
0 commit comments