-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.py
232 lines (184 loc) · 10 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
class Config:
version = "1.0"
windowTitle = "qapyq"
windowIcon = "res/qapyq.png"
# Font
fontMonospace = "res/font/DejaVuSansMono.ttf"
# Paths
pathConfig = "./qapyq_config.json"
pathDefaultCaptionRules = "./user/default-caption-rules.json"
pathMaskMacros = "./user/mask-macros/"
pathExport = "."
pathDebugLoad = ""
exportPresets = {
"crop": {
"path_template": "{{path}}_{{w}}x{{h}}.png",
"overwrite": False
},
"scale": {
"path_template": "{{path}}_{{w}}x{{h}}.png",
"overwrite": False
},
"mask": {
"path_template": "{{path}}-masklabel.png",
"overwrite": True
}
}
# View
viewZoomFactor = 1.15
viewZoomMinimum = 0.5
# Slideshow
slideshowInterval = 4.0
slideshowShuffle = False
slideshowFade = True
# Crop
cropSizePresets = ["512x512", "512x768", "768x768", "768x1152", "1024x1024", "1024x1536"]
cropSizeStep = 64
cropWheelStep = 0.02
# Mask
maskSuffix = "-masklabel"
maskHistorySize = 20
# JSON Keys
keysCaption = ["caption"]
keysCaptionDefault = "caption"
keysTags = ["tags"]
keysTagsDefault = "tags"
# Prompts
promptCaptionPresets = dict()
promptCaptionDefault = {
"system_prompt":
"You are an assistant that describes scenes in detailed, vivid but concise English prose. Write simple, clear sentences and avoid ambiguity.\n"
"No relative clauses. Don't use pronouns to refer to elements: Repeat the object names if needed.\n"
"No formatting, no bullet points. No fill words, no embellishment, no juxtaposition. Focus on the observable, no interpretations, no speculation.\n"
"Describe all elements while maintaining a logical flow from main subject to background: Start with the primary focal point, describe its details, then move to secondary elements in order of prominence.\n"
"The description is intended as caption for AI training.\n",
"prompts": "Describe the image in detail. Begin your answer directly with the subject without writing 'The subject', without 'The image', etc."
}
promptLLMPresets = dict()
promptLLMDefault = {
"system_prompt":
"Your task is to summarize image captions. I will provide multiple descriptions of the same image separated by a line with dash. "
"I will also include a list of booru tags that accurately categorize the image. "
"Use your full knowledge about booru tags and use them to inform your summary.\n\n"
\
"You will summarize my descriptions and condense all provided information into one paragraph. "
"The resulting description must encompass all the details provided in my original input. "
"You may rephrase my input, but never invent anything new. Your output will never contain new information.",
"prompts":
"{{captions.caption}}\n-\n"
"{{captions.caption_round2}}\n-\n"
"{{captions.caption_round3}}\n-\n"
"{{tags.tags}}"
}
sysPromptFallbackTemplate = "# System Instructions:\n{{systemPrompt}}\n\n# Prompt:\n{{prompt}}"
templateApplyPresets = dict()
templateApplyDefault = { "prompts": "{{captions.caption}} {{tags.tags}}" }
# Inference
inferCaptionPresets = dict()
inferLLMPresets = dict()
inferTagPresets = dict()
inferMaskPresets = dict()
inferScalePresets = {
"Default": {
"backend": "upscale",
"interp_up": "Lanczos",
"interp_down": "Area",
"levels": []
}
}
inferSelectedPresets = dict()
INFER_PRESET_SAMPLECFG_KEY = "sample_config"
# Caption
captionRulesLoadMode = "previous"
captionShowPreview = False
# Gallery
galleryThumbnailSize = 200
galleryThumbnailThreads = 6
# Window state
windowStates = dict()
windowOpen = []
# Misc static
batchWinLegendWidth = 130
@classmethod
def load(cls):
import json, os
if os.path.exists(cls.pathConfig):
with open(cls.pathConfig, 'r') as file:
data = json.load(file)
else:
data = dict()
cls.fontMonospace = data.get("font_monospace", cls.fontMonospace)
cls.pathExport = data.get("path_export", cls.pathExport)
cls.pathDebugLoad = data.get("path_debug_load", cls.pathDebugLoad)
cls.exportPresets = data.get("export_presets", cls.exportPresets)
cls.viewZoomFactor = float(data.get("view_zoom_factor", cls.viewZoomFactor))
cls.viewZoomMinimum = float(data.get("view_zoom_minimum", cls.viewZoomMinimum))
cls.slideshowInterval = float(data.get("slideshow_interval", cls.slideshowInterval))
cls.slideshowShuffle = bool(data.get("slideshow_shuffle", cls.slideshowShuffle))
cls.slideshowFade = bool(data.get("slideshow_fade", cls.slideshowFade))
cls.cropSizePresets = data.get("crop_size_presets", cls.cropSizePresets)
cls.cropSizeStep = int(data.get("crop_size_step", cls.cropSizeStep))
cls.cropWheelStep = float(data.get("crop_wheel_step", cls.cropWheelStep))
cls.maskSuffix = data.get("mask_suffix", cls.maskSuffix)
cls.maskHistorySize = int(data.get("mask_history_size", cls.maskHistorySize))
cls.keysCaption = data.get("keys_caption", cls.keysCaption)
cls.keysCaptionDefault = data.get("keys_caption_default", cls.keysCaptionDefault)
cls.keysTags = data.get("keys_tags", cls.keysTags)
cls.keysTagsDefault = data.get("keys_tags_default", cls.keysTagsDefault)
cls.promptCaptionPresets = data.get("prompt_caption_presets", cls.promptCaptionPresets)
cls.promptLLMPresets = data.get("prompt_llm_presets", cls.promptLLMPresets)
cls.sysPromptFallbackTemplate = data.get("sys_prompt_fallback_template", cls.sysPromptFallbackTemplate)
cls.templateApplyPresets = data.get("template_apply_presets", cls.templateApplyPresets)
cls.inferCaptionPresets = data.get("infer_caption_presets", cls.inferCaptionPresets)
cls.inferLLMPresets = data.get("infer_llm_presets", cls.inferLLMPresets)
cls.inferTagPresets = data.get("infer_tag_presets", cls.inferTagPresets)
cls.inferMaskPresets = data.get("infer_mask_presets", cls.inferMaskPresets)
cls.inferScalePresets = data.get("infer_scale_presets", cls.inferScalePresets)
cls.inferSelectedPresets = data.get("infer_selected_presets", cls.inferSelectedPresets)
cls.captionRulesLoadMode = data.get("caption_rules_load_mode", cls.captionRulesLoadMode)
cls.captionShowPreview = bool(data.get("caption_show_preview", cls.captionShowPreview))
cls.galleryThumbnailSize = int(data.get("gallery_thumbnail_size", cls.galleryThumbnailSize))
cls.galleryThumbnailThreads = int(data.get("gallery_thumbnail_threads", cls.galleryThumbnailThreads))
cls.windowStates = data.get("window_states", cls.windowStates)
cls.windowOpen = data.get("window_open", cls.windowOpen)
@classmethod
def save(cls):
import json
data = dict()
data["version"] = cls.version
data["font_monospace"] = cls.fontMonospace
data["path_export"] = cls.pathExport
data["path_debug_load"] = cls.pathDebugLoad
data["export_presets"] = cls.exportPresets
data["view_zoom_factor"] = cls.viewZoomFactor
data["view_zoom_minimum"] = cls.viewZoomMinimum
data["slideshow_interval"] = cls.slideshowInterval
data["slideshow_shuffle"] = cls.slideshowShuffle
data["slideshow_fade"] = cls.slideshowFade
data["crop_size_presets"] = cls.cropSizePresets
data["crop_size_step"] = cls.cropSizeStep
data["crop_wheel_step"] = cls.cropWheelStep
data["mask_suffix"] = cls.maskSuffix
data["mask_history_size"] = cls.maskHistorySize
data["keys_caption"] = cls.keysCaption
data["keys_caption_default"] = cls.keysCaptionDefault
data["keys_tags"] = cls.keysTags
data["keys_tags_default"] = cls.keysTagsDefault
data["prompt_caption_presets"] = cls.promptCaptionPresets
data["prompt_llm_presets"] = cls.promptLLMPresets
data["sys_prompt_fallback_template"] = cls.sysPromptFallbackTemplate
data["template_apply_presets"] = cls.templateApplyPresets
data["infer_caption_presets"] = cls.inferCaptionPresets
data["infer_llm_presets"] = cls.inferLLMPresets
data["infer_tag_presets"] = cls.inferTagPresets
data["infer_mask_presets"] = cls.inferMaskPresets
data["infer_scale_presets"] = cls.inferScalePresets
data["infer_selected_presets"] = cls.inferSelectedPresets
data["caption_rules_load_mode"] = cls.captionRulesLoadMode
data["caption_show_preview"] = cls.captionShowPreview
data["gallery_thumbnail_size"] = cls.galleryThumbnailSize
data["gallery_thumbnail_threads"] = cls.galleryThumbnailThreads
data["window_states"] = cls.windowStates
data["window_open"] = cls.windowOpen
with open(cls.pathConfig, 'w') as file:
json.dump(data, file, indent=4)