Run
less than a minute
A training or evaluation run logged to W&B.
const run: Run = {
id: "run_abc123",
name: "sunny-dawn-42",
state: "finished",
config: {
learning_rate: 0.001,
batch_size: 32,
epochs: 10
},
summaryMetrics: {
loss: 0.023,
accuracy: 0.95,
val_accuracy: 0.93
},
createdAt: new Date("2024-01-15T10:30:00Z"),
updatedAt: new Date("2024-01-15T14:45:00Z")
};
Property | Type | Description |
---|---|---|
id |
string |
Run ID |
name |
string |
Run name |
state |
string |
Run state (e.g., “running”, “finished”, “failed”) |
config |
ConfigDict |
Optional. Run configuration |
summaryMetrics |
SummaryDict |
Optional. Summary metrics |
createdAt |
Date |
Creation timestamp |
updatedAt |
Date |
Last update timestamp |
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.