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
Trying to then upload something to the model_dir path (eg. when tensorflow tries to save checkpoints) will not work as S3 requires forward slashes. Example args that are passed when executing the above code
Describe the bug
The default
model_dir
will contain backslashes when running the following code to start tensorflow training on Windows.Trying to then upload something to the
model_dir
path (eg. when tensorflow tries to save checkpoints) will not work as S3 requires forward slashes. Example args that are passed when executing the above codeAs a workaround I just did
args.model_dir = args.model_dir.replace("\\", "/")
in my training code.Expected behavior
The
model_dir
path should use forward slashes no matter which OS the code to initiate training is run from for S3 paths.System information
A description of your system. Please provide:
The text was updated successfully, but these errors were encountered: