Skip to content
Snippets Groups Projects
Commit efbdf40f authored by tomrink's avatar tomrink
Browse files

minor...

parent f9f6551f
No related branches found
No related tags found
No related merge requests found
...@@ -736,6 +736,7 @@ class IcingIntensityFCN: ...@@ -736,6 +736,7 @@ class IcingIntensityFCN:
inputs = [mini_batch[0], mini_batch[1]] inputs = [mini_batch[0], mini_batch[1]]
labels = mini_batch[2] labels = mini_batch[2]
pred = self.model(inputs, training=False) pred = self.model(inputs, training=False)
pred = tf.reshape(pred, (pred.shape[0], NumLogits))
t_loss = self.loss(labels, pred) t_loss = self.loss(labels, pred)
self.test_labels.append(labels) self.test_labels.append(labels)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment