Spaces:
Sleeping
Sleeping
import streamlit as st | |
import tensorflow as tf | |
image_url = st.text_input( | |
label="URL of image", | |
value="", | |
placeholder="https://your-favourite-image.png" | |
) | |
st.write("Image URL:", image_url) |