drewThomasson commited on
Commit
efe3e06
·
verified ·
1 Parent(s): 1df0182

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -110,10 +110,10 @@ import socket
110
  #nltk.download('punkt_tab')
111
 
112
  # Import the locally stored Xtts default model
113
- #import import_locally_stored_tts_model_files
114
 
115
  #make the nltk folder point to the nltk folder in the app dir
116
- #nltk.data.path.append('/home/user/app/nltk_data')
117
 
118
  # Download UniDic if it's not already installed
119
  #unidic.download()
@@ -920,7 +920,7 @@ def run_gradio_interface():
920
  maximum=100,
921
  step=1,
922
  value=50,
923
- info="Lower values restrict outputs to more likely words."
924
  )
925
  top_p = gr.Slider(
926
  label="Top-p Sampling",
@@ -928,7 +928,7 @@ def run_gradio_interface():
928
  maximum=1.0,
929
  step=.01,
930
  value=0.8,
931
- info="Controls cumulative probability for word selection. Lower values make the output more predictable."
932
  )
933
  speed = gr.Slider(
934
  label="Speed",
 
110
  #nltk.download('punkt_tab')
111
 
112
  # Import the locally stored Xtts default model
113
+ import import_locally_stored_tts_model_files
114
 
115
  #make the nltk folder point to the nltk folder in the app dir
116
+ nltk.data.path.append('/home/user/app/nltk_data')
117
 
118
  # Download UniDic if it's not already installed
119
  #unidic.download()
 
920
  maximum=100,
921
  step=1,
922
  value=50,
923
+ info="Lower values restrict outputs to more likely words and increase speed at which audio generates. "
924
  )
925
  top_p = gr.Slider(
926
  label="Top-p Sampling",
 
928
  maximum=1.0,
929
  step=.01,
930
  value=0.8,
931
+ info="Controls cumulative probability for word selection. Lower values make the output more predictable and increase speed at which audio generates."
932
  )
933
  speed = gr.Slider(
934
  label="Speed",