blob: bbe2b4029096ea31ff32061b3fa2ae462d453481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef _DTRAIN_KSAMPLER_H_
#define _DTRAIN_KSAMPLER_H_
#include "hgsampler.h"
#include "kbest.h" // cdec
#include "sampler.h"
namespace dtrain
{
/*
* KSampler
*
*/
struct KSampler : public HypSampler
{
const size_t k_;
vector<ScoredHyp> s_;
MT19937* prng_;
explicit KSampler(const size_t k, MT19937* prng) :
k_(k), prng_(prng) {}
virtual void
NotifyTranslationForest(const SentenceMetadata& smeta, Hypergraph* hg)
{
Sample(*hg);
}
vector<ScoredHyp>* GetSamples() { return &s_; }
void Sample(const Hypergraph& forest) {
s_.clear();
std::vector<HypergraphSampler::Hypothesis> samples;
HypergraphSampler::sample_hypotheses(forest, k_, prng_, &samples);
for ( size_t i = 0; i < k_; ++i ) {
ScoredHyp h;
h.w = samples[i].words;
h.f = samples[i].fmap;
h.model = log(samples[i].model_score);
s_.push_back(h);
}
}
};
} // namespace
#endif
|