Vaibhav Srivastav commited on
Commit
0f6c489
1 Parent(s): 1345941
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -42,21 +42,21 @@ article = """
42
  """
43
 
44
  examples = [
45
- [
46
- "Once when I was six years old I saw a magnificent picture.",
47
- "en",
48
- "examples/female.wav",
49
- ],
50
  [
51
  "Lorsque j'avais six ans j'ai vu, une fois, une magnifique image.",
52
  "fr",
53
  "examples/male.wav",
54
  ],
55
- [
56
- "Un tempo lontano, quando avevo sei anni, vidi un magnifico disegno.",
57
- "it",
58
- "examples/female.wav",
59
- ],
60
  ]
61
 
62
  gr.Interface(
@@ -92,7 +92,7 @@ gr.Interface(
92
  label="Reference Audio",
93
  info="Click on the ✎ button to upload your own target speaker audio",
94
  type="filepath",
95
- value="examples/female.wav",
96
  ),
97
  gr.Checkbox(label="Agree", value=True, info="I agree to the terms of the Coqui Public Model License at https://coqui.ai/cpml")
98
  ],
@@ -103,5 +103,5 @@ gr.Interface(
103
  title=title,
104
  description=description,
105
  article=article,
106
- # examples=examples,
107
  ).queue().launch(debug=True)
 
42
  """
43
 
44
  examples = [
45
+ # [
46
+ # "Once when I was six years old I saw a magnificent picture.",
47
+ # "en",
48
+ # "examples/female.wav",
49
+ # ],
50
  [
51
  "Lorsque j'avais six ans j'ai vu, une fois, une magnifique image.",
52
  "fr",
53
  "examples/male.wav",
54
  ],
55
+ # [
56
+ # "Un tempo lontano, quando avevo sei anni, vidi un magnifico disegno.",
57
+ # "it",
58
+ # "examples/female.wav",
59
+ # ],
60
  ]
61
 
62
  gr.Interface(
 
92
  label="Reference Audio",
93
  info="Click on the ✎ button to upload your own target speaker audio",
94
  type="filepath",
95
+ value="examples/male.wav",
96
  ),
97
  gr.Checkbox(label="Agree", value=True, info="I agree to the terms of the Coqui Public Model License at https://coqui.ai/cpml")
98
  ],
 
103
  title=title,
104
  description=description,
105
  article=article,
106
+ examples=examples,
107
  ).queue().launch(debug=True)