Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reorder training preprocessing modules in extras tab #14367

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
reorder training preprocessing modules in extras tab
using the order from before the rework
11d23e8
  • Loading branch information
w-e-w committed Dec 19, 2023
commit 3e068de0dcec811d515402fc184f70709a785e4f
2 changes: 1 addition & 1 deletion scripts/postprocessing_caption.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class ScriptPostprocessingCeption(scripts_postprocessing.ScriptPostprocessing):
name = "Caption"
order = 4000
order = 4040

def ui(self):
with ui_components.InputAccordion(False, label="Caption") as enable:
Expand Down
2 changes: 1 addition & 1 deletion scripts/postprocessing_create_flipped_copies.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ScriptPostprocessingCreateFlippedCopies(scripts_postprocessing.ScriptPostprocessing):
name = "Create flipped copies"
order = 4000
order = 4030

def ui(self):
with ui_components.InputAccordion(False, label="Create flipped copies") as enable:
Expand Down
2 changes: 1 addition & 1 deletion scripts/postprocessing_focal_crop.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ScriptPostprocessingFocalCrop(scripts_postprocessing.ScriptPostprocessing):
name = "Auto focal point crop"
order = 4000
order = 4010

def ui(self):
with ui_components.InputAccordion(False, label="Auto focal point crop") as enable:
Expand Down
2 changes: 1 addition & 1 deletion scripts/processing_autosized_crop.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 4000
order = 4020

def ui(self):
with ui_components.InputAccordion(False, label="Auto-sized crop") as enable:
Expand Down