Skip to content

Instantly share code, notes, and snippets.

@Syzygianinfern0
Created July 30, 2023 01:04
Show Gist options
  • Save Syzygianinfern0/48557c37b18f8698b03c8771b067d9da to your computer and use it in GitHub Desktop.
Save Syzygianinfern0/48557c37b18f8698b03c8771b067d9da to your computer and use it in GitHub Desktop.
Initialize wandb and import to setup notification system
import wandb
def init_wandb(project, name=None, notes=None, config=None):
wandb.login()
run = wandb.init(
project=project,
name=name,
notes=notes,
config=config,
)
return run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment