├── .gitignore ├── README.md ├── patches ├── clip_hijack.py ├── dataset.py ├── ddpm_hijack.py ├── external_pr │ ├── dadapt_test │ │ └── install.py │ ├── dataset.py │ ├── hypernetwork.py │ ├── sd_hijack_checkpoint.py │ ├── textual_inversion.py │ └── ui.py ├── hashes_backup.py ├── hnutil.py ├── hypernetwork.py ├── hypernetworks.py ├── scheduler.py ├── shared.py ├── tbutils.py ├── textual_inversion.py └── ui.py └── scripts └── hypernetwork-extensions.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/README.md -------------------------------------------------------------------------------- /patches/clip_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/clip_hijack.py -------------------------------------------------------------------------------- /patches/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/dataset.py -------------------------------------------------------------------------------- /patches/ddpm_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/ddpm_hijack.py -------------------------------------------------------------------------------- /patches/external_pr/dadapt_test/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/dadapt_test/install.py -------------------------------------------------------------------------------- /patches/external_pr/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/dataset.py -------------------------------------------------------------------------------- /patches/external_pr/hypernetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/hypernetwork.py -------------------------------------------------------------------------------- /patches/external_pr/sd_hijack_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/sd_hijack_checkpoint.py -------------------------------------------------------------------------------- /patches/external_pr/textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/textual_inversion.py -------------------------------------------------------------------------------- /patches/external_pr/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/external_pr/ui.py -------------------------------------------------------------------------------- /patches/hashes_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/hashes_backup.py -------------------------------------------------------------------------------- /patches/hnutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/hnutil.py -------------------------------------------------------------------------------- /patches/hypernetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/hypernetwork.py -------------------------------------------------------------------------------- /patches/hypernetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/hypernetworks.py -------------------------------------------------------------------------------- /patches/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/scheduler.py -------------------------------------------------------------------------------- /patches/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/shared.py -------------------------------------------------------------------------------- /patches/tbutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/tbutils.py -------------------------------------------------------------------------------- /patches/textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/textual_inversion.py -------------------------------------------------------------------------------- /patches/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/patches/ui.py -------------------------------------------------------------------------------- /scripts/hypernetwork-extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aria1th/Hypernetwork-MonkeyPatch-Extension/HEAD/scripts/hypernetwork-extensions.py --------------------------------------------------------------------------------