Merge pull request #45 from lopho/patch-2

fix wandb init mode, don't log hf token
This commit is contained in:
Anthony Mercurio 2022-11-16 16:32:50 -05:00 committed by GitHub
commit 1d1f4022d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -624,10 +624,12 @@ def main():
if rank == 0:
os.makedirs(args.output_path, exist_ok=True)
mode = 'enabled'
if args.enablewandb:
mode = 'disabled'
if args.enablewandb:
mode = 'online'
if args.hf_token is not None:
os.environ['HF_API_TOKEN'] = args.hf_token
args.hf_token = None
run = wandb.init(project=args.project_id, name=args.run_name, config=vars(args), dir=args.output_path+'/wandb', mode=mode)
# Inform the user of host, and various versions -- useful for debugging issues.