Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Maracuya
/
sandbox
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sandbox
/
app.py
Luka Perkovic
testing app
090fb7e
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
157 Bytes
from
fastai.vision.
all
import
*
import
streamlit
as
st
learn = load_learner(
'model.pkl'
)
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)