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