├── README.md ├── checkpoint_merging └── merge_checkpoints.py ├── helpers ├── file_utils.py └── tensor_utils.py ├── hindi guide └── chapter1.md ├── lora_merging ├── merge_lora_checkpoint.py └── merge_two_lora.py ├── main.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint_merging/merge_checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/checkpoint_merging/merge_checkpoints.py -------------------------------------------------------------------------------- /helpers/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/helpers/file_utils.py -------------------------------------------------------------------------------- /helpers/tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/helpers/tensor_utils.py -------------------------------------------------------------------------------- /hindi guide/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/hindi guide/chapter1.md -------------------------------------------------------------------------------- /lora_merging/merge_lora_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/lora_merging/merge_lora_checkpoint.py -------------------------------------------------------------------------------- /lora_merging/merge_two_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/lora_merging/merge_two_lora.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspranavajay/Merge-Diffusion-Tool/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | tqdm 3 | safetensors 4 | --------------------------------------------------------------------------------