Skip to content

Commit

Permalink
Make live preview size a configurable launch argument (comfyanonymous…
Browse files Browse the repository at this point in the history
…#4649)

* Make live preview size a configurable launch argument

* Remove import from testing phase

* Update cli_args.py
  • Loading branch information
silveroxides authored Sep 3, 2024
1 parent 483004d commit f067ad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions comfy/cli_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ class LatentPreviewMethod(enum.Enum):

parser.add_argument("--preview-method", type=LatentPreviewMethod, default=LatentPreviewMethod.NoPreviews, help="Default preview method for sampler nodes.", action=EnumAction)

parser.add_argument("--preview-size", type=int, default=512, help="Sets the maximum preview size for sampler nodes.")

cache_group = parser.add_mutually_exclusive_group()
cache_group.add_argument("--cache-classic", action="store_true", help="Use the old style (aggressive) caching.")
cache_group.add_argument("--cache-lru", type=int, default=0, help="Use LRU caching with a maximum of N node results cached. May use more RAM/VRAM.")
Expand Down
2 changes: 1 addition & 1 deletion latent_preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import comfy.utils
import logging

MAX_PREVIEW_RESOLUTION = 512
MAX_PREVIEW_RESOLUTION = args.preview_size

def preview_to_image(latent_image):
latents_ubyte = (((latent_image + 1.0) / 2.0).clamp(0, 1) # change scale from -1..1 to 0..1
Expand Down

0 comments on commit f067ad1

Please sign in to comment.