Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
dbe0979b
Commit
dbe0979b
authored
Feb 19, 2024
by
comfyanonymous
Browse files
Larger range for min/max compression for StableCascade_EmptyLatentImage.
parent
a7b5eaa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comfy_extras/nodes_stable_cascade.py
comfy_extras/nodes_stable_cascade.py
+2
-2
No files found.
comfy_extras/nodes_stable_cascade.py
View file @
dbe0979b
...
...
@@ -29,8 +29,8 @@ class StableCascade_EmptyLatentImage:
return
{
"required"
:
{
"width"
:
(
"INT"
,
{
"default"
:
1024
,
"min"
:
256
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
"height"
:
(
"INT"
,
{
"default"
:
1024
,
"min"
:
256
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
"compression"
:
(
"INT"
,
{
"default"
:
42
,
"min"
:
32
,
"max"
:
64
,
"step"
:
1
}),
"batch_size"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
6
4
})
"compression"
:
(
"INT"
,
{
"default"
:
42
,
"min"
:
4
,
"max"
:
128
,
"step"
:
1
}),
"batch_size"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
4
096
})
}}
RETURN_TYPES
=
(
"LATENT"
,
"LATENT"
)
RETURN_NAMES
=
(
"stage_c"
,
"stage_b"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment