Text-to-Image
Diffusers
TensorBoard
Safetensors
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
dreambooth
Instructions to use covalenthq/boredape_diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use covalenthq/boredape_diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("covalenthq/boredape_diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "photo of a bayc nft" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
CK commited on
Commit ·
a02c993
1
Parent(s): 079aefe
Update README.md
Browse files
README.md
CHANGED
|
@@ -79,5 +79,5 @@ for img in imgs:
|
|
| 79 |
display(img)
|
| 80 |
```
|
| 81 |
|
| 82 |
-
## Optimization
|
| 83 |
Results can be further enhanced and refined through meticulous fine-tuning and adept modification of training parameters, unlocking an even broader spectrum of creativity and artistic expression.
|
|
|
|
| 79 |
display(img)
|
| 80 |
```
|
| 81 |
|
| 82 |
+
## Further Optimization
|
| 83 |
Results can be further enhanced and refined through meticulous fine-tuning and adept modification of training parameters, unlocking an even broader spectrum of creativity and artistic expression.
|