Instructions to use CompVis/cleandift with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusion Single File
How to use CompVis/cleandift with Diffusion Single File:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Add Bibtex
Browse files
README.md
CHANGED
|
@@ -34,3 +34,16 @@ state_dict = load_file(ckpt_pth)
|
|
| 34 |
unet.load_state_dict(state_dict, strict=True)
|
| 35 |
```
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
unet.load_state_dict(state_dict, strict=True)
|
| 35 |
```
|
| 36 |
|
| 37 |
+
## Citation
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@misc{stracke2024cleandiftdiffusionfeaturesnoise,
|
| 41 |
+
title={CleanDIFT: Diffusion Features without Noise},
|
| 42 |
+
author={Nick Stracke and Stefan Andreas Baumann and Kolja Bauer and Frank Fundel and Björn Ommer},
|
| 43 |
+
year={2024},
|
| 44 |
+
eprint={2412.03439},
|
| 45 |
+
archivePrefix={arXiv},
|
| 46 |
+
primaryClass={cs.CV},
|
| 47 |
+
url={https://arxiv.org/abs/2412.03439},
|
| 48 |
+
}
|
| 49 |
+
```
|