SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
StreamingFileFromFeatures.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) 2011 Shashwat Lal Das
8  * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
9  */
10 
12 
13 using namespace shogun;
14 
16  : CStreamingFile()
17 {
18  features=NULL;
19  labels=NULL;
20 }
21 
23  : CStreamingFile()
24 {
25  features=feat;
26  labels=NULL;
27 }
28 
30  : CStreamingFile()
31 {
32  features=feat;
33  labels=lab;
34 }
35 
37 {
38  features=NULL;
39  labels=NULL;
40 }
float64_t * labels
Labels (if applicable)
A Streaming File access class.
Definition: StreamingFile.h:34
double float64_t
Definition: common.h:50
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

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