Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
1x-technologies
/
1X_World_Model_Challenge_Home
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Jack Monas
commited on
Feb 23
Commit
992d47a
·
1 Parent(s):
d05df3a
Add application file
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)
5
+