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 5588fa7 commit 75c26b6Copy full SHA for 75c26b6
stable-diffusion.cpp
@@ -660,6 +660,10 @@ class StableDiffusionGGML {
660
if (is_using_v_parameterization_for_sd2(ctx, sd_version_is_inpaint(version))) {
661
is_using_v_parameterization = true;
662
}
663
+ } else if (sd_version_is_sdxl(version)) {
664
+ if (model_loader.tensor_storages_types.find("v_pred") != model_loader.tensor_storages_types.end()) {
665
+ is_using_v_parameterization = true;
666
+ }
667
} else if (version == VERSION_SVD) {
668
// TODO: V_PREDICTION_EDM
669
0 commit comments