Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
atomind
/
mlip-arena
like
6
Running
App
Files
Files
Community
1
175ef10
mlip-arena
/
serve
/
app.py
cyrusyc
update app.py
c1fa4bb
5 months 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)