You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/en/api/pipelines/stable_diffusion/stable_diffusion_xl.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,25 @@ You can install the libraries as follows:
38
38
pip install transformers
39
39
pip install accelerate
40
40
pip install safetensors
41
+
```
42
+
43
+
### Watermarker
44
+
45
+
We recommend to add an invisible watermark to images generating by Stable Diffusion XL, this can help with identifying if an image is machine-synthesised for downstream applications. To do so, please install
46
+
the [invisible-watermark library](https://pypi.org/project/invisible-watermark/) via:
47
+
48
+
```
41
49
pip install invisible-watermark>=0.2.0
42
50
```
43
51
52
+
If the `invisible-watermark` library is installed the watermarker will be used **by default**.
53
+
54
+
If you have other provisions for generating or deploying images safely, you can disable the watermarker as follows:
0 commit comments