We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0faa57a commit 0a3f908Copy full SHA for 0a3f908
src/diffusers/guiders/frequency_decoupled_guidance.py
@@ -144,8 +144,9 @@ def __init__(
144
):
145
if not _CAN_USE_KORNIA:
146
raise ImportError(
147
- "The `FrequencyDecoupledGuidance` guider cannot be instantiated because the `kornia` library on which"
148
- "it depends is not available in the current environment."
+ "The `FrequencyDecoupledGuidance` guider cannot be instantiated because the `kornia` library on which "
+ "it depends is not available in the current environment. You can install `kornia` with `pip install "
149
+ "kornia`."
150
)
151
152
# Set start to earliest start for any freq component and stop to latest stop for any freq component
0 commit comments