前提・実現したいこと
pythonによるディープラーニングの画像認識を行っており、画像の読み込みを行いたいです。
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- _FallbackException Traceback (most recent call last) ~\anaconda3\envs\tensorflow\lib\site-packages\tensorflow_core\python\ops\gen_io_ops.py in read_file(filename, name) 601 _ctx._context_handle, _ctx._thread_local_data.device_name, "ReadFile", --> 602 name, _ctx._post_execution_callbacks, filename) 603 return _result _FallbackException: This function does not handle the case of the path where all inputs are not already EagerTensors. During handling of the above exception, another exception occurred: UnicodeDecodeError Traceback (most recent call last) <ipython-input-2-e298215decfc> in <module> ----> 1 img_data =tf.io.read_file("image/train/0_potato/1.photo01.jpg") ~\anaconda3\envs\tensorflow\lib\site-packages\tensorflow_core\python\ops\gen_io_ops.py in read_file(filename, name) 605 try: 606 return read_file_eager_fallback( --> 607 filename, name=name, ctx=_ctx) 608 except _core._SymbolicException: 609 pass # Add nodes to the TensorFlow graph. ~\anaconda3\envs\tensorflow\lib\site-packages\tensorflow_core\python\ops\gen_io_ops.py in read_file_eager_fallback(filename, name, ctx) 654 _attrs = None 655 _result = _execute.execute(b"ReadFile", 1, inputs=_inputs_flat, --> 656 attrs=_attrs, ctx=_ctx, name=name) 657 _execute.record_gradient( 658 "ReadFile", _inputs_flat, _attrs, _result, name) ~\anaconda3\envs\tensorflow\lib\site-packages\tensorflow_core\python\eager\execute.py in quick_execute(op_name, num_outputs, inputs, attrs, ctx, name) 59 tensors = pywrap_tensorflow.TFE_Py_Execute(ctx._handle, device_name, 60 op_name, inputs, attrs, ---> 61 num_outputs) 62 except core._NotOkStatusException as e: 63 if name is not None: UnicodeDecodeError: 'utf-8' codec can't decode byte 0x8e in position 80: invalid start byte
該当のソースコード
import numpy as np import tensorflow as tf import glob img_data = tf.io.read_file("image/train/0_potato/1potato.jpg") [こちらの動画](https://youtu.be/ThKRS7B5GFY)を参考にさせていただいております。
試したこと
ファイルの場所を変えてみたりしましたが効果はありませんでした。
補足情報(FW/ツールのバージョンなど)
指定の場所に画像はあると思うんですが、何がいけないのでしょうか。
実行はWindows10のcolaboratoryで行っています。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。