diff --git a/ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/regression/LogisticRegression.java b/ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/regression/LogisticRegression.java index 22d69a8767..f61fb71576 100644 --- a/ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/regression/LogisticRegression.java +++ b/ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/regression/LogisticRegression.java @@ -104,7 +104,7 @@ private void validateParameters() { throw new IllegalArgumentException("MiniBatchSize should not be negative."); } - // loggingInterval – Log the loss after this many iterations. If -1 don't log anything. + // loggingInterval - Log the loss after this many iterations. If -1 don't log anything. if (parameters.getLoggingInterval() != null && parameters.getLoggingInterval() < -1) { throw new IllegalArgumentException("Invalid Logging intervals"); }