cnn_depth_tensorflow icon indicating copy to clipboard operation
cnn_depth_tensorflow copied to clipboard

train.csv no such file exists

Open helenrensiyu opened this issue 6 years ago • 1 comments

In the prepare_data.py line 40 if not os.path.exists('train.csv'):
os.remove('train.csv') Is this corrent? When I run the program for the first time, it told me train.csv no such file exists.

helenrensiyu avatar Feb 01 '19 13:02 helenrensiyu

replace the if not os.path.exists('train.csv'): to if os.path.exists('train.csv')

Vajir10 avatar Jul 12 '19 18:07 Vajir10