Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zxcgqq
/
CeshiDemo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5feb406
CeshiDemo
/
app.py
zxcgqq
Update app.py
5feb406
about 2 years ago
raw
Copy download link
history
blame
Safe
193 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
gr.Interface.from_pipeline(pipeline(
"question-answering"
, model=
"uer/roberta-base-finetuned-dianping-chinese"
)).launch()