summaryrefslogtreecommitdiff
path: root/data/make_paks2.cc
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-08-16 21:25:52 +0100
committerPatrick Simianer <p@simianer.de>2014-08-16 21:25:52 +0100
commit9a0859212de4d1304f9392fe910921227421c8c3 (patch)
tree1b1276312c83415d7d7d3838ce0347441b71951a /data/make_paks2.cc
parent3ba77e3474e39d7970784812f6851a726572f7c7 (diff)
cleanup
Diffstat (limited to 'data/make_paks2.cc')
-rw-r--r--data/make_paks2.cc121
1 files changed, 0 insertions, 121 deletions
diff --git a/data/make_paks2.cc b/data/make_paks2.cc
deleted file mode 100644
index 1b5895b..0000000
--- a/data/make_paks2.cc
+++ /dev/null
@@ -1,121 +0,0 @@
-#include <iostream>
-#include <fstream>
-#include <string>
-#include <msgpack.hpp>
-#include <msgpack/fbuffer.h>
-#include <msgpack/fbuffer.hpp>
-
-
-/*
- * https://github.com/ascheglov/json-cpp
- *
- */
-#include "../json-cpp.hpp"
-
-using namespace std;
-
-
-struct Node {
- int id;
- string cat;
- vector<int> span;
-
- MSGPACK_DEFINE(id, cat, span);
-};
-
-struct Vector {
- double CountEF;
- double EgivenFCoherent;
- double Glue;
- double IsSingletonF;
- double IsSingletonFE;
- double LanguageModel;
- double LanguageModel_OOV;
- double MaxLexFgivenE;
- double MaxLexEgivenF;
- double PassThrough;
- double PassThrough_1;
- double PassThrough_2;
- double PassThrough_3;
- double PassThrough_4;
- double PassThrough_5;
- double PassThrough_6;
- double SampleCountF;
- double WordPenalty;
-
- MSGPACK_DEFINE(CountEF, EgivenFCoherent, Glue, IsSingletonF, IsSingletonFE, LanguageModel, LanguageModel_OOV, MaxLexEgivenF, MaxLexFgivenE, PassThrough, PassThrough_1, PassThrough_2, PassThrough_3, PassThrough_4, PassThrough_5, PassThrough_6, SampleCountF, WordPenalty);
-};
-
-struct Edge {
- int head;
- string rule;
- vector<int> tails;
- Vector f;
- double weight;
-
- MSGPACK_DEFINE(head, rule, tails, f, weight);
-};
-
-struct Hg {
- Vector weights;
- vector<Node> nodes;
- vector<Edge> edges;
-
- MSGPACK_DEFINE(weights, nodes, edges);
-};
-
-template<typename X> inline void
-serialize(jsoncpp::Stream<X>& stream, Hg& o)
-{
- fields(o, stream, "weights", o.weights, "nodes", o.nodes, "edges", o.edges);
-}
-
-template<typename X> inline void
-serialize(jsoncpp::Stream<X>& stream, Edge& o)
-{
- fields(o, stream, "head", o.head, "rule", o.rule, "tails", o.tails, "f", o.f, "weight", o.weight);
-}
-
-template<typename X> inline void
-serialize(jsoncpp::Stream<X>& stream, Vector& o)
-{
- fields(o, stream, "EgivenFCoherent", o.EgivenFCoherent, "SampleCountF", o.SampleCountF, "CountEF", o.CountEF, "MaxLexFgivenE", o.MaxLexFgivenE, "MaxLexEgivenF", o.MaxLexEgivenF, "IsSingletonF", o.IsSingletonF, "IsSingletonFE", o.IsSingletonFE, "LanguageModel", o.LanguageModel, "LanguageModel_OOV", o.LanguageModel_OOV, "PassThrough", o.PassThrough, "PassThrough_1", o.PassThrough_1, "PassThrough_2", o.PassThrough_2, "PassThrough_3", o.PassThrough_3, "PassThrough_4", o.PassThrough_4, "PassThrough_5", o.PassThrough_5, "PassThrough_6", o.PassThrough_6, "WordPenalty", o.WordPenalty, "Glue", o.Glue);
-}
-
-template<typename X> inline void
-serialize(jsoncpp::Stream<X>& stream, Node& o)
-{
- fields(o, stream, "id", o.id, "cat", o.cat, "span", o.span);
-}
-
-int
-main(int argc, char** argv)
-{
- ifstream ifs(argv[1]);
- string json_str((istreambuf_iterator<char>(ifs) ),
- (istreambuf_iterator<char>()));
-
- Hg hg;
- Vector w;
- hg.weights = w;
- vector<Node> nodes;
- hg.nodes = nodes;
- vector<Edge> edges;
- hg.edges = edges;
- jsoncpp::parse(hg, json_str);
-
- FILE* file = fopen(argv[2], "wb");
- msgpack::fbuffer fbuf(file);
- msgpack::pack(fbuf, hg.nodes.size());
- msgpack::pack(fbuf, hg.edges.size());
- msgpack::pack(fbuf, hg.weights);
- for (auto it = hg.nodes.begin(); it != hg.nodes.end(); it++)
- msgpack::pack(fbuf, *it);
- for (auto it = hg.edges.begin(); it != hg.edges.end(); it++)
- msgpack::pack(fbuf, *it);
-
- fclose(file);
-
- return 0;
-}
-