Instructions to use Ketansomewhere/cifar10_conditional_diffusion1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Ketansomewhere/cifar10_conditional_diffusion1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Ketansomewhere/cifar10_conditional_diffusion1", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,9 @@ tags:
|
|
| 10 |
---
|
| 11 |
Here is Custom Pipeline for Class conditioned diffusion model. For training script, pipeline, tutorial nb and sampling please check my Github Repo:- https://github.com/KetanMann/Class_Conditioned_Diffusion_Training_Script
|
| 12 |
Here is Class Conditional Diffusion Pipeline and Sampling.
|
| 13 |
-
|
|
|
|
|
|
|
| 14 |
|
| 15 |
First Run
|
| 16 |
```bash
|
|
|
|
| 10 |
---
|
| 11 |
Here is Custom Pipeline for Class conditioned diffusion model. For training script, pipeline, tutorial nb and sampling please check my Github Repo:- https://github.com/KetanMann/Class_Conditioned_Diffusion_Training_Script
|
| 12 |
Here is Class Conditional Diffusion Pipeline and Sampling.
|
| 13 |
+
<div align="center">
|
| 14 |
+
<img src="grid_images.gif" alt="Class Conditioned Diffusion GIF">
|
| 15 |
+
</div>
|
| 16 |
|
| 17 |
First Run
|
| 18 |
```bash
|