/usr/include/shogun/features/StreamingSimpleFeatures.h is in libshogun-dev 1.1.0-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Written (W) 2011 Shashwat Lal Das
* Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
*/
#ifndef _STREAMING_SIMPLEFEATURES__H__
#define _STREAMING_SIMPLEFEATURES__H__
#include <shogun/lib/common.h>
#include <shogun/features/StreamingDotFeatures.h>
#include <shogun/features/SimpleFeatures.h>
#include <shogun/lib/DataType.h>
#include <shogun/io/InputParser.h>
namespace shogun
{
/** @brief This class implements streaming features with dense feature vectors.
*
* The current example is stored as a combination of current_vector
* and current_label.
*/
template <class T> class CStreamingSimpleFeatures : public CStreamingDotFeatures
{
public:
/**
* Default constructor.
*
* Sets the reading functions to be
* CStreamingFile::get_*_vector and get_*_vector_and_label
* depending on the type T.
*/
CStreamingSimpleFeatures();
/**
* Constructor taking args.
* Initializes the parser with the given args.
*
* @param file StreamingFile object, input file.
* @param is_labelled Whether examples are labelled or not.
* @param size Number of example objects to be stored in the parser at a time.
*/
CStreamingSimpleFeatures(CStreamingFile* file,
bool is_labelled, int32_t size);
/**
* Constructor taking a SimpleFeatures object and a labels array
* as args.
*
* @param simple_features SimpleFeatures object of same type
* @param lab labels array, float64_t*
*/
CStreamingSimpleFeatures(CSimpleFeatures<T>* simple_features,
float64_t* lab=NULL);
/**
* Destructor.
*
* Ends the parsing thread. (Waits for pthread_join to complete)
*/
~CStreamingSimpleFeatures();
/**
* Sets the read function (in case the examples are
* unlabelled) to get_*_vector() from CStreamingFile.
*
* The exact function depends on type T.
*
* The parser uses the function set by this while reading
* unlabelled examples.
*/
virtual void set_vector_reader();
/**
* Sets the read function (in case the examples are labelled)
* to get_*_vector_and_label from CStreamingFile.
*
* The exact function depends on type T.
*
* The parser uses the function set by this while reading
* labelled examples.
*/
virtual void set_vector_and_label_reader();
/**
* Starts the parsing thread.
*
* To be called before trying to use any feature vectors from this object.
*/
virtual void start_parser();
/**
* Ends the parsing thread.
*
* Waits for the thread to join.
*/
virtual void end_parser();
/**
* Reset a file back to the first example
* if possible.
*/
virtual void reset_stream();
/**
* Instructs the parser to return the next example.
*
* This example is stored as the current_example in this object.
*
* @return True on success, false if there are no more
* examples, or an error occurred.
*/
virtual bool get_next_example();
/**
* Return the current feature vector as an SGVector<T>.
*
* @return The vector as SGVector<T>
*/
SGVector<T> get_vector();
/**
* Return the label of the current example as a float.
*
* Examples must be labelled, otherwise an error occurs.
*
* @return The label as a float64_t.
*/
virtual float64_t get_label();
/**
* Release the current example, indicating to the parser that
* it has been processed by the learning algorithm.
*
* The parser is then free to throw away that example.
*/
virtual void release_example();
/** obtain the dimensionality of the feature space
*
* (not mix this up with the dimensionality of the input space, usually
* obtained via get_num_features())
*
* @return dimensionality
*/
virtual int32_t get_dim_feature_space() const;
/**
* Dot product using the current vector and another vector, passed as arg.
*
* @param vec The vector with which to calculate the dot product.
*
* @return Dot product as a float32_t
*/
virtual float32_t dot(SGVector<T> vec);
/**
* Dot product taken with another StreamingDotFeatures object.
*
* Currently only works if it is a CStreamingSimpleFeatures object.
* It takes the dot product of the current_vectors of both objects.
*
* @param df CStreamingDotFeatures object.
*
* @return Dot product.
*/
virtual float32_t dot(CStreamingDotFeatures *df);
/**
* Dot product with another dense vector.
*
* @param vec2 The dense vector with which to take the dot product.
* @param vec2_len length of vector
* @return Dot product as a float32_t.
*/
virtual float32_t dense_dot(const float32_t* vec2, int32_t vec2_len);
/**
* Dot product with another float64_t type dense vector.
*
* @param vec2 The dense vector with which to take the dot product.
* @param vec2_len length of vector
* @return Dot product as a float64_t.
*/
virtual float64_t dense_dot(const float64_t* vec2, int32_t vec2_len);
/**
* Add alpha*current_vector to another dense vector.
* Takes the absolute value of current_vector if specified.
*
* @param alpha alpha
* @param vec2 vector to add to
* @param vec2_len length of vector
* @param abs_val true if abs of current_vector should be taken
*/
virtual void add_to_dense_vec(float32_t alpha, float32_t* vec2, int32_t vec2_len , bool abs_val=false);
/**
* Add alpha*current_vector to another float64_t type dense vector.
* Takes the absolute value of current_vector if specified.
*
* @param alpha alpha
* @param vec2 vector to add to
* @param vec2_len length of vector
* @param abs_val true if abs of current_vector should be taken
*/
virtual void add_to_dense_vec(float64_t alpha, float64_t* vec2, int32_t vec2_len , bool abs_val=false);
/** get number of non-zero features in vector
*
* @return number of non-zero features in vector
*/
virtual inline int32_t get_nnz_features_for_vector();
/**
* Return the number of features in the current example.
*
* @return number of features as int
*/
int32_t get_num_features();
/**
* Return the feature type, depending on T.
*
* @return Feature type as EFeatureType
*/
virtual inline EFeatureType get_feature_type();
/**
* Return the feature class
*
* @return C_STREAMING_SIMPLE
*/
virtual EFeatureClass get_feature_class();
/**
* Duplicate the object.
*
* @return a duplicate object as CFeatures*
*/
virtual CFeatures* duplicate() const;
/**
* Return the name.
*
* @return StreamingSimpleFeatures
*/
inline virtual const char* get_name() const { return "StreamingSimpleFeatures"; }
/**
* Return the number of vectors stored in this object.
*
* @return 1 if current_vector exists, else 0.
*/
inline virtual int32_t get_num_vectors() const;
/**
* Return the size of one T object.
*
* @return Size of T.
*/
virtual int32_t get_size();
private:
/**
* Initializes members to null values.
* current_length is set to -1.
*/
void init();
/**
* Calls init, and also initializes the parser with the given args.
*
* @param file StreamingFile to read from
* @param is_labelled whether labelled or not
* @param size number of examples in the parser's ring
*/
void init(CStreamingFile *file, bool is_labelled, int32_t size);
protected:
/// feature weighting in combined dot features
float32_t combined_weight;
/// The parser object, which reads from input and returns parsed example objects.
CInputParser<T> parser;
/// The current example's feature vector as an SGVector<T>
SGVector<T> current_sgvector;
/// The current example's feature vector as a T*.
T* current_vector;
/// The current example's label.
float64_t current_label;
/// Number of features in current example.
int32_t current_length;
};
}
#endif // _STREAMING_SIMPLEFEATURES__H__
|