SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Histogram.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 1999-2009 Soeren Sonnenburg
8  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _HISTOGRAM_H___
12 #define _HISTOGRAM_H___
13 
14 #include <shogun/lib/config.h>
15 
18 
19 namespace shogun
20 {
21  template <class ST> class CStringFeatures;
22 
28 class CHistogram : public CDistribution
29 {
30  public:
32  CHistogram();
33 
39  virtual ~CHistogram();
40 
49  virtual bool train(CFeatures* data=NULL);
50 
55  virtual int32_t get_num_model_parameters() { return (1<<16); }
56 
62  virtual float64_t get_log_model_parameter(int32_t num_param);
63 
71  int32_t num_param, int32_t num_example);
72 
78  virtual float64_t get_log_likelihood_example(int32_t num_example);
79 
84  virtual bool set_histogram(const SGVector<float64_t> histogram);
85 
92 
94  virtual const char* get_name() const { return "Histogram"; }
95 
96  protected:
99 };
100 }
101 #endif
virtual bool set_histogram(const SGVector< float64_t > histogram)
Definition: Histogram.cpp:149
Base class Distribution from which all methods implementing a distribution are derived.
Definition: Distribution.h:44
virtual SGVector< float64_t > get_histogram()
Definition: Histogram.cpp:161
Class Histogram computes a histogram over all 16bit unsigned integers in the features.
Definition: Histogram.h:28
double float64_t
Definition: common.h:50
virtual float64_t get_log_model_parameter(int32_t num_param)
Definition: Histogram.cpp:144
virtual ~CHistogram()
Definition: Histogram.cpp:34
float64_t * hist
Definition: Histogram.h:98
virtual bool train(CFeatures *data=NULL)
Definition: Histogram.cpp:39
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual float64_t get_log_likelihood_example(int32_t num_example)
Definition: Histogram.cpp:83
virtual int32_t get_num_model_parameters()
Definition: Histogram.h:55
virtual float64_t get_log_derivative(int32_t num_param, int32_t num_example)
Definition: Histogram.cpp:105
virtual const char * get_name() const
Definition: Histogram.h:94

SHOGUN Machine Learning Toolbox - Documentation