File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " f5-tts"
7
- version = " 0.4.5 "
7
+ version = " 0.4.6 "
8
8
description = " F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
9
9
readme = " README.md"
10
10
license = {text = " MIT License" }
Original file line number Diff line number Diff line change @@ -111,8 +111,10 @@ def main():
111
111
if not os .path .isdir (checkpoint_path ):
112
112
os .makedirs (checkpoint_path , exist_ok = True )
113
113
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 )
116
118
if not os .path .isfile (file_checkpoint ):
117
119
shutil .copy2 (ckpt_path , file_checkpoint )
118
120
print ("copy checkpoint for finetune" )
You can’t perform that action at this time.
0 commit comments