StreamingFeatures.cpp

Go to the documentation of this file.
00001 #include <shogun/features/StreamingFeatures.h>
00002 
00003 using namespace shogun;
00004 
00005 CStreamingFeatures::CStreamingFeatures() : CFeatures()
00006 {
00007 }
00008 
00009 CStreamingFeatures::CStreamingFeatures(CStreamingFile* file,
00010         bool is_labelled, int32_t size) : CFeatures()
00011 {
00012 }
00013 
00014 void CStreamingFeatures::set_read_functions()
00015 {
00016     set_vector_reader();
00017     set_vector_and_label_reader();
00018 }
00019 
00020 bool CStreamingFeatures::get_has_labels()
00021 {
00022     return has_labels;
00023 }
00024 
00025 bool CStreamingFeatures::is_seekable()
00026 {
00027     return seekable;
00028 }
00029 
00030 void CStreamingFeatures::reset_stream()
00031 {
00032     SG_NOTIMPLEMENTED;
00033     return;
00034 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation