Gforce-ML commited on
Commit
221fdaf
·
1 Parent(s): 689522f

update stages

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -5,6 +5,7 @@ import numpy as np
5
  import pandas as pd
6
  import streamlit as st
7
  import streamlit.components.v1 as components
 
8
 
9
 
10
  components.html(
@@ -29,8 +30,12 @@ st.write(
29
  )
30
 
31
  st.write("""# Этапы разработки""")
32
- with open("./stages.png", "rb") as f:
33
- st.image(f.read(), use_column_width=True)
 
 
 
 
34
 
35
 
36
  with st.expander("Описание пайплайна работы", expanded=True):
 
5
  import pandas as pd
6
  import streamlit as st
7
  import streamlit.components.v1 as components
8
+ from PIL import Image
9
 
10
 
11
  components.html(
 
30
  )
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):