Skip to content

6DammK9/sd-webui-runtime-block-merge

 
 

Repository files navigation

auto-MBW-rt "runtime enhancement" by 6DammK9 (1.7.0 Tested)

Minor fix and enhancements on top of Xynonners' Fork. Development along with my fork of auto-MBW-rt.

Installation guide

  • "Install as usual" (Install these extensions via "Extensions" > "Install from URL", or just clone it in SD_DIR/extension). There is no change on AI related stuffs. This is SE focused.

Major change

  • Add SDXL support. See next session.

  • Fix the awful inconsistancy between UI, runtime, and AutoMBW.

sl_ALL_nat = [*sl_INPUT, *sl_MID, sl_OUT, *sl_OUTPUT, sl_TIME_EMBED]
sl_ALL = [*sl_INPUT, *sl_MID, *sl_OUTPUT, sl_TIME_EMBED, sl_OUT]

# Should be sl_ALL = [*sl_INPUT, *sl_MID, *sl_OUTPUT, sl_OUT, sl_TIME_EMBED]
safetensors.torch.save_file(combined_state_dict, save_checkpoint_path, metadata=metadata if len(metadata)>0 else None)

Notes on merging SDXL models

  • Due to messy codebase backward compatibility, it is adviced to restart WebUI if your next merge is in different SD version.

  • You will see loads of Missing key(s) in state_dict: when the settings in A1111 is not correcly loaded. Keep switching UI's selected model to non SDXL models, and try again. If you see a *.yaml is loaded, it is usually success. Sadly it is done in A1111 instead of extensions.

  • This extension supports most layers, but label_emb will be untouched. I don't want to add another "slider" to make things overcomplicated.

  • IN09-IN11 and OUT09-OUT11 will be ignored for merging SDXL. UI / algorithm mappings will be untouched. For AutoMBW, it will still includes all 27 parameters to optimize, but you can expect they are irrelevant to the merge, and the algorithm (e.g. BayesianOptimization) will take care of it. noisy environment is common in AI/ML, so no worry.

# To support SDXL, we have found that IN09-IN11 and OUT09-OUT11 are not exist, then we can skip them.
# Meanwhile label_emb is SDXL exclusive, we need to ignore it.
# Before: current_block_index++

Read metadata inside the model

  • Read by safetensors_util, or read the extras.py.

  • If success, you will see a JSON string:

{
    "__metadata__": {
        "sd_mbwrt_recipe": {
            "type": "auto-mbw-rt",
            "modelA": "_03a-mzpikas_tmnd_enhanced-sd-v1-4.safetensors",
            "modelB": "_04a-dreamshaper_8-sd-v1-4.safetensors",
            "modelO": "03b-verify",
            "position_id_fix": "Keep Original",
            "output_mode": "Max Precision",
            "mbwrt_weights": "0.3,0.8,1,0.5,1,0,0.7,0.9,0.5,0.9,0.2,0.2,0.6,0,0.3,0.3,1,1,0.8,0.2,0.7,0,1,0.3,0.2,0.9,0.2",
            "mbwrt_weights_seq": "[*sl_INPUT, *sl_MID, *sl_OUTPUT, sl_OUT, sl_TIME_EMBED]"
        },
        "format": "pt"
    }
}

Some observation.

  • The very bottom of "merging algorithm" is torch.lerp. Therefore efficiency is good, but it won't support add-diff.

This is part of my research.


sd-webui-runtime-block-merge

Runtime version of Merge Block Weighted - GUI, let's you preview the effect before you merge. Credits to original author and repo: https://github.com/bbc-mc/sdweb-merge-block-weighted-gui

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%