Skip to main content
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>")
    
  • Set the WANDB_ARTIFACT_DIR environment variable:
    import os
    os.environ["WANDB_ARTIFACT_DIR"] = "<path_to_download>"
    

Artifacts Environment Variables