公告板
版本库
filestore
活动
搜索
登录
python
/
FunASR-XL
FUNASR训练
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
add Collaborators: zhuzizyf(China Telecom Shanghai)
lyblsgo
2023-04-21
61a83969453b004f5ff2776979fe540458d88eae
[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;
}