Skip to content

Commit a0a5469

Browse files
Fix typos and syntax issues in Remote VAE blog post (#2706)
- Added missing comma in `remote_decode` function call for Flux example - Fixed mismatched backticks in error message for `remote_decode` - Corrected incorrect apostrophe in "rule of third's" to "rule of thirds"
1 parent 7f978ee commit a0a5469

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

remote_vae.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def remote_decode(
8282
raise ValueError("`height` and `width` required for packed latents.")
8383
if output_type == "pt" and partial_postprocess is False and processor is None:
8484
raise ValueError(
85-
"`processor` is required with `output_type='pt' and `partial_postprocess=False`."
85+
"`processor` is required with `output_type='pt'` and `partial_postprocess=False`."
8686
)
8787
headers = {}
8888
parameters = {
@@ -371,7 +371,7 @@ latent = pipe(
371371
output_type="latent",
372372
).images
373373
image = remote_decode(
374-
endpoint="https://whhx50ex1aryqvw6.us-east-1.aws.endpoints.huggingface.cloud/"
374+
endpoint="https://whhx50ex1aryqvw6.us-east-1.aws.endpoints.huggingface.cloud/",
375375
tensor=latent,
376376
height=1024,
377377
width=1024,
@@ -469,10 +469,10 @@ def decode(latent: torch.Tensor):
469469

470470
prompts = [
471471
"Blueberry ice cream, in a stylish modern glass , ice cubes, nuts, mint leaves, splashing milk cream, in a gradient purple background, fluid motion, dynamic movement, cinematic lighting, Mysterious",
472-
"Lemonade in a glass, mint leaves, in an aqua and white background, flowers, ice cubes, halo, fluid motion, dynamic movement, soft lighting, digital painting, rule of third's composition, Art by Greg rutkowski, Coby whitmore",
472+
"Lemonade in a glass, mint leaves, in an aqua and white background, flowers, ice cubes, halo, fluid motion, dynamic movement, soft lighting, digital painting, rule of thirds composition, Art by Greg rutkowski, Coby whitmore",
473473
"Comic book art, beautiful, vintage, pastel neon colors, extremely detailed pupils, delicate features, light on face, slight smile, Artgerm, Mary Blair, Edmund Dulac, long dark locks, bangs, glowing, fashionable style, fairytale ambience, hot pink.",
474474
"Masterpiece, vanilla cone ice cream garnished with chocolate syrup, crushed nuts, choco flakes, in a brown background, gold, cinematic lighting, Art by WLOP",
475-
"A bowl of milk, falling cornflakes, berries, blueberries, in a white background, soft lighting, intricate details, rule of third's, octane render, volumetric lighting",
475+
"A bowl of milk, falling cornflakes, berries, blueberries, in a white background, soft lighting, intricate details, rule of thirds, octane render, volumetric lighting",
476476
"Cold Coffee with cream, crushed almonds, in a glass, choco flakes, ice cubes, wet, in a wooden background, cinematic lighting, hyper realistic painting, art by Carne Griffiths, octane render, volumetric lighting, fluid motion, dynamic movement, muted colors,",
477477
]
478478

0 commit comments

Comments
 (0)