updated args
This commit is contained in:
parent
bac0ef2d44
commit
2ac5cce67a
|
@ -65,6 +65,7 @@ class ExampleModel(RootModule):
|
|||
"""
|
||||
# forward pass
|
||||
x, y = data_batch
|
||||
print(x.shape)
|
||||
x = x.view(x.size(0), -1)
|
||||
y_hat = self.forward(x)
|
||||
|
||||
|
@ -86,6 +87,7 @@ class ExampleModel(RootModule):
|
|||
:return:
|
||||
"""
|
||||
x, y = data_batch
|
||||
print(x.shape)
|
||||
x = x.view(x.size(0), -1)
|
||||
y_hat = self.forward(x)
|
||||
|
||||
|
|
Loading…
Reference in New Issue