add SwitchArg for funasr-onnx-offline
| | |
| | | TCLAP::ValueArg<std::string> wav_path("", WAV_PATH, "the input could be: wav_path, e.g.: asr_example.wav; pcm_path, e.g.: asr_example.pcm; wav.scp, kaldi style wav list (wav_id \t wav_path)", true, "", "string"); |
| | | TCLAP::ValueArg<std::int32_t> audio_fs("", AUDIO_FS, "the sample rate of audio", false, 16000, "int32_t"); |
| | | TCLAP::ValueArg<std::string> hotword("", HOTWORD, "the hotword file, one hotword perline, Format: Hotword Weight (could be: 阿里巴巴 20)", false, "", "string"); |
| | | TCLAP::SwitchArg use_gpu("", USE_GPU, "Whether to use GPU for inference, default is false", false); |
| | | |
| | | cmd.add(model_dir); |
| | | cmd.add(quantize); |
| | |
| | | cmd.add(wav_path); |
| | | cmd.add(audio_fs); |
| | | cmd.add(hotword); |
| | | cmd.add(use_gpu); |
| | | cmd.parse(argc, argv); |
| | | |
| | | std::map<std::string, std::string> model_path; |
| | |
| | | struct timeval start, end; |
| | | gettimeofday(&start, nullptr); |
| | | int thread_num = 1; |
| | | FUNASR_HANDLE asr_hanlde=FunOfflineInit(model_path, thread_num, true); |
| | | bool use_gpu_ = use_gpu.getValue(); |
| | | FUNASR_HANDLE asr_hanlde=FunOfflineInit(model_path, thread_num, use_gpu_); |
| | | |
| | | if (!asr_hanlde) |
| | | { |
| | |
| | | #define MODEL_EB_NAME "model_eb.onnx" |
| | | #define QUANT_MODEL_NAME "model_quant.onnx" |
| | | // gpu models |
| | | #define USE_GPU "gpu" |
| | | #define TORCH_MODEL_NAME "model.gpu.torchscripts" |
| | | #define TORCH_QUANT_MODEL_NAME "model.blade.fp16.pt" |
| | | |
| | | #define VAD_CMVN_NAME "vad.mvn" |
| | | #define VAD_CONFIG_NAME "vad.yaml" |
| | | #define AM_CMVN_NAME "am.mvn" |