系统用的win10环境 python3.7 tensorflow 2
import os
os.environ['CUDA_VISIBLE_DEVICES'] = FLAGS.gpu_list
if not tf.gfile.Exists(FLAGS.checkpoint_path):
tf.gfile.MkDir(FLAGS.checkpoint_path)
else:
if not FLAGS.restore:
tf.gfile.DeleteRecursively(FLAGS.checkpoint_path)
tf.gfile.MkDir(FLAGS.checkpoint_path)
显示错误tensorflow.python.framework.errors_impl.NotFoundError: Failed to create a directory: G:/pythonpro/EAST-master/tmp/east_rbox/; No such file or directory
有大神知道原因么 求告知