Append to Table
Created on May 4|Last edited on May 4
Comment
`
import wandbwandb.init(project='append-to-table')# log 3 Tables with the same name to 1 runfor 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
Add a comment