Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
YongHuang
/
PatientEducation
like
0
Sleeping
App
Files
Files
Community
1
YongHuang
commited on
Aug 11, 2023
Commit
998b5fa
•
1 Parent(s):
2c2a25a
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-3
app.py
CHANGED
Viewed
@@ -1,4 +1,3 @@
1
-
import
streamlit
as
st
2
3
-
x = st
.
slider
(
'Select a value'
)
4
-
st.write(x, 'squared is', x * x)
1
+
import
gradio
as
gr
2
3
+
gr
.
Interface.load
(
"models/YongHuang/opticarellama2"
)
.launch()