From 033660a4b4b56d2ab96f48a7b994375f92411f0f Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Sun, 26 Sep 2021 13:13:34 +0800 Subject: [PATCH] Fix style issues. --- egs/librispeech/ASR/conformer_ctc/decode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/conformer_ctc/decode.py b/egs/librispeech/ASR/conformer_ctc/decode.py index 4030dc8ee..891471e37 100755 --- a/egs/librispeech/ASR/conformer_ctc/decode.py +++ b/egs/librispeech/ASR/conformer_ctc/decode.py @@ -288,7 +288,7 @@ def decode_one_batch( # hyps is a list of list of str, e.g., [['xxx', 'yyy', 'zzz'], ... ] hyps = [s.split() for s in hyps] - key = f"ctc-decoding" + key = "ctc-decoding" return {key: hyps} if params.method == "nbest-oracle":