Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Datasets:
Matthijs
/
cmu-arctic-xvectors
like
37
Tasks:
Text-to-Speech
Audio-to-Audio
Modalities:
Text
Time-series
Size:
1K - 10K
Libraries:
Datasets
Croissant
License:
mit
Dataset card
Viewer
Files
Files and versions
Community
6
refs/pr/2
cmu-arctic-xvectors
/
code.py
pyoyoso
Upload code.py
9b236e1
over 1 year ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()