We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moving a word in getInputMatrixFromFile() and then adding it to the dictionary leads to an empty word with count of vocabulary size.
std::string word; in >> word; words.push_back(std::move(word)); dict_->add(word);
The text was updated successfully, but these errors were encountered:
Thank you. Good catch.
Sorry, something went wrong.
fix an issue: #5
4828ae2
Merge pull request #6 from tshev/fix-issue-b
0e8a23d
Fixed: #6
No branches or pull requests
Moving a word in getInputMatrixFromFile() and then adding it to the dictionary leads to an empty word with count of vocabulary size.
The text was updated successfully, but these errors were encountered: