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
68be24ee
Commit
68be24ee
authored
Jul 27, 2023
by
comfyanonymous
Browse files
Remove some prints.
parent
4ab75d9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
comfy/model_base.py
comfy/model_base.py
+0
-2
No files found.
comfy/model_base.py
View file @
68be24ee
...
...
@@ -164,7 +164,6 @@ class SDXLRefiner(BaseModel):
else
:
aesthetic_score
=
kwargs
.
get
(
"aesthetic_score"
,
6
)
print
(
clip_pooled
.
shape
,
width
,
height
,
crop_w
,
crop_h
,
aesthetic_score
)
out
=
[]
out
.
append
(
self
.
embedder
(
torch
.
Tensor
([
height
])))
out
.
append
(
self
.
embedder
(
torch
.
Tensor
([
width
])))
...
...
@@ -188,7 +187,6 @@ class SDXL(BaseModel):
target_width
=
kwargs
.
get
(
"target_width"
,
width
)
target_height
=
kwargs
.
get
(
"target_height"
,
height
)
print
(
clip_pooled
.
shape
,
width
,
height
,
crop_w
,
crop_h
,
target_width
,
target_height
)
out
=
[]
out
.
append
(
self
.
embedder
(
torch
.
Tensor
([
height
])))
out
.
append
(
self
.
embedder
(
torch
.
Tensor
([
width
])))
...
...
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