Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
wandb-0.21.0.tar.gz | 2025-07-02 | 52.2 MB | |
wandb-0.21.0.zip | 2025-07-02 | 56.6 MB | |
README.md | 2025-07-01 | 3.0 kB | |
v0.21.0 source code.tar.gz | 2025-07-01 | 52.2 MB | |
v0.21.0 source code.zip | 2025-07-01 | 57.0 MB | |
Totals: 5 Items | 218.0 MB | 1 |
What's Changed
Notable Changes
This version removes the legacy implementation of the service
process. This is a breaking change.
Added
- Setting
x_stats_track_process_tree
to track process-specific metrics such as the RSS, CPU%, and thread count in use for the entire process tree, starting fromx_stats_pid
. This can be expensive and is disabled by default (@dmitryduev in https://github.com/wandb/wandb/pull/10089) - Notes are now returned to the client when resuming a run (@kptkin in https://github.com/wandb/wandb/pull/9739)
- Added support for creating custom Vega chart presets through the API. Users can now define and upload custom chart specifications that can be then reused across runs with wandb.plot_table() (@thanos-wandb in https://github.com/wandb/wandb/pull/9931)
Changed
- Calling
Artifact.link()
no longer instantiates a throwaway placeholder run. (@tonyyli-wandb in https://github.com/wandb/wandb/pull/9828) wandb
now attempts to use Unix sockets for IPC instead of listening on localhost, making it work in environments with more restrictive permissions (such as Databricks) (@timoffex in https://github.com/wandb/wandb/pull/9995)Api.artifact()
will now display a warning while fetching artifacts from migrated model registry collections. (@ibindlish in https://github.com/wandb/wandb/pull/10047)- The
.length
for objects queried fromwandb.Api
has been deprecated. Uselen(...)
instead.
Removed
-
Removed the legacy python implementation of the
service
process. Thelegacy-service
option ofwandb.require
as well as thex_require_legacy_service
andx_disable_setproctitle
settings with the corresponding environment variables have been removed and will now raise an error if used (@dmitryduev in https://github.com/wandb/wandb/pull/9965) -
Removed the private
wandb.Run._metadata
attribute. To override the auto-detected CPU and GPU counts as well as the GPU type, please use the new settingsx_stats_{cpu_count,cpu_logical_count,gpu_count,gpu_type}
(@dmitryduev in https://github.com/wandb/wandb/pull/9984)
Fixed
- Allow s3 style CoreWeave URIs for reference artifacts. (@estellazx in https://github.com/wandb/wandb/pull/9979)
- Fixed rare bug that made Ctrl+C ineffective after logging large amounts of data (@timoffex in https://github.com/wandb/wandb/pull/10071)
- Respect
silent
,quiet
, andshow_warnings
settings passed to aRun
instance for warnings emitted by the service process (@kptkin in https://github.com/wandb/wandb/pull/10077) api.Runs
no longer makes an API call for each run loaded from W&B. (@jacobromero in https://github.com/wandb/wandb/pull/10087)- Correctly parse the
x_extra_http_headers
setting from the env variable (@dmitryduev in https://github.com/wandb/wandb/pull/10103) .length
calls the W&B backend to load the length of objects when no data has been loaded rather than returningNone
(@jacobromero in https://github.com/wandb/wandb/pull/10091)