Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cebra/integrations/matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ def _to_heatmap_format(
else:
heatmap_values[i, j] = score_dict[label_i, label_j]

return np.minimum(heatmap_values * 100, 99)
return heatmap_values * 100

def _create_text(self):
"""Create the text to add in the confusion matrix grid and the title."""
Expand Down
Loading