Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wgcv
/
img-gen
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
wgcv
commited on
Jun 24, 2024
Commit
d14459f
·
1 Parent(s):
4bc8bbf
First demo, ok i worked with this few years ago the second
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import streamlit as st
2
+
3
+
st.title("This is a demo")
4
+
st.markdown("This is a description")
5
+
x = st.slider("Put a number")
6
+
7
+
st.write(x, "The square is", x*x)