Googlefan commited on
Commit
a58b40e
·
1 Parent(s): 11721e5

refactor(app.py): wrap example in list

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -42,10 +42,12 @@ iface = gr.Interface(
42
  title="SBV2音声合成",
43
  description="テキストとモデルのパスを入力して音声を生成します。SDPと速度を調整して音声の質を変更できます。",
44
  examples=[
45
- "おはようございます。",
46
- "googlefan/sbv2_personal_models/tenkas.sbv2",
47
- 0.0,
48
- 1.0,
 
 
49
  ],
50
  )
51
 
 
42
  title="SBV2音声合成",
43
  description="テキストとモデルのパスを入力して音声を生成します。SDPと速度を調整して音声の質を変更できます。",
44
  examples=[
45
+ [
46
+ "おはようございます。",
47
+ "googlefan/sbv2_personal_models/tenkas.sbv2",
48
+ 0.0,
49
+ 1.0,
50
+ ]
51
  ],
52
  )
53