Skip to content

Commit

Permalink
Fix LogEventStore end epoch log (#1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui authored Feb 19, 2024
1 parent 9e61b66 commit 80f3cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burn-train/src/metric/store/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl EventStore for LogEventStore {
Split::Valid => self
.loggers_valid
.iter_mut()
.for_each(|logger| logger.end_epoch(epoch + 1)),
.for_each(|logger| logger.end_epoch(epoch)),
},
}
}
Expand Down

0 comments on commit 80f3cdd

Please sign in to comment.