Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}

Expand Down