Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions train/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,12 +910,12 @@ def test_inference(self):
# Feed this variables to the network
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.y_pl_before: y_batch,
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.y_pl: y_batch,
self.test_model.is_training: False
}

Expand Down