Skip to content

Commit

Permalink
fix(hunyuan-video): typo in height and width input check (#10684)
Browse files Browse the repository at this point in the history
  • Loading branch information
badayvedat authored Jan 29, 2025
1 parent 33f9361 commit ea76880
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def check_inputs(
prompt_template=None,
):
if height % 16 != 0 or width % 16 != 0:
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}.")

if callback_on_step_end_tensor_inputs is not None and not all(
k in self._callback_tensor_inputs for k in callback_on_step_end_tensor_inputs
Expand Down

0 comments on commit ea76880

Please sign in to comment.