Skip to content

Commit

Permalink
tweak sleep times
Browse files Browse the repository at this point in the history
  • Loading branch information
t-kalinowski committed Aug 9, 2023
1 parent 6493598 commit 688da24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/metrics-callback.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ KerasMetricsCallback <- R6::R6Class(

# handle metrics
if (length(logs) > 0)
self$on_metrics(logs, 0.1)
self$on_metrics(logs, 0.25)

if (tfruns::is_run_active()) {
self$write_params(self$params)
Expand All @@ -42,7 +42,7 @@ KerasMetricsCallback <- R6::R6Class(
on_epoch_end = function(epoch, logs = NULL) {

# handle metrics
self$on_metrics(logs, 0.01)
self$on_metrics(logs, 0.05)

},

Expand Down

0 comments on commit 688da24

Please sign in to comment.