zhifu gao
2023-04-26 cf0a528e3ac860697b0d88a4608802a14dca8b60
1
2
3
4
5
6
7
8
#include "precomp.h"
 
Model *CreateModel(const char *path, int thread_num, bool quantize, bool use_vad, bool use_punc)
{
    Model *mm;
    mm = new paraformer::Paraformer(path, thread_num, quantize, use_vad, use_punc);
    return mm;
}