Instructions to use TencentARC/PhotoMaker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use TencentARC/PhotoMaker with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("TencentARC/PhotoMaker", 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
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -76,10 +76,10 @@ While the capabilities of image generation models are impressive, they can also
|
|
| 76 |
**BibTeX:**
|
| 77 |
|
| 78 |
```bibtex
|
| 79 |
-
@
|
| 80 |
title={PhotoMaker: Customizing Realistic Human Photos via Stacked ID Embedding},
|
| 81 |
author={Li, Zhen and Cao, Mingdeng and Wang, Xintao and Qi, Zhongang and Cheng, Ming-Ming and Shan, Ying},
|
| 82 |
-
booktitle={
|
| 83 |
-
year={
|
| 84 |
}
|
| 85 |
```
|
|
|
|
| 76 |
**BibTeX:**
|
| 77 |
|
| 78 |
```bibtex
|
| 79 |
+
@inproceedings{li2023photomaker,
|
| 80 |
title={PhotoMaker: Customizing Realistic Human Photos via Stacked ID Embedding},
|
| 81 |
author={Li, Zhen and Cao, Mingdeng and Wang, Xintao and Qi, Zhongang and Cheng, Ming-Ming and Shan, Ying},
|
| 82 |
+
booktitle={IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 83 |
+
year={2024}
|
| 84 |
}
|
| 85 |
```
|