Skip to content

Commit

Permalink
Update train.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MSiam authored Nov 14, 2018
1 parent 52f2685 commit a5ffffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,12 +911,12 @@ def test_inference(self):
if self.args.random_cropping:
feed_dict = {self.test_model.x_pl_before: x_batch,
self.test_model.y_pl_before: y_batch
# self.test_model.is_training: False,
self.test_model.is_training: False,
}
else:
feed_dict = {self.test_model.x_pl: x_batch,
self.test_model.y_pl: y_batch
# self.test_model.is_training: False
self.test_model.is_training: False
}

# calculate the time of one inference
Expand Down

1 comment on commit a5ffffb

@zjj321
Copy link

@zjj321 zjj321 commented on a5ffffb May 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

obviously,lane: 913,914, 919,918 there is a bug,you mist a ","at the end.

Please sign in to comment.