Add negative_prompt to pipeline call in Readme (was missing)
#9
by
eliotandres
- opened
README.md
CHANGED
@@ -74,7 +74,7 @@ image = np.concatenate([image, image, image], axis=2)
|
|
74 |
image = Image.fromarray(image)
|
75 |
|
76 |
images = pipe(
|
77 |
-
prompt, image=image, controlnet_conditioning_scale=controlnet_conditioning_scale,
|
78 |
).images
|
79 |
|
80 |
images[0].save(f"hug_lab.png")
|
|
|
74 |
image = Image.fromarray(image)
|
75 |
|
76 |
images = pipe(
|
77 |
+
prompt, negative_prompt=negative_prompt, image=image, controlnet_conditioning_scale=controlnet_conditioning_scale,
|
78 |
).images
|
79 |
|
80 |
images[0].save(f"hug_lab.png")
|