Skip to content

Commit

Permalink
Fix non-ASCII character. (opensearch-project#753)
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand authored Feb 24, 2023
1 parent 4fcad37 commit ed69fa9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down

0 comments on commit ed69fa9

Please sign in to comment.