Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nppmatt
/
milestone-3
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c97b094
milestone-3
/
app.py
nppmatt
Update app.py
d0ae0ec
about 2 years ago
raw
Copy download link
history
blame
124 Bytes
from
transformers
import
pipeline
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)