wandb.data_types.Table
Last updated
Last updated
This is a table designed to display sets of records.
Arguments | |
| ([str]) Names of the columns in the table. Defaults to ["Input", "Output", "Expected"]. |
| (array) 2D Array of values that will be displayed as strings. |
| (pandas.DataFrame) DataFrame object used to create the table. When set, the other arguments are ignored. optional (Union[bool,List[bool]]): If None values are allowed. Singular bool applies to all columns. A list of bool values applies to each respective column. Default to True. allow_mixed_types (bool): Determines if columns are allowed to have mixed types (disables type validation). Defaults to False |
add_column
Add a column of data to the table.
Arguments name: (str) - the unique name of the column data: (list | np.array) - a column of homogenous data optional: (bool) - if null-like values are permitted
add_computed_columns
Adds one or more computed columns based on existing data
Args | |
fn (function): A function which accepts one or two paramters: ndx (int) and row (dict) which is expected to return a dict representing new columns for that row, keyed by the new column names. - |
add_data
Add a row of data to the table. Argument length should match column length
add_row
cast
Casts a column to a specific type
Arguments | |
| (str) - name of the column to cast |
| (class, wandb.wandb_sdk.interface._dtypes.Type, any) - the target dtype. Can be one of normal python class, internal WB type, or an example object (eg. an instance of wandb.Image or wandb.Classes) |
| (bool) - if the column should allow Nones |
get_column
Retrieves a column of data from the table
Arguments name: (str) - the name of the column convert_to: (str, optional)
"numpy": will convert the underlying data to numpy object
get_index
Returns an array of row indexes which can be used in other tables to create links
index_ref
Get a reference to a particular row index in the table
iterrows
Iterate over rows as (ndx, row)
index : int The index of the row. Using this value in other WandB tables will automatically build a relationship between the tables row : List[any] The data of the row
set_fk
set_pk
Class Variables | |
MAX_ARTIFACT_ROWS |
|
MAX_ROWS |
|