Example usage for org.apache.mahout.math WeightedVector getVector

List of usage examples for org.apache.mahout.math WeightedVector getVector

Introduction

In this page you can find the example usage for org.apache.mahout.math WeightedVector getVector.

Prototype

public Vector getVector() 

Source Link

Usage

From source file:org.mpei.knn.lsh.tools.HashedVector.java

License:Apache License

public HashedVector(WeightedVector v, Matrix projection, long mask) {
    super(v.getVector(), v.getWeight(), v.getIndex());
    this.hash = mask;
}