Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -38,9 +38,7 @@ if __name__ == "__main__":
|
|
38 |
)
|
39 |
|
40 |
plt.axis('off')
|
41 |
-
fig, ax = plt.subplots()
|
42 |
-
|
43 |
-
|
44 |
-
st.pyplot(fig)
|
45 |
-
|
46 |
-
st.write(len(flows))
|
|
|
38 |
)
|
39 |
|
40 |
plt.axis('off')
|
41 |
+
fig, ax = plt.subplots(1, 2)
|
42 |
+
ax1.imshow(preds[0])
|
43 |
+
ax2.imshow(flows[0])
|
44 |
+
st.pyplot(fig)
|
|
|
|