File size: 1,228 Bytes
3527ab2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
43
---
license: other
license_name: fluently-license
license_link: https://huggingface.co/spaces/fluently/License
library_name: diffusers
pipeline_tag: text-to-image
base_model: fluently/Fluently-v4-LCM
tags:
- safetensors
- stable-diffusion
- sd1.5
- LCM
- fluently
- openvino
- openvino-export
inference:
  parameters:
    num_inference_steps: 8
    guidance_scale: 1.5
    negative_prompt: (deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy,
      wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and
      fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry,
      amputation
---

This model was converted to OpenVINO from [`fluently/Fluently-v4-LCM`](https://huggingface.co/fluently/Fluently-v4-LCM) using [optimum-intel](https://github.com/huggingface/optimum-intel)
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.

First make sure you have optimum-intel installed:

```bash
pip install optimum[openvino]
```

To load your model you can do as follows:

```python
from optimum.intel import OVStableDiffusionPipeline

model_id = "hsuwill000/Fluently-v4-LCM-openvino"
model = OVStableDiffusionPipeline.from_pretrained(model_id)
```