Skip to content

Commit

Permalink
general: configuring CI 3
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-yakovlev committed Dec 18, 2023
1 parent 98df7c2 commit 6b87c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion separator/model/STFT.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def stft(self, x: torch.Tensor):
return z

def istft(self, z: torch.Tensor, length: int = 0, scale: Optional[int] = 0):
hl = self.hop_length // (4 ** scale)
hl = self.hop_length // (4**scale)
z = F.pad(z, (0, 0, 0, 1))
z = F.pad(z, (2, 2))
pad = hl // 2 * 3
Expand Down

0 comments on commit 6b87c1d

Please sign in to comment.