Instructions to use ImagenHub/DreamBooth-Models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ImagenHub/DreamBooth-Models with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ImagenHub/DreamBooth-Models", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Commit ·
c01ee26
1
Parent(s): f0515bc
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
---
|
| 4 |
+
Please kindly cite our paper if you use our code, data, models or results:
|
| 5 |
+
|
| 6 |
+
```bibtex
|
| 7 |
+
@article{ku2023imagenhub,
|
| 8 |
+
title={ImagenHub: Standardizing the evaluation of conditional image generation models},
|
| 9 |
+
author={Max Ku, Tianle Li, Kai Zhang, Yujie Lu, Xingyu Fu, Wenwen Zhuang, Wenhu Chen},
|
| 10 |
+
journal={arXiv preprint arXiv:2310.01596},
|
| 11 |
+
year={2023}
|
| 12 |
+
}
|
| 13 |
+
```
|