removed dummy d
This commit is contained in:
parent
eb4b3a5752
commit
88f064d276
|
@ -66,7 +66,10 @@ def main():
|
|||
data = model.test_dataloader
|
||||
for batch in data:
|
||||
break
|
||||
out = model(batch[0])
|
||||
|
||||
x, y = batch
|
||||
x = x.view(x.size(0), -1)
|
||||
out = model(x)
|
||||
print(out)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue