wandb.log({'accuracy': 0.9})
will add a new step to History and update Summary to the latest value. In some cases, it's more useful to have the maximum or minimum of a metric instead of the final value. You can set history manually (wandb.summary['accuracy'] = best_acc)
.