SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
StudentsTLikelihood.h
浏览该文件的文档.
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  * Code adapted from the GPML Toolbox:
32  * http://www.gaussianprocess.org/gpml/code/matlab/doc/
33  */
34 
35 #ifndef CSTUDENTSTLIKELIHOOD_H_
36 #define CSTUDENTSTLIKELIHOOD_H_
37 
38 #include <shogun/lib/config.h>
39 
40 #ifdef HAVE_EIGEN3
41 
43 
44 namespace shogun
45 {
46 
59 {
60 public:
63 
70 
71  virtual ~CStudentsTLikelihood();
72 
77  virtual const char* get_name() const { return "StudentsTLikelihood"; }
78 
83  float64_t get_sigma() const { return CMath::exp(m_log_sigma); }
84 
89  void set_sigma(float64_t sigma)
90  {
91  REQUIRE(sigma>0.0, "Scale parameter (%f) must be greater than zero\n", sigma);
92  m_log_sigma=CMath::log(sigma);
93  }
94 
99  float64_t get_degrees_freedom() const { return CMath::exp(m_log_df)+1; }
100 
106  {
107  REQUIRE(df>1.0, "Number of degrees (%f) of freedom must be greater than one\n", df)
108  m_log_df=CMath::log(df-1);
109  }
110 
117 
133  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
134 
150  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
151 
157 
170  SGVector<float64_t> func) const;
171 
183  const CLabels* lab, SGVector<float64_t> func, index_t i) const;
184 
195  SGVector<float64_t> func, const TParameter* param) const;
196 
208  SGVector<float64_t> func, const TParameter* param) const;
209 
221  SGVector<float64_t> func, const TParameter* param) const;
222 
240  SGVector<float64_t> s2, const CLabels* lab) const;
241 
257  SGVector<float64_t> s2, const CLabels* lab, index_t i) const;
258 
274  SGVector<float64_t> s2, const CLabels* lab, index_t i) const;
275 
280  virtual bool supports_regression() const { return true; }
281 
282 private:
284  void init();
285 
287  float64_t m_log_sigma;
288 
290  float64_t m_log_df;
291 };
292 }
293 #endif /* HAVE_EIGEN3 */
294 #endif /* CSTUDENTSTLIKELIHOOD_H_ */
virtual SGVector< float64_t > get_predictive_variances(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL) const
ELikelihoodModelType
virtual float64_t get_second_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const
int32_t index_t
Definition: common.h:62
virtual const char * get_name() const
The class Labels models labels, i.e. class assignments of objects.
Definition: Labels.h:43
virtual SGVector< float64_t > get_second_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
virtual SGVector< float64_t > get_first_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
parameter struct
#define REQUIRE(x,...)
Definition: SGIO.h:206
virtual SGVector< float64_t > get_predictive_means(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL) const
virtual SGVector< float64_t > get_log_probability_f(const CLabels *lab, SGVector< float64_t > func) const
float64_t get_degrees_freedom() const
virtual float64_t get_first_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const
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
double float64_t
Definition: common.h:50
void set_sigma(float64_t sigma)
virtual ELikelihoodModelType get_model_type() const
Class that models a Student's-t likelihood.
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
void set_degrees_freedom(float64_t df)
static float64_t exp(float64_t x)
Definition: Math.h:621
static float64_t log(float64_t v)
Definition: Math.h:922
static CStudentsTLikelihood * obtain_from_generic(CLikelihoodModel *likelihood)
virtual SGVector< float64_t > get_third_derivative(const CLabels *lab, SGVector< float64_t > func, const TParameter *param) const
The Likelihood model base class.
virtual SGVector< float64_t > get_log_zeroth_moments(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab) const

SHOGUN 机器学习工具包 - 项目文档