summaryrefslogtreecommitdiff
path: root/decoder/cfg_test.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@Chriss-MacBook-Air.local>2013-11-25 00:14:16 -0500
committerChris Dyer <cdyer@Chriss-MacBook-Air.local>2013-11-25 00:14:16 -0500
commit26235c2770f10fc6975a06fd3a8167cbd23029a9 (patch)
tree3b3acd17a1772939a55231b4fc43a5d4279c330a /decoder/cfg_test.cc
parent9e80389b9763aa4f7f626ec71b561ccf6948d3ad (diff)
remove dead code, add adagrad crf learner
Diffstat (limited to 'decoder/cfg_test.cc')
-rw-r--r--decoder/cfg_test.cc98
1 files changed, 0 insertions, 98 deletions
diff --git a/decoder/cfg_test.cc b/decoder/cfg_test.cc
deleted file mode 100644
index cbe7d0be..00000000
--- a/decoder/cfg_test.cc
+++ /dev/null
@@ -1,98 +0,0 @@
-#include <boost/tuple/tuple.hpp>
-#include <gtest/gtest.h>
-#include "cfg.h"
-#include "hg_test.h"
-#include "cfg_options.h"
-#include "show.h"
-
-/* TODO: easiest way to get meaningful confirmations that things work: implement conversion back to hg, and compare viterbi/inside etc. stats for equality to original hg. or you can define CSHOW_V and see lots of output */
-
-using namespace boost;
-
-#define CSHOW_V 0
-
-#if CSHOW_V
-# define CSHOWDO(x) x;
-#else
-# define CSHOWDO(x)
-#endif
-#define CSHOW(x) CSHOWDO(cerr<<#x<<'='<<x<<endl;)
-
-typedef std::pair<string,string> HgW; // hg file,weights
-
-struct CFGTest : public TestWithParam<HgW> {
- string hgfile;
- Hypergraph hg;
- CFG cfg;
- CFGFormat form;
- SparseVector<double> weights;
-
- static void JsonFN(Hypergraph &hg,CFG &cfg,SparseVector<double> &featw,std::string file
- ,std::string const& wts="Model_0 1 EgivenF 1 f1 1")
- {
- istringstream ws(wts);
- EXPECT_TRUE(ws>>featw);
- CSHOW(featw)
- std::string path(boost::unit_test::framework::master_test_suite().argc == 2 ? boost::unit_test::framework::master_test_suite().argv[1] : TEST_DATA);
- HGSetup::JsonTestFile(&hg,path,file);
- hg.Reweight(featw);
- cfg.Init(hg,true,true,false);
- }
- static void SetUpTestCase() {
- }
- static void TearDownTestCase() {
- }
- CFGTest() {
- hgfile=GetParam().first;
- JsonFN(hg,cfg,weights,hgfile,GetParam().second);
- CSHOWDO(cerr<<"\nCFG Test: ")
- CSHOW(hgfile);
- form.nt_span=true;
- form.comma_nt=false;
- }
- ~CFGTest() { }
-};
-
-TEST_P(CFGTest,Binarize) {
- CFGBinarize b;
- b.bin_name_nts=1;
- CFG cfgu=cfg;
- EXPECT_EQ(cfgu,cfg);
- int nrules=cfg.rules.size();
- CSHOWDO(cerr<<"\nUniqing: "<<nrules<<"\n");
- int nrem=cfgu.UniqRules();
- cerr<<"\nCFG "<<hgfile<<" Uniqed - remaining: "<<nrem<<" of "<<nrules<<"\n";
- if (nrem==nrules) {
- EXPECT_EQ(cfgu,cfg);
- //TODO - check that 1best is still the same (that we removed only worse edges)
- }
-
- for (int i=-1;i<8;++i) {
- bool uniq;
- if (i>=0) {
- int f=i<<1;
- b.bin_l2r=1;
- b.bin_unary=(f>>=1)&1;
- b.bin_topo=(f>>=1)&1;
- uniq=(f>>=1)&1;
- } else
- b.bin_l2r=0;
- CFG cc=uniq?cfgu:cfg;
- CSHOW("\nBinarizing "<<(uniq?"uniqued ":"")<<": "<<i<<" "<<b);
- cc.Binarize(b);
- cerr<<"Binarized "<<b<<" rules size "<<cfg.rules_size()<<" => "<<cc.rules_size()<<"\n";
- CSHOWDO(cc.Print(cerr,form);cerr<<"\n\n";);
- }
-}
-
-INSTANTIATE_TEST_CASE_P(HypergraphsWeights,CFGTest,
- Values(
- HgW(perro_json,perro_wts)
- , HgW(small_json,small_wts)
- ,HgW(urdu_json,urdu_wts)
- ));
-
-int main(int argc, char **argv) {
- testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
-}