shezamunir commited on
Commit
2634260
·
verified ·
1 Parent(s): cde92e9

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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
- 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
  """
 
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
  """