Skip to content

Commit 4feeba7

Browse files
authored
Tables server release note (#1389)
Adds a note that incremental mode is available in the upcoming server release
1 parent 9133a6c commit 4feeba7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

content/en/guides/models/tables/log_tables.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ W&B Tables are a specialized [data type]({{< relref "/ref/python/data-types/" >}
99

1010
You [create and log table objects]({{< relref "#create-and-log-a-new-table" >}}) using the W&B Python SDK. When you create a table object, you specify the columns and data for the table and a [mode]({{< relref "#table-logging-modes" >}}). The mode determines how the table is logged and updated during your ML experiments.
1111

12+
{{% alert %}}
13+
`INCREMENTAL` mode is not yet supported on W&B Server.
14+
{{% /alert %}}
1215

1316
## Create and log a table
1417

15-
1618
1. Initialize a new run with `wandb.init()`.
1719
2. Create a table object with the [`wandb.Table`]({{< relref "/ref/python/data-types/table" >}}) Class. Specify the columns and data for the table for the `columns` and `data` parameters, respectively. Though optional, it is recommended to set the `log_mode` parameter to one of the three modes: `IMMUTABLE`, `MUTABLE`, or `INCREMENTAL`. The default mode is `IMMUTABLE`. See [Table Logging Modes]({{< relref "#table-logging-modes" >}}) in the next section for more information.
1820
3. Log the table to W&B with `run.log()`.

0 commit comments

Comments
 (0)