2016-12-13 146 views
3

我最近安装了Tensorflow for Windows。我正在尝试一个基本教程,其中需要访问包含图像子文件夹的文件夹。Tensorflow Windows访问文件夹被拒绝:“NewRandomAccessFile无法创建/打开:访问被拒绝;;输入/输出错误”

我无法访问图像文件夹,因为“访问被拒绝”。这发生在Anaconda 4.2提示符和Pycharm中,并且使用基本的Python 3.5发行版。

我已授予所有涉及的管理员权限,并且今天我重新安装了所有软件,因此它全部更新为最新版本。

任何想法或帮助将不胜感激!

# change this as you see fit 
image_path = 'C:/moles' 

# Read in the image_data 
image_data = tf.gfile.FastGFile(image_path, 'rb').read() 

# Loads label file, strips off carriage return 
label_lines = [line.rstrip() for line 
       in tf.gfile.GFile("/tf_files/retrained_labels.txt")] 

# Unpersists graph from file 
with tf.gfile.FastGFile("/tf_files/retrained_graph.pb", 'rb') as f: 
    graph_def = tf.GraphDef() 
    graph_def.ParseFromString(f.read()) 
    _ = tf.import_graph_def(graph_def, name='') 

with tf.Session() as sess: 
    # Feed the image_data as input to the graph and get first prediction 
    softmax_tensor = sess.graph.get_tensor_by_name('final_result:0') 

    predictions = sess.run(softmax_tensor, \ 
          {'DecodeJpeg/contents:0': image_data}) 

    # Sort to show labels of first prediction in order of confidence 
    top_k = predictions[0].argsort()[-len(predictions[0]):][::-1] 

    for node_id in top_k: 
     human_string = label_lines[node_id] 
     score = predictions[0][node_id] 
     print('%s (score = %.5f)' % (human_string, score)) 

“C:\ Program Files文件\ Anaconda3 \ python.exe” C:/Users/Ryan/Desktop/tfupdate/tf.py 回溯(最近通话最后一个):

文件“C :/Users/Ryan/Desktop/tfupdate/tf.py “第7行,在 = IMAGE_DATA tf.gfile.FastGFile(IMAGE_PATH, 'RB')读()

文件。” C:\ Program Files文件\ Anaconda3 \ lib \ site-packages \ tensorflow \ python \ lib \ io \ file_io.py“,第106行,在读 self._preread_check()

_preread_check中的第73行文件“C:\ Program Files \ Anaconda3 \ lib \ site-packages \ tensorflow \ python \ lib \ io \ file_io.py” compat.as_bytes(self .__ name),1024 * 512,状态)

文件 “C:\ Program Files文件\ Anaconda3 \ LIB \ contextlib.py” 66行,在出口 未来(self.gen)

文件“C:\ Program Files文件\ Anaconda3 \ LIB \站点包\ tensorflow \ python的\框架\ errors_impl.py”,线路469,在raise_exception_on_not_ok_status pywrap_tensorflow.TF_GetCode(状态))

tensorflow.p ython.framework.errors_impl.UnknownError:NewRandomAccessFile无法创建/打开:C:/ moles:访问被拒绝。 ;输入/输出错误

过程与退出代码完成1

+0

是'C:/ moles'图像文件的名称?错误的原因似乎是'C:/ moles'是一个文件夹,但是您正在尝试像文件一样读取它。 – mrry

回答

1

给正确的路径/tf_files/retrained_labels.txtretrained_labels.txt路径和相同的更改为/tf_files/retrained_graph.pb

相关问题