update
Browse files
README.md
CHANGED
|
@@ -205,7 +205,7 @@ pipe = StableCascadeCombinedPipeline.from_pretrained("stabilityai/stable-cascade
|
|
| 205 |
prompt = "an image of a shiba inu, donning a spacesuit and helmet"
|
| 206 |
negative_prompt = ""
|
| 207 |
|
| 208 |
-
pipe(
|
| 209 |
prompt="photorealistic portrait artwork of an floral robot with a dark night cyberpunk city background",
|
| 210 |
negative_prompt="",
|
| 211 |
num_inference_steps=10,
|
|
@@ -213,7 +213,8 @@ pipe(
|
|
| 213 |
prior_guidance_scale=3.0,
|
| 214 |
width=1024,
|
| 215 |
height=1024,
|
| 216 |
-
)
|
|
|
|
| 217 |
```
|
| 218 |
|
| 219 |
## Uses
|
|
|
|
| 205 |
prompt = "an image of a shiba inu, donning a spacesuit and helmet"
|
| 206 |
negative_prompt = ""
|
| 207 |
|
| 208 |
+
output = pipe(
|
| 209 |
prompt="photorealistic portrait artwork of an floral robot with a dark night cyberpunk city background",
|
| 210 |
negative_prompt="",
|
| 211 |
num_inference_steps=10,
|
|
|
|
| 213 |
prior_guidance_scale=3.0,
|
| 214 |
width=1024,
|
| 215 |
height=1024,
|
| 216 |
+
)
|
| 217 |
+
output.images[0].save("cascade-combined.png")
|
| 218 |
```
|
| 219 |
|
| 220 |
## Uses
|