File size: 1,294 Bytes
d25ae03
 
 
 
 
9038af8
 
 
 
 
 
1bc8e96
36104a0
d0ecc04
d0b4b66
91550de
5a368ae
d25ae03
 
80ae114
d25ae03
 
 
3b286bf
d25ae03
 
 
 
 
425a6ec
d25ae03
 
 
 
714af3b
d25ae03
 
714af3b
d25ae03
 
 
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
42
---
license: mit
language:
- en
tags:
  - text-to-image
  - stable-diffusion
  - stable-diffusion-diffusers
  - lora
  - diffusers
  - coffee
base_model: stabilityai/stable-diffusion-xl-base-1.0
instance_prompt: null
widget:
  - text: 'Brown espresso coffee machine, cubed shaped, featuring a removable tray, built-in water filter, and 2 pink buttons.'
    output:
      url: example.png
---

# Coffee machines ☕ - SDXL LoRA 

## Image examples for the model:
![Image 1](example.png)
>  Brown espresso coffee machine, cubed shaped, featuring a removable tray, built-in water filter, and 2 pink buttons.

## Download model

Weights for this model are available in Safetensors format.

[Download](/Fer14/sdxl-coffee-machines/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import DiffusionPipeline
import torch

pipeline = DiffusionPipeline.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Fer14/sdxl-coffe-machines', weight_name='pytorch_lora_weights.safetensors')
image = pipeline('A yellow espresso machine with portafilter handle and milk frother, box-shaped, with no screen and no buttons ').images[0]
```