├── .gitignore ├── LICENSE ├── README.md ├── hypernetwork_gen_weight.ps1 ├── hypernetwork_gen_weight.py ├── inference_test.py ├── modules ├── __init__.py ├── attention.py ├── hypernet.py ├── lightlora.py └── utils │ ├── __init__.py │ └── xformers_utils.py ├── requirements.txt ├── train_hyperdreambooth.ps1 ├── train_hyperdreambooth.py ├── train_hyperdreambooth.sh ├── train_preoptimized_liloras.ps1 ├── train_preoptimized_liloras.py └── train_preoptimized_liloras.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/README.md -------------------------------------------------------------------------------- /hypernetwork_gen_weight.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/hypernetwork_gen_weight.ps1 -------------------------------------------------------------------------------- /hypernetwork_gen_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/hypernetwork_gen_weight.py -------------------------------------------------------------------------------- /inference_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/inference_test.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/modules/attention.py -------------------------------------------------------------------------------- /modules/hypernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/modules/hypernet.py -------------------------------------------------------------------------------- /modules/lightlora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/modules/lightlora.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/modules/utils/__init__.py -------------------------------------------------------------------------------- /modules/utils/xformers_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/modules/utils/xformers_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_hyperdreambooth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_hyperdreambooth.ps1 -------------------------------------------------------------------------------- /train_hyperdreambooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_hyperdreambooth.py -------------------------------------------------------------------------------- /train_hyperdreambooth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_hyperdreambooth.sh -------------------------------------------------------------------------------- /train_preoptimized_liloras.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_preoptimized_liloras.ps1 -------------------------------------------------------------------------------- /train_preoptimized_liloras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_preoptimized_liloras.py -------------------------------------------------------------------------------- /train_preoptimized_liloras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/HyperKohaku/HEAD/train_preoptimized_liloras.sh --------------------------------------------------------------------------------