Skip to content

Commit

Permalink
Pass output_dir as str to wandb.init()
Browse files Browse the repository at this point in the history
  • Loading branch information
jonghwanhyeon committed Aug 30, 2022
1 parent 13db69d commit f0edec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion espnet2/tasks/abs_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ def main_worker(cls, args: argparse.Namespace):
entity=args.wandb_entity,
project=project,
name=name,
dir=output_dir,
dir=str(output_dir),
id=args.wandb_id,
resume=args.resume,
)
Expand Down

0 comments on commit f0edec2

Please sign in to comment.