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
3e068de0
Commit
3e068de0
authored
Dec 19, 2023
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reorder training preprocessing modules in extras tab
using the order from before the rework
11d23e8c
parent
de03882d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
scripts/postprocessing_caption.py
scripts/postprocessing_caption.py
+1
-1
scripts/postprocessing_create_flipped_copies.py
scripts/postprocessing_create_flipped_copies.py
+1
-1
scripts/postprocessing_focal_crop.py
scripts/postprocessing_focal_crop.py
+1
-1
scripts/processing_autosized_crop.py
scripts/processing_autosized_crop.py
+1
-1
No files found.
scripts/postprocessing_caption.py
View file @
3e068de0
...
...
@@ -4,7 +4,7 @@ import gradio as gr
class
ScriptPostprocessingCeption
(
scripts_postprocessing
.
ScriptPostprocessing
):
name
=
"Caption"
order
=
40
0
0
order
=
40
4
0
def
ui
(
self
):
with
ui_components
.
InputAccordion
(
False
,
label
=
"Caption"
)
as
enable
:
...
...
scripts/postprocessing_create_flipped_copies.py
View file @
3e068de0
...
...
@@ -6,7 +6,7 @@ import gradio as gr
class
ScriptPostprocessingCreateFlippedCopies
(
scripts_postprocessing
.
ScriptPostprocessing
):
name
=
"Create flipped copies"
order
=
40
0
0
order
=
40
3
0
def
ui
(
self
):
with
ui_components
.
InputAccordion
(
False
,
label
=
"Create flipped copies"
)
as
enable
:
...
...
scripts/postprocessing_focal_crop.py
View file @
3e068de0
...
...
@@ -7,7 +7,7 @@ from modules.textual_inversion import autocrop
class
ScriptPostprocessingFocalCrop
(
scripts_postprocessing
.
ScriptPostprocessing
):
name
=
"Auto focal point crop"
order
=
40
0
0
order
=
40
1
0
def
ui
(
self
):
with
ui_components
.
InputAccordion
(
False
,
label
=
"Auto focal point crop"
)
as
enable
:
...
...
scripts/processing_autosized_crop.py
View file @
3e068de0
...
...
@@ -28,7 +28,7 @@ def multicrop_pic(image: Image, mindim, maxdim, minarea, maxarea, objective, thr
class
ScriptPostprocessingAutosizedCrop
(
scripts_postprocessing
.
ScriptPostprocessing
):
name
=
"Auto-sized crop"
order
=
40
0
0
order
=
40
2
0
def
ui
(
self
):
with
ui_components
.
InputAccordion
(
False
,
label
=
"Auto-sized crop"
)
as
enable
:
...
...
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