公告板
版本库
filestore
活动
搜索
登录
python
/
FunASR-XL
FUNASR训练
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'dev_knf' of https://github.com/alibaba-damo-academy/FunASR in...
lyblsgo
2023-04-22
0bb5d87d1ee98289bbe241e1f2caf1ab8e64c69c
[python/FunASR-XL.git]
/
funasr
/
runtime
/
onnxruntime
/
src
/
Model.cpp
1
2
3
4
5
6
7
8
9
10
#include "precomp.h"
Model *create_model(const char *path, int nThread, bool quantize, bool use_vad)
{
Model *mm;
mm = new paraformer::ModelImp(path, nThread, quantize, use_vad);
return mm;
}