ltx2.3 train

This commit is contained in:
mi804
2026-03-06 18:08:42 +08:00
parent c9c2561791
commit d40efe897f
13 changed files with 346 additions and 8 deletions

View File

@@ -27,7 +27,6 @@ def LTX2VocoderStateDictConverter(state_dict):
state_dict_ = {}
for name in state_dict:
if name.startswith("vocoder."):
# new_name = name.replace("vocoder.", "")
new_name = name[len("vocoder."):]
state_dict_[new_name] = state_dict[name]
return state_dict_