shixian.shi
2023-10-10 8a0930d682fe3206e0b41c694fc03d7d10c7eed2
funasr/runtime/onnxruntime/src/vocab.cpp
@@ -163,6 +163,13 @@
        }
    }
    if (language == "en-bpe" and combine != ""){
        if (words.size() != 0){
            combine = " " + combine;
        }
        words.push_back(combine);
    }
    stringstream ss;
    for (auto it = words.begin(); it != words.end(); it++) {
        ss << *it;