├── .gitignore ├── LICENSE ├── README.md ├── data └── coco_30k.csv ├── diversity_distillation.ipynb ├── dt-visualization.ipynb ├── evalscripts ├── diversity_distillation_sdxl.py └── sdxl_inference.py ├── images ├── intro.png └── intro_fig.png ├── notebooks ├── lora-transfer.ipynb ├── slider_transfer.ipynb └── teaser.ipynb ├── requirements.txt └── utils ├── load_util.py ├── lora.py ├── sdv14.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/README.md -------------------------------------------------------------------------------- /data/coco_30k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/data/coco_30k.csv -------------------------------------------------------------------------------- /diversity_distillation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/diversity_distillation.ipynb -------------------------------------------------------------------------------- /dt-visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/dt-visualization.ipynb -------------------------------------------------------------------------------- /evalscripts/diversity_distillation_sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/evalscripts/diversity_distillation_sdxl.py -------------------------------------------------------------------------------- /evalscripts/sdxl_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/evalscripts/sdxl_inference.py -------------------------------------------------------------------------------- /images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/images/intro.png -------------------------------------------------------------------------------- /images/intro_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/images/intro_fig.png -------------------------------------------------------------------------------- /notebooks/lora-transfer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/notebooks/lora-transfer.ipynb -------------------------------------------------------------------------------- /notebooks/slider_transfer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/notebooks/slider_transfer.ipynb -------------------------------------------------------------------------------- /notebooks/teaser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/notebooks/teaser.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/load_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/utils/load_util.py -------------------------------------------------------------------------------- /utils/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/utils/lora.py -------------------------------------------------------------------------------- /utils/sdv14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/utils/sdv14.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitgandikota/distillation/HEAD/utils/utils.py --------------------------------------------------------------------------------