Skip to content

Commit

Permalink
better file management
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Worrall committed May 10, 2017
1 parent f99859e commit 9cb6e43
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions BSD500/run_BSD.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ def settings(args):
args.sparsity = True

args.test_path = args.save_name
args.log_path = os.path.join('./logs/', args.test_path)
args.checkpoint_path = os.path.join('./checkpoints/', args.test_path)
args.test_path = os.path.join('./', args.test_path)
args.log_path = './logs'
args.checkpoint_path = './checkpoints'

make_dirs(args, args.test_path)
make_dirs(args, args.log_path)
Expand Down

0 comments on commit 9cb6e43

Please sign in to comment.