Skip to content

Instantly share code, notes, and snippets.

@morganmcg1
Created September 20, 2024 18:38
Show Gist options
  • Save morganmcg1/58e55e9f0abeb3f046ac851727a632ac to your computer and use it in GitHub Desktop.
Save morganmcg1/58e55e9f0abeb3f046ac851727a632ac to your computer and use it in GitHub Desktop.
turn off wandb metadata logging
run = wandb.init(
settings={
"_disable_stats": True, # disable collecting system metrics
"_disable_meta": True, # disable collecting system metadata (including hardware info)
"console": "off", # disable capturing stdout/stderr
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment