/usr/include/shogun/features/StreamingVwFeatures.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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | /*
* Copyright (c) 2009 Yahoo! Inc. All rights reserved. The copyrights
* embodied in the content of this file are licensed under the BSD
* (revised) open source license.
*
* 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
* Adaptation of Vowpal Wabbit v5.1.
* Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society.
*/
#ifndef _STREAMING_VWFEATURES__H__
#define _STREAMING_VWFEATURES__H__
#include <shogun/lib/common.h>
#include <shogun/lib/DataType.h>
#include <shogun/mathematics/Math.h>
#include <shogun/io/InputParser.h>
#include <shogun/io/StreamingVwFile.h>
#include <shogun/io/StreamingVwCacheFile.h>
#include <shogun/features/StreamingDotFeatures.h>
#include <shogun/classifier/vw/vw_common.h>
#include <shogun/classifier/vw/vw_math.h>
namespace shogun
{
/** @brief This class implements streaming features for use with VW.
*
* Each example is stored in a VwExample object, which also
* contains label and other information.
* Features are hashed and are supposed to be used with a weight
* vector of preallocated dimensions.
*/
class CStreamingVwFeatures : public CStreamingDotFeatures
{
public:
/**
* Default constructor.
*
* Sets the reading functions to be
* CStreamingFile::get_*_vector and get_*_vector_and_label
* depending on the type T.
*/
CStreamingVwFeatures();
/**
* 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.
*/
CStreamingVwFeatures(CStreamingVwFile* file,
bool is_labelled, int32_t size);
/**
* Constructor used when initialized
* with a cache file.
*
* @param file StreamingVwCacheFile object
* @param is_labelled Whether examples are labelled or not
* @param size Number of example objects to be stored in the parser at a time
*/
CStreamingVwFeatures(CStreamingVwCacheFile* file,
bool is_labelled, int32_t size);
/**
* Destructor.
*
* Ends the parsing thread. (Waits for pthread_join to complete)
*/
~CStreamingVwFeatures();
/**
* Duplicate this object
*
* @return a copy of this object
*/
CFeatures* duplicate() const;
/**
* 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 the file back to the first example.
* Only works for cache files.
*/
virtual void reset_stream();
/**
* Get the environment
* @return environment
*/
virtual CVwEnvironment* get_env();
/**
* Set the environment
*
* @param vw_env environment
*/
virtual void set_env(CVwEnvironment* vw_env);
/**
* 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();
/**
* Returns the current example.
*
* @return current example as VwExample*
*/
virtual VwExample* get_example();
/**
* 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();
/**
* Expand the vector passed so that it its length is equal to
* the dimensionality of the features. The previous values are
* kept intact through realloc, and the new ones are set to zero.
*
* @param vec float32_t* vector
* @param len length of the vector
*/
virtual void expand_if_required(float32_t*& vec, int32_t& len);
/**
* Expand the vector passed so that it its length is equal to
* the dimensionality of the features. The previous values are
* kept intact through realloc, and the new ones are set to zero.
*
* @param vec float64_t* vector
* @param len length of the vector
*/
virtual void expand_if_required(float64_t*& vec, int32_t& len);
/** 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;
/**
* Reduce element 'w' to max(w-gravity, 0)
*
* @param w value to truncate
* @param gravity value to truncate using
*
* @return truncated value
*/
virtual float32_t real_weight(float32_t w, float32_t gravity);
/**
* Dot product taken with another StreamingDotFeatures object.
*
* Currently only works if it is a CStreamingVwFeatures 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 of an example with a vector
*
* @param ex example, as VwExample
* @param vec2 vector to take dot product with
*
* @return dot product
*/
virtual float32_t dense_dot(VwExample* &ex, const float32_t* vec2);
/**
* Dot product of current feature vector with a dense vector
* which stores weights in hashed indices
*
* @param vec2 dense weight vector
* @param vec2_len length of weight vector (not used)
*
* @return dot product
*/
virtual float32_t dense_dot(const float32_t* vec2, int32_t vec2_len);
/**
* Dot product between a dense weight vector and a sparse feature vector.
* Assumes the features to belong to the constant namespace.
*
* @param vec1 sparse feature vector
* @param vec2 weight vector
*
* @return dot product between dense weights and a sparse feature vector
*/
virtual float32_t dense_dot(SGSparseVector<float32_t>* vec1, const float32_t* vec2);
/**
* Calculate dot product of features with another vector, truncating the elements
* of that vector by magnitude 'gravity' to a minimum final magnitude of zero.
*
* @param vec2 vector to take dot product with
* @param ex example whose features have to be taken
* @param gravity value to use for truncating
*
* @return dot product
*/
virtual float32_t dense_dot_truncated(const float32_t* vec2, VwExample* &ex, float32_t gravity);
/**
* Add alpha*an example's feature vector to another dense vector.
* Takes the absolute value of current_vector if specified
*
* @param alpha alpha
* @param ex example whose vector should be used
* @param vec2 vector to add to
* @param vec2_len length of vector
* @param abs_val true if abs of example's vector should be taken
*/
virtual void add_to_dense_vec(float32_t alpha, VwExample* &ex,
float32_t* vec2, int32_t vec2_len, bool abs_val = false);
/**
* 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);
/** get number of non-zero features in vector
*
* @return number of non-zero features in vector
*/
virtual int32_t get_nnz_features_for_vector();
/**
* Return the number of features in the current example.
*
* @return number of features as int
*/
virtual 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_VW
*/
virtual EFeatureClass get_feature_class();
/**
* Return the name.
*
* @return StreamingVwFeatures
*/
inline virtual const char* get_name() const { return "StreamingVwFeatures"; }
/**
* Return the number of vectors stored in this object.
*
* @return 1 if current_example 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.
*/
virtual 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
*/
virtual void init(CStreamingVwFile *file, bool is_labelled, int32_t size);
/**
* Init function when input is from a cache file
*
* @param file StreamingVwCacheFile to read from
* @param is_labelled whether labelled or not
* @param size number of examples in the parser's ring
*/
virtual void init(CStreamingVwCacheFile *file, bool is_labelled, int32_t size);
/**
* Setup the example obtained from the parser so it
* can be directly updated by the learner.
*
* @param ae example object
*/
virtual void setup_example(VwExample* ae);
protected:
/// The parser object, which reads from input and returns parsed example objects.
CInputParser<VwExample> parser;
/// Number of examples processed at a point of time
vw_size_t example_count;
/// The current example's label.
float64_t current_label;
/// Number of features in current example.
int32_t current_length;
/// Environment for VW
CVwEnvironment* env;
/// Example currently being processed
VwExample* current_example;
};
}
#endif // _STREAMING_VWFEATURES__H__
|