Created
July 30, 2023 01:04
-
-
Save Syzygianinfern0/48557c37b18f8698b03c8771b067d9da to your computer and use it in GitHub Desktop.
Initialize wandb and import to setup notification system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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