zhifu gao
2023-04-14 ddfcd68c803c226f4b2a60b0666b29c24d04c259
funasr/runtime/onnxruntime/src/Vocab.cpp
@@ -13,21 +13,6 @@
{
    ifstream in(filename);
    loadVocabFromYaml(filename);
    /*
    string line;
    if (in) // 有该文件
    {
        while (getline(in, line)) // line中不包括每行的换行符
        {
            vocab.push_back(line);
        }
    }
    else{
        printf("Cannot load vocab from: %s, there must be file vocab.txt", filename);
        exit(-1);
    }
    */
}
Vocab::~Vocab()
{