awacke1 commited on
Commit
88e606f
Β·
verified Β·
1 Parent(s): 383eddc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -2060,7 +2060,9 @@ for file in image_files:
2060
  image = open(file, 'rb').read()
2061
  st.image(image)
2062
  with col2:
2063
- if st.button("πŸ—‘", key="delete_" + file):
 
 
2064
  os.remove(file)
2065
  st.rerun()
2066
 
@@ -2248,5 +2250,13 @@ st.sidebar.markdown("""
2248
  8. STFlow States: https://stflow.streamlit.app/Hackable_State
2249
  9. Component Gallery: https://okld-gallery.streamlit.app/?p=elements
2250
  10. STFlow: https://stflow.streamlit.app/
 
 
 
 
 
 
 
 
2251
  """)
2252
 
 
2060
  image = open(file, 'rb').read()
2061
  st.image(image)
2062
  with col2:
2063
+ unique_key = hashlib.sha256(str(time.time()).encode()).hexdigest()
2064
+ # https://arxiv.org/abs/2405.20321
2065
+ if st.button("πŸ—‘", key="delete_" + file + unique_key):
2066
  os.remove(file)
2067
  st.rerun()
2068
 
 
2250
  8. STFlow States: https://stflow.streamlit.app/Hackable_State
2251
  9. Component Gallery: https://okld-gallery.streamlit.app/?p=elements
2252
  10. STFlow: https://stflow.streamlit.app/
2253
+
2254
+
2255
+ # πŸ“„ Paper of the Day - Vision-based Manipulation from Single Human Video with Open-World Object Graphs
2256
+ πŸ”¬πŸ‘οΈπŸ€–πŸ“ŠπŸŒπŸ”
2257
+ πŸ“„ https://arxiv.org/abs/2405.20321
2258
+ πŸŽ₯πŸ‘€βž‘οΈπŸ¦ΎπŸ€–πŸ§ 
2259
+
2260
+
2261
  """)
2262