Spaces:
Build error
Build error
File size: 409 Bytes
9a312f2 75b1303 9a312f2 75b1303 9a312f2 0a4ad18 2a3089e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import streamlit as st
import requests
def app():
st.subheader('Excercise Detection')
# Define the link to redirect to
link = "https://huggingface.co/spaces/JamanKH/motion_detection"
# Create a button widget
button = st.button("Start Detection")
# If the button is clicked, send a request to the link and display it in an iframe
if button:
st.markdown(link)
|