Skip to content

Commit

Permalink
Dmlで動かなくなってたのを修正 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Dec 21, 2024
1 parent 2433ab0 commit 5788dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vv_core_inference/make_yukarin_sosoa_forwarder.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def forward(

h = self.pre(h)

mask = torch.ones_like(f0).squeeze()
mask = torch.ones_like(f0)[:, :, 0]
h, _ = self.encoder(h, None, mask)

output1 = self.post(h)
Expand Down

0 comments on commit 5788dd3

Please sign in to comment.