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 training, the default value of the argument of log_dir is None, resulting no checkpoint saved every epoch, which is inconvenient for users. I'd like to recommend to set the default value of log_dir, such as mxfold_log, and create it (os.makedirs("mxfold_log", exist_ok=True)).
The origin code for saving checkpoints every epoch is as follows:
When training, the default value of the argument of
log_dir
is None, resulting no checkpoint saved every epoch, which is inconvenient for users. I'd like to recommend to set the default value oflog_dir
, such asmxfold_log
, and create it (os.makedirs("mxfold_log", exist_ok=True)
).The origin code for saving checkpoints every epoch is as follows:
The text was updated successfully, but these errors were encountered: