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

snapshot...

parent df3f5898
Branches
No related tags found
No related merge requests found
...@@ -474,9 +474,10 @@ class IcingIntensityNN: ...@@ -474,9 +474,10 @@ class IcingIntensityNN:
self.test_loss(t_loss) self.test_loss(t_loss)
self.test_accuracy(labels, pred) self.test_accuracy(labels, pred)
self.test_auc(labels, pred) if NumClasses == 2:
self.test_recall(labels, pred) self.test_auc(labels, pred)
self.test_precision(labels, pred) self.test_recall(labels, pred)
self.test_precision(labels, pred)
def predict(self, mini_batch): def predict(self, mini_batch):
inputs = [mini_batch[0]] inputs = [mini_batch[0]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment