Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ def plot_prediction(pred):
|
|
57 |
with colB: st.pyplot()
|
58 |
|
59 |
# Define function to plot the decomposed prediction
|
60 |
-
def
|
61 |
plt.figure(figsize=(4, 4))
|
62 |
plt.imshow(pred, origin="lower")
|
63 |
plt.axis('off')
|
|
|
57 |
with colB: st.pyplot()
|
58 |
|
59 |
# Define function to plot the decomposed prediction
|
60 |
+
def plot_decomposed(pred):
|
61 |
plt.figure(figsize=(4, 4))
|
62 |
plt.imshow(pred, origin="lower")
|
63 |
plt.axis('off')
|