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
2499fb4e
Commit
2499fb4e
authored
Oct 05, 2022
by
Raphael Stoeckli
Committed by
AUTOMATIC1111
Oct 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sanitizer for captions in Textual inversion
parent
0e92c367
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
modules/textual_inversion/preprocess.py
modules/textual_inversion/preprocess.py
+28
-0
No files found.
modules/textual_inversion/preprocess.py
View file @
2499fb4e
from
cmath
import
log
import
os
import
os
from
PIL
import
Image
,
ImageOps
from
PIL
import
Image
,
ImageOps
import
platform
import
sys
import
tqdm
import
tqdm
from
modules
import
shared
,
images
from
modules
import
shared
,
images
...
@@ -25,6 +28,7 @@ def preprocess(process_src, process_dst, process_flip, process_split, process_ca
...
@@ -25,6 +28,7 @@ def preprocess(process_src, process_dst, process_flip, process_split, process_ca
def
save_pic_with_caption
(
image
,
index
):
def
save_pic_with_caption
(
image
,
index
):
if
process_caption
:
if
process_caption
:
caption
=
"-"
+
shared
.
interrogator
.
generate_caption
(
image
)
caption
=
"-"
+
shared
.
interrogator
.
generate_caption
(
image
)
caption
=
sanitize_caption
(
os
.
path
.
join
(
dst
,
f
"{index:05}-{subindex[0]}"
),
caption
,
".png"
)
else
:
else
:
caption
=
filename
caption
=
filename
caption
=
os
.
path
.
splitext
(
caption
)[
0
]
caption
=
os
.
path
.
splitext
(
caption
)[
0
]
...
@@ -75,3 +79,27 @@ def preprocess(process_src, process_dst, process_flip, process_split, process_ca
...
@@ -75,3 +79,27 @@ def preprocess(process_src, process_dst, process_flip, process_split, process_ca
if
process_caption
:
if
process_caption
:
shared
.
interrogator
.
send_blip_to_ram
()
shared
.
interrogator
.
send_blip_to_ram
()
def
sanitize_caption
(
base_path
,
original_caption
,
suffix
):
operating_system
=
platform
.
system
()
.
lower
()
if
(
operating_system
==
"windows"
):
invalid_path_characters
=
"
\\
/:*?
\"
<>|"
max_path_length
=
259
else
:
invalid_path_characters
=
"/"
#linux/macos
max_path_length
=
1023
caption
=
original_caption
for
invalid_character
in
invalid_path_characters
:
caption
=
caption
.
replace
(
invalid_character
,
""
)
fixed_path_length
=
len
(
base_path
)
+
len
(
suffix
)
if
fixed_path_length
+
len
(
caption
)
<=
max_path_length
:
return
caption
caption_tokens
=
caption
.
split
()
new_caption
=
""
for
token
in
caption_tokens
:
last_caption
=
new_caption
new_caption
=
new_caption
+
token
+
" "
if
(
len
(
new_caption
)
+
fixed_path_length
-
1
>
max_path_length
):
break
print
(
f
"
\n
Path will be too long. Truncated caption: {original_caption}
\n
to: {last_caption}"
,
file
=
sys
.
stderr
)
return
last_caption
.
strip
()
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