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
The Neptune Logger can automatically upload model checkpoints if the callback is used. It generates an "expected_model_path" for that. This path has hard-coded a '/' at the end (see here), which can cause problems on Windows systems because the actual path has (or can have) a backslash at this position. A simple fix would be to use os.path.sep insteat of '/'.
The Neptune Logger can automatically upload model checkpoints if the callback is used. It generates an "expected_model_path" for that. This path has hard-coded a '/' at the end (see here), which can cause problems on Windows systems because the actual path has (or can have) a backslash at this position. A simple fix would be to use
os.path.sep
insteat of '/'.cc @justusschock @awaelchli @akihironitta
The text was updated successfully, but these errors were encountered: