Skip to main content

Append to a W&B Table

Created on May 4|Last edited on May 4
T

Logging Multiple times to the

ested with:
import wandb
wandb.init()

tbl = wandb.Table(columns=["a", "b", "c"])
tbl.add_data(7,8,9)
wandb.log({"test_table":tbl})



Default Table View, only shows the most recently logged Table

Run: fanciful-deluge-24
1