You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to ask if there is a fine model file that can be directly called through the following interface. The current model file seems to only support English. I also want to support Chinese, Japanese, and Korean.........
Current models: https://huggingface.co/Helsinki-NLP/opus-mt-es-en/tree/main
sentencepiece::SentencePieceProcessor sp;
sentencepiece::util::Status status = sp.Load("../source.spm");
I want to ask if there is a fine model file that can be directly called through the following interface. The current model file seems to only support English. I also want to support Chinese, Japanese, and Korean.........
Current models: https://huggingface.co/Helsinki-NLP/opus-mt-es-en/tree/main
sentencepiece::SentencePieceProcessor sp;
sentencepiece::util::Status status = sp.Load("../source.spm");
if (!status.ok()) {
std::cerr << "Error loading model." << std::endl;
return -1;
}
The text was updated successfully, but these errors were encountered: