What's Changed
Notable Changes
This version raises errors that would previously have been suppressed during calls to Artifact.link() or Run.link_artifact(). While this prevents undetected failures in those methods, it is also a breaking change.
Added
- New settings for
max_end_of_run_history_metricsandmax_end_of_run_summary_metrics(@timoffex in #10351) - New
wandb.integration.weavemodule for automatically initializing Weave when a W&B run is active andweaveis imported (@andrewtruong in #10389)
Changed
- Errors encountered while linking an artifact are no longer suppressed/silenced, and
Artifact.link()andRun.link_artifact()no longer returnNone(@tonyyli-wandb in #9968) - The "Run history" and "Run summary" printed at the end of a run are now limited to 10 metrics each (@timoffex in #10351)
Fixed
- Dataclasses in a run's
configno long raiseObject of type ... is not JSON serializablewhen containing real classes as fields to the dataclass (@jacobromero in #10371) Artifact.link()andRun.link_artifact()should be faster on server versions 0.74.0+, requiring 4-5 fewer unnecessary blocking GraphQL requests (@tonyyli-wandb in #10393).