SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GaussianLikelihood.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) The Shogun Machine Learning Toolbox
3  * Written (W) 2013 Roman Votyakov
4  * Written (W) 2012 Jacob Walker
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice, this
11  * list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright notice,
13  * this list of conditions and the following disclaimer in the documentation
14  * and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * The views and conclusions contained in the software and documentation are those
28  * of the authors and should not be interpreted as representing official policies,
29  * either expressed or implied, of the Shogun Development Team.
30  *
31  */
32 #ifndef CGAUSSIANLIKELIHOOD_H_
33 #define CGAUSSIANLIKELIHOOD_H_
34 
35 #include <shogun/lib/config.h>
37 
38 #ifdef HAVE_EIGEN3
39 
41 
42 namespace shogun
43 {
44 
56 {
57 public:
60 
66 
67  virtual ~CGaussianLikelihood();
68 
73  virtual const char* get_name() const { return "GaussianLikelihood"; }
74 
79  float64_t get_sigma() { return CMath::exp(m_log_sigma); }
80 
85  void set_sigma(float64_t sigma)
86  {
87  REQUIRE(sigma>0.0, "Standard deviation (%f) must be greater than zero\n",
88  sigma)
89  m_log_sigma=CMath::log(sigma);
90  }
91 
98 
115  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
116 
132  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
133 
138  virtual ELikelihoodModelType get_model_type() const { return LT_GAUSSIAN; }
139 
152  SGVector<float64_t> func) const;
153 
165  const CLabels* lab, SGVector<float64_t> func, index_t i) const;
166 
177  SGVector<float64_t> func, const TParameter* param) const;
178 
190  SGVector<float64_t> func, const TParameter* param) const;
191 
203  SGVector<float64_t> func, const TParameter* param) const;
204 
222  SGVector<float64_t> s2, const CLabels* lab) const;
223 
239  SGVector<float64_t> s2, const CLabels* lab, index_t i) const;
240 
256  SGVector<float64_t> s2, const CLabels* lab, index_t i) const;
257 
262  virtual bool supports_regression() const { return true; }
263 
264 private:
266  void init();
267 
269  float64_t m_log_sigma;
270 };
271 }
272 #endif /* HAVE_EIGEN3 */
273 #endif /* CGAUSSIANLIKELIHOOD_H_ */
ELikelihoodModelType
Class that models Gaussian likelihood.
virtual SGVector< float64_t > get_log_probability_f(const CLabels *lab, SGVector< float64_t > func) const
int32_t index_t
Definition: common.h:62
The class Labels models labels, i.e. class assignments of objects.
Definition: Labels.h:43
parameter struct
#define REQUIRE(x,...)
Definition: SGIO.h:206
void set_sigma(float64_t sigma)
virtual float64_t get_second_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const
virtual ELikelihoodModelType get_model_type() const
virtual SGVector< float64_t > get_first_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
virtual SGVector< float64_t > get_predictive_variances(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL) const
virtual SGVector< float64_t > get_predictive_means(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL) const
double float64_t
Definition: common.h:50
virtual const char * get_name() const
virtual float64_t get_first_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const
static CGaussianLikelihood * obtain_from_generic(CLikelihoodModel *lik)
virtual SGVector< float64_t > get_second_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
virtual SGVector< float64_t > get_log_zeroth_moments(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab) const
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
static float64_t exp(float64_t x)
Definition: Math.h:621
static float64_t log(float64_t v)
Definition: Math.h:922
virtual SGVector< float64_t > get_log_probability_derivative_f(const CLabels *lab, SGVector< float64_t > func, index_t i) const
virtual bool supports_regression() const
virtual SGVector< float64_t > get_third_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
The Likelihood model base class.

SHOGUN Machine Learning Toolbox - Documentation