Skip to content
Snippets Groups Projects
Commit a78fbfa6 authored by dding3's avatar dding3 Committed by Sean Owen
Browse files

[SPARK-15172][ML] Explicitly tell user initial coefficients is ignored when...

[SPARK-15172][ML] Explicitly tell user initial coefficients is ignored when size mismatch happened in LogisticRegression

## What changes were proposed in this pull request?
Explicitly tell user initial coefficients is ignored if its size doesn't match expected size in LogisticRegression

## How was this patch tested?
local build

Author: dding3 <dingding@dingding-ubuntu.sh.intel.com>

Closes #12948 from dding3/master.
parent 12fe2ecd
No related branches found
No related tags found
No related merge requests found
......@@ -366,9 +366,10 @@ class LogisticRegression @Since("1.2.0") (
Vectors.zeros(if ($(fitIntercept)) numFeatures + 1 else numFeatures)
if (optInitialModel.isDefined && optInitialModel.get.coefficients.size != numFeatures) {
val vec = optInitialModel.get.coefficients
val vecSize = optInitialModel.get.coefficients.size
logWarning(
s"Initial coefficients provided $vec did not match the expected size $numFeatures")
s"Initial coefficients will be ignored!! As its size $vecSize did not match the " +
s"expected size $numFeatures")
}
if (optInitialModel.isDefined && optInitialModel.get.coefficients.size == numFeatures) {
......
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