SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
LatentFeatures.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) 2012 Viktor Gal
8  * Copyright (C) 2012 Viktor Gal
9  */
10 
11 #ifndef __LATENTFEATURES_H__
12 #define __LATENTFEATURES_H__
13 
14 #include <shogun/lib/config.h>
15 
17 #include <shogun/lib/Data.h>
18 
19 namespace shogun
20 {
26  class CLatentFeatures : public CFeatures
27  {
28  public:
31 
36  CLatentFeatures(int32_t num_samples);
37 
38  virtual ~CLatentFeatures();
39 
44  virtual CFeatures* duplicate() const;
45 
50  virtual EFeatureType get_feature_type() const;
51 
56  virtual EFeatureClass get_feature_class() const;
57 
62  virtual int32_t get_num_vectors() const;
63 
68  virtual const char* get_name() const { return "LatentFeatures"; }
69 
74  bool add_sample(CData* example);
75 
81  CData* get_sample(index_t idx);
82 
87  static CLatentFeatures* obtain_from_generic(CFeatures* base_feats);
88  protected:
91 
92  private:
94  void init();
95  };
96 }
97 
98 #endif /* __LATENTFEATURES_H__ */
99 
Latent Features class The class if for representing features for latent learning, e...
CDynamicObjectArray * m_samples
int32_t index_t
Definition: common.h:62
static CLatentFeatures * obtain_from_generic(CFeatures *base_feats)
virtual const char * get_name() const
EFeatureClass
shogun feature class
Definition: FeatureTypes.h:38
dummy data holder
Definition: Data.h:25
bool add_sample(CData *example)
virtual int32_t get_num_vectors() const
Dynamic array class for CSGObject pointers that creates an array that can be used like a list or an a...
CData * get_sample(index_t idx)
EFeatureType
shogun feature type
Definition: FeatureTypes.h:19
virtual CFeatures * duplicate() const
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 EFeatureClass get_feature_class() const
virtual EFeatureType get_feature_type() const

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