File size: 14,249 Bytes
394128f
 
 
 
 
5ca856b
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bdf82db
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ca856b
 
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c153912
394128f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ca856b
 
 
 
e0d1cd2
 
 
 
 
 
 
 
 
 
394128f
e0d1cd2
 
 
 
 
 
 
5ca856b
 
 
 
 
 
 
07a8783
 
 
 
 
 
 
7dfc3b3
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
import json
import re
import os
import subprocess
import sys
import shutil
wget_path = '/usr/bin/wget'

params = {}
for arg in sys.argv[1:]:
    if arg.startswith('--'):
        key_value = arg[len('--'):].split('=')
        if len(key_value) == 2:
            key, value = key_value
            params[key] = value


def find_model_json(root_path, mod_json_name):
    for file_name in os.listdir(root_path):
        file_path = os.path.join(root_path, file_name)
        if os.path.isdir(file_path):
            res = find_model_json(file_path, mod_json_name)
            if res is not None:
                return res
        elif file_name == mod_json_name:
            print("find model.json文件:", file_path)
            return file_path


# 自动查找config.json文件
def find_config_json(root_path, config_json_name):
    for file_name in os.listdir(root_path):
        file_path = os.path.join(root_path, file_name)
        if os.path.isdir(file_path):
            res = find_model_json(file_path, config_json_name)
            if res is not None:
                return res
        elif file_name == config_json_name:
            print("find config.json文件:", file_path)
            return file_path


def rec_config_json():
    json_content = {
        "samples_save": True,
        "samples_format": "png",
        "samples_filename_pattern": "",
        "save_images_add_number": True,
        "grid_save": True,
        "grid_format": "png",
        "grid_extended_filename": False,
        "grid_only_if_multiple": True,
        "grid_prevent_empty_spots": False,
        "n_rows": -1,
        "enable_pnginfo": True,
        "save_txt": False,
        "save_images_before_face_restoration": False,
        "save_images_before_highres_fix": False,
        "save_images_before_color_correction": False,
        "jpeg_quality": 80,
        "export_for_4chan": True,
        "use_original_name_batch": True,
        "use_upscaler_name_as_suffix": False,
        "save_selected_only": True,
        "do_not_add_watermark": False,
        "temp_dir": "",
        "clean_temp_dir_at_start": False,
        "outdir_samples": "",
        "outdir_txt2img_samples": "outputs/txt2img-images",
        "outdir_img2img_samples": "outputs/img2img-images",
        "outdir_extras_samples": "outputs/extras-images",
        "outdir_grids": "",
        "outdir_txt2img_grids": "outputs/txt2img-grids",
        "outdir_img2img_grids": "outputs/img2img-grids",
        "outdir_save": "log/images",
        "save_to_dirs": False,
        "grid_save_to_dirs": False,
        "use_save_to_dirs_for_ui": False,
        "directories_filename_pattern": "[date]",
        "directories_max_prompt_words": 8,
        "ESRGAN_tile": 192,
        "ESRGAN_tile_overlap": 8,
        "realesrgan_enabled_models": [
            "R-ESRGAN 4x+",
            "R-ESRGAN 4x+ Anime6B"
        ],
        "upscaler_for_img2img": None,
        "face_restoration_model": None,
        "code_former_weight": 0.5,
        "face_restoration_unload": False,
        "show_warnings": False,
        "memmon_poll_rate": 8,
        "samples_log_stdout": False,
        "multiple_tqdm": True,
        "print_hypernet_extra": False,
        "unload_models_when_training": True,
        "pin_memory": False,
        "save_optimizer_state": False,
        "save_training_settings_to_txt": True,
        "dataset_filename_word_regex": "",
        "dataset_filename_join_string": " ",
        "training_image_repeats_per_epoch": 1,
        "training_write_csv_every": 500,
        "training_xattention_optimizations": False,
        "training_enable_tensorboard": False,
        "training_tensorboard_save_images": False,
        "training_tensorboard_flush_every": 120,
        "sd_model_checkpoint": "",
        "sd_checkpoint_cache": 0,
        "sd_vae_checkpoint_cache": 0,
        "sd_vae": "Automatic",
        "sd_vae_as_default": False,
        "inpainting_mask_weight": 1.0,
        "initial_noise_multiplier": 1.0,
        "img2img_color_correction": False,
        "img2img_fix_steps": False,
        "img2img_background_color": "#ffffff",
        "enable_quantization": False,
        "enable_emphasis": True,
        "enable_batch_seeds": True,
        "comma_padding_backtrack": 20,
        "CLIP_stop_at_last_layers": 2,
        "upcast_attn": False,
        "use_old_emphasis_implementation": False,
        "use_old_karras_scheduler_sigmas": False,
        "use_old_hires_fix_width_height": False,
        "interrogate_keep_models_in_memory": False,
        "interrogate_return_ranks": False,
        "interrogate_clip_num_beams": 1,
        "interrogate_clip_min_length": 24,
        "interrogate_clip_max_length": 48,
        "interrogate_clip_dict_limit": 1500,
        "interrogate_clip_skip_categories": [],
        "interrogate_deepbooru_score_threshold": 0.7,
        "deepbooru_sort_alpha": False,
        "deepbooru_use_spaces": False,
        "deepbooru_escape": True,
        "deepbooru_filter_tags": "",
        "extra_networks_default_view": "thumbs",
        "extra_networks_default_multiplier": 1.0,
        "sd_hypernetwork": "None",
        "return_grid": False,
        "do_not_show_images": False,
        "add_model_hash_to_info": True,
        "add_model_name_to_info": True,
        "disable_weights_auto_swap": True,
        "send_seed": True,
        "send_size": True,
        "font": "",
        "js_modal_lightbox": True,
        "js_modal_lightbox_initially_zoomed": True,
        "show_progress_in_title": True,
        "samplers_in_dropdown": False,
        "dimensions_and_batch_together": True,
        "keyedit_precision_attention": 0.1,
        "keyedit_precision_extra": 0.05,
        "quicksettings": "sd_model_checkpoint, sd_vae, CLIP_stop_at_last_layers, use_old_karras_scheduler_sigmas, always_discard_next_to_last_sigma",
        "ui_reorder": "inpaint, sampler, checkboxes, hires_fix, dimensions, cfg, seed, batch, override_settings, scripts",
        "ui_extra_networks_tab_reorder": "",
        "localization": "zh_CN",
        "show_progressbar": True,
        "live_previews_enable": True,
        "show_progress_grid": True,
        "show_progress_every_n_steps": 20,
        "show_progress_type": "Approx NN",
        "live_preview_content": "Prompt",
        "live_preview_refresh_period": 1000,
        "hide_samplers": [],
        "eta_ddim": 0.0,
        "eta_ancestral": 1.0,
        "ddim_discretize": "uniform",
        "s_churn": 0.0,
        "s_tmin": 0.0,
        "s_noise": 1.0,
        "eta_noise_seed_delta": 31337,
        "always_discard_next_to_last_sigma": False,
        "postprocessing_enable_in_main_ui": [],
        "postprocessing_operation_order": [],
        "upscaling_max_images_in_cache": 5,
        "disabled_extensions": [],
        "sd_checkpoint_hash": "7af57400eb7303877ec35e5b9e03fc29802c44066828165dc3a20b973c439428",
        "ldsr_steps": 100,
        "ldsr_cached": False,
        "SWIN_tile": 192,
        "SWIN_tile_overlap": 8,
        "sd_lora": "None",
        "lora_apply_to_outputs": False,
        "tac_tagFile": "danbooru.csv",
        "tac_active": True,
        "tac_activeIn.txt2img": True,
        "tac_activeIn.img2img": True,
        "tac_activeIn.negativePrompts": True,
        "tac_activeIn.thirdParty": True,
        "tac_activeIn.modelList": "",
        "tac_activeIn.modelListMode": "Blacklist",
        "tac_maxResults": 15.0,
        "tac_showAllResults": False,
        "tac_resultStepLength": 100.0,
        "tac_delayTime": 100.0,
        "tac_useWildcards": True,
        "tac_useEmbeddings": True,
        "tac_useHypernetworks": True,
        "tac_useLoras": True,
        "tac_showWikiLinks": False,
        "tac_replaceUnderscores": True,
        "tac_escapeParentheses": True,
        "tac_appendComma": True,
        "tac_alias.searchByAlias": True,
        "tac_alias.onlyShowAlias": False,
        "tac_translation.translationFile": "ZH.csv",
        "tac_translation.oldFormat": True,
        "tac_translation.searchByTranslation": True,
        "tac_extra.extraFile": "extra-quality-tags.csv",
        "tac_extra.addMode": "Insert before",
        "additional_networks_extra_lora_path": "",
        "additional_networks_sort_models_by": "name",
        "additional_networks_reverse_sort_order": False,
        "additional_networks_model_name_filter": "",
        "additional_networks_xy_grid_model_metadata": "",
        "additional_networks_hash_thread_count": 1.0,
        "additional_networks_back_up_model_when_saving": True,
        "additional_networks_show_only_safetensors": False,
        "additional_networks_show_only_models_with_metadata": "disabled",
        "additional_networks_max_top_tags": 20.0,
        "additional_networks_max_dataset_folders": 20.0,
        "images_history_preload": False,
        "images_record_paths": True,
        "images_delete_message": True,
        "images_history_page_columns": 6.0,
        "images_history_page_rows": 6.0,
        "images_history_pages_perload": 20.0,
        "img_downscale_threshold": 4.0,
        "target_side_length": 4000.0,
        "no_dpmpp_sde_batch_determinism": False,
        "control_net_max_models_num": 3,
   	"hires_fix_show_sampler": True,
    	"hires_fix_show_prompts": True,
    }
    if params["image"] == "True":
        json_content["outdir_txt2img_samples"] = "/content/drive/MyDrive/sd-generate/t2i"
        json_content["outdir_img2img_samples"] = "/content/drive/MyDrive/sd-generate/i2i"
        json_content["outdir_extras_samples"] = "/content/drive/MyDrive/sd-generate/extras"
        json_content["outdir_txt2img_grids"] = "/content/drive/MyDrive/sd-generate/t2i-grids"
        json_content["outdir_img2img_grids"] = "/content/drive/MyDrive/sd-generate/i2i-grids"
    with open(f'{params["dir"]}/config.json', 'w') as configFile:
        json.dump(json_content, configFile, ensure_ascii=False, indent=4)


if params["config"]== "False":
    rec_config_json()
else:
    res_config_json = find_config_json('/content/drive/', 'config.json')
    print(res_config_json)
    subprocess.run(f'cp {res_config_json} {params["dir"]}/config.json', shell=True)

# 图片自动下载脚本
if params["download"]== "True":
    subprocess.run(
        f'aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/datasets/daasd/sd_backup/resolve/main/png_auto_download.js -d {params["dir"]}/javascript -o pad.js',
        shell=True)
else:
    if os.path.exists(f'{params["dir"]}/javascript/png_auto_download.js'):
        os.remove(f'{params["dir"]}/javascript/png_auto_download.js')

# anapnoe版本
# if params["ui"] == "anapnoe手机端完美适配":
#     # png_info脚本
#     subprocess.run([wget_path, '-O', f'{params["dir"]}/javascript/PNG_info_web.js',
#                     'https://github.com/s4afa451dgf415f/colab_stable_diffusion/raw/main/PNG_info_web.js'],
#                    check=True)
#     with open(f'{params["dir"]}/modules/ui.py', 'r') as readFile:
#         content = readFile.read()
#     content = content.replace('''                for tabname, button in buttons.items():
#                     parameters_copypaste.register_paste_params_button(parameters_copypaste.ParamBinding(
#                         paste_button=button, tabname=tabname, source_text_component=generation_info, source_image_component=image,
#                     ))
#
#         image.change(
#             fn=wrap_gradio_call(modules.extras.run_pnginfo),
#             inputs=[image],
#             outputs=[html, generation_info, html2],
#         )''', '')
#
#     with open(f'{params["dir"]}/modules/ui.py', 'w') as writeFile:
#         writeFile.write(content)
#
#     # png_info脚本兼容
#     with open(f'{params["dir"]}/javascript/PNG_info_web.js', 'r') as readFile:
#         content = readFile.read()
#     content = content.replace('''querySelector("#tab_pnginfo > div > div > div:nth-child(2) > div:nth-child(3)")''',
#                               'querySelector("#tab_pnginfo > div > div>div>div:nth-child(4)")')
#     with open(f'{params["dir"]}/javascript/PNG_info_web.js', 'w') as writeFile:
#         writeFile.write(content)

# automatic111版本
# else:
    # 手机平板
css_content = '''
  @media screen and (max-width: 600px) {
    .gradio-slider input[type="range"]{
      display: none;
    }
    .gradio-slider input[type="number"]{
      width: 18em;
  }
  }
  '''
with open(f'{params["dir"]}/style.css', 'a') as cssFile:
    cssFile.write(css_content)
# png_info脚本
if params["png"] == "True":
  if not os.path.exists(f'{params["dir"]}/tmp/ui.py'):
    os.makedirs(f'{params["dir"]}/tmp')
    shutil.copy(f'{params["dir"]}/modules/ui.py',f'{params["dir"]}/tmp/ui.py')
  subprocess.run([wget_path, '-O', f'{params["dir"]}/javascript/piw.js',
                  'https://huggingface.co/datasets/daasd/sd_backup/resolve/main/PNG_info_web.js'],
                check=True)
  # 拦截png_info
  with open(f'{params["dir"]}/modules/ui.py', 'r') as readFile:
      content = readFile.read()
  content = content.replace('''                for tabname, button in buttons.items():
                    parameters_copypaste.register_paste_params_button(parameters_copypaste.ParamBinding(
                        paste_button=button, tabname=tabname, source_text_component=generation_info, source_image_component=image,
                    ))

        image.change(
            fn=wrap_gradio_call(modules.extras.run_pnginfo),
            inputs=[image],
            outputs=[html, generation_info, html2],
        )''', '')
  with open(f'{params["dir"]}/modules/ui.py', 'w') as writeFile:
      writeFile.write(content)
  print("已启用png_info脚本")
else:
  if os.path.exists(f'{params["dir"]}/javascript/piw.js'):
    os.remove(f'{params["dir"]}/javascript/piw.js')
  if os.path.exists(f'{params["dir"]}/tmp/ui.py'):
    shutil.copy(f'{params["dir"]}/tmp/ui.py',f'{params["dir"]}/modules/ui.py')
  print("已禁用png_info脚本")

# 11.11 httpx依赖更新
# 读取文件内容
with open(f'{params["dir"]}/requirements_versions.txt', 'r') as readFile:
    content = readFile.read()
content += '\nhttpx==0.24.1'
with open(f'{params["dir"]}/requirements_versions.txt', 'w') as writeFile:
    writeFile.write(content)