diff options
author | Pherkel | 2023-09-18 21:52:33 +0200 |
---|---|---|
committer | Pherkel | 2023-09-18 21:52:33 +0200 |
commit | d9421cafa088babdf6b84fa18af28ba6671addce (patch) | |
tree | dc92662ff0bc039b898ee4275dfc456b702d4c59 /swr2_asr/inference.py | |
parent | eaec9a8a32fc791c9ea676843dd7cac6a2b48d9a (diff) |
linter changes
Diffstat (limited to 'swr2_asr/inference.py')
-rw-r--r-- | swr2_asr/inference.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swr2_asr/inference.py b/swr2_asr/inference.py index 511aef1..d3543a9 100644 --- a/swr2_asr/inference.py +++ b/swr2_asr/inference.py @@ -109,7 +109,7 @@ def main(config_path: str, file_path: str, target_path: Union[str, None] = None) target = target.replace("!", "") print("---------") - print(f"Prediction:\n\{preds}") + print(f"Prediction:\n{preds}") print("---------") print(f"Target:\n{target}") print("---------") |