update repo

This commit is contained in:
嘉渊 2023-05-24 19:29:37 +08:00
parent 370f751d17
commit 36e2f3458e
2 changed files with 3 additions and 3 deletions

View File

@ -219,7 +219,7 @@ if [ ${stage} -le 6 ] && [ ${stop_stage} -ge 6 ]; then
--am_model_name $inference_asr_model \ --am_model_name $inference_asr_model \
--mode paraformer \ --mode paraformer \
--model_name paraformer \ --model_name paraformer \
--model $model_dir \ --dataset aishell \
--output_dir $exp_dir/exp/$model_dir \ --output_dir $exp_dir/exp/$model_dir \
--vocab_size $vocab_size \ --vocab_size $vocab_size \
--nat _nat \ --nat _nat \

View File

@ -81,7 +81,7 @@ if __name__ == '__main__':
"--nat", "--nat",
type=str, type=str,
default="", default="",
help="vocab_size", help="nat",
) )
parser.add_argument( parser.add_argument(
"--tag", "--tag",
@ -107,9 +107,9 @@ if __name__ == '__main__':
} }
} }
json_dict = { json_dict = {
"model": model,
"framework": "pytorch", "framework": "pytorch",
"task": args.task, "task": args.task,
"model": model,
"pipeline": args.pipeline_type, "pipeline": args.pipeline_type,
} }