|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "DomainFeature.h" |
|
#include "ScoreFeature.h" |
|
#include "tables-core.h" |
|
|
|
#define BOOST_TEST_MODULE MosesTrainingScoreFeature |
|
#include <boost/test/test_tools.hpp> |
|
#include <boost/test/unit_test.hpp> |
|
#include <boost/assign/list_of.hpp> |
|
|
|
#include <unordered_set> |
|
#include <unordered_map> |
|
|
|
using namespace MosesTraining; |
|
using namespace std; |
|
|
|
|
|
namespace MosesTraining |
|
{ |
|
bool hierarchicalFlag = false; |
|
Vocabulary vcbT; |
|
Vocabulary vcbS; |
|
} |
|
|
|
|
|
const char *DomainFileLocation() |
|
{ |
|
if (boost::unit_test::framework::master_test_suite().argc < 2) { |
|
return "test.domain"; |
|
} |
|
return boost::unit_test::framework::master_test_suite().argv[1]; |
|
} |
|
|
|
|
|
BOOST_AUTO_TEST_CASE(manager_configure_domain_except) |
|
{ |
|
|
|
ScoreFeatureManager manager; |
|
BOOST_CHECK_THROW( |
|
manager.configure(boost::assign::list_of("--DomainRatio")("/dev/null")("--DomainIndicator")("/dev/null")), |
|
ScoreFeatureArgumentException); |
|
BOOST_CHECK_THROW( |
|
manager.configure(boost::assign::list_of("--SparseDomainSubset")("/dev/null")("--SparseDomainRatio")("/dev/null")), |
|
ScoreFeatureArgumentException); |
|
BOOST_CHECK_THROW( |
|
manager.configure(boost::assign::list_of("--SparseDomainBlah")("/dev/null")), |
|
ScoreFeatureArgumentException); |
|
BOOST_CHECK_THROW( |
|
manager.configure(boost::assign::list_of("--DomainSubset")), |
|
ScoreFeatureArgumentException); |
|
} |
|
|
|
template <class Expected> |
|
static void checkDomainConfigured( |
|
const vector<string>& args) |
|
{ |
|
ScoreFeatureManager manager; |
|
manager.configure(args); |
|
const std::vector<ScoreFeaturePtr>& features = manager.getFeatures(); |
|
|
|
|
|
BOOST_REQUIRE_EQUAL(features.size(), 1); |
|
Expected* feature = dynamic_cast<Expected*>(features[0].get()); |
|
BOOST_REQUIRE(feature); |
|
BOOST_CHECK(manager.includeSentenceId()); |
|
} |
|
|
|
template<typename T> |
|
T adder(T v) |
|
{ |
|
return v; |
|
} |
|
|
|
template<typename T, typename... Args> |
|
T adder(T first, Args... args) |
|
{ |
|
return first + adder(args...); |
|
} |
|
|
|
|
|
BOOST_AUTO_TEST_CASE(manager_config_domain) |
|
{ |
|
checkDomainConfigured<RatioDomainFeature> |
|
(boost::assign::list_of("--DomainRatio")("/dev/null")); |
|
checkDomainConfigured<IndicatorDomainFeature> |
|
(boost::assign::list_of("--DomainIndicator")("/dev/null")); |
|
checkDomainConfigured<SubsetDomainFeature> |
|
(boost::assign::list_of("--DomainSubset")("/dev/null")); |
|
checkDomainConfigured<SparseRatioDomainFeature> |
|
(boost::assign::list_of("--SparseDomainRatio")("/dev/null")); |
|
checkDomainConfigured<SparseIndicatorDomainFeature> |
|
(boost::assign::list_of("--SparseDomainIndicator")("/dev/null")); |
|
checkDomainConfigured<SparseSubsetDomainFeature> |
|
(boost::assign::list_of("--SparseDomainSubset")("/dev/null")); |
|
|
|
|
|
unordered_set<int> s; |
|
s.insert(4); |
|
s.insert(7); |
|
s.insert(4); |
|
s.insert(1); |
|
|
|
for (auto i: s) { |
|
cerr << i << " "; |
|
} |
|
|
|
unordered_map<std::string, int> m; |
|
m["a"] = 4; |
|
m["ba"] = 6; |
|
m["aabc"] = 7; |
|
|
|
for (auto i: m) { |
|
cerr << i.first << "=" << i.second << " "; |
|
} |
|
|
|
long sum = adder(1, 2, 3, 8, 7); |
|
|
|
std::string s1 = "x", s2 = "aa", s3 = "bb", s4 = "yy"; |
|
std::string ssum = adder(s1, s2, s3, s4); |
|
|
|
} |
|
|
|
|