Tutorial: Log tables, visualize and query data
Explore how to use W&B Tables with this 5 minute Quickstart.
less than a minute
Use W&B Tables to visualize and query tabular data. For example:
The above image shows a table with semantic segmentation and custom metrics. View this table here in this sample project from the W&B ML Course.
A Table is a two-dimensional grid of data where each column has a single type of data. Tables support primitive and numeric types, as well as nested lists, dictionaries, and rich media types.
Log a table with a few lines of code:
wandb.init()
: Create a run to track results.wandb.Table()
: Create a new table object.
columns
: Set the column names.data
: Set the contents of the table.run.log()
: Log the table to save it to W&B.import wandb
run = wandb.init(project="table-test")
my_table = wandb.Table(columns=["a", "b"], data=[["a1", "b1"], ["a2", "b2"]])
run.log({"Table Name": my_table})
Explore how to use W&B Tables with this 5 minute Quickstart.
Visualize and analyze W&B Tables.
Examples of W&B Tables
How to export data from tables.
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.