Biorrith commited on
Commit
55fea91
·
1 Parent(s): 6b09354

Small refinements and new repo id

Browse files
Files changed (2) hide show
  1. app.py +7 -1
  2. chatterbox/tts_turbo.py +1 -2
app.py CHANGED
@@ -104,7 +104,13 @@ def update_ref_audio(voice_name):
104
  return VOICE_OPTIONS.get(voice_name, list(VOICE_OPTIONS.values())[0])
105
 
106
  with gr.Blocks(title="Chatterbox Turbo") as demo:
107
- gr.Markdown("# ⚡ Chatterbox Turbo")
 
 
 
 
 
 
108
 
109
  with gr.Row():
110
  with gr.Column():
 
104
  return VOICE_OPTIONS.get(voice_name, list(VOICE_OPTIONS.values())[0])
105
 
106
  with gr.Blocks(title="Chatterbox Turbo") as demo:
107
+ gr.Markdown(
108
+ """
109
+ # ⚡ Røst v3 Chatterbox 350m
110
+ Generate high-quality danish speech from text with reference audio styling. This is model was developed as part of the CoRal project, and is a finetuned version of Chatterbox Multilingual.
111
+ """)
112
+
113
+
114
 
115
  with gr.Row():
116
  with gr.Column():
chatterbox/tts_turbo.py CHANGED
@@ -23,8 +23,7 @@ from .models.s3gen.const import S3GEN_SIL
23
  import logging
24
  logger = logging.getLogger(__name__)
25
 
26
- # REPO_ID = "CoRal-project/chatterbox_turbo_checkpoint_160000"
27
- REPO_ID = "CoRal-project/roest-chatterbox-turbo"
28
 
29
 
30
  def punc_norm(text: str) -> str:
 
23
  import logging
24
  logger = logging.getLogger(__name__)
25
 
26
+ REPO_ID = "CoRal-project/roest-v3-chatterbox-350m"
 
27
 
28
 
29
  def punc_norm(text: str) -> str: