We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7c98a commit 262b9b4Copy full SHA for 262b9b4
stable-diffusion.cpp
@@ -527,6 +527,10 @@ class StableDiffusionGGML {
527
if (is_using_v_parameterization_for_sd2(ctx, sd_version_is_inpaint(version))) {
528
is_using_v_parameterization = true;
529
}
530
+ } else if (sd_version_is_sdxl(version)) {
531
+ if (model_loader.tensor_storages_types.find("v_pred") != model_loader.tensor_storages_types.end()) {
532
+ is_using_v_parameterization = true;
533
+ }
534
} else if (version == VERSION_SVD) {
535
// TODO: V_PREDICTION_EDM
536
0 commit comments