rupeshs commited on
Commit
85c72c6
1 Parent(s): 92095cb

added sample image

Browse files
Files changed (2) hide show
  1. README.md +4 -2
  2. sample.png +0 -0
README.md CHANGED
@@ -14,6 +14,8 @@ Original Model : [sd-turbo](https://huggingface.co/stabilityai/sd-turbo)
14
 
15
  You can use this model with [FastSD CPU](https://github.com/rupeshs/fastsdcpu).
16
 
 
 
17
  To run the model yourself, you can leverage the 🧨 Diffusers library:
18
 
19
  1. Install the dependencies:
@@ -28,13 +30,13 @@ pipeline = OVStableDiffusionPipeline.from_pretrained(
28
  "rupeshs/sd-turbo-openvino",
29
  ov_config={"CACHE_DIR": ""},
30
  )
31
- prompt = "Self-portrait,a beautiful cyborg with golden hair, 8k"
32
 
33
  images = pipeline(
34
  prompt=prompt,
35
  width=512,
36
  height=512,
37
- num_inference_steps=4,
38
  guidance_scale=1.0,
39
  ).images
40
  images[0].save("out_image.png")
 
14
 
15
  You can use this model with [FastSD CPU](https://github.com/rupeshs/fastsdcpu).
16
 
17
+ ![Sample](./sample.png)
18
+
19
  To run the model yourself, you can leverage the 🧨 Diffusers library:
20
 
21
  1. Install the dependencies:
 
30
  "rupeshs/sd-turbo-openvino",
31
  ov_config={"CACHE_DIR": ""},
32
  )
33
+ prompt = "a cat wearing santa claus dress,portrait"
34
 
35
  images = pipeline(
36
  prompt=prompt,
37
  width=512,
38
  height=512,
39
+ num_inference_steps=1,
40
  guidance_scale=1.0,
41
  ).images
42
  images[0].save("out_image.png")
sample.png ADDED