mirror of
https://github.com/modelscope/DiffSynth-Studio.git
synced 2026-03-19 14:58:12 +00:00
7 lines
258 B
Python
7 lines
258 B
Python
def Qwen2ConnectorStateDictConverter(state_dict):
|
|
state_dict_ = {}
|
|
for name in state_dict:
|
|
if name.startswith("connector."):
|
|
name_ = name[len("connector."):]
|
|
state_dict_[name_] = state_dict[name]
|
|
return state_dict_ |