Skip to content
Snippets Groups Projects
Commit 142d0997 authored by Niclas Steve Eich's avatar Niclas Steve Eich
Browse files

Deleted debugging statement

parent 725ba51b
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,6 @@ class MulticlassificationConfusionMatrix(tf.keras.callbacks.Callback):
def on_train_begin(self, logs=None):
pred = self.model.predict(x=self.data_x, batch_size=self.batch_size)
print("DEBUGGING!")
print(pred.shape)
print(self.data_label.shape)
self.comet_experiment.log_confusion_matrix(y_true=self.data_label,
y_predicted=pred,
labels=self.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