NBNet
NBNet copied to clipboard
A question about train
Hello, when I try to run this code, an error occured:FileNotFoundError: [Errno 2] No such file or directory: 'data/sidd/ValidationNoisyBlocksSrgb.mat'. Then I find ValidationNoisyBlocksSrgb.mat and ValidationGtBlocksSrgb.mat are not generated afterI run prepare_data.py
val_data_dict = loadmat(os.path.join(path, 'ValidationNoisyBlocksSrgb.mat')) val_data_noisy = val_data_dict['ValidationNoisyBlocksSrgb'] val_data_dict = loadmat(os.path.join(path,'ValidationGtBlocksSrgb.mat')) val_data_gt = val_data_dict['ValidationGtBlocksSrgb']
Could you tell me how to generate ValidationNoisyBlocksSrgb.mat and ValidationGtBlocksSrgb.mat
You can find the validation dataset on the official website of SIDD.
ok thx