Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FDSRashid
/
Arabic_Transliteration
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6232c3f
Arabic_Transliteration
/
app.py
FDSRashid
Create app.py
293544d
over 1 year ago
raw
Copy download link
history
blame
Safe
203 Bytes
from
camel_tools.utils.charmap
import
CharMapper
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()