SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
宏定义
StringFeatures.cpp 文件参考

浏览源代码.

宏定义

#define LOAD(f_load, sg_type)
 
#define SAVE(f_write, sg_type)
 

宏定义说明

#define LOAD (   f_load,
  sg_type 
)
值:
template<> void CStringFeatures<sg_type>::load(CFile* loader) \
{ \
SG_INFO("loading...\n") \
\
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); \
}
#define SG_INFO(...)
Definition: SGIO.h:118
#define SG_RESET_LOCALE
Definition: SGIO.h:86
#define SG_SET_LOCALE_C
Definition: SGIO.h:85

在文件 StringFeatures.cpp1921 行定义.

#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") \
ASSERT(writer) \
writer->f_write(features, num_vectors); \
}
#define SG_RESET_LOCALE
Definition: SGIO.h:86
#define SG_ERROR(...)
Definition: SGIO.h:129
#define SG_SET_LOCALE_C
Definition: SGIO.h:85
#define ASSERT(x)
Definition: SGIO.h:201

在文件 StringFeatures.cpp1950 行定义.


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