├── .gitignore ├── LICENSE ├── README.md ├── chop_blocks.py ├── docs └── refs │ └── adapter_formats.md ├── loralib ├── __init__.py ├── metadata.py ├── num_utils.py ├── sdxl_mapper.py └── utils.py └── resize_lora.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/README.md -------------------------------------------------------------------------------- /chop_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/chop_blocks.py -------------------------------------------------------------------------------- /docs/refs/adapter_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/docs/refs/adapter_formats.md -------------------------------------------------------------------------------- /loralib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/loralib/__init__.py -------------------------------------------------------------------------------- /loralib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/loralib/metadata.py -------------------------------------------------------------------------------- /loralib/num_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/loralib/num_utils.py -------------------------------------------------------------------------------- /loralib/sdxl_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/loralib/sdxl_mapper.py -------------------------------------------------------------------------------- /loralib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/loralib/utils.py -------------------------------------------------------------------------------- /resize_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elias-gaeros/resize_lora/HEAD/resize_lora.py --------------------------------------------------------------------------------