-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WWB]: Add ImageText-to-Image pipeline validation #1373
base: master
Are you sure you want to change the base?
Conversation
is image to image sensitive to random |
the problem came from the difference in the resolutions of generated images by HF and GenAI libs. |
I am getting good accuracy convergence for big models, e.g. SD-XL but cannot make tests working with GenAI for any dummy model (I tried several). Waiting for fixes from OV. |
…nvino.genai into ak/wwb_inpainting
@ilya-lavrenov, CI is passed with non-dummy model. |
prompt, | ||
image=image_data, | ||
num_inference_steps=num_inference_steps, | ||
strength=0.8, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you run optimum / diffusers with the same strength
value?
@@ -65,6 +67,7 @@ def test_image_model_types(model_id, model_type, backend): | |||
@pytest.mark.parametrize( | |||
("model_id", "model_type"), | |||
[ | |||
("dreamlike-art/dreamlike-anime-1.0", "image-to-image"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe echarlaix/tiny-random-latent-consistency
can work here instead of non-working echarlaix/tiny-random-stable-diffusion-xl
?
CVS-159223