Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MAli7319
/
Comment_Analysis
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d99b806
Comment_Analysis
/
app.py
MAli7319
Update app.py
beba0cd
over 2 years ago
raw
Copy download link
history
blame
223 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
user:
gr.Markdown(
"# AIN311 Project P05 - MOOC Recommendation"
)
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=user, inputs=
"text"
, outputs=
"text"
)
iface.launch()