Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -2
src/streamlit_app.py
CHANGED
@@ -90,8 +90,9 @@ with tab1:
|
|
90 |
|
91 |
with tab2:
|
92 |
pipeline_image = Image.open("src/pipeline.png")
|
93 |
-
|
94 |
-
|
|
|
95 |
st.markdown("## Abstract")
|
96 |
st.write(
|
97 |
"""
|
|
|
90 |
|
91 |
with tab2:
|
92 |
pipeline_image = Image.open("src/pipeline.png")
|
93 |
+
buffered2 = BytesIO()
|
94 |
+
pipeline_image.save(buffered2, format="PNG")
|
95 |
+
img_data_pipeline = base64.b64encode(buffered2.getvalue()).decode("utf-8")
|
96 |
st.markdown("## Abstract")
|
97 |
st.write(
|
98 |
"""
|