Skip to content

Commit

Permalink
Merge pull request SeanNaren#84 from ryanleary/patch-1
Browse files Browse the repository at this point in the history
Fix typo in train.py
  • Loading branch information
Sean Naren committed Jun 12, 2017
2 parents e048430 + 45aebe3 commit 30f9feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def main():
data_time.update(time.time() - end)
inputs = Variable(inputs, requires_grad=False)
target_sizes = Variable(target_sizes, requires_grad=False)
targets = Variable(targets. reqiores_grad=False)
targets = Variable(targets, requires_grad=False)

if args.cuda:
inputs = inputs.cuda()
Expand Down

0 comments on commit 30f9feb

Please sign in to comment.