Skip to content

Commit

Permalink
Fix for HMCMC telemetry duplication error
Browse files Browse the repository at this point in the history
  • Loading branch information
gvonness committed Aug 2, 2023
1 parent f548575 commit 3d4151e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / baseVersion := "0.8.0"
ThisBuild / baseVersion := "0.8.1"

ThisBuild / organization := "ai.entrolution"
ThisBuild / organizationName := "Greg von Nessi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ case class HmcmcTelemetryUpdate(

override lazy val logMessage: String = {
val baseString =
s"HMCMC Sampling :: Samples remaining - $samplesRemaining // Acceptance Ratio - ${jumpAcceptances.toDouble / jumpAttempts}"
s"HMCMC Sampling :: Samples remaining - $samplesRemaining"
val acceptanceString =
if (jumpAttempts != 0) {
s" // Acceptance Ratio - ${jumpAcceptances.toDouble / jumpAttempts}"
Expand Down

0 comments on commit 3d4151e

Please sign in to comment.