SHOGUN
v3.2.0
src
shogun
features
宏定义
StringFeatures.cpp 文件参考
浏览源代码.
宏定义
#define
LOAD
(f_load, sg_type)
#define
SAVE
(f_write, sg_type)
宏定义说明
§
LOAD
#define LOAD
(
f_load,
sg_type
)
值:
template
<>
void
CStringFeatures<sg_type>::load(CFile* loader) \
{ \
SG_INFO(
"loading...\n"
) \
\
SG_SET_LOCALE_C; \
SGString<sg_type>* strs; \
int32_t num_str; \
int32_t max_len; \
loader->f_load(strs, num_str, max_len); \
set_features(strs, num_str, max_len); \
SG_RESET_LOCALE; \
}
在文件
StringFeatures.cpp
第
1914
行定义.
§
SAVE
#define SAVE
(
f_write,
sg_type
)
值:
template
<>
void
CStringFeatures<sg_type>::save(CFile* writer) \
{ \
if (m_subset_stack->has_subsets()) \
SG_ERROR
(
"save() is not possible on subset"
) \
SG_SET_LOCALE_C; \
ASSERT(writer) \
writer->f_write(features, num_vectors); \
SG_RESET_LOCALE; \
}
SG_ERROR
#define SG_ERROR(...)
Definition:
SGIO.h:131
在文件
StringFeatures.cpp
第
1943
行定义.
SHOGUN
Machine Learning Toolbox - Documentation