Skip to content
Snippets Groups Projects
Commit 252d4f27 authored by WeichenXu's avatar WeichenXu Committed by Sean Owen
Browse files

[SPARK-16500][ML][MLLIB][OPTIMIZER] add LBFGS convergence warning for all used place in MLLib

## What changes were proposed in this pull request?

Add warning_for the following case when LBFGS training not actually convergence:

1) LogisticRegression
2) AFTSurvivalRegression
3) LBFGS algorithm wrapper in mllib package

## How was this patch tested?

N/A

Author: WeichenXu <WeichenXu123@outlook.com>

Closes #14157 from WeichenXu123/add_lbfgs_convergence_warning_for_all_used_place.
parent db7317ac
No related branches found
No related tags found
No related merge requests found
......@@ -424,6 +424,11 @@ class LogisticRegression @Since("1.2.0") (
throw new SparkException(msg)
}
if (!state.actuallyConverged) {
logWarning("LogisticRegression training fininshed but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}
/*
The coefficients are trained in the scaled space; we're converting them back to
the original space.
......
......@@ -245,6 +245,11 @@ class AFTSurvivalRegression @Since("1.6.0") (@Since("1.6.0") override val uid: S
throw new SparkException(msg)
}
if (!state.actuallyConverged) {
logWarning("AFTSurvivalRegression training fininshed but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}
state.x.toArray.clone()
}
......
......@@ -212,6 +212,12 @@ object LBFGS extends Logging {
state = states.next()
}
lossHistory += state.value
if (!state.actuallyConverged) {
logWarning("LBFGS training fininshed but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}
val weights = Vectors.fromBreeze(state.x)
val lossHistoryArray = lossHistory.result()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment