Skip to main content
Learn how to log data tables to W&B, visualize them in your project workspace, and compare results across runs. By the end, you’ll have a logged table that you can explore and compare in W&B. Select the button below to try a PyTorch Quickstart example project on MNIST data.

Log a table

In this step, you create a table and log it to W&B so that it’s available for visualization later in the walkthrough. You can either construct a new table or pass a pandas DataFrame.
To construct and log a new table, use the following:Here’s an example:

Visualize tables in your project workspace

After logging a table, you can view it in W&B.
  1. Navigate to your project in W&B.
  2. Select the name of your run in your project workspace. W&B adds a new panel for each unique table key.
Sample table logged
In this example, my_table is logged under the key "Table Name".

Compare across model versions

After you have logged tables from more than one run, you can use the project workspace to compare results side by side and evaluate how model versions differ. After you log tables from multiple W&B runs, compare results side by side in the project workspace to evaluate differences between model versions. This example workspace shows how to combine rows from multiple versions in the same table.
Cross-run table comparison
Use the table filter, sort, and grouping features to explore and evaluate model results.
Table filtering