"...routers/git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "0b9915c1329bec33fd1606679fc8cf57ee44190c"
test.sh 504 Bytes
Newer Older
SWHL's avatar
SWHL committed
1
2
3
4
5
6
#!/bin/bash
  

MODELDIR=/root/wenet-onnx/wenet/wenet/bin/models/onnx_20211025_conformer_exp
python recognize_onnx.py  --test_data $1 --dict $MODELDIR/words.txt --config $MODELDIR/train.yaml --encoder_onnx $MODELDIR/encoder.onnx --decoder_onnx $MODELDIR/decoder.onnx --result_file result.txt  
~