Spaces:
Sleeping
Sleeping
chore: collect the url of the image
Browse files
app.py
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
import tensorflow as tf
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import tensorflow as tf
|
3 |
|
4 |
+
image_url = st.text_input(
|
5 |
+
label="URL of image",
|
6 |
+
value="",
|
7 |
+
placeholder="https://your-favourite-image.png"
|
8 |
+
)
|
9 |
+
st.write("Image URL:", image_url)
|