SHOGUN
3.2.1
首页
相关页面
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
页
src
shogun
features
LatentFeatures.cpp
浏览该文件的文档.
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
#include <
shogun/features/LatentFeatures.h
>
12
13
using namespace
shogun;
14
15
CLatentFeatures::CLatentFeatures
()
16
{
17
init();
18
m_samples
=
new
CDynamicObjectArray
(10);
19
SG_REF
(
m_samples
);
20
}
21
22
CLatentFeatures::CLatentFeatures
(int32_t num_samples)
23
{
24
init();
25
m_samples
=
new
CDynamicObjectArray
(num_samples);
26
SG_REF
(
m_samples
);
27
}
28
29
CLatentFeatures::~CLatentFeatures
()
30
{
31
SG_UNREF
(
m_samples
);
32
}
33
34
CFeatures
*
CLatentFeatures::duplicate
()
const
35
{
36
return
new
CLatentFeatures
(*
this
);
37
}
38
39
EFeatureType
CLatentFeatures::get_feature_type
()
const
40
{
41
return
F_ANY
;
42
}
43
44
EFeatureClass
CLatentFeatures::get_feature_class
()
const
45
{
46
return
C_LATENT
;
47
}
48
49
50
int32_t
CLatentFeatures::get_num_vectors
()
const
51
{
52
if
(
m_samples
== NULL)
53
return
0;
54
else
55
return
m_samples
->
get_array_size
();
56
}
57
58
bool
CLatentFeatures::add_sample
(
CData
* example)
59
{
60
ASSERT
(
m_samples
!= NULL)
61
if
(
m_samples
!= NULL)
62
{
63
m_samples
->
push_back
(example);
64
return
true
;
65
}
66
else
67
return
false
;
68
}
69
70
CData
*
CLatentFeatures::get_sample
(
index_t
idx)
71
{
72
ASSERT
(
m_samples
!= NULL)
73
if
(idx < 0 || idx >= this->
get_num_vectors
())
74
SG_ERROR
(
"Out of index!\n"
)
75
76
return
(
CData
*)
m_samples
->
get_element
(idx);
77
78
}
79
80
void
CLatentFeatures::init()
81
{
82
SG_ADD
((
CSGObject
**) &
m_samples
,
"samples"
,
"Array of examples"
,
83
MS_NOT_AVAILABLE
);
84
}
85
86
CLatentFeatures
*
CLatentFeatures::obtain_from_generic
(
CFeatures
* base_feats)
87
{
88
ASSERT
(base_feats != NULL)
89
if
(base_feats->
get_feature_class
() ==
C_LATENT
)
90
return
(
CLatentFeatures
*) base_feats;
91
else
92
SG_SERROR
(
"base_labels must be of dynamic type CLatentLabels\n"
)
93
94
return
NULL;
95
}
96
SHOGUN
机器学习工具包 - 项目文档