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
1b63afbe
Commit
1b63afbe
authored
Mar 28, 2023
by
AUTOMATIC
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sort hypernetworks and checkpoints by name
parent
8c69bd08
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/hypernetworks/hypernetwork.py
modules/hypernetworks/hypernetwork.py
+1
-1
modules/sd_models.py
modules/sd_models.py
+1
-1
No files found.
modules/hypernetworks/hypernetwork.py
View file @
1b63afbe
...
...
@@ -312,7 +312,7 @@ class Hypernetwork:
def
list_hypernetworks
(
path
):
res
=
{}
for
filename
in
sorted
(
glob
.
iglob
(
os
.
path
.
join
(
path
,
'**/*.pt'
),
recursive
=
True
)):
for
filename
in
sorted
(
glob
.
iglob
(
os
.
path
.
join
(
path
,
'**/*.pt'
),
recursive
=
True
)
,
key
=
str
.
lower
):
name
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
filename
))[
0
]
# Prevent a hypothetical "None.pt" from being listed.
if
name
!=
"None"
:
...
...
modules/sd_models.py
View file @
1b63afbe
...
...
@@ -122,7 +122,7 @@ def list_models():
elif
cmd_ckpt
is
not
None
and
cmd_ckpt
!=
shared
.
default_sd_model_file
:
print
(
f
"Checkpoint in --ckpt argument not found (Possible it was moved to {model_path}: {cmd_ckpt}"
,
file
=
sys
.
stderr
)
for
filename
in
model_list
:
for
filename
in
sorted
(
model_list
,
key
=
str
.
lower
)
:
checkpoint_info
=
CheckpointInfo
(
filename
)
checkpoint_info
.
register
()
...
...
nanahira
@nanahira
mentioned in commit
433b3ab7
·
Apr 19, 2023
mentioned in commit
433b3ab7
mentioned in commit 433b3ab7017556a19173a86d1215ed0a0b5b1396
Toggle commit list
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