Skip to content

Commit 6f26d07

Browse files
committed
0.4.6 minor fixes for finetune-gradio -cli
1 parent 8f1c532 commit 6f26d07

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "f5-tts"
7-
version = "0.4.5"
7+
version = "0.4.6"
88
description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
99
readme = "README.md"
1010
license = {text = "MIT License"}

src/f5_tts/train/finetune_cli.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,10 @@ def main():
111111
if not os.path.isdir(checkpoint_path):
112112
os.makedirs(checkpoint_path, exist_ok=True)
113113

114-
# Change: Add 'pretrained_' prefix to copied model
115-
file_checkpoint = os.path.join(checkpoint_path, "pretrained_" + os.path.basename(ckpt_path))
114+
file_checkpoint = os.path.basename(ckpt_path)
115+
if not file_checkpoint.startswith("pretrained_"): # Change: Add 'pretrained_' prefix to copied model
116+
file_checkpoint = "pretrained_" + file_checkpoint
117+
file_checkpoint = os.path.join(checkpoint_path, file_checkpoint)
116118
if not os.path.isfile(file_checkpoint):
117119
shutil.copy2(ckpt_path, file_checkpoint)
118120
print("copy checkpoint for finetune")

0 commit comments

Comments
 (0)