SHOGUN
v3.2.0
src
shogun
io
streaming
StreamingFileFromFeatures.cpp
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) 2011 Shashwat Lal Das
8
* Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
9
*/
10
#include <
shogun/io/streaming/StreamingFileFromFeatures.h
>
11
12
using namespace
shogun
;
13
14
CStreamingFileFromFeatures::CStreamingFileFromFeatures
()
15
:
CStreamingFile
()
16
{
17
features
=NULL;
18
labels
=NULL;
19
}
20
21
CStreamingFileFromFeatures::CStreamingFileFromFeatures
(
CFeatures
* feat)
22
:
CStreamingFile
()
23
{
24
features
=feat;
25
labels
=NULL;
26
}
27
28
CStreamingFileFromFeatures::CStreamingFileFromFeatures
(
CFeatures
* feat,
float64_t
* lab)
29
:
CStreamingFile
()
30
{
31
features
=feat;
32
labels
=lab;
33
}
34
35
CStreamingFileFromFeatures::~CStreamingFileFromFeatures
()
36
{
37
features
=NULL;
38
labels
=NULL;
39
}
shogun::CStreamingFileFromFeatures::~CStreamingFileFromFeatures
virtual ~CStreamingFileFromFeatures()
Definition:
StreamingFileFromFeatures.cpp:35
StreamingFileFromFeatures.h
shogun::CStreamingFileFromFeatures::labels
float64_t * labels
Labels (if applicable)
Definition:
StreamingFileFromFeatures.h:98
shogun::CStreamingFile
A Streaming File access class.
Definition:
StreamingFile.h:39
shogun::CStreamingFileFromFeatures::features
CFeatures * features
Features object.
Definition:
StreamingFileFromFeatures.h:95
float64_t
double float64_t
Definition:
common.h:48
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:16
shogun::CStreamingFileFromFeatures::CStreamingFileFromFeatures
CStreamingFileFromFeatures()
Definition:
StreamingFileFromFeatures.cpp:14
shogun::CFeatures
The class Features is the base class of all feature objects.
Definition:
Features.h:62
SHOGUN
Machine Learning Toolbox - Documentation