Skip to content

Commit

Permalink
Change wandb project name
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur801031 committed Mar 20, 2023
1 parent 46ff900 commit cbbdf29
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion asym_sac/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def main(args):
# WandB
if args.wandb:
wandb_logger = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=args.__dict__,
sync_tensorboard=True, # auto-upload tensorboard metrics
name=args.name)
Expand Down
2 changes: 1 addition & 1 deletion awac/AWAC/awac.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def __init__(self, args, env_kwargs):

if args['wandb']:
self.wandb_run = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=args,
name=args['folder_name'],
)
Expand Down
2 changes: 1 addition & 1 deletion col/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def main(args):
# WandB
if args.wandb:
wandb_logger = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=args.__dict__,
sync_tensorboard=True, # auto-upload tensorboard metrics
name=args.name)
Expand Down
2 changes: 1 addition & 1 deletion curl/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def main(args):
# WandB
if args.wandb:
wandb_logger = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=args.__dict__,
sync_tensorboard=True, # auto-upload tensorboard metrics
name=args.name)
Expand Down
2 changes: 1 addition & 1 deletion drq/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self, cfg):
cfg_dict = cfg.__dict__
cfg_dict['run_name'] = cfg.name
self.wandb_run = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=cfg_dict,
sync_tensorboard=True, # auto-upload sb3's tensorboard metrics
name=cfg_dict['run_name'],
Expand Down
2 changes: 1 addition & 1 deletion experiments/run_bc.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def main_training():

if args.wandb:
wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config={k: v for k, v in args.__dict__.items()},
name=args.folder_name,
)
Expand Down
2 changes: 1 addition & 1 deletion sb3/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def run_task(args, env_kwargs):
tb_callback = TensorboardCallback(verbose=0)
if args.wandb:
run = wandb.init(
project="cto-rl-manipulation",
project="dmfd",
config=args.__dict__,
sync_tensorboard=True, # auto-upload sb3's tensorboard metrics
name=args.folder_name,
Expand Down

0 comments on commit cbbdf29

Please sign in to comment.