web-dev-qa-db-ja.com

Tensorflow Windowsのフォルダへのアクセスが拒否されました: "NewRandomAccessFileの作成/オープンに失敗しました:アクセスが拒否されました。;入出力エラー"

最近Tensorflow for Windowsをインストールしました。画像のサブフォルダを含むフォルダにアクセスする必要がある基本的なチュートリアルを試みています。

「アクセスが拒否されました」という理由で画像のフォルダにアクセスできません。これは、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
    Traceback (most recent call last):

      File "C:/Users/Ryan/Desktop/tfupdate/tf.py", line 7, in <module>
        image_data = tf.gfile.FastGFile(image_path, 'rb').read()

      File "C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\lib\io\file_io.py", line 106, in read
        self._preread_check()

      File "C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\lib\io\file_io.py", line 73, in _preread_check
        compat.as_bytes(self.__name), 1024 * 512, status)

      File "C:\Program Files\Anaconda3\lib\contextlib.py", line 66, in __exit__
        next(self.gen)

      File "C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\framework\errors_impl.py", line 469, in raise_exception_on_not_ok_status
        pywrap_tensorflow.TF_GetCode(status))

    tensorflow.python.framework.errors_impl.UnknownError: NewRandomAccessFile failed to Create/Open: C:/moles : Access is denied.
    ; Input/output error

    Process finished with exit code 1
13
Ryan.f

パスを正しく/tf_files/retrained_labels.txtretrained_labels.txtパスに指定し、/tf_files/retrained_graph.pbも同じように変更します

私はテンソルフローで同様の問題に直面しました-管理者としてコマンドプロンプトを実行する以外に、権限が拒否されていたので、次の方法で回避しました-

  1. pythonインストールはPC上のすべてのユーザーを対象としています。そうでない場合は、pythonインストールのパスをPCのグローバル環境変数に追加してください。ユーザー変数ではありません

  2. 管理者としてコマンドプロンプトを実行し、コマンドを入力します

ネットユーザー管理者/ active:yes "パスワード"

パスワードを、管理ユーザーに付与するパスワードに置き換えます

  1. 再起動メニューから、ユーザーを管理者に切り替えてから、python classify.pyコマンドを試してください。

それはうまくいくはずですそれが役立つかどうか私に知らせてください

0
Naveen Jangid