Where are artifacts downloaded, and how can I control that?

By default, artifacts download to the artifacts/ folder. To change the location:

  • Pass it to wandb.Artifact().download:

    wandb.Artifact().download(root="<path_to_download>")
    
    Python
  • Set the WANDB_ARTIFACT_DIR environment variable:

    import os
    os.environ["WANDB_ARTIFACT_DIR"] = "<path_to_download>"
    
    Python

Last modified February 19, 2025: 06c377d