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