summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-05-16 14:12:47 +0800
committerPeng Wu <alexepico@gmail.com>2011-05-16 14:13:12 +0800
commitec8c2e7e553ca4faf51c4372ee96f7b1ac34886c (patch)
tree0accde12289d910dfb83458c94d1a7a19c81ba22 /utils
parent5394772a45e214206652ad565f506ed3d3a149af (diff)
downloadlibpinyin-ec8c2e7e553ca4faf51c4372ee96f7b1ac34886c.tar.gz
libpinyin-ec8c2e7e553ca4faf51c4372ee96f7b1ac34886c.tar.xz
libpinyin-ec8c2e7e553ca4faf51c4372ee96f7b1ac34886c.zip
begin to write export k mixture model
Diffstat (limited to 'utils')
-rw-r--r--utils/training/export_k_mixture_model.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/utils/training/export_k_mixture_model.cpp b/utils/training/export_k_mixture_model.cpp
new file mode 100644
index 0000000..b167394
--- /dev/null
+++ b/utils/training/export_k_mixture_model.cpp
@@ -0,0 +1,51 @@
+/*
+ * libpinyin
+ * Library to deal with pinyin.
+ *
+ * Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
+ *
+ * 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 "pinyin.h"
+
+bool print_k_mixture_model_magic_header(KMixtureModelBigram * bigram){
+ KMixtureModelMagicHeader magic_header;
+ if ( !bigram->get_magic_header(magic_header) ){
+ fprintf(stderr, "no magic header in k mixture model.\n");
+ exit(ENODATA);
+ }
+ printf("\\data model \"k mixture model\" count %d N %d\n",
+ magic_header.m_WC, magic_header.m_N);
+ return true;
+}
+
+bool print_k_mixture_model_array_header(KMixtureModelBigram * bigram){
+ printf("\1-gram\n");
+ GArray * items = g_array_new(FALSE, FALSE, sizeof(phrase_token_t));
+ bigram->get_all_items(items);
+
+ for (size_t i = 0; i < items->len; ++i) {
+ phrase_token_t * token = &g_array_index(items, phrase_token_t, i);
+ KMixtureModelArrayHeader array_header;
+ bigram->get_array_header(*token, array_header);
+
+ }
+
+ return true;
+}
+
+int main(int argc, char * argv[]){
+}