Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
gyroing
/
PersianTextCorrection_Hazm
like
2
Runtime error
App
Files
Files
Community
e6e5530
PersianTextCorrection_Hazm
/
app.py
gyroing
Update app.py
04d1b46
verified
10 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
import
hazm
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()