You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prompt ='''A striking photograph of a glass of orange juice on a wooden kitchen table, capturing a playful moment. The orange juice splashes out of the glass and forms the word \"Smile\" in a whimsical, swirling script just above the glass. The background is softly blurred, revealing a cozy, homely kitchen with warm lighting and a sense of comfort.'''
5578
5582
5579
-
out= pipe(
5583
+
img= pipe(
5580
5584
prompt=prompt,
5581
5585
task="text_to_image",
5582
5586
height=768,
@@ -5587,7 +5591,7 @@ out = pipe(
5587
5591
cache_ratio=0.9,
5588
5592
warmup_ratio=0.3,
5589
5593
refresh_interval=5
5590
-
)
5594
+
).images[0]
5591
5595
5592
5596
img.save("t2i_test_output.png")
5593
5597
```
@@ -5604,11 +5608,14 @@ from diffusers import VQModel, DiffusionPipeline
prompt ="A functional wooden printer stand.Nestled next to a brick wall in a bustling city street, it stands firm as pedestrians hustle by, illuminated by the warm glow of vintage street lamps."
5621
5628
5622
-
5623
-
out = pipe(
5629
+
img = pipe(
5624
5630
prompt=prompt,
5625
5631
image=input_image,
5626
5632
edit_type="depth_control",
@@ -5629,9 +5635,10 @@ out = pipe(
5629
5635
cfg_scale=2.5,
5630
5636
cfg_img=4.0,
5631
5637
task="image_to_image"
5632
-
)
5638
+
).images[0]
5633
5639
5634
5640
img.save("i2i_test_output.png")
5641
+
5635
5642
```
5636
5643
5637
5644
@@ -5742,11 +5749,14 @@ from diffusers import VQModel, DiffusionPipeline
0 commit comments