Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
| 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 |
|