├── .github ├── dependabot.yml └── workflows │ └── typos.yml ├── .gitignore ├── LICENSE.md ├── README-ja.md ├── README.md ├── XTI_hijack.py ├── _typos.toml ├── bitsandbytes_windows ├── cextension.py ├── libbitsandbytes_cpu.dll ├── libbitsandbytes_cuda116.dll ├── libbitsandbytes_cuda118.dll └── main.py ├── docs ├── config_README-en.md ├── config_README-ja.md ├── fine_tune_README_ja.md ├── gen_img_README-ja.md ├── train_README-ja.md ├── train_README-zh.md ├── train_SDXL-en.md ├── train_db_README-ja.md ├── train_db_README-zh.md ├── train_lllite_README-ja.md ├── train_lllite_README.md ├── train_network_README-ja.md ├── train_network_README-zh.md ├── train_ti_README-ja.md ├── wd14_tagger_README-en.md └── wd14_tagger_README-ja.md ├── fine_tune.py ├── finetune ├── blip │ ├── blip.py │ ├── med.py │ ├── med_config.json │ └── vit.py ├── clean_captions_and_tags.py ├── hypernetwork_nai.py ├── make_captions.py ├── make_captions_by_git.py ├── merge_captions_to_metadata.py ├── merge_dd_tags_to_metadata.py ├── prepare_buckets_latents.py └── tag_images_by_wd14_tagger.py ├── gen_img.py ├── gen_img_diffusers.py ├── library ├── __init__.py ├── attention_processors.py ├── config_util.py ├── custom_train_functions.py ├── deepspeed_utils.py ├── device_utils.py ├── huggingface_util.py ├── hypernetwork.py ├── ipex │ ├── __init__.py │ ├── attention.py │ ├── diffusers.py │ ├── gradscaler.py │ └── hijacks.py ├── lpw_stable_diffusion.py ├── model_util.py ├── original_unet.py ├── sai_model_spec.py ├── sdxl_lpw_stable_diffusion.py ├── sdxl_model_util.py ├── sdxl_original_unet.py ├── sdxl_train_util.py ├── slicing_vae.py ├── train_util.py └── utils.py ├── networks ├── check_lora_weights.py ├── control_net_lllite.py ├── control_net_lllite_for_train.py ├── dylora.py ├── extract_lora_from_dylora.py ├── extract_lora_from_models.py ├── lora.py ├── lora_diffusers.py ├── lora_fa.py ├── lora_interrogator.py ├── merge_lora.py ├── merge_lora_old.py ├── oft.py ├── resize_lora.py ├── sdxl_merge_lora.py └── svd_merge_lora.py ├── requirements.txt ├── sdxl_gen_img.py ├── sdxl_minimal_inference.py ├── sdxl_train.py ├── sdxl_train_control_net_lllite.py ├── sdxl_train_control_net_lllite_old.py ├── sdxl_train_network.py ├── sdxl_train_textual_inversion.py ├── setup.py ├── tools ├── cache_latents.py ├── cache_text_encoder_outputs.py ├── canny.py ├── convert_diffusers20_original_sd.py ├── detect_face_rotate.py ├── latent_upscaler.py ├── merge_models.py ├── original_control_net.py ├── resize_images_to_resolution.py └── show_metadata.py ├── train_controlnet.py ├── train_db.py ├── train_network.py ├── train_textual_inversion.py └── train_textual_inversion_XTI.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/typos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/.github/workflows/typos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/README.md -------------------------------------------------------------------------------- /XTI_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/XTI_hijack.py -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/_typos.toml -------------------------------------------------------------------------------- /bitsandbytes_windows/cextension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/bitsandbytes_windows/cextension.py -------------------------------------------------------------------------------- /bitsandbytes_windows/libbitsandbytes_cpu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/bitsandbytes_windows/libbitsandbytes_cpu.dll -------------------------------------------------------------------------------- /bitsandbytes_windows/libbitsandbytes_cuda116.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/bitsandbytes_windows/libbitsandbytes_cuda116.dll -------------------------------------------------------------------------------- /bitsandbytes_windows/libbitsandbytes_cuda118.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/bitsandbytes_windows/libbitsandbytes_cuda118.dll -------------------------------------------------------------------------------- /bitsandbytes_windows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/bitsandbytes_windows/main.py -------------------------------------------------------------------------------- /docs/config_README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/config_README-en.md -------------------------------------------------------------------------------- /docs/config_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/config_README-ja.md -------------------------------------------------------------------------------- /docs/fine_tune_README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/fine_tune_README_ja.md -------------------------------------------------------------------------------- /docs/gen_img_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/gen_img_README-ja.md -------------------------------------------------------------------------------- /docs/train_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_README-ja.md -------------------------------------------------------------------------------- /docs/train_README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_README-zh.md -------------------------------------------------------------------------------- /docs/train_SDXL-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_SDXL-en.md -------------------------------------------------------------------------------- /docs/train_db_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_db_README-ja.md -------------------------------------------------------------------------------- /docs/train_db_README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_db_README-zh.md -------------------------------------------------------------------------------- /docs/train_lllite_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_lllite_README-ja.md -------------------------------------------------------------------------------- /docs/train_lllite_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_lllite_README.md -------------------------------------------------------------------------------- /docs/train_network_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_network_README-ja.md -------------------------------------------------------------------------------- /docs/train_network_README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_network_README-zh.md -------------------------------------------------------------------------------- /docs/train_ti_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/train_ti_README-ja.md -------------------------------------------------------------------------------- /docs/wd14_tagger_README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/wd14_tagger_README-en.md -------------------------------------------------------------------------------- /docs/wd14_tagger_README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/docs/wd14_tagger_README-ja.md -------------------------------------------------------------------------------- /fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/fine_tune.py -------------------------------------------------------------------------------- /finetune/blip/blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/blip/blip.py -------------------------------------------------------------------------------- /finetune/blip/med.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/blip/med.py -------------------------------------------------------------------------------- /finetune/blip/med_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/blip/med_config.json -------------------------------------------------------------------------------- /finetune/blip/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/blip/vit.py -------------------------------------------------------------------------------- /finetune/clean_captions_and_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/clean_captions_and_tags.py -------------------------------------------------------------------------------- /finetune/hypernetwork_nai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/hypernetwork_nai.py -------------------------------------------------------------------------------- /finetune/make_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/make_captions.py -------------------------------------------------------------------------------- /finetune/make_captions_by_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/make_captions_by_git.py -------------------------------------------------------------------------------- /finetune/merge_captions_to_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/merge_captions_to_metadata.py -------------------------------------------------------------------------------- /finetune/merge_dd_tags_to_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/merge_dd_tags_to_metadata.py -------------------------------------------------------------------------------- /finetune/prepare_buckets_latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/prepare_buckets_latents.py -------------------------------------------------------------------------------- /finetune/tag_images_by_wd14_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/finetune/tag_images_by_wd14_tagger.py -------------------------------------------------------------------------------- /gen_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/gen_img.py -------------------------------------------------------------------------------- /gen_img_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/gen_img_diffusers.py -------------------------------------------------------------------------------- /library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/attention_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/attention_processors.py -------------------------------------------------------------------------------- /library/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/config_util.py -------------------------------------------------------------------------------- /library/custom_train_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/custom_train_functions.py -------------------------------------------------------------------------------- /library/deepspeed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/deepspeed_utils.py -------------------------------------------------------------------------------- /library/device_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/device_utils.py -------------------------------------------------------------------------------- /library/huggingface_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/huggingface_util.py -------------------------------------------------------------------------------- /library/hypernetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/hypernetwork.py -------------------------------------------------------------------------------- /library/ipex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/ipex/__init__.py -------------------------------------------------------------------------------- /library/ipex/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/ipex/attention.py -------------------------------------------------------------------------------- /library/ipex/diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/ipex/diffusers.py -------------------------------------------------------------------------------- /library/ipex/gradscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/ipex/gradscaler.py -------------------------------------------------------------------------------- /library/ipex/hijacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/ipex/hijacks.py -------------------------------------------------------------------------------- /library/lpw_stable_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/lpw_stable_diffusion.py -------------------------------------------------------------------------------- /library/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/model_util.py -------------------------------------------------------------------------------- /library/original_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/original_unet.py -------------------------------------------------------------------------------- /library/sai_model_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/sai_model_spec.py -------------------------------------------------------------------------------- /library/sdxl_lpw_stable_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/sdxl_lpw_stable_diffusion.py -------------------------------------------------------------------------------- /library/sdxl_model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/sdxl_model_util.py -------------------------------------------------------------------------------- /library/sdxl_original_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/sdxl_original_unet.py -------------------------------------------------------------------------------- /library/sdxl_train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/sdxl_train_util.py -------------------------------------------------------------------------------- /library/slicing_vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/slicing_vae.py -------------------------------------------------------------------------------- /library/train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/train_util.py -------------------------------------------------------------------------------- /library/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/library/utils.py -------------------------------------------------------------------------------- /networks/check_lora_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/check_lora_weights.py -------------------------------------------------------------------------------- /networks/control_net_lllite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/control_net_lllite.py -------------------------------------------------------------------------------- /networks/control_net_lllite_for_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/control_net_lllite_for_train.py -------------------------------------------------------------------------------- /networks/dylora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/dylora.py -------------------------------------------------------------------------------- /networks/extract_lora_from_dylora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/extract_lora_from_dylora.py -------------------------------------------------------------------------------- /networks/extract_lora_from_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/extract_lora_from_models.py -------------------------------------------------------------------------------- /networks/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/lora.py -------------------------------------------------------------------------------- /networks/lora_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/lora_diffusers.py -------------------------------------------------------------------------------- /networks/lora_fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/lora_fa.py -------------------------------------------------------------------------------- /networks/lora_interrogator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/lora_interrogator.py -------------------------------------------------------------------------------- /networks/merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/merge_lora.py -------------------------------------------------------------------------------- /networks/merge_lora_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/merge_lora_old.py -------------------------------------------------------------------------------- /networks/oft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/oft.py -------------------------------------------------------------------------------- /networks/resize_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/resize_lora.py -------------------------------------------------------------------------------- /networks/sdxl_merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/sdxl_merge_lora.py -------------------------------------------------------------------------------- /networks/svd_merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/networks/svd_merge_lora.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/requirements.txt -------------------------------------------------------------------------------- /sdxl_gen_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_gen_img.py -------------------------------------------------------------------------------- /sdxl_minimal_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_minimal_inference.py -------------------------------------------------------------------------------- /sdxl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_train.py -------------------------------------------------------------------------------- /sdxl_train_control_net_lllite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_train_control_net_lllite.py -------------------------------------------------------------------------------- /sdxl_train_control_net_lllite_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_train_control_net_lllite_old.py -------------------------------------------------------------------------------- /sdxl_train_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_train_network.py -------------------------------------------------------------------------------- /sdxl_train_textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/sdxl_train_textual_inversion.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/setup.py -------------------------------------------------------------------------------- /tools/cache_latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/cache_latents.py -------------------------------------------------------------------------------- /tools/cache_text_encoder_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/cache_text_encoder_outputs.py -------------------------------------------------------------------------------- /tools/canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/canny.py -------------------------------------------------------------------------------- /tools/convert_diffusers20_original_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/convert_diffusers20_original_sd.py -------------------------------------------------------------------------------- /tools/detect_face_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/detect_face_rotate.py -------------------------------------------------------------------------------- /tools/latent_upscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/latent_upscaler.py -------------------------------------------------------------------------------- /tools/merge_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/merge_models.py -------------------------------------------------------------------------------- /tools/original_control_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/original_control_net.py -------------------------------------------------------------------------------- /tools/resize_images_to_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/resize_images_to_resolution.py -------------------------------------------------------------------------------- /tools/show_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/tools/show_metadata.py -------------------------------------------------------------------------------- /train_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/train_controlnet.py -------------------------------------------------------------------------------- /train_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/train_db.py -------------------------------------------------------------------------------- /train_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/train_network.py -------------------------------------------------------------------------------- /train_textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/train_textual_inversion.py -------------------------------------------------------------------------------- /train_textual_inversion_XTI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/sd-scripts/HEAD/train_textual_inversion_XTI.py --------------------------------------------------------------------------------