Skip to main content

Append to Table

Created on May 4|Last edited on May 4
`
import wandb
wandb.init(project='append-to-table')


# log 3 Tables with the same name to 1 run
for i in range(3):
tbl = wandb.Table(columns=["a", "b", "c"])
tbl.add_data(1*i,2*i,3*i)
wandb.log({"test_table":tbl})

wandb.finish()




Default Table View: Only display the most recently logged Table

Run: dark-cruiser-1
1