diff options
author | Patrick Simianer <p@simianer.de> | 2012-07-03 15:43:20 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2012-07-03 15:43:20 +0200 |
commit | 96bb9719858dd1600d70a3affee42d0e0c5cd862 (patch) | |
tree | f762a5f84b1b72aa4cbb84ae87b2697daef7c727 /python/src/mteval.pxd | |
parent | a2422421fbbaf20ad5dbe44a7ef84df53e0a3e76 (diff) | |
parent | 2153329ff36f50fd8e23e57cb0fae7bfbe207bda (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'python/src/mteval.pxd')
-rw-r--r-- | python/src/mteval.pxd | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/python/src/mteval.pxd b/python/src/mteval.pxd new file mode 100644 index 00000000..52af6297 --- /dev/null +++ b/python/src/mteval.pxd @@ -0,0 +1,47 @@ +from libcpp.vector cimport vector +from libcpp.string cimport string +from utils cimport * +from hypergraph cimport Hypergraph + +cdef extern from "mteval/ns.h": + cdef cppclass SufficientStats: + SufficientStats() + SufficientStats(SufficientStats&) + unsigned size() + float operator[](unsigned i) + void swap(SufficientStats& other) + + SufficientStats add "operator+" (SufficientStats&, SufficientStats&) + + cdef cppclass SegmentEvaluator: + void Evaluate(vector[WordID]& hyp, SufficientStats* out) + + cdef cppclass EvaluationMetric: + string& MetricId() + bint IsErrorMetric() + float ComputeScore(SufficientStats& stats) + string DetailedScore(SufficientStats& stats) + shared_ptr[SegmentEvaluator] CreateSegmentEvaluator(vector[vector[WordID]]& refs) + ComputeSufficientStatistics(vector[WordID]& hyp, + vector[WordID]& refs, + SufficientStats* out) + +cdef extern from "mteval/ns.h" namespace "EvaluationMetric": + EvaluationMetric* Instance(string& metric_id) + EvaluationMetric* Instance() # IBM_BLEU + +cdef extern from "training/candidate_set.h" namespace "training": + cdef cppclass Candidate "const training::Candidate": + vector[WordID] ewords + FastSparseVector[weight_t] fmap + SufficientStats eval_feats + + cdef cppclass CandidateSet: + CandidateSet() + unsigned size() + Candidate& operator[](unsigned i) + void ReadFromFile(string& file) + void WriteToFile(string& file) + void AddKBestCandidates(Hypergraph& hg, + unsigned kbest_size, + SegmentEvaluator* scorer) |