[MINOR][TYPO] fix fininsh typo

## What changes were proposed in this pull request?

fininsh => finish

## How was this patch tested?

N/A

Author: WeichenXu <WeichenXu123@outlook.com>

Closes #14238 from WeichenXu123/fix_fininsh_typo.
This commit is contained in:
WeichenXu 2016-07-18 09:11:53 +01:00 committed by Sean Owen
parent 480c870644
commit a529fc9442
4 changed files with 4 additions and 4 deletions

View file

@ -425,7 +425,7 @@ class LogisticRegression @Since("1.2.0") (
}
if (!state.actuallyConverged) {
logWarning("LogisticRegression training fininshed but the result " +
logWarning("LogisticRegression training finished but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}

View file

@ -246,7 +246,7 @@ class AFTSurvivalRegression @Since("1.6.0") (@Since("1.6.0") override val uid: S
}
if (!state.actuallyConverged) {
logWarning("AFTSurvivalRegression training fininshed but the result " +
logWarning("AFTSurvivalRegression training finished but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}

View file

@ -326,7 +326,7 @@ class LinearRegression @Since("1.3.0") (@Since("1.3.0") override val uid: String
}
if (!state.actuallyConverged) {
logWarning("LinearRegression training fininshed but the result " +
logWarning("LinearRegression training finished but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}

View file

@ -214,7 +214,7 @@ object LBFGS extends Logging {
lossHistory += state.value
if (!state.actuallyConverged) {
logWarning("LBFGS training fininshed but the result " +
logWarning("LBFGS training finished but the result " +
s"is not converged because: ${state.convergedReason.get.reason}")
}