Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
1210548c
Commit
1210548c
authored
May 17, 2023
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify single_sample_to_image
parent
875ccc27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/sd_samplers_common.py
modules/sd_samplers_common.py
+3
-6
No files found.
modules/sd_samplers_common.py
View file @
1210548c
...
@@ -26,22 +26,19 @@ approximation_indexes = {"Full": 0, "Approx NN": 1, "Approx cheap": 2, "TAESD":
...
@@ -26,22 +26,19 @@ approximation_indexes = {"Full": 0, "Approx NN": 1, "Approx cheap": 2, "TAESD":
def
single_sample_to_image
(
sample
,
approximation
=
None
):
def
single_sample_to_image
(
sample
,
approximation
=
None
):
if
approximation
is
None
:
if
approximation
is
None
:
approximation
=
approximation_indexes
.
get
(
opts
.
show_progress_type
,
0
)
approximation
=
approximation_indexes
.
get
(
opts
.
show_progress_type
,
0
)
if
approximation
==
2
:
if
approximation
==
2
:
x_sample
=
sd_vae_approx
.
cheap_approximation
(
sample
)
x_sample
=
sd_vae_approx
.
cheap_approximation
(
sample
)
*
0.5
+
0.5
elif
approximation
==
1
:
elif
approximation
==
1
:
x_sample
=
sd_vae_approx
.
model
()(
sample
.
to
(
devices
.
device
,
devices
.
dtype
)
.
unsqueeze
(
0
))[
0
]
.
detach
()
x_sample
=
sd_vae_approx
.
model
()(
sample
.
to
(
devices
.
device
,
devices
.
dtype
)
.
unsqueeze
(
0
))[
0
]
.
detach
()
*
0.5
+
0.5
elif
approximation
==
3
:
elif
approximation
==
3
:
x_sample
=
sample
*
1.5
x_sample
=
sample
*
1.5
x_sample
=
sd_vae_taesd
.
model
()(
x_sample
.
to
(
devices
.
device
,
devices
.
dtype
)
.
unsqueeze
(
0
))[
0
]
.
detach
()
x_sample
=
sd_vae_taesd
.
model
()(
x_sample
.
to
(
devices
.
device
,
devices
.
dtype
)
.
unsqueeze
(
0
))[
0
]
.
detach
()
else
:
else
:
x_sample
=
processing
.
decode_first_stage
(
shared
.
sd_model
,
sample
.
unsqueeze
(
0
))[
0
]
x_sample
=
processing
.
decode_first_stage
(
shared
.
sd_model
,
sample
.
unsqueeze
(
0
))[
0
]
*
0.5
+
0.5
if
approximation
!=
3
:
x_sample
=
(
x_sample
+
1.0
)
/
2.0
x_sample
=
torch
.
clamp
(
x_sample
,
min
=
0.0
,
max
=
1.0
)
x_sample
=
torch
.
clamp
(
x_sample
,
min
=
0.0
,
max
=
1.0
)
x_sample
=
255.
*
np
.
moveaxis
(
x_sample
.
cpu
()
.
numpy
(),
0
,
2
)
x_sample
=
255.
*
np
.
moveaxis
(
x_sample
.
cpu
()
.
numpy
(),
0
,
2
)
x_sample
=
x_sample
.
astype
(
np
.
uint8
)
x_sample
=
x_sample
.
astype
(
np
.
uint8
)
...
...
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