summaryrefslogtreecommitdiffstats
path: root/utils/training/gen_ngram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/training/gen_ngram.cpp')
-rw-r--r--utils/training/gen_ngram.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/utils/training/gen_ngram.cpp b/utils/training/gen_ngram.cpp
index 5721ce7..20b160c 100644
--- a/utils/training/gen_ngram.cpp
+++ b/utils/training/gen_ngram.cpp
@@ -130,15 +130,8 @@ int main(int argc, char * argv[]){
free(linebuf);
- MemoryChunk * new_chunk = new MemoryChunk;
- phrase_index.store(1, new_chunk);
- new_chunk->save("gb_char.bin");
- phrase_index.load(1, new_chunk);
-
- new_chunk = new MemoryChunk;
- phrase_index.store(2, new_chunk);
- new_chunk->save("gbk_char.bin");
- phrase_index.load(2, new_chunk);
+ if (!save_phrase_index(&phrase_index))
+ exit(ENOENT);
return 0;
}