lyblsgo
2023-04-24 0535db1c65180cfb4da046c5d865c764e6445746
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, bool use_punc)
{
    Model *mm;
 
    mm = new paraformer::ModelImp(path, nThread, quantize, use_vad, use_punc);
 
    return mm;
}