Commit 47ad3d9f authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

ignore rmtree errors

parent 7726a8d7
......@@ -304,8 +304,8 @@ TRAIN_PATH = ROOT_PATH + 'train'
TEST_PATH = ROOT_PATH + 'test'
# CLEAN OLD STAFF
#shutil.rmtree(TRAIN_PATH)
#shutil.rmtree(TEST_PATH)
shutil.rmtree(TRAIN_PATH, ignore_errors=True)
shutil.rmtree(TEST_PATH, ignore_errors=True)
with tf.Session() as sess:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment