|
|
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 |
|
|
|
|
|
|
|
|
|
|
|
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') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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) |
|
|
|
|
|
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) |
|
|
|
|
|
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脚本") |
|
|
|
|
|
|
|
|
|
|
|
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) |