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
Fetching metadata from the HF Docker repository...
a460ebb
demo_DiagTrast
/
app.py
Stremie
More options
a460ebb
about 2 years ago
raw
Copy download link
history
blame
Safe
140 Bytes
import
streamlit
as
st
st.title(
'Mi primer titulo'
)
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
st.markdown(
'Texto'
)