Skip to content

Commit

Permalink
misc env option description change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom O'Hara committed Nov 8, 2023
1 parent d86e2c0 commit e58609c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mezcla/examples/hf_stable_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"Textual prompt describing image")
NEGATIVE_PROMPT = system.getenv_text("NEGATIVE_PROMPT", "photo realistic",
"Negative tips for image")
GUIDANCE_HELP = "Degree of fidelity to prompt (1-to-30 w/ 7 suggested)--higher more"
GUIDANCE_HELP = "Degree of fidelity to prompt (1-to-30 w/ 7 suggested)--higher for more"
GUIDANCE_SCALE = system.getenv_int("GUIDANCE_SCALE", 7,
## OLD: "How much the image generation follows the prompt")
description=GUIDANCE_HELP)
Expand Down Expand Up @@ -87,7 +87,7 @@
USE_IMG2TXT = system.getenv_bool("USE_IMG2TXT", False,
"Use image-to-text instead of image generation")
DENOISING_FACTOR = system.getenv_float("DENOISING_FACTOR", 0.75,
"How much of the input image to randomize--higher more")
"How much of the input image to randomize--higher for more")

BATCH_ARG = "batch"
SERVER_ARG = "server"
Expand Down

0 comments on commit e58609c

Please sign in to comment.