Spaces:
Sleeping
Sleeping
Better log
Browse files
app.py
CHANGED
@@ -222,20 +222,11 @@ def tts_fn(
|
|
222 |
emotion,
|
223 |
emotion_weight,
|
224 |
):
|
225 |
-
logger.info(f"Start TTS:\n{text}")
|
226 |
-
logger.info(f"
|
227 |
-
logger.info(f"
|
228 |
-
logger.info(f"
|
229 |
-
logger.info(f"
|
230 |
-
logger.info(f"Noise scale W: {noise_scale_w}")
|
231 |
-
logger.info(f"Length scale: {length_scale}")
|
232 |
-
logger.info(f"Line split: {line_split}")
|
233 |
-
logger.info(f"Split interval: {split_interval}")
|
234 |
-
logger.info(f"Style text: {style_text}")
|
235 |
-
logger.info(f"Style weight: {style_weight}")
|
236 |
-
logger.info(f"Use style text: {use_style_text}")
|
237 |
-
logger.info(f"Emotion: {emotion}")
|
238 |
-
logger.info(f"Emotion weight: {emotion_weight}")
|
239 |
|
240 |
if is_hf_spaces and len(text) > limit:
|
241 |
logger.error(f"文字数が{limit}文字を超えています")
|
@@ -329,7 +320,7 @@ example_hf_spaces = [
|
|
329 |
[initial_text, "JP"],
|
330 |
["えっと、私、あなたのことが好きです!もしよければ付き合ってくれませんか?", "JP"],
|
331 |
["吾輩は猫である。名前はまだ無い。", "JP"],
|
332 |
-
["
|
333 |
["やったー!テストで満点取れたよ!私とっても嬉しいな!", "JP"],
|
334 |
["どうして私の意見を無視するの?許せない!ムカつく!あんたなんか死ねばいいのに。", "JP"],
|
335 |
["あはははっ!この漫画めっちゃ笑える、見てよこれ、ふふふ、あはは。", "JP"],
|
|
|
222 |
emotion,
|
223 |
emotion_weight,
|
224 |
):
|
225 |
+
logger.info(f"Start TTS with {language}:\n{text}")
|
226 |
+
logger.info(f"Model: {model_holder.current_model.model_path}")
|
227 |
+
logger.info(f"SDP: {sdp_ratio}, Noise: {noise_scale}, Noise_W: {noise_scale_w}, Length: {length_scale}")
|
228 |
+
logger.info(f"Style text enabled: {use_style_text}, Style text: {style_text}, Style weight: {style_weight}")
|
229 |
+
logger.info(f"Style: {emotion}, Style weight: {emotion_weight}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
if is_hf_spaces and len(text) > limit:
|
232 |
logger.error(f"文字数が{limit}文字を超えています")
|
|
|
320 |
[initial_text, "JP"],
|
321 |
["えっと、私、あなたのことが好きです!もしよければ付き合ってくれませんか?", "JP"],
|
322 |
["吾輩は猫である。名前はまだ無い。", "JP"],
|
323 |
+
["桜の樹の下には屍体が埋まっている!これは信じていいことなんだよ。", "JP"],
|
324 |
["やったー!テストで満点取れたよ!私とっても嬉しいな!", "JP"],
|
325 |
["どうして私の意見を無視するの?許せない!ムカつく!あんたなんか死ねばいいのに。", "JP"],
|
326 |
["あはははっ!この漫画めっちゃ笑える、見てよこれ、ふふふ、あはは。", "JP"],
|