docs
This commit is contained in:
@@ -73,8 +73,7 @@ def do_transcribe(
|
||||
cmd.extend(["--batch_size", str(batch_size)])
|
||||
success, message = run_script_with_log(cmd)
|
||||
if not success:
|
||||
return f"Error: {message}. しかし何故かエラーが起きても正常に終了している場合がほとんどなので、書き起こし結果を確認して問題なければ学習に使えます。"
|
||||
return "音声の文字起こしが完了しました。"
|
||||
return f"Error: {message}. エラーメッセージが空の場合、何も問題がない可能性があるので、書き起こしファイルをチェックして問題なければ無視してください。"
|
||||
|
||||
|
||||
how_to_md = """
|
||||
|
||||
@@ -38,7 +38,7 @@ def merge_style(model_name_a, model_name_b, weight, output_name, style_triple_li
|
||||
sorted_list = sorted(style_triple_list, key=lambda x: x[2] != DEFAULT_STYLE)
|
||||
else:
|
||||
# 存在しない場合、エラーを発生
|
||||
raise ValueError("No element with {DEFAULT_STYLE} output style name found.")
|
||||
raise ValueError(f"No element with {DEFAULT_STYLE} output style name found.")
|
||||
|
||||
style_vectors_a = np.load(
|
||||
os.path.join(assets_root, model_name_a, "style_vectors.npy")
|
||||
|
||||
Reference in New Issue
Block a user