summaryrefslogtreecommitdiffstats
path: root/src/training/gen_unigram.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2010-10-27 11:12:41 +0800
committerPeng Wu <alexepico@gmail.com>2010-10-27 11:12:41 +0800
commite9e32f965272d5465b81d1ea62df3a7e3f97f134 (patch)
treeb10d03cc6999dbbe7873486a242cd2c68f7fd0b1 /src/training/gen_unigram.cpp
parentcb42269587055a80907efd863c367d659a022a06 (diff)
downloadlibpinyin-e9e32f965272d5465b81d1ea62df3a7e3f97f134.tar.gz
libpinyin-e9e32f965272d5465b81d1ea62df3a7e3f97f134.tar.xz
libpinyin-e9e32f965272d5465b81d1ea62df3a7e3f97f134.zip
move segment and training tools to utils
Diffstat (limited to 'src/training/gen_unigram.cpp')
-rw-r--r--src/training/gen_unigram.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/training/gen_unigram.cpp b/src/training/gen_unigram.cpp
deleted file mode 100644
index 1c70665..0000000
--- a/src/training/gen_unigram.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * libpinyin
- * Library to deal with pinyin.
- *
- * Copyright (C) 2006-2007 Peng Wu
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include <stdio.h>
-#include "memory_chunk.h"
-#include "novel_types.h"
-#include "phrase_index.h"
-
-//increase all unigram frequency by one.
-
-int main(int argc, char * argv[]){
-
- FacadePhraseIndex phrase_index;
-
- //gb_char binary file
- MemoryChunk * chunk = new MemoryChunk;
- chunk->load("../../data/gb_char.bin");
- phrase_index.load(1, chunk);
-
- //gbk_char binary file
- chunk = new MemoryChunk;
- chunk->load("../../data/gbk_char.bin");
- phrase_index.load(2, chunk);
-
- PhraseIndexRange range;
- int result = phrase_index.get_range(1, range);
- if ( result == ERROR_OK ) {
- for ( size_t i = range.m_range_begin; i <= range.m_range_end; ++i){
- phrase_index.add_unigram_frequency(i, 1);
- }
- }
-
-#if 0
- int result = phrase_index.get_range(2, range);
- if ( result == ERROR_OK ) {
- for ( size_t i = range.m_range_begin; i <= range.m_range_end; ++i){
- phrase_index.add_unigram_frequency(i, 1);
- }
- }
-#endif
-
- MemoryChunk * new_chunk = new MemoryChunk;
- phrase_index.store(1, new_chunk);
- new_chunk->save("../../data/gb_char.bin");
- phrase_index.load(1, new_chunk);
-
- new_chunk = new MemoryChunk;
- phrase_index.store(2, new_chunk);
- new_chunk->save("../../data/gbk_char.bin");
- phrase_index.load(2, new_chunk);
-
- return 0;
-}