Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
umichVision
/
virtex-redcaps
like
9
Runtime error
App
Files
Files
Community
a5f8a35
virtex-redcaps
/
app.py
zamborg
streamlit starter app
6cae53c
about 3 years ago
raw
Copy download link
history
blame
Safe
89 Bytes
import
streamlit
as
st
x = st.slider(
"Select a value"
)
st.write(x,
"squared is"
, x * x)