wi-lab commited on
Commit
d232b8e
·
verified ·
1 Parent(s): 9d3835e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -87,7 +87,8 @@ def plot_confusion_matrix_beamPred(cm, classes, title, save_path, theme='Dark'):
87
  plt.figure(figsize=(10, 10))
88
 
89
  # Plot the confusion matrix with a colormap compatible for the mode
90
- sns.heatmap(cm, cmap=cmap, cbar=True, linecolor=text_color) #, vmin=0, vmax=cm.max(), alpha=0.85)
 
91
 
92
  cbar = ax.collections[0].colorbar
93
  cbar.ax.yaxis.set_tick_params(color=text_color)
 
87
  plt.figure(figsize=(10, 10))
88
 
89
  # Plot the confusion matrix with a colormap compatible for the mode
90
+ fig, ax = plt.subplots()
91
+ sns.heatmap(cm, cmap=cmap, cbar=True, ax=ax, linecolor=text_color)
92
 
93
  cbar = ax.collections[0].colorbar
94
  cbar.ax.yaxis.set_tick_params(color=text_color)