batch and epoch alongside your metrics. Use wandb.Run.log()({'train_accuracy': 0.9, 'batch': 200}) in one step and wandb.Run.log()({'val_accuracy': 0.8, 'epoch': 4}) in another. In the UI, set the desired value as the x-axis for each chart. To set a default x-axis for a specific index, use Run.define_metric(). For the example provided, use the following code:
Experiments Metrics