SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ECOCHDDecoder.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) 2012 Chiyuan Zhang
8  * Copyright (C) 2012 Chiyuan Zhang
9  */
10 
11 #ifndef ECOCHDDECODER_H__
12 #define ECOCHDDECODER_H__
13 
14 #include <shogun/lib/config.h>
15 
18 
19 namespace shogun
20 {
21 
24 {
25 public:
28 
30  virtual ~CECOCHDDecoder() {}
31 
33  virtual const char* get_name() const
34  {
35  return "ECOCHDDecoder";
36  }
37 
38 protected:
40  virtual bool binary_decoding()
41  {
42  return true;
43  }
44 
46  virtual float64_t compute_distance(SGVector<float64_t> outputs, const int32_t *code)
47  {
48  return CECOCUtil::hamming_distance(outputs.vector, code, outputs.vlen);
49  }
50 };
51 
52 }
53 
54 #endif /* end of include guard: ECOCHDDECODER_H__ */
static int32_t hamming_distance(T1 *c1, T2 *c2, int32_t len)
Definition: ECOCUtil.h:31
virtual bool binary_decoding()
Definition: ECOCHDDecoder.h:40
index_t vlen
Definition: SGVector.h:494
double float64_t
Definition: common.h:50
virtual const char * get_name() const
Definition: ECOCHDDecoder.h:33
virtual float64_t compute_distance(SGVector< float64_t > outputs, const int32_t *code)
Definition: ECOCHDDecoder.h:46
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18

SHOGUN Machine Learning Toolbox - Documentation