Add: FLUX

This commit is contained in:
yjy415
2025-11-19 15:14:18 +08:00
parent 2d23c897c2
commit c119ce7e64
11 changed files with 2134 additions and 30 deletions

View File

@@ -0,0 +1,17 @@
import torch
def NexusGenMergerStateDictConverter(state_dict):
merger_state_dict = {}
for key in state_dict:
if key.startswith('embedding_merger.'):
value = state_dict[key]
new_key = key.replace("embedding_merger.", "")
merger_state_dict[new_key] = value
return merger_state_dict
def NexusGenAdapterStateDictConverter(state_dict):
adapter_state_dict = {}
for key in state_dict:
if key.startswith('adapter.'):
adapter_state_dict[key] = state_dict[key]
return adapter_state_dict