Update README.md
Browse files
README.md
CHANGED
|
@@ -26,10 +26,11 @@ pipe = DiffusionPipeline.from_pretrained(
|
|
| 26 |
pipe.load_ip_adapter()
|
| 27 |
pipe.to("cude")
|
| 28 |
|
| 29 |
-
prompt = ""
|
| 30 |
image = Image.open(...)
|
| 31 |
|
| 32 |
mv_images = pipe(
|
|
|
|
| 33 |
ip_adapter_image=image,
|
| 34 |
guidance_scale=5,
|
| 35 |
num_inference_steps=30,
|
|
|
|
| 26 |
pipe.load_ip_adapter()
|
| 27 |
pipe.to("cude")
|
| 28 |
|
| 29 |
+
prompt = "" # no need to input prompt
|
| 30 |
image = Image.open(...)
|
| 31 |
|
| 32 |
mv_images = pipe(
|
| 33 |
+
prompt=prompt,
|
| 34 |
ip_adapter_image=image,
|
| 35 |
guidance_scale=5,
|
| 36 |
num_inference_steps=30,
|