Skip to content

Commit

Permalink
changing access specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
nikit-srivastava committed Oct 18, 2018
1 parent 112ef8e commit cfe2e0a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
public class W2VNrmlMemModelKMeans extends W2VNrmlMemModelBinSrch {
public static Logger LOG = LogManager.getLogger(GenWord2VecModel.class);

private int kMeansMaxItr = 5;
private String vecFilePath = "data/kmeans/comparison-vecs.csv";
protected int kMeansMaxItr = 5;
protected String vecFilePath = "data/kmeans/comparison-vecs.csv";

public W2VNrmlMemModelKMeans(final Map<String, float[]> word2vec, final int vectorSize) throws IOException {
super(word2vec, vectorSize);
Expand Down

0 comments on commit cfe2e0a

Please sign in to comment.