Spaces:
Runtime error
Runtime error
comit img
Browse files
app.py
CHANGED
@@ -31,11 +31,11 @@ st.write(
|
|
31 |
|
32 |
st.write("""# Этапы разработки""")
|
33 |
|
34 |
-
image = Image.open('stages.jpg')
|
35 |
st.image(image, caption='Sunrise by the mountains')
|
36 |
|
37 |
-
|
38 |
-
|
39 |
|
40 |
|
41 |
with st.expander("Описание пайплайна работы", expanded=True):
|
|
|
31 |
|
32 |
st.write("""# Этапы разработки""")
|
33 |
|
34 |
+
image = Image.open('./stages.jpg')
|
35 |
st.image(image, caption='Sunrise by the mountains')
|
36 |
|
37 |
+
with open("./stages.png", "rb") as f:
|
38 |
+
st.image(f.read(), use_column_width=True)
|
39 |
|
40 |
|
41 |
with st.expander("Описание пайплайна работы", expanded=True):
|