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 code will fail saying that the restore_path file is invalid.
The solution is to not split on dot. Using something like adding os.dirname() or os.getcwd() with os.path.join() will not fix the problem if the split remains in the code.
The text was updated successfully, but these errors were encountered:
On line 205 of
monodepth_main.py
you are splitting on dot ( split('.') ).This means that if somebody uses a relative path rather than full path (something like):
the code will fail saying that the
restore_path
file is invalid.The solution is to not split on dot. Using something like adding os.dirname() or os.getcwd() with os.path.join() will not fix the problem if the split remains in the code.
The text was updated successfully, but these errors were encountered: