├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── anashel-utils.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 01-prompt_creation └── output │ └── prompt.txt ├── 02-images_generation ├── output │ └── .gitkeep └── prompt.txt ├── 03-style_variation ├── input │ └── put-your-image-here.txt └── output │ └── .gitkeep ├── 04-ai_caption ├── input │ └── put-your-image-here.txt └── output │ └── .gitkeep ├── 05a-lora_merging └── put-your-LoRA-here.txt ├── 05b-checkpoint ├── input │ └── put-your-checkpoint-here.txt └── output │ └── .gitkeep ├── 06-lora-analysis ├── input │ └── .gitkeep └── output │ └── .gitkeep ├── LICENSE ├── README.md ├── boot.py ├── config.py ├── generate_caption.py ├── generate_image.py ├── generate_prompt.py ├── generate_style.py ├── input.py ├── main.py ├── merge_lora.py ├── merge_lora_checkpoint.py ├── readme_images └── spider.jpg ├── requirements.txt ├── start_mac-linux.sh └── start_windows.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/anashel-utils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/anashel-utils.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /01-prompt_creation/output/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/01-prompt_creation/output/prompt.txt -------------------------------------------------------------------------------- /02-images_generation/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-images_generation/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/02-images_generation/prompt.txt -------------------------------------------------------------------------------- /03-style_variation/input/put-your-image-here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/03-style_variation/input/put-your-image-here.txt -------------------------------------------------------------------------------- /03-style_variation/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-ai_caption/input/put-your-image-here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/04-ai_caption/input/put-your-image-here.txt -------------------------------------------------------------------------------- /04-ai_caption/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05a-lora_merging/put-your-LoRA-here.txt: -------------------------------------------------------------------------------- 1 | Put all your safetensors LoRA files here. -------------------------------------------------------------------------------- /05b-checkpoint/input/put-your-checkpoint-here.txt: -------------------------------------------------------------------------------- 1 | Put in this folder your checkpoint. -------------------------------------------------------------------------------- /05b-checkpoint/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-lora-analysis/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-lora-analysis/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/README.md -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/boot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generate_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/generate_caption.py -------------------------------------------------------------------------------- /generate_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/generate_image.py -------------------------------------------------------------------------------- /generate_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/generate_prompt.py -------------------------------------------------------------------------------- /generate_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/generate_style.py -------------------------------------------------------------------------------- /input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/input.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/main.py -------------------------------------------------------------------------------- /merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/merge_lora.py -------------------------------------------------------------------------------- /merge_lora_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/merge_lora_checkpoint.py -------------------------------------------------------------------------------- /readme_images/spider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/readme_images/spider.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich 2 | tqdm 3 | safetensors 4 | torch 5 | tabulate 6 | numpy<2 7 | psutil -------------------------------------------------------------------------------- /start_mac-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/start_mac-linux.sh -------------------------------------------------------------------------------- /start_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anashel-RPG/anashel-utils/HEAD/start_windows.bat --------------------------------------------------------------------------------