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
0e77ee24
Commit
0e77ee24
authored
Oct 02, 2022
by
shirase-0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unnecessary library call and added some comments
parent
27fbf3de
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
scripts/prompts_from_file.py
scripts/prompts_from_file.py
+2
-1
No files found.
scripts/prompts_from_file.py
View file @
0e77ee24
...
@@ -2,7 +2,6 @@ import math
...
@@ -2,7 +2,6 @@ import math
import
os
import
os
import
sys
import
sys
import
traceback
import
traceback
from
xml.etree.ElementTree
import
tostring
import
modules.scripts
as
scripts
import
modules.scripts
as
scripts
import
gradio
as
gr
import
gradio
as
gr
...
@@ -90,6 +89,8 @@ class Script(scripts.Script):
...
@@ -90,6 +89,8 @@ class Script(scripts.Script):
state
.
job
=
f
"{loop_no + 1} out of {loop_count}"
state
.
job
=
f
"{loop_no + 1} out of {loop_count}"
# The following line may need revising to remove batch_size references
# The following line may need revising to remove batch_size references
current_line
=
lines
[
loop_no
*
p
.
batch_size
:(
loop_no
+
1
)
*
p
.
batch_size
]
*
p
.
n_iter
current_line
=
lines
[
loop_no
*
p
.
batch_size
:(
loop_no
+
1
)
*
p
.
batch_size
]
*
p
.
n_iter
# If the current line has no tags, parse the whole line as a prompt, else parse each tag
if
(
current_line
[
0
][:
2
]
!=
"--"
):
if
(
current_line
[
0
][:
2
]
!=
"--"
):
p
.
prompt
=
current_line
p
.
prompt
=
current_line
else
:
else
:
...
...
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