double mu = Math.min(k + 1, 200);
// the dot product of the parameter vector and the current instance
// is the hypothesis value for the currnet instance
double hypothesis_value = v.dot(this.polr.getBeta().viewRow(0));
double error = Math.abs( hypothesis_value - actual );
if (Double.POSITIVE_INFINITY == error) {