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
17a99baf
Commit
17a99baf
authored
Oct 05, 2022
by
Greendayle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better model search
parent
1506fab2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
modules/deepbooru.py
modules/deepbooru.py
+9
-2
No files found.
modules/deepbooru.py
View file @
17a99baf
...
@@ -9,8 +9,15 @@ import tensorflow as tf
...
@@ -9,8 +9,15 @@ import tensorflow as tf
def
_load_tf_and_return_tags
(
pil_image
,
threshold
):
def
_load_tf_and_return_tags
(
pil_image
,
threshold
):
this_folder
=
os
.
path
.
dirname
(
__file__
)
this_folder
=
os
.
path
.
dirname
(
__file__
)
model_path
=
os
.
path
.
join
(
this_folder
,
'..'
,
'models'
,
'deepbooru'
,
'deepdanbooru-v3-20211112-sgd-e28'
)
model_path
=
os
.
path
.
join
(
this_folder
,
'..'
,
'models'
,
'deepbooru'
,
'deepdanbooru-v3-20211112-sgd-e28'
)
if
not
os
.
path
.
exists
(
model_path
):
return
"Download https://github.com/KichangKim/DeepDanbooru/releases/download/v3-20211112-sgd-e28/deepdanbooru-v3-20211112-sgd-e28.zip unpack and put into models/deepbooru"
model_good
=
False
for
path_candidate
in
[
model_path
,
os
.
path
.
dirname
(
model_path
)]:
if
os
.
path
.
exists
(
os
.
path
.
join
(
path_candidate
,
'project.json'
)):
model_path
=
path_candidate
model_good
=
True
if
not
model_good
:
return
(
"Download https://github.com/KichangKim/DeepDanbooru/releases/download/v3-20211112-sgd-e28/"
"deepdanbooru-v3-20211112-sgd-e28.zip unpack and put into models/deepbooru"
)
tags
=
dd
.
project
.
load_tags_from_project
(
model_path
)
tags
=
dd
.
project
.
load_tags_from_project
(
model_path
)
model
=
dd
.
project
.
load_model_from_project
(
model
=
dd
.
project
.
load_model_from_project
(
...
...
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