Commit 9f8e0646 authored by Reed Wanderman-Milne's avatar Reed Wanderman-Milne Committed by A. Unique TensorFlower
Browse files

Do not show the percent symbol for accuracy, as the value is between 0 and 1, not 0 and 100

PiperOrigin-RevId: 274090348
parent 1f9efe10
...@@ -336,7 +336,7 @@ def run(flags_obj): ...@@ -336,7 +336,7 @@ def run(flags_obj):
steps_in_current_epoch+epoch*per_epoch_steps) steps_in_current_epoch+epoch*per_epoch_steps)
steps_in_current_epoch += steps steps_in_current_epoch += steps
logging.info('Training loss: %s, accuracy: %s%% at epoch %d', logging.info('Training loss: %s, accuracy: %s at epoch %d',
train_loss.result().numpy(), train_loss.result().numpy(),
training_accuracy.result().numpy(), training_accuracy.result().numpy(),
epoch + 1) epoch + 1)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment