Fix CI test for zipformer CTC (#1165)

This commit is contained in:
Fangjun Kuang 2023-07-05 10:38:29 +08:00 committed by GitHub
parent b8a17944e4
commit 130ad0319d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,7 +264,7 @@ def main():
params.update(vars(args))
token_table = k2.SymbolTable.from_file(params.tokens)
params.vocab_size = num_tokens(token_table)
params.vocab_size = num_tokens(token_table) + 1
logging.info(f"{params}")