We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9578fdc commit 05e428cCopy full SHA for 05e428c
stable-diffusion.cpp
@@ -521,6 +521,10 @@ class StableDiffusionGGML {
521
if (is_using_v_parameterization_for_sd2(ctx)) {
522
is_using_v_parameterization = true;
523
}
524
+ } else if (sd_version_is_sdxl(version)) {
525
+ if (model_loader.tensor_storages_types.find("v_pred") != model_loader.tensor_storages_types.end()) {
526
+ is_using_v_parameterization = true;
527
+ }
528
} else if (version == VERSION_SVD) {
529
// TODO: V_PREDICTION_EDM
530
0 commit comments