SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
StreamingMMD.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) The Shogun Machine Learning Toolbox
3  * Written (w) 2012-2013 Heiko Strathmann
4  * Written (w) 2014 Soumyajit De
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 STREAMING_MMD_H_
33 #define STREAMING_MMD_H_
34 
35 #include <shogun/lib/config.h>
36 
38 
39 namespace shogun
40 {
41 
42 class CStreamingFeatures;
43 class CFeatures;
44 
89 {
90 public:
92  CStreamingMMD();
93 
104  CStreamingFeatures* q, index_t m, index_t blocksize=10000);
105 
107  virtual ~CStreamingMMD();
108 
118  virtual float64_t compute_statistic();
119 
127  virtual SGVector<float64_t> compute_statistic(bool multiple_kernels);
128 
142  virtual float64_t compute_p_value(float64_t statistic);
143 
159  virtual float64_t perform_test();
160 
173  virtual float64_t compute_threshold(float64_t alpha);
174 
182 
201  virtual void compute_statistic_and_variance(
202  SGVector<float64_t>& statistic, SGVector<float64_t>& variance,
203  bool multiple_kernels=false)=0;
204 
209  virtual void compute_statistic_and_Q(
210  SGVector<float64_t>& statistic, SGMatrix<float64_t>& Q)=0;
211 
222 
226  void set_blocksize(index_t blocksize)
227  {
228  m_blocksize=blocksize;
229  }
230 
242  CList* stream_data_blocks(index_t num_blocks, index_t num_this_run);
243 
245  virtual void set_p_and_q(CFeatures* p_and_q);
246 
248  virtual CFeatures* get_p_and_q();
249 
254 
259 
263  inline void set_simulate_h0(bool simulate_h0)
264  {
265  m_simulate_h0=simulate_h0;
266  }
267 
269  virtual const char* get_name() const
270  {
271  return "StreamingMMD";
272  }
273 
274 protected:
287  CList* data, index_t num_this_run)=0;
288 
291 
294 
297 
301 
302 private:
304  void init();
305 };
306 
307 }
308 
309 #endif /* STREAMING_MMD_H_ */
310 
virtual void compute_statistic_and_variance(SGVector< float64_t > &statistic, SGVector< float64_t > &variance, bool multiple_kernels=false)=0
virtual float64_t compute_threshold(float64_t alpha)
virtual CStreamingFeatures * get_streaming_q()
virtual SGVector< float64_t > compute_squared_mmd(CKernel *kernel, CList *data, index_t num_this_run)=0
virtual CStreamingFeatures * get_streaming_p()
int32_t index_t
Definition: common.h:62
void set_simulate_h0(bool simulate_h0)
Definition: StreamingMMD.h:263
Kernel two sample test base class. Provides an interface for performing a two-sample test using a ker...
virtual SGVector< float64_t > sample_null()
virtual float64_t compute_p_value(float64_t statistic)
virtual float64_t compute_variance_estimate()
CStreamingFeatures * m_streaming_q
Definition: StreamingMMD.h:293
Abstract base class that provides an interface for performing kernel two-sample test on streaming dat...
Definition: StreamingMMD.h:88
void set_blocksize(index_t blocksize)
Definition: StreamingMMD.h:226
double float64_t
Definition: common.h:50
virtual CFeatures * get_p_and_q()
virtual const char * get_name() const
Definition: StreamingMMD.h:269
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
Streaming features are features which are used for online algorithms.
The Kernel base class.
Definition: Kernel.h:158
CStreamingFeatures * m_streaming_p
Definition: StreamingMMD.h:290
virtual void set_p_and_q(CFeatures *p_and_q)
CList * stream_data_blocks(index_t num_blocks, index_t num_this_run)
virtual void compute_statistic_and_Q(SGVector< float64_t > &statistic, SGMatrix< float64_t > &Q)=0
virtual float64_t perform_test()
Class List implements a doubly connected list for low-level-objects.
Definition: List.h:84
virtual float64_t compute_statistic()

SHOGUN Machine Learning Toolbox - Documentation