Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
somosnlp-hackathon-2023
/
demo_DiagTrast
like
7
Sleeping
App
Files
Files
Community
1
Stremie
commited on
Apr 4, 2023
Commit
ad75dbd
·
1 Parent(s):
2aac81e
Init
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)