Plsek commited on
Commit
707774a
·
1 Parent(s): 56359ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,7 @@ model = load_model("CADET.hdf5")
15
 
16
  # Define function to plot the uploaded image
17
  def plot_image(image_array, scale):
18
- st.set_plot_config(plt, figsize=(4, 4))
19
  plt.figure(figsize=(4, 4))
20
  # plt.subplot(1, 2, 1)
21
  x0 = image_array.shape[0] // 2 - scale * 128 / 64
@@ -26,7 +26,7 @@ def plot_image(image_array, scale):
26
 
27
  # Define function to plot the prediction
28
  def plot_prediction(image_array, pred):
29
- st.set_plot_config(plt, figsize=(8, 4))
30
  plt.figure(figsize=(8, 4))
31
  plt.subplot(1, 2, 1)
32
  plt.imshow(image_array, origin="lower")
 
15
 
16
  # Define function to plot the uploaded image
17
  def plot_image(image_array, scale):
18
+ # st.set_plot_config(plt, figsize=(4, 4))
19
  plt.figure(figsize=(4, 4))
20
  # plt.subplot(1, 2, 1)
21
  x0 = image_array.shape[0] // 2 - scale * 128 / 64
 
26
 
27
  # Define function to plot the prediction
28
  def plot_prediction(image_array, pred):
29
+ # st.set_plot_config(plt, figsize=(8, 4))
30
  plt.figure(figsize=(8, 4))
31
  plt.subplot(1, 2, 1)
32
  plt.imshow(image_array, origin="lower")