24 lines
592 B
Bash
24 lines
592 B
Bash
# Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights Reserved.
|
|
# MIT License (https://opensource.org/licenses/MIT)
|
|
|
|
|
|
# method1, inference from model hub
|
|
export HYDRA_FULL_ERROR=1
|
|
|
|
|
|
model="iic/speech_fsmn_vad_zh-cn-16k-common-pytorch"
|
|
|
|
|
|
python -m funasr.bin.export \
|
|
++model=${model} \
|
|
++model_revision=${model_revision} \
|
|
++type="onnx" \
|
|
++quantize=false
|
|
|
|
# method2, inference from local path
|
|
model="/Users/zhifu/.cache/modelscope/hub/iic/speech_fsmn_vad_zh-cn-16k-common-pytorch"
|
|
|
|
python -m funasr.bin.export \
|
|
++model=${model} \
|
|
++type="onnx" \
|
|
++quantize=false |