Skip to content

Commit 13048e7

Browse files
committed
removed redundant args
1 parent e2a736f commit 13048e7

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/maxdiffusion/pipelines/wan/wan_pipeline_i2v_2p1.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,7 @@ def _process_image_input(img_input, height, width, num_videos_per_prompt):
242242
prompt_embeds=prompt_embeds,
243243
negative_prompt_embeds=negative_prompt_embeds,
244244
image_embeds=image_embeds,
245-
first_frame_mask=first_frame_mask,
246245
scheduler_state=scheduler_state,
247-
rng=inference_rng,
248246
)
249247
latents = jnp.transpose(latents, (0, 4, 1, 2, 3))
250248
latents = self._denormalize_latents(latents)

src/maxdiffusion/pipelines/wan/wan_pipeline_i2v_2p2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def _process_image_input(img_input, height, width, num_videos_per_prompt):
236236
high_noise_graphdef=high_noise_graphdef, high_noise_state=high_noise_state, high_noise_rest=high_noise_rest,
237237
latents=latents, condition=condition,
238238
prompt_embeds=prompt_embeds, negative_prompt_embeds=negative_prompt_embeds,
239-
scheduler_state=scheduler_state, rng=inference_rng,
239+
scheduler_state=scheduler_state,
240240
)
241241
latents = jnp.transpose(latents, (0, 4, 1, 2, 3))
242242
latents = self._denormalize_latents(latents)

0 commit comments

Comments
 (0)