SHOGUN
v1.1.0
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
shogun
features
StreamingFeatures.cpp
Go to the documentation of this file.
1
#include <
shogun/features/StreamingFeatures.h
>
2
3
using namespace
shogun;
4
5
CStreamingFeatures::CStreamingFeatures
() :
CFeatures
()
6
{
7
}
8
9
CStreamingFeatures::CStreamingFeatures
(
CStreamingFile
* file,
10
bool
is_labelled, int32_t size) :
CFeatures
()
11
{
12
}
13
14
void
CStreamingFeatures::set_read_functions
()
15
{
16
set_vector_reader
();
17
set_vector_and_label_reader
();
18
}
19
20
bool
CStreamingFeatures::get_has_labels
()
21
{
22
return
has_labels
;
23
}
24
25
bool
CStreamingFeatures::is_seekable
()
26
{
27
return
seekable
;
28
}
29
30
void
CStreamingFeatures::reset_stream
()
31
{
32
SG_NOTIMPLEMENTED
;
33
return
;
34
}
SHOGUN
Machine Learning Toolbox - Documentation