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
5cb0b67
mlip-arena
/
serve
/
app.py
cyrusyc
move serve folder
bfed564
8 months ago
raw
Copy download link
history
blame
Safe
88 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)