Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
d5dfbc45
Commit
d5dfbc45
authored
Sep 01, 2022
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added detection if SD repo is located in a current directory
parent
b90feb02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
webui.py
webui.py
+3
-1
No files found.
webui.py
View file @
d5dfbc45
...
...
@@ -3,7 +3,9 @@ import os
import
sys
script_path
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
sd_path
=
os
.
path
.
dirname
(
script_path
)
# use current directory as SD dir if it has related files, otherwise parent dir of script as stated in guide
sd_path
=
os
.
path
.
abspath
(
'.'
)
if
os
.
path
.
exists
(
'./ldm/models/diffusion/ddpm.py'
)
else
os
.
path
.
dirname
(
script_path
)
# add parent directory to path; this is where Stable diffusion repo should be
path_dirs
=
[
...
...
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