Fix CI test for zipformer CTC

This commit is contained in:
Fangjun Kuang 2023-07-05 10:36:32 +08:00
parent b8a17944e4
commit 091dd3d5d2

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}")