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 51d0d7e commit 92c24ccCopy full SHA for 92c24cc
graph_net/paddle/validate.py
@@ -72,7 +72,7 @@ def main(args):
72
if isinstance(y, paddle.Tensor):
73
print(y.shape)
74
elif isinstance(y, list) or isinstance(y, tuple):
75
- print(y[0].shape if isinstance(y[0], paddle.tensor) else y[0])
+ print(y[0].shape if isinstance(y[0], paddle.Tensor) else y[0])
76
else:
77
raise ValueError("Illegal return value.")
78
0 commit comments