├── .gitignore ├── LICENSE ├── README.md ├── assets ├── BackUp-Images-5bb3041d.js ├── Character-Trimming-28474c8c.js ├── Character-Trimming-d91883c1.js ├── Dropable_Image01-ff3e6a7b.js ├── Dropable_Image02-ec89c5f5.js ├── ImageItemComp-5cb7bdd1.js ├── Image_window01-109ac729.js ├── Input-Images-c9403b7c.js ├── Input-Images-ca3d808f.js ├── Make_Lora_Main-d0dd2ed9.js ├── Make_Lora_Main-d676bacd.js ├── ModalItemComp-450d0411.js ├── Output-Folder-c90e0d52.js ├── Select-Files-95cffc6b.js ├── Trimming-Settings-d4305e6d.js ├── captioning-ae393a24.js ├── contents-style-04c87960.css ├── example │ ├── example02.png │ └── example03.png ├── favicon.ico ├── folder-select-15ccf3c6.js ├── folder-select-b5d97383.js ├── form-dropdown01-421352ae.js ├── help-button01-51c46106.js ├── help-contents01-5a841cd8.js ├── index-09c46877.js ├── index-bb37956d.css ├── mini-Button01-fadaf757.js ├── mini-Button02-28aa58d0.js ├── modal-LoadingBar01-be170e50.js ├── modal-textform01-a307623e.js ├── row-Buttons02-d824a8ae.js ├── settting-3b61253a.js ├── slider-form01-55fbbc23.js ├── slider-form01-8de3898a.css ├── tag_editor-83e95c31.js ├── tag_editor-c1ae72af.js ├── tagging-33e54281.js ├── tagging-e81e857b.js ├── template01-92276447.js ├── textbox-form01-2250956f.js ├── textbox-form01number-729cdbbf.js ├── thumbnail_pre │ ├── chikoku_syougakusei_boy.png │ ├── happy_schoolboy.png │ ├── happy_schoolgirl.png │ ├── pool_mizugi_school_boy.png │ ├── school_blazer_girl_kurubushi.png │ ├── school_randoseru_girl.png │ ├── smartphone_schoolboy_stand_smile.png │ ├── soccer_lifting_woman.png │ ├── speech_school_boy.png │ ├── suisougaku_bass_clarinet_woman.png │ └── tsuugaku_jitensya_girl_blazer.png ├── welcome-page-00fa0f4c.js └── welcome-page-949cf3d3.js ├── example ├── example01.png └── example02.png ├── install.bat ├── main.py ├── models ├── esrgan_models │ └── esrgan_models.txt ├── face_detect_models │ └── put models.txt ├── sd_models │ └── Insert sd model here.txt └── tagger_models │ └── Insert tagger model here.txt ├── modules ├── Make_Lora.py ├── Make_TextFile.py ├── __init__.py ├── class_definition │ ├── folder_manager │ │ ├── Interface │ │ │ └── folder_manager_interface.py │ │ ├── __init__.py │ │ ├── backup_folder_manager.py │ │ ├── character_trimming_folder_manager.py │ │ ├── fine_tuning_folder_manager.py │ │ ├── image_folder_manager.py │ │ ├── install_folder_manager.py │ │ ├── save_file_manager.py │ │ ├── thumbnail_after_folder_manager.py │ │ └── thumbnail_base_folder_manager.py │ ├── json_manager │ │ ├── __init__.py │ │ ├── create_setting_json_manager.py │ │ ├── interface │ │ │ ├── savefiles_setting_manager.py │ │ │ └── setting_image_data_manager.py │ │ ├── setting_image_data_sub_manager.py │ │ ├── setting_learning_methods_manager.py │ │ └── setting_lora_data_manager.py │ └── user_setting_manager │ │ └── __init__.py ├── file_control.py ├── file_util.py ├── folder_path.py ├── folder_select.py ├── gpu_modules │ ├── edit_images │ │ ├── __init__.py │ │ ├── body_trimming.py │ │ ├── character_trimming.py │ │ ├── edit_with_facedetect.py │ │ └── face_trimming.py │ ├── esrgan_manager │ │ ├── RRDBNet_arch.py │ │ ├── __init__.py │ │ ├── core.py │ │ ├── core02.py │ │ ├── esrgan_manager.py │ │ └── realesrgan │ │ │ ├── __init__.py │ │ │ ├── archs │ │ │ ├── __init__.py │ │ │ ├── discriminator_arch.py │ │ │ └── srvgg_arch.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── realesrgan_dataset.py │ │ │ └── realesrgan_paired_dataset.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── realesrgan_model.py │ │ │ └── realesrnet_model.py │ │ │ ├── train.py │ │ │ ├── utils.py │ │ │ └── version.py │ └── tagging │ │ └── __init__.py ├── my_exception │ ├── __init__.py │ └── exception.py ├── processing_images.py └── welcome_page.py ├── outputs └── output LoRA Model is here.txt ├── requirements-kohyass.txt ├── requirements.txt ├── savefiles └── savefile.txt ├── shell_command └── shell command is here.txt ├── start.bat ├── templates └── index.html └── tools └── tool folder.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/README.md -------------------------------------------------------------------------------- /assets/BackUp-Images-5bb3041d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/BackUp-Images-5bb3041d.js -------------------------------------------------------------------------------- /assets/Character-Trimming-28474c8c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Character-Trimming-28474c8c.js -------------------------------------------------------------------------------- /assets/Character-Trimming-d91883c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Character-Trimming-d91883c1.js -------------------------------------------------------------------------------- /assets/Dropable_Image01-ff3e6a7b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Dropable_Image01-ff3e6a7b.js -------------------------------------------------------------------------------- /assets/Dropable_Image02-ec89c5f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Dropable_Image02-ec89c5f5.js -------------------------------------------------------------------------------- /assets/ImageItemComp-5cb7bdd1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/ImageItemComp-5cb7bdd1.js -------------------------------------------------------------------------------- /assets/Image_window01-109ac729.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Image_window01-109ac729.js -------------------------------------------------------------------------------- /assets/Input-Images-c9403b7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Input-Images-c9403b7c.js -------------------------------------------------------------------------------- /assets/Input-Images-ca3d808f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Input-Images-ca3d808f.js -------------------------------------------------------------------------------- /assets/Make_Lora_Main-d0dd2ed9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Make_Lora_Main-d0dd2ed9.js -------------------------------------------------------------------------------- /assets/Make_Lora_Main-d676bacd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Make_Lora_Main-d676bacd.js -------------------------------------------------------------------------------- /assets/ModalItemComp-450d0411.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/ModalItemComp-450d0411.js -------------------------------------------------------------------------------- /assets/Output-Folder-c90e0d52.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Output-Folder-c90e0d52.js -------------------------------------------------------------------------------- /assets/Select-Files-95cffc6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Select-Files-95cffc6b.js -------------------------------------------------------------------------------- /assets/Trimming-Settings-d4305e6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/Trimming-Settings-d4305e6d.js -------------------------------------------------------------------------------- /assets/captioning-ae393a24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/captioning-ae393a24.js -------------------------------------------------------------------------------- /assets/contents-style-04c87960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/contents-style-04c87960.css -------------------------------------------------------------------------------- /assets/example/example02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/example/example02.png -------------------------------------------------------------------------------- /assets/example/example03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/example/example03.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/folder-select-15ccf3c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/folder-select-15ccf3c6.js -------------------------------------------------------------------------------- /assets/folder-select-b5d97383.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/folder-select-b5d97383.js -------------------------------------------------------------------------------- /assets/form-dropdown01-421352ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/form-dropdown01-421352ae.js -------------------------------------------------------------------------------- /assets/help-button01-51c46106.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/help-button01-51c46106.js -------------------------------------------------------------------------------- /assets/help-contents01-5a841cd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/help-contents01-5a841cd8.js -------------------------------------------------------------------------------- /assets/index-09c46877.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/index-09c46877.js -------------------------------------------------------------------------------- /assets/index-bb37956d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/index-bb37956d.css -------------------------------------------------------------------------------- /assets/mini-Button01-fadaf757.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/mini-Button01-fadaf757.js -------------------------------------------------------------------------------- /assets/mini-Button02-28aa58d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/mini-Button02-28aa58d0.js -------------------------------------------------------------------------------- /assets/modal-LoadingBar01-be170e50.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/modal-LoadingBar01-be170e50.js -------------------------------------------------------------------------------- /assets/modal-textform01-a307623e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/modal-textform01-a307623e.js -------------------------------------------------------------------------------- /assets/row-Buttons02-d824a8ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/row-Buttons02-d824a8ae.js -------------------------------------------------------------------------------- /assets/settting-3b61253a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/settting-3b61253a.js -------------------------------------------------------------------------------- /assets/slider-form01-55fbbc23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/slider-form01-55fbbc23.js -------------------------------------------------------------------------------- /assets/slider-form01-8de3898a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/slider-form01-8de3898a.css -------------------------------------------------------------------------------- /assets/tag_editor-83e95c31.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/tag_editor-83e95c31.js -------------------------------------------------------------------------------- /assets/tag_editor-c1ae72af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/tag_editor-c1ae72af.js -------------------------------------------------------------------------------- /assets/tagging-33e54281.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/tagging-33e54281.js -------------------------------------------------------------------------------- /assets/tagging-e81e857b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/tagging-e81e857b.js -------------------------------------------------------------------------------- /assets/template01-92276447.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/template01-92276447.js -------------------------------------------------------------------------------- /assets/textbox-form01-2250956f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/textbox-form01-2250956f.js -------------------------------------------------------------------------------- /assets/textbox-form01number-729cdbbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/textbox-form01number-729cdbbf.js -------------------------------------------------------------------------------- /assets/thumbnail_pre/chikoku_syougakusei_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/chikoku_syougakusei_boy.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/happy_schoolboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/happy_schoolboy.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/happy_schoolgirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/happy_schoolgirl.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/pool_mizugi_school_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/pool_mizugi_school_boy.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/school_blazer_girl_kurubushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/school_blazer_girl_kurubushi.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/school_randoseru_girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/school_randoseru_girl.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/smartphone_schoolboy_stand_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/smartphone_schoolboy_stand_smile.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/soccer_lifting_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/soccer_lifting_woman.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/speech_school_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/speech_school_boy.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/suisougaku_bass_clarinet_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/suisougaku_bass_clarinet_woman.png -------------------------------------------------------------------------------- /assets/thumbnail_pre/tsuugaku_jitensya_girl_blazer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/thumbnail_pre/tsuugaku_jitensya_girl_blazer.png -------------------------------------------------------------------------------- /assets/welcome-page-00fa0f4c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/welcome-page-00fa0f4c.js -------------------------------------------------------------------------------- /assets/welcome-page-949cf3d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/assets/welcome-page-949cf3d3.js -------------------------------------------------------------------------------- /example/example01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/example/example01.png -------------------------------------------------------------------------------- /example/example02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/example/example02.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/install.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/main.py -------------------------------------------------------------------------------- /models/esrgan_models/esrgan_models.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/face_detect_models/put models.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/sd_models/Insert sd model here.txt: -------------------------------------------------------------------------------- 1 | Insert sd model here. -------------------------------------------------------------------------------- /models/tagger_models/Insert tagger model here.txt: -------------------------------------------------------------------------------- 1 | Insert tagger model here -------------------------------------------------------------------------------- /modules/Make_Lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/Make_Lora.py -------------------------------------------------------------------------------- /modules/Make_TextFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/Make_TextFile.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/Interface/folder_manager_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/Interface/folder_manager_interface.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/__init__.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/backup_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/backup_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/character_trimming_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/character_trimming_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/fine_tuning_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/fine_tuning_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/image_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/image_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/install_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/install_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/save_file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/save_file_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/thumbnail_after_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/thumbnail_after_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/folder_manager/thumbnail_base_folder_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/folder_manager/thumbnail_base_folder_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/__init__.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/create_setting_json_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/create_setting_json_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/interface/savefiles_setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/interface/savefiles_setting_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/interface/setting_image_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/interface/setting_image_data_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/setting_image_data_sub_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/setting_image_data_sub_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/setting_learning_methods_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/setting_learning_methods_manager.py -------------------------------------------------------------------------------- /modules/class_definition/json_manager/setting_lora_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/json_manager/setting_lora_data_manager.py -------------------------------------------------------------------------------- /modules/class_definition/user_setting_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/class_definition/user_setting_manager/__init__.py -------------------------------------------------------------------------------- /modules/file_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/file_control.py -------------------------------------------------------------------------------- /modules/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/file_util.py -------------------------------------------------------------------------------- /modules/folder_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/folder_path.py -------------------------------------------------------------------------------- /modules/folder_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/folder_select.py -------------------------------------------------------------------------------- /modules/gpu_modules/edit_images/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/edit_images/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/edit_images/body_trimming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/edit_images/body_trimming.py -------------------------------------------------------------------------------- /modules/gpu_modules/edit_images/character_trimming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/edit_images/character_trimming.py -------------------------------------------------------------------------------- /modules/gpu_modules/edit_images/edit_with_facedetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/edit_images/edit_with_facedetect.py -------------------------------------------------------------------------------- /modules/gpu_modules/edit_images/face_trimming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/edit_images/face_trimming.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/RRDBNet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/RRDBNet_arch.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/core.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/core02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/core02.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/esrgan_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/esrgan_manager.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/archs/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/archs/discriminator_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/archs/discriminator_arch.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/archs/srvgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/archs/srvgg_arch.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/data/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/data/realesrgan_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/data/realesrgan_dataset.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/data/realesrgan_paired_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/data/realesrgan_paired_dataset.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/models/__init__.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/models/realesrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/models/realesrgan_model.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/models/realesrnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/models/realesrnet_model.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/train.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/utils.py -------------------------------------------------------------------------------- /modules/gpu_modules/esrgan_manager/realesrgan/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/esrgan_manager/realesrgan/version.py -------------------------------------------------------------------------------- /modules/gpu_modules/tagging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/gpu_modules/tagging/__init__.py -------------------------------------------------------------------------------- /modules/my_exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/my_exception/__init__.py -------------------------------------------------------------------------------- /modules/my_exception/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/my_exception/exception.py -------------------------------------------------------------------------------- /modules/processing_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/processing_images.py -------------------------------------------------------------------------------- /modules/welcome_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/modules/welcome_page.py -------------------------------------------------------------------------------- /outputs/output LoRA Model is here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements-kohyass.txt: -------------------------------------------------------------------------------- 1 | lycoris_lora 2 | lion-pytorch 3 | dadaptation 4 | prodigyopt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/requirements.txt -------------------------------------------------------------------------------- /savefiles/savefile.txt: -------------------------------------------------------------------------------- 1 | savefile -------------------------------------------------------------------------------- /shell_command/shell command is here.txt: -------------------------------------------------------------------------------- 1 | shell command is here -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | call .\venv\Scripts\activate 2 | call python main.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umikaze-job/All-In-LoRA/HEAD/templates/index.html -------------------------------------------------------------------------------- /tools/tool folder.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------