Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sourceoftruthdata
/
image_background_remover
like
0
Running
App
Files
Files
Community
sourceoftruthdata
commited on
Dec 28, 2023
Commit
81e52b2
•
1 Parent(s):
58c48bc
Add application file
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
##################################
2
+
# test app set up
3
+
##################################
4
+
5
+
import streamlit as st
6
+
7
+
x = st.slider('Select a value')
8
+
st.write(x, 'squared is', x * x)