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 4584286 commit 3ffffa6Copy full SHA for 3ffffa6
stable-diffusion.cpp
@@ -3029,6 +3029,9 @@ class StableDiffusionGGML {
3029
}
3030
bool some_tensor_not_init = false;
3031
for (auto pair : tensors) {
3032
+ if (pair.first.find("cond_stage_model.transformer.text_model.encoder.layers.23") != std::string::npos) {
3033
+ continue;
3034
+ }
3035
if (tensor_names_in_file.find(pair.first) == tensor_names_in_file.end()) {
3036
LOG_ERROR("tensor '%s' not in model file", pair.first.c_str());
3037
some_tensor_not_init = true;
0 commit comments