diff options
author | Patrick Simianer <p@simianer.de> | 2013-09-20 20:01:03 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2013-09-20 20:01:03 +0200 |
commit | 2e746d6ad25aaf4d85f9c8f277ff109e45bfd93e (patch) | |
tree | d2277986db27f5e4acec62e651f962359c3cbd03 /extractor/sampler.h | |
parent | 8ea6bd821bf2a71a4a55e137f2f3c7d24200362a (diff) |
loo
Diffstat (limited to 'extractor/sampler.h')
-rw-r--r-- | extractor/sampler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/extractor/sampler.h b/extractor/sampler.h index be4aa1bb..30e747fd 100644 --- a/extractor/sampler.h +++ b/extractor/sampler.h @@ -2,6 +2,9 @@ #define _SAMPLER_H_ #include <memory> +#include <unordered_set> + +#include "data_array.h" using namespace std; @@ -20,7 +23,7 @@ class Sampler { virtual ~Sampler(); // Samples uniformly at most max_samples phrase occurrences. - virtual PhraseLocation Sample(const PhraseLocation& location) const; + virtual PhraseLocation Sample(const PhraseLocation& location, const unordered_set<int> blacklisted_sentence_ids, const shared_ptr<DataArray> source_data_array) const; protected: Sampler(); |