Summary
Summary(run: Run) -> NoneDict-like run summary object that syncs to the reporter.
Tracks per-run aggregate values (e.g., best_val_loss). Matches wandb.summary. Accessible as run.summary or simpcat.summary. Supports both dict-style and attribute-style access, including deletion.
Methods
Section titled “Methods”update['(data: dict[str, Any]) -> None']
Section titled “update['(data: dict[str, Any]) -> None']”Merge a dict into the summary.
get['(key: str, default: Any = None) -> Any']
Section titled “get['(key: str, default: Any = None) -> Any']”Get a value by key with an optional default.
keys['() -> Any']
Section titled “keys['() -> Any']”Return summary keys.
items['() -> Any']
Section titled “items['() -> Any']”Return summary key-value pairs.