We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d20335d commit 33edee1Copy full SHA for 33edee1
invokeai/backend/model_manager/util/model_util.py
@@ -143,6 +143,7 @@ def convert_bundle_to_flux_transformer_checkpoint(
143
144
for k, v in transformer_state_dict.items():
145
if not k.startswith("model.diffusion_model"):
146
+ keys_to_remove.append(k) # This can be removed in the future if we only want to delete transformer keys
147
continue
148
if k.endswith("scale"):
149
# Scale math must be done at bfloat16 due to our current flux model
0 commit comments