SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
SoftMaxLikelihood.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) The Shogun Machine Learning Toolbox
3  * Written (w) 2014 Wu Lin
4  * Written (w) 2014 Parijat Mazumdar
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
32  * https://gist.github.com/yorkerlin/8a36e8f9b298aa0246a4
33  * and
34  * GPstuff - Gaussian process models for Bayesian analysis
35  * http://becs.aalto.fi/en/research/bayes/gpstuff/
36  *
37  * The reference pseudo code is the algorithm 3.4 of the GPML textbook
38  *
39  */
40 
41 #ifndef _SOFTMAXLIKELIHOOD_H_
42 #define _SOFTMAXLIKELIHOOD_H_
43 
44 #include <shogun/lib/config.h>
45 
46 #ifdef HAVE_EIGEN3
47 
50 
51 namespace shogun
52 {
53 
56 {
60 };
61 
81 {
82 public:
85 
87  virtual ~CSoftMaxLikelihood();
88 
93  virtual const char* get_name() const { return "SoftMaxLikelihood"; }
94 
112  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
113 
131  SGVector<float64_t> s2, const CLabels* lab=NULL) const;
132 
165  SGVector<float64_t> s2, const CLabels *lab=NULL);
166 
179  SGVector<float64_t> func) const;
180 
192  const CLabels* lab, SGVector<float64_t> func, index_t i) const;
193 
206  SGVector<float64_t> s2, const CLabels* lab) const
207  {
208  SG_ERROR("Not Implemented\n");
209  return SGVector<float64_t>();
210  }
211 
227  SGVector<float64_t> s2, const CLabels* lab, index_t i) const
228  {
229  SG_ERROR("Not Implemented\n");
230  return -1.0;
231  }
232 
248  SGVector<float64_t> s2, const CLabels* lab, index_t i) const
249  {
250  SG_ERROR("Not Implemented\n");
251  return -1.0;
252  }
253 
258  virtual bool supports_multiclass() const { return true; }
259 
265  virtual void set_num_samples(index_t num_samples);
266 
267 private:
269  void init();
271  index_t m_num_samples;
272 
286  SGVector<float64_t> predictive_helper(SGVector<float64_t> mu,
287  SGVector<float64_t> s2, const CLabels *lab, EMCSamplerType option) const;
288 
303  SGVector<float64_t> mc_sampler(index_t num_samples, SGVector<float64_t> mean,
305 
306 
315  SGVector<float64_t> get_log_probability_derivative1_f(const CLabels* lab, SGMatrix<float64_t> func) const;
316 
325  SGVector<float64_t> get_log_probability_derivative2_f(SGMatrix<float64_t> func) const;
326 
335  SGVector<float64_t> get_log_probability_derivative3_f(SGMatrix<float64_t> func) const;
336 };
337 }
338 #endif /* HAVE_EIGEN3 */
339 #endif /* _SOFTMAXLIKELIHOOD_H_ */
virtual SGVector< float64_t > get_log_probability_f(const CLabels *lab, SGVector< float64_t > func) const
virtual void set_num_samples(index_t num_samples)
Class that models Soft-Max likelihood.
int32_t index_t
Definition: common.h:62
The class Labels models labels, i.e. class assignments of objects.
Definition: Labels.h:43
virtual SGVector< float64_t > get_log_probability_derivative_f(const CLabels *lab, SGVector< float64_t > func, index_t i) const
#define SG_ERROR(...)
Definition: SGIO.h:129
virtual const char * get_name() const
double float64_t
Definition: common.h:50
virtual SGVector< float64_t > get_predictive_log_probabilities(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL)
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
virtual float64_t get_second_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const
virtual bool supports_multiclass() 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
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_predictive_variances(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab=NULL) const
virtual float64_t get_first_moment(SGVector< float64_t > mu, SGVector< float64_t > s2, const CLabels *lab, index_t i) const

SHOGUN Machine Learning Toolbox - Documentation