Instructions to use shalpin87/diffusion_conditional with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use shalpin87/diffusion_conditional with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("shalpin87/diffusion_conditional", torch_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
Sean Halpin commited on
Commit ·
2cb7709
1
Parent(s): 64edef4
update model card README.md
Browse files
README.md
CHANGED
|
@@ -38,7 +38,7 @@ on the `CelebA` dataset.
|
|
| 38 |
The following hyperparameters were used during training:
|
| 39 |
- learning_rate: 0.0001
|
| 40 |
- train_batch_size: 32
|
| 41 |
-
- eval_batch_size:
|
| 42 |
- gradient_accumulation_steps: 1
|
| 43 |
- optimizer: AdamW with betas=(0.95, 0.999), weight_decay=1e-06 and epsilon=1e-08
|
| 44 |
- lr_scheduler: cosine
|
|
|
|
| 38 |
The following hyperparameters were used during training:
|
| 39 |
- learning_rate: 0.0001
|
| 40 |
- train_batch_size: 32
|
| 41 |
+
- eval_batch_size: 16
|
| 42 |
- gradient_accumulation_steps: 1
|
| 43 |
- optimizer: AdamW with betas=(0.95, 0.999), weight_decay=1e-06 and epsilon=1e-08
|
| 44 |
- lr_scheduler: cosine
|