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
777af661
Commit
777af661
authored
Dec 31, 2023
by
Aarni Koskela
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Be more clear about Spandrel model nomenclature
parent
c0ca6348
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
11 deletions
+13
-11
extensions-builtin/SwinIR/scripts/swinir_model.py
extensions-builtin/SwinIR/scripts/swinir_model.py
+3
-3
modules/gfpgan_model.py
modules/gfpgan_model.py
+6
-4
modules/modelloader.py
modules/modelloader.py
+1
-1
modules/realesrgan_model.py
modules/realesrgan_model.py
+2
-2
modules/upscaler_utils.py
modules/upscaler_utils.py
+1
-1
No files found.
extensions-builtin/SwinIR/scripts/swinir_model.py
View file @
777af661
...
...
@@ -71,7 +71,7 @@ class UpscalerSwinIR(Upscaler):
else
:
filename
=
path
model
=
modelloader
.
load_spandrel_model
(
model
_descriptor
=
modelloader
.
load_spandrel_model
(
filename
,
device
=
self
.
_get_device
(),
dtype
=
devices
.
dtype
,
...
...
@@ -79,10 +79,10 @@ class UpscalerSwinIR(Upscaler):
)
if
getattr
(
opts
,
'SWIN_torch_compile'
,
False
):
try
:
model
=
torch
.
compile
(
model
)
model
_descriptor
.
model
.
compile
(
)
except
Exception
:
logger
.
warning
(
"Failed to compile SwinIR model, fallback to JIT"
,
exc_info
=
True
)
return
model
return
model
_descriptor
def
_get_device
(
self
):
return
devices
.
get_device_for
(
'swinir'
)
...
...
modules/gfpgan_model.py
View file @
777af661
...
...
@@ -3,6 +3,8 @@ from __future__ import annotations
import
logging
import
os
import
torch
from
modules
import
(
devices
,
errors
,
...
...
@@ -25,7 +27,7 @@ class FaceRestorerGFPGAN(face_restoration_utils.CommonFaceRestoration):
def
get_device
(
self
):
return
devices
.
device_gfpgan
def
load_net
(
self
)
->
Non
e
:
def
load_net
(
self
)
->
torch
.
Modul
e
:
for
model_path
in
modelloader
.
load_models
(
model_path
=
self
.
model_path
,
model_url
=
model_url
,
...
...
@@ -34,13 +36,13 @@ class FaceRestorerGFPGAN(face_restoration_utils.CommonFaceRestoration):
ext_filter
=
[
'.pth'
],
):
if
'GFPGAN'
in
os
.
path
.
basename
(
model_path
):
net
=
modelloader
.
load_spandrel_model
(
model
=
modelloader
.
load_spandrel_model
(
model_path
,
device
=
self
.
get_device
(),
expected_architecture
=
'GFPGAN'
,
)
.
model
net
.
different_w
=
True
# see https://github.com/chaiNNer-org/spandrel/pull/81
return
net
model
.
different_w
=
True
# see https://github.com/chaiNNer-org/spandrel/pull/81
return
model
raise
ValueError
(
"No GFPGAN model found"
)
def
restore
(
self
,
np_image
):
...
...
modules/modelloader.py
View file @
777af661
...
...
@@ -143,7 +143,7 @@ def load_spandrel_model(
*
,
device
:
str
|
torch
.
device
|
None
,
half
:
bool
=
False
,
dtype
:
str
|
None
=
None
,
dtype
:
str
|
torch
.
dtype
|
None
=
None
,
expected_architecture
:
str
|
None
=
None
,
)
->
spandrel
.
ModelDescriptor
:
import
spandrel
...
...
modules/realesrgan_model.py
View file @
777af661
...
...
@@ -36,14 +36,14 @@ class UpscalerRealESRGAN(Upscaler):
errors
.
report
(
f
"Unable to load RealESRGAN model {path}"
,
exc_info
=
True
)
return
img
mod
=
modelloader
.
load_spandrel_model
(
mod
el_descriptor
=
modelloader
.
load_spandrel_model
(
info
.
local_data_path
,
device
=
self
.
device
,
half
=
(
not
cmd_opts
.
no_half
and
not
cmd_opts
.
upcast_sampling
),
expected_architecture
=
"ESRGAN"
,
# "RealESRGAN" isn't a specific thing for Spandrel
)
return
upscale_with_model
(
mod
,
mod
el_descriptor
,
img
,
tile_size
=
opts
.
ESRGAN_tile
,
tile_overlap
=
opts
.
ESRGAN_tile_overlap
,
...
...
modules/upscaler_utils.py
View file @
777af661
...
...
@@ -6,7 +6,7 @@ import torch
import
tqdm
from
PIL
import
Image
from
modules
import
devices
,
images
from
modules
import
images
logger
=
logging
.
getLogger
(
__name__
)
...
...
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