SHOGUN  3.2.1
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
LogPlusOne.h
浏览该文件的文档.
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 _CLOGPLUSONE__H__
12 #define _CLOGPLUSONE__H__
13 
14 #include <shogun/lib/config.h>
15 
18 #include <shogun/lib/common.h>
19 
20 #include <stdio.h>
21 
22 namespace shogun
23 {
35 class CLogPlusOne : public CDensePreprocessor<float64_t>
36 {
37  public:
39  CLogPlusOne();
40 
42  virtual ~CLogPlusOne();
43 
45  virtual bool init(CFeatures* features);
46 
48  virtual void cleanup();
50  virtual bool load(FILE* f);
52  virtual bool save(FILE* f);
53 
58 
62 
64  virtual const char* get_name() const { return "LogPlusOne"; }
65 
67  virtual EPreprocessorType get_type() const { return P_LOGPLUSONE; }
68 };
69 }
70 #endif
virtual const char * get_name() const
Definition: LogPlusOne.h:64
EPreprocessorType
Definition: Preprocessor.h:32
virtual void cleanup()
cleanup
Definition: LogPlusOne.cpp:38
virtual SGVector< float64_t > apply_to_feature_vector(SGVector< float64_t > vector)
Definition: LogPlusOne.cpp:77
Preprocessor LogPlusOne does what the name says, it adds one to a dense real valued vector and takes ...
Definition: LogPlusOne.h:35
virtual bool init(CFeatures *features)
initialize preprocessor from features
Definition: LogPlusOne.cpp:29
Template class DensePreprocessor, base class for preprocessors (cf. CPreprocessor) that apply to CDen...
virtual bool load(FILE *f)
initialize preprocessor from file
Definition: LogPlusOne.cpp:43
virtual ~CLogPlusOne()
Definition: LogPlusOne.cpp:24
virtual bool save(FILE *f)
save preprocessor init-data to file
Definition: LogPlusOne.cpp:51
virtual SGMatrix< float64_t > apply_to_feature_matrix(CFeatures *features)
Definition: LogPlusOne.cpp:61
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual EPreprocessorType get_type() const
return a type of preprocessor
Definition: LogPlusOne.h:67

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