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 | 4ec3625b3a1aa9cb417f8a551ad6723626a4c656 (patch) | |
tree | b26acbcb8e1d434f144b5396acdd8095c94d3328 /training/entropy.h | |
parent | efe18d73d96958dfb6581f6f8a60362f7ad0a0c9 (diff) | |
parent | 7937972d2478a3b377930a30b77b07d2e6e902ba (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'training/entropy.h')
-rw-r--r-- | training/entropy.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/training/entropy.h b/training/entropy.h new file mode 100644 index 00000000..796589ca --- /dev/null +++ b/training/entropy.h @@ -0,0 +1,22 @@ +#ifndef _CSENTROPY_H_ +#define _CSENTROPY_H_ + +#include <vector> +#include "sparse_vector.h" + +namespace training { + class CandidateSet; + + class CandidateSetEntropy { + public: + explicit CandidateSetEntropy(const CandidateSet& cs) : cands_(cs) {} + // compute the entropy (expected log likelihood) of a CandidateSet + // (optional) the gradient of the entropy with respect to params + double operator()(const std::vector<double>& params, + SparseVector<double>* g = NULL) const; + private: + const CandidateSet& cands_; + }; +}; + +#endif |