SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FeatureTypes.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) 2009 Soeren Sonnenburg
8  * Copyright (C) 2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 #ifndef _FEATURE_TYPES__H__
11 #define _FEATURE_TYPES__H__
12 namespace shogun
13 {
14 
17  {
18  F_UNKNOWN = 0,
19  F_BOOL = 5,
20  F_CHAR = 10,
21  F_BYTE = 20,
22  F_SHORT = 30,
23  F_WORD = 40,
24  F_INT = 50,
25  F_UINT = 60,
26  F_LONG = 70,
27  F_ULONG = 80,
29  F_DREAL = 100,
30  F_LONGREAL = 110,
31  F_ANY = 1000
32  };
33 
36  {
37  C_UNKNOWN = 0,
38  C_DENSE = 10,
39  C_SPARSE = 20,
40  C_STRING = 30,
41  C_COMBINED = 40,
43  C_WD = 70,
44  C_SPEC = 80,
46  C_POLY = 100,
51  C_BINNED_DOT = 150,
53  C_LATENT = 170,
54  C_ANY = 1000
55  };
56 
59  {
60  FP_NONE = 0,
61  FP_DOT = 1,
63  };
64 }
65 #endif // _FEATURE_TYPES__H__

SHOGUN Machine Learning Toolbox - Documentation