SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
GaussianDistribution.h
浏览该文件的文档.
1 /*
2  * Copyright (c) The Shogun Machine Learning Toolbox
3  * Written (w) 2014 Wu Lin
4  * Written (W) 2013 Heiko Strathmann
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 
33 #ifndef GAUSSIANDISTRIBUTION_H
34 #define GAUSSIANDISTRIBUTION_H
35 
36 #include <shogun/lib/config.h>
37 
38 #ifdef HAVE_EIGEN3
39 
41 #include <shogun/lib/SGVector.h>
43 
44 namespace shogun
45 {
46 
47 
62 {
63 public:
66 
77  bool cov_is_factor=false);
78 
80  virtual ~CGaussianDistribution();
81 
90  virtual SGMatrix<float64_t> sample(int32_t num_samples,
91  SGMatrix<float64_t> pre_samples=SGMatrix<float64_t>()) const;
92 
110 
112  virtual const char* get_name() const
113  {
114  return "GaussianDistribution";
115  }
116 
117 
125  static float64_t univariate_log_pdf(float64_t sample, float64_t mu = 0.0, float64_t sigma2 = 1.0)
126  {
127  REQUIRE(sigma2 > 0, "Variance should be positive\n");
128  return -0.5 * (CMath::pow(sample - mu, 2) / sigma2
129  + CMath::log(2.0 * CMath::PI) + CMath::log(sigma2));
130  }
131 private:
132 
134  void init();
135 
136 protected:
139 
143 };
144 
145 }
146 
147 #endif // HAVE_EIGEN3
148 #endif // GAUSSIANDISTRIBUTION_H
#define REQUIRE(x,...)
Definition: SGIO.h:206
A base class for representing n-dimensional probability distribution over the real numbers (64bit) fo...
double float64_t
Definition: common.h:50
static float64_t univariate_log_pdf(float64_t sample, float64_t mu=0.0, float64_t sigma2=1.0)
virtual SGVector< float64_t > log_pdf_multiple(SGMatrix< float64_t > samples) const
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
Dense version of the well-known Gaussian probability distribution, defined as .
static float64_t log(float64_t v)
Definition: Math.h:922
virtual SGVector< float64_t > sample() const
static int32_t pow(bool x, int32_t n)
Definition: Math.h:535
virtual const char * get_name() const
static const float64_t PI
Definition: Math.h:2055

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