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
539a6986
Commit
539a6986
authored
Mar 25, 2023
by
hitomi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix `--realesrgan-models-path` not working
parent
22bcc7be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
modules/realesrgan_model.py
modules/realesrgan_model.py
+12
-2
No files found.
modules/realesrgan_model.py
View file @
539a6986
...
...
@@ -9,7 +9,7 @@ from realesrgan import RealESRGANer
from
modules.upscaler
import
Upscaler
,
UpscalerData
from
modules.shared
import
cmd_opts
,
opts
from
modules
import
modelloader
class
UpscalerRealESRGAN
(
Upscaler
):
def
__init__
(
self
,
path
):
...
...
@@ -23,7 +23,15 @@ class UpscalerRealESRGAN(Upscaler):
self
.
enable
=
True
self
.
scalers
=
[]
scalers
=
self
.
load_models
(
path
)
local_model_paths
=
self
.
find_models
(
ext_filter
=
[
".pth"
])
for
scaler
in
scalers
:
if
scaler
.
local_data_path
.
startswith
(
"http"
):
filename
=
modelloader
.
friendly_name
(
scaler
.
local_data_path
)
local
=
next
(
iter
([
local_model
for
local_model
in
local_model_paths
if
local_model
.
endswith
(
filename
+
'.pth'
)]),
None
)
if
local
:
scaler
.
local_data_path
=
local
if
scaler
.
name
in
opts
.
realesrgan_enabled_models
:
self
.
scalers
.
append
(
scaler
)
...
...
@@ -64,7 +72,9 @@ class UpscalerRealESRGAN(Upscaler):
print
(
f
"Unable to find model info: {path}"
)
return
None
info
.
local_data_path
=
load_file_from_url
(
url
=
info
.
data_path
,
model_dir
=
self
.
model_path
,
progress
=
True
)
if
info
.
local_data_path
.
startswith
(
"http"
):
info
.
local_data_path
=
load_file_from_url
(
url
=
info
.
data_path
,
model_dir
=
self
.
model_path
,
progress
=
True
)
return
info
except
Exception
as
e
:
print
(
f
"Error making Real-ESRGAN models list: {e}"
,
file
=
sys
.
stderr
)
...
...
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