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 b4dc9f4 commit b6b5597Copy full SHA for b6b5597
tests/ignite/engine/test_create_supervised.py
@@ -33,7 +33,7 @@ def __init__(self, output_as_list=False):
33
34
def forward(self, x):
35
if self.output_as_list:
36
- return [self.fc(x), self.fc(x)]
+ return self.fc(x), self.fc(x)
37
38
return self.fc(x)
39
0 commit comments