You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the train.py model, it tries to copy the config yaml file to the output directory along with timestamp using shutil. But, it does not copy because of ":" in the datetime.
It is in line 98 in train.py. I suggest to change str(datetime.datetime.now())[:19]
with str(datetime.datetime.now())[:19].replace(':', '')
The text was updated successfully, but these errors were encountered:
When running the train.py model, it tries to copy the config yaml file to the output directory along with timestamp using shutil. But, it does not copy because of ":" in the datetime.
It is in line 98 in train.py. I suggest to change
str(datetime.datetime.now())[:19]
with
str(datetime.datetime.now())[:19].replace(':', '')
The text was updated successfully, but these errors were encountered: