updated args

This commit is contained in:
William Falcon
2019-06-25 19:56:12 -04:00
parent 7814b2d449
commit b59af1813b
2 changed files with 1 additions and 3 deletions
-3
View File
@@ -42,7 +42,6 @@ class ExampleModel(RootModule):
# ---------------------
def forward(self, x, a):
pdb.set_trace()
x = self.c_d1(x)
x = F.tanh(x)
x = self.c_d1_bn(x)
@@ -63,7 +62,6 @@ class ExampleModel(RootModule):
:param data_batch:
:return:
"""
pdb.set_trace()
# forward pass
x, y = data_batch
x = x.view(x.size(0), -1)
@@ -81,7 +79,6 @@ class ExampleModel(RootModule):
:param data_batch:
:return:
"""
pdb.set_trace()
x, y = data_batch
x = x.view(x.size(0), -1)
y_hat = self.forward(x)