Skip to content

Commit

Permalink
[Inpainting] Update stable_diffusion_xl_pipeline.hpp (#1427)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Dec 24, 2024
1 parent 3496d45 commit d592148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class StableDiffusionXLPipeline : public StableDiffusionPipeline {
} else if (m_pipeline_type == PipelineType::INPAINTING) {
m_generation_config.guidance_scale = 7.5f;
m_generation_config.num_inference_steps = 50;
m_generation_config.strength == 0.9999f;
m_generation_config.strength = 0.9999f;
}
} else {
OPENVINO_THROW("Unsupported class_name '", class_name, "'. Please, contact OpenVINO GenAI developers");
Expand Down

0 comments on commit d592148

Please sign in to comment.