Automated PR - 2026-01-08
This commit is contained in:
@@ -150,8 +150,8 @@ class BasicAVTransformerBlock(torch.nn.Module):
|
||||
run_vx = video is not None and video.enabled and vx.numel() > 0
|
||||
run_ax = audio is not None and audio.enabled and ax.numel() > 0
|
||||
|
||||
run_a2v = run_vx and (audio is not None and audio.enabled and ax.numel() > 0)
|
||||
run_v2a = run_ax and (video is not None and video.enabled and vx.numel() > 0)
|
||||
run_a2v = run_vx and (audio is not None and ax.numel() > 0)
|
||||
run_v2a = run_ax and (video is not None and vx.numel() > 0)
|
||||
|
||||
if run_vx:
|
||||
vshift_msa, vscale_msa, vgate_msa = self.get_ada_values(
|
||||
|
||||
Reference in New Issue
Block a user