Table
less than a minute
W&B Table for structured data logging and visualization.
const table: Table = {
columns: ["epoch", "loss", "accuracy"],
data: [
[1, 0.5, 0.75],
[2, 0.3, 0.85],
[3, 0.2, 0.90]
]
};
Property | Type | Description |
---|---|---|
columns |
string[] |
Column names |
data |
any[][] |
Table data rows |
Feedback
Was this page helpful?
Glad to hear it! If you have more to say, please let us know.
Sorry to hear that. Please tell us how we can improve.