amidst / toolbox

A Java Toolbox for Scalable Probabilistic Machine Learning
http://www.amidsttoolbox.com
Apache License 2.0
119 stars 35 forks source link

windowSize in ParallelMLMissingData #70

Closed rcabanasdepaz closed 7 years ago

rcabanasdepaz commented 7 years ago

When using ParallelMLMissingData, the window size is always set to 1000, even if we try to change it.

rcabanasdepaz commented 7 years ago

The windowSize setter method of both versions of MLE, the code was like this:

public void setWindowsSize(int windowsSize) { windowsSize = windowsSize; }

while it should be :

public void setWindowsSize(int windowsSize) {
    this.windowsSize = windowsSize;
}

Now it works.