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...
9de4177
Comment_Analysis
/
app.py
MAli7319
Update app.py
9de4177
over 2 years ago
raw
Copy download link
history
blame
208 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
user:
gr.Markdown(
"# AIN311 Project P05 - MOOC Recommendation"
)
print
(
"Hello"
)
iface = gr.Interface(fn=user, inputs=
"text"
, outputs=
"text"
)
iface.launch()