Fixed critical memory leak bug

This commit is contained in:
Taku Kudo 2017-03-07 21:33:20 +09:00
Родитель 032ae48af3
Коммит c7cf151f2a
2 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -158,7 +158,7 @@ We have evaluated SentencePiece segmentation with the following configurations.
* Segmentation algorithms:
* **BPE** (Byte Pair
Encoding) [[Sennrich et al.](http://www.aclweb.org/anthology/P16-1162)]] (`--model_type=bpe`)
Encoding) [[Sennrich et al.](http://www.aclweb.org/anthology/P16-1162)] (`--model_type=bpe`)
* **Unigram**. Language-model based segmentation. (`--model_type=unigram`)
* Pre-tokenization methods:

Просмотреть файл

@ -68,8 +68,8 @@ void Lattice::Clear() {
end_nodes_.clear();
sentence_.clear();
surface_.clear();
all_nodes_.clear();
port::STLDeleteElements(&all_nodes_);
all_nodes_.clear();
}
void Lattice::SetSentence(StringPiece sentence) {
@ -392,8 +392,7 @@ void ModelBase::BuildTrie(std::vector<std::pair<std::string, int>> *pieces) {
}
trie_ = port::MakeUnique<Darts::DoubleArray>();
CHECK_EQ(0,
trie_->build(key.size(), const_cast<char **>(&key[0]), nullptr,
CHECK_EQ(0, trie_->build(key.size(), const_cast<char **>(&key[0]), nullptr,
&value[0]))
<< "cannot build double-array";