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
09165916
Commit
09165916
authored
Aug 04, 2023
by
AUTOMATIC1111
Committed by
GitHub
Aug 04, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12297 from AUTOMATIC1111/sort-VAE
sort VAE
parents
3f9e09a6
7f1d087c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
modules/sd_vae.py
modules/sd_vae.py
+3
-0
No files found.
modules/sd_vae.py
View file @
09165916
...
@@ -50,6 +50,7 @@ def get_filename(filepath):
...
@@ -50,6 +50,7 @@ def get_filename(filepath):
def
refresh_vae_list
():
def
refresh_vae_list
():
global
vae_dict
vae_dict
.
clear
()
vae_dict
.
clear
()
paths
=
[
paths
=
[
...
@@ -83,6 +84,8 @@ def refresh_vae_list():
...
@@ -83,6 +84,8 @@ def refresh_vae_list():
name
=
get_filename
(
filepath
)
name
=
get_filename
(
filepath
)
vae_dict
[
name
]
=
filepath
vae_dict
[
name
]
=
filepath
vae_dict
=
dict
(
sorted
(
vae_dict
.
items
(),
key
=
lambda
item
:
shared
.
natural_sort_key
(
item
[
0
])))
def
find_vae_near_checkpoint
(
checkpoint_file
):
def
find_vae_near_checkpoint
(
checkpoint_file
):
checkpoint_path
=
os
.
path
.
basename
(
checkpoint_file
)
.
rsplit
(
'.'
,
1
)[
0
]
checkpoint_path
=
os
.
path
.
basename
(
checkpoint_file
)
.
rsplit
(
'.'
,
1
)[
0
]
...
...
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