Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kuangliu committed May 17, 2018
1 parent 010536e commit bf78d3b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

from models import *
from utils import progress_bar
from torch.autograd import Variable


parser = argparse.ArgumentParser(description='PyTorch CIFAR10 Training')
Expand Down
2 changes: 1 addition & 1 deletion models/preact_resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def PreActResNet152():

def test():
net = PreActResNet18()
y = net((torch.randn(1,3,32,32))
y = net((torch.randn(1,3,32,32)))
print(y.size())

# test()

0 comments on commit bf78d3b

Please sign in to comment.