Skip to content

Commit

Permalink
fix unmappable character for encoding US-ASCII
Browse files Browse the repository at this point in the history
Signed-off-by: Yaliang Wu <ylwu@amazon.com>
  • Loading branch information
ylwu-amzn committed Feb 21, 2023
1 parent 7ae4192 commit 2488b27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class MLModelAutoReloader {
private volatile Integer autoReloadMaxRetryTimes;

/**
* constructor method init all the params necessary for model auto reloading
* constructor method, init all the params necessary for model auto reloading
*
* @param clusterService clusterService
* @param threadPool threadPool
Expand Down

0 comments on commit 2488b27

Please sign in to comment.