Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Maximofn
/
translatube
like
0
Sleeping
App
Files
Files
Community
d89a473
translatube
/
translatube.py
Maximofn
Start de quickstart
9959a9b
about 1 year ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()