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 33f9361 commit ea76880Copy full SHA for ea76880
src/diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py
@@ -348,7 +348,7 @@ def check_inputs(
348
prompt_template=None,
349
):
350
if height % 16 != 0 or width % 16 != 0:
351
- raise ValueError(f"`height` and `width` have to be divisible by 8 but are {height} and {width}.")
+ raise ValueError(f"`height` and `width` have to be divisible by 16 but are {height} and {width}.")
352
353
if callback_on_step_end_tensor_inputs is not None and not all(
354
k in self._callback_tensor_inputs for k in callback_on_step_end_tensor_inputs
0 commit comments