Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit 22e8511

Browse files
author
Maja Kabiljo
committed
JIRA-1160
closes #49
1 parent b8f966a commit 22e8511

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

giraph-core/src/main/java/org/apache/giraph/ooc/policy/MemoryEstimatorOracle.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -789,10 +789,9 @@ private static boolean calculateRegression(double[] coefficient,
789789
List<Integer> validColumnIndices, OLSMultipleLinearRegression mlr) {
790790

791791
if (coefficient.length != validColumnIndices.size()) {
792-
LOG.warn("There are " + coefficient.length +
793-
" coefficients, but " + validColumnIndices.size() +
792+
LOG.info("There are " + coefficient.length +
793+
" coefficients, and " + validColumnIndices.size() +
794794
" valid columns in the regression");
795-
return false;
796795
}
797796

798797
double[] beta = mlr.estimateRegressionParameters();

0 commit comments

Comments
 (0)