#ifndef _SPARSE_VECTOR_H_ #define _SPARSE_VECTOR_H_ //#define SPARSE_VECTOR_HASH #ifdef SPARSE_VECTOR_HASH #include "hash.h" # define SPARSE_VECTOR_MAP HASH_MAP # define SPARSE_VECTOR_MAP_RESERVED(h,empty,deleted) HASH_MAP_RESERVED(h,empty,deleted) #else # define SPARSE_VECTOR_MAP std::map # define SPARSE_VECTOR_MAP_RESERVED(h,empty,deleted) #endif /* use SparseVectorList (pair smallvector) for feat funcs / hypergraphs (you rarely need random access; just append a feature to the list) */ /* hack: index 0 never gets printed because cdyer is creative and efficient. features which have no weight got feature dict id 0, see, and the models all clobered that value. nobody wants to see it. except that vlad is also creative and efficient and stored the oracle bleu there. */ /* NOTE: zero vals may or may not be dropped from map (sparse, but not guaranteed to be so). I rely on !v the same as !((bool)v) the same as v==0 and v() same as v(0). one exception: a local: T sum = 0; is used instead of T sum; because T may be a primitive type, and T sum(); is parsed as a function decl :( the alternative T sum=T() is also be reasonable. i've switched to that. */ // this is a modified version of code originally written // by Phil Blunsom #include #include #include #include #include #include "fdict.h" #include "small_vector.h" template inline T & extend_vector(std::vector &v,int i) { if (i>=v.size()) v.resize(i+1); return v[i]; } template class SparseVector { void init_reserved() { SPARSE_VECTOR_MAP_RESERVED(values_,-1,-2); } public: T const& get_singleton() const { assert(values_.size()==1); return values_.begin()->second; } typedef SparseVector Self; typedef SPARSE_VECTOR_MAP MapType; typedef typename MapType::const_iterator const_iterator; SparseVector() { init_reserved(); } explicit SparseVector(std::vector const& v) { init_reserved(); typename MapType::iterator p=values_.begin(); const T z=0; for (unsigned i=0;i *vp) const { init_vector(*vp); } void init_vector(std::vector &v) const { v.clear(); for (const_iterator i=values_.begin(),e=values_.end();i!=e;++i) extend_vector(v,i->first)=i->second; } void set_new_value(int index, T const& val) { assert(values_.find(index)==values_.end()); values_[index]=val; } // warning: exploits the fact that 0 values are always removed from map. change this if you change that. bool nonzero(int index) const { typename MapType::const_iterator found = values_.find(index); return found==values_.end() || !found->second; } T get(int index) const { typename MapType::const_iterator found = values_.find(index); return found==values_.end()?T():found->second; } T value(int i) const { return get(i); } // same as above but may add a 0 entry. TODO: check that people relying on no entry use get T & operator[](int index){ return values_[index]; } inline void set_value(int index, const T &value) { values_[index] = value; } inline void maybe_add(int index, const T& value) { if (value) add_value(index,value); } T& add_value(int index, const T &value) { #if 1 return values_[index]+=value; #else // this is not really going to be any faster, and we already rely on default init = 0 init std::pair art=values_.insert(std::make_pair(index,value)); T &val=art.first->second; if (!art.second) val += value; // already existed return val; #endif } void store(std::valarray* target) const { (*target) *= 0; for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) { if (it->first >= target->size()) break; (*target)[it->first] = it->second; } } int max_index() const { if (empty()) return 0; typename MapType::const_iterator found =values_.end(); --found; return found->first; } // dot product with a unit vector of the same length // as the sparse vector T dot() const { T sum = T(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) sum += it->second; return sum; } template S cosine_sim(const SparseVector &vec) const { return dot(vec)/(l2norm()*vec.l2norm()); } // if values are binary, gives |A intersect B|/|A union B| template S tanimoto_coef(const SparseVector &vec) const { S dp=dot(vec); return dp/(l2norm_sq()+vec.l2norm_sq()-dp); } template S dot(const SparseVector &vec) const { S sum = S(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) { typename MapType::const_iterator found = vec.values_.find(it->first); if (found != vec.values_.end()) sum += it->second * found->second; } return sum; } template S dot(const std::vector &vec) const { S sum = S(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) { if (it->first < static_cast(vec.size())) sum += it->second * vec[it->first]; } return sum; } template S dot(const S *vec) const { // this is not range checked! S sum = S(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) sum += it->second * vec[it->first]; std::cout << "dot(*vec) " << sum << std::endl; return sum; } T l1norm() const { T sum = T(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) sum += fabs(it->second); return sum; } T l2norm_sq() const { T sum = T(); for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) sum += it->second * it->second; return sum; } T l2norm() const { return sqrt(l2norm_sq()); } void erase(int key) { values_.erase(key); /* typename MapType::iterator found = values_.find(key); if (found!=values_end()) values_.erase(found);*/ } template void set_from(SparseVector const& other) { for (typename MapType::const_iterator it = other.values_.begin(); it != other.values_.end(); ++it) { values_[it->first]=it->second; } } SparseVector &operator+=(const SparseVector &other) { for (typename MapType::const_iterator it = other.values_.begin(); it != other.values_.end(); ++it) { // T v = (values_[it->first] += it->second); // if (!v) values_.erase(it->first); } return *this; } SparseVector &operator-=(const SparseVector &other) { for (typename MapType::const_iterator it = other.values_.begin(); it != other.values_.end(); ++it) { // T v = (values_[it->first] -= it->second); // if (!v) values_.erase(it->first); } return *this; } friend SparseVector operator -(SparseVector x,SparseVector const& y) { x-=y; return x; } friend SparseVector operator +(SparseVector x,SparseVector const& y) { x+=y; return x; } private: // DEPRECATED: becuase 0 values are dropped from the map, this doesn't even make sense if you have a fully populated (not really sparse re: what you'll ever use) vector SparseVector &operator-=(T const& x) { for (typename MapType::iterator it = values_.begin(); it != values_.end(); ++it) it->second -= x; return *this; } SparseVector &operator+=(T const& x) { for (typename MapType::iterator it = values_.begin(); it != values_.end(); ++it) it->second += x; return *this; } public: SparseVector &operator/=(const T &x) { for (typename MapType::iterator it = values_.begin(); it != values_.end(); ++it) it->second /= x; return *this; } SparseVector &operator*=(const T& x) { for (typename MapType::iterator it = values_.begin(); it != values_.end(); ++it) it->second *= x; return *this; } SparseVector operator+(T const& x) const { SparseVector result = *this; return result += x; } SparseVector operator-(T const& x) const { SparseVector result = *this; return result -= x; } SparseVector operator/(T const& x) const { SparseVector result = *this; return result /= x; } std::ostream &operator<<(std::ostream& out) const { Write(true, &out); return out; } void Write(const bool with_semi, std::ostream* os) const { bool first = true; for (typename MapType::const_iterator it = values_.begin(); it != values_.end(); ++it) { // by definition feature id 0 is a dummy value if (!it->first) continue; if (with_semi) { (*os) << (first ? "" : ";") << FD::Convert(it->first) << '=' << it->second; } else { (*os) << (first ? "" : " ") << FD::Convert(it->first) << '=' << it->second; } first = false; } } bool operator==(Self const & other) const { return size()==other.size() && contains_keys_of(other) && other.contains_i(*this); } bool contains(Self const &o) const { return size()>o.size() && contains(o); } bool at_equals(int i,T const& val) const { const_iterator it=values_.find(i); if (it==values_.end()) return !val; return it->second==val; } bool contains_i(Self const& o) const { for (typename MapType::const_iterator i=o.begin(),e=o.end();i!=e;++i) if (!at_equals(i->first,i->second)) return false; return true; } bool contains_keys_of(Self const& o) const { for (typename MapType::const_iterator i=o.begin(),e=o.end();i!=e;++i) if (values_.find(i)==values_.end()) return false; return true; } #ifndef SPARSE_VECTOR_HASH bool operator<(const SparseVector &other) const { typename MapType::const_iterator it = values_.begin(); typename MapType::const_iterator other_it = other.values_.begin(); for (; it != values_.end() && other_it != other.values_.end(); ++it, ++other_it) { if (it->first < other_it->first) return true; if (it->first > other_it->first) return false; if (it->second < other_it->second) return true; if (it->second > other_it->second) return false; } return values_.size() < other.values_.size(); } #endif int size() const { return values_.size(); } int num_active() const { return values_.size(); } bool empty() const { return values_.empty(); } const_iterator begin() const { return values_.begin(); } const_iterator end() const { return values_.end(); } void clear() { values_.clear(); } void swap(SparseVector& other) { values_.swap(other.values_); } private: MapType values_; }; template inline void swap(SparseVector &a,SparseVector &b) { a.swap(b); } //like a pair but can live in a union, because it lacks default+copy ctors, dtor. template struct feature_val { int fid; T val; }; template inline feature_val featval(int fid,T const &val) { feature_val f; f.fid=fid; f.val=val; return f; } // doesn't support fast indexing directly template class SparseVectorList { typedef feature_val Pair; typedef SmallVector List; typedef typename List::const_iterator const_iterator; SparseVectorList() { } template SparseVectorList(I i,I const& end) { int c=0; for (;i const& v) { for (unsigned i=0;i *to) const { for (int i=0;iset_value(p[i].fid,p[i].val); } void copy_to(SparseVector *to) const { to->clear(); overlay(to); } SparseVector sparse() const { SparseVector r; copy_to(r); return r; } private: List p; }; template SparseVector operator+(const SparseVector& a, const SparseVector& b) { SparseVector result = a; return result += b; } template SparseVector operator*(const SparseVector& a, const double& b) { SparseVector result = a; return result *= b; } template SparseVector operator*(const SparseVector& a, const T& b) { SparseVector result = a; return result *= b; } template SparseVector operator*(const double& a, const SparseVector& b) { SparseVector result = b; return result *= a; } template std::ostream &operator<<(std::ostream &out, const SparseVector &vec) { return vec.operator<<(out); } namespace B64 { void Encode(double objective, const SparseVector& v, std::ostream* out); // returns false if failed to decode bool Decode(double* objective, SparseVector* v, const char* data, size_t size); } #endif