Format code (#779)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-07-17 22:56:30 +08:00 committed by GitHub
parent 0cf474f820
commit f63783c348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -48,7 +48,11 @@ if __name__ == "__main__":
from i18n import I18nAuto from i18n import I18nAuto
i18n = I18nAuto() i18n = I18nAuto()
device = torch.device("cuda" if torch.cuda.is_available() else ("mps" if torch.backends.mps.is_available() else "cpu")) device = torch.device(
"cuda"
if torch.cuda.is_available()
else ("mps" if torch.backends.mps.is_available() else "cpu")
)
current_dir = os.getcwd() current_dir = os.getcwd()
inp_q = Queue() inp_q = Queue()
opt_q = Queue() opt_q = Queue()
@ -560,7 +564,8 @@ if __name__ == "__main__":
else: else:
outdata[:] = np.tile( outdata[:] = np.tile(
nr.reduce_noise( nr.reduce_noise(
y=self.output_wav[:].cpu().numpy(), sr=self.config.samplerate y=self.output_wav[:].cpu().numpy(),
sr=self.config.samplerate,
), ),
(2, 1), (2, 1),
).T ).T