summaryrefslogtreecommitdiff
path: root/utils/feature_vector.h
blob: bf77b5acf1176ea2eefcc02173d1f7f32707752c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef FEATURE_VECTOR_H_
#define FEATURE_VECTOR_H_

#include <vector>
#include "sparse_vector.h"
#include "weights.h"

typedef weight_t Featval;
typedef SparseVector<Featval> FeatureVector;
typedef SparseVector<Featval> WeightVector;
typedef std::vector<Featval> DenseWeightVector;

inline void sparse_to_dense(WeightVector const& wv,DenseWeightVector *dv) {
  wv.init_vector(dv);
}

#endif