We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileNotFoundError: [Errno 2] No such file or directory: '/dataset/nyu_depth_v2/official_splits/NYU_Depth_v2/data/nyu2_train.csv'
The text was updated successfully, but these errors were encountered:
Did you solve this problem?
Sorry, something went wrong.
You need to make a .csv file by getting the names of the datas used to train and put it in designated directory.
The "csv" files can be found here https://github.com/cleinc/bts/tree/master/train_test_inputs You can rename them to .csvfiles. I had to change the pandas loader though.
.csv
e.g. in NYU_dataset.py l.31 self.paths = pd.read_csv(csv_file, header=None, delimiter=' ', names=['image', 'depth','random'])
NYU_dataset.py
self.paths = pd.read_csv(csv_file, header=None, delimiter=' ', names=['image', 'depth','random'])
random is just to name a column we wont use. This will still crash though as you have to place these files into the directories P3Depth expects.
random
The documentation is not very good. Sorry
No branches or pull requests
FileNotFoundError: [Errno 2] No such file or directory: '/dataset/nyu_depth_v2/official_splits/NYU_Depth_v2/data/nyu2_train.csv'
The text was updated successfully, but these errors were encountered: