Spaces:
Running
on
T4
Running
on
T4
Vaibhav Srivastav
commited on
Commit
•
3444a7f
1
Parent(s):
262bc3f
up
Browse files
app.py
CHANGED
@@ -32,6 +32,12 @@ Built on Tortoise, XTTS has important model changes that make cross-language voi
|
|
32 |
This is the same model that powers Coqui Studio, and Coqui API, however we apply a few tricks to make it faster and support streaming inference.
|
33 |
"""
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
gr.Interface(
|
36 |
fn=predict,
|
37 |
inputs=[
|
@@ -73,4 +79,5 @@ gr.Interface(
|
|
73 |
],
|
74 |
title=title,
|
75 |
description=description,
|
|
|
76 |
).launch(debug=True)
|
|
|
32 |
This is the same model that powers Coqui Studio, and Coqui API, however we apply a few tricks to make it faster and support streaming inference.
|
33 |
"""
|
34 |
|
35 |
+
article = """
|
36 |
+
<div style='margin:20px auto;'>
|
37 |
+
<p>By using this demo you agree to the terms of the Coqui Public Model License at https://coqui.ai/cpml</p>
|
38 |
+
</div>
|
39 |
+
"""
|
40 |
+
|
41 |
gr.Interface(
|
42 |
fn=predict,
|
43 |
inputs=[
|
|
|
79 |
],
|
80 |
title=title,
|
81 |
description=description,
|
82 |
+
article=article,
|
83 |
).launch(debug=True)
|