File size: 992 Bytes
4fa4879 79e23b8 4fa4879 79e23b8 4fa4879 79e23b8 4fa4879 79e23b8 c6a3c5b 4fa4879 79e23b8 4fa4879 79e23b8 4fa4879 79e23b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
---
license: creativeml-openrail-m
library_name: diffusers
tags:
- stable-diffusion-xl
- stable-diffusion-xl-diffusers
- text-to-image
- diffusers
- diffusers-training
base_model: stabilityai/stable-diffusion-xl-base-1.0
inference: true
datasets:
- VikramSingh178/Products-10k-BLIP-captions
language:
- en
---
<!-- This model card has been generated automatically according to the information the training script had access to. You
should probably proofread and complete it, then remove this comment. -->
SDXL Product Images
#### How to use
```python
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16)
pipe.to("cuda")
pipe.load_lora_weights("VikramSingh178/Products10k-SDXL-Lora)
prompt = "Commercial photography of a black down jacket with a logo on the chest."
image = pipe(prompt, num_inference_steps=45, guidance_scale=7.5).images[0]
image.save("example.png")
```
|