1
0
mirror of synced 2024-11-27 17:00:54 +01:00

chore(format): run black on dev (#1697)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-01-11 22:42:26 +09:00 committed by GitHub
parent c2ab680e18
commit 322ce9b940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -116,7 +116,9 @@ else:
feats = readwave(wav_path, normalize=saved_cfg.task.normalize)
padding_mask = torch.BoolTensor(feats.shape).fill_(False)
inputs = {
"source": feats.half().to(device) if is_half and device not in ["mps", "cpu"] else feats.to(device),
"source": feats.half().to(device)
if is_half and device not in ["mps", "cpu"]
else feats.to(device),
"padding_mask": padding_mask.to(device),
"output_layer": 9 if version == "v1" else 12, # layer 9
}