Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
daavoo committed Apr 27, 2022
1 parent a24f437 commit 281e8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def get_confusion_image(predictions, dataset):
for n, pred in enumerate(predictions):
actual = pred["actual"]
predicted = pred["predicted"]
image = np.array(dataset[n]) / 255
image = np.array(dataset[n][0]) / 255
confusion[(actual, predicted)] = image

max_i, max_j = 0, 0
Expand Down

0 comments on commit 281e8ef

Please sign in to comment.