What's Changed
Added
- The new
reinit="create_new"setting causeswandb.init()to create a new run even if other runs are active, without finishing the other runs (in contrast toreinit="finish_previous"). This will eventually become the default (@timoffex in #9562) - Added
Artifact.history_stepto return the nearest run step at which history metrics were logged for the artifact's source run (@ibindlish in #9732) - Added
data_is_not_pathflag to skip file checks when initializingwandb.Htmlwith a sting that points to a file.
Changed
Artifact.download()no longer raises an error when usingWANDB_MODE=offlineor when an offline run exists (@timoffex in #9695)
Removed
- Dropped the
-q/--quietargument to thewandbmagic in IPython / Jupyter; use thequietrun setting instead (@timoffex in #9705)
Deprecated
- The following
wandb.Runmethods are deprecated in favor of properties and will be removed in a future release (@kptkin in #8925):run.project_name()is deprecated in favor ofrun.projectrun.get_url()method is deprecated in favor ofrun.urlrun.get_project_url()method is deprecated in favor ofrun.project_urlrun.get_sweep_url()method is deprecated in favor ofrun.sweep_url
Fixed
- Fixed ValueError on Windows when running a W&B script from a different drive (@jacobromero in #9678)
- Fix base_url setting was not provided to wandb.login (@jacobromero in #9703)
wandb.Html()no longer raisesIsADirectoryErrorwith a value that matched a directory on the users system. (@jacobromero in #9728)