Skip to content

Commit

Permalink
Avoid characters, which breake the use on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
1Maxnet1 authored Mar 1, 2023
1 parent 3b06f5f commit c08a7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def fit(self):
parser.add_argument('-config', dest='config_dir', default='./config/', help='Config directory')
args = parser.parse_args()

if not args.restore: args.name = args.name + '_' + time.strftime('%d_%m_%Y') + '_' + time.strftime('%H:%M:%S')
if not args.restore: args.name = args.name + '_' + time.strftime('%d_%m_%Y') + '_' + time.strftime('%H_%M_%S')

set_gpu(args.gpu)
np.random.seed(args.seed)
Expand Down

0 comments on commit c08a7d8

Please sign in to comment.