ariG23498's picture
ariG23498 HF staff
chore: collect the url of the image
55c0289
raw
history blame
192 Bytes
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)