前提・実現したいこと
Visual studio2022でリンク内容を試そうとしました。
そのままmodelファイルの指定と読み込み写真の指定をしただけです。
どこのコードでコーディングエラーが起きていて、どこを変えればいいでしょうか。どなたかお助け下さい。
実行したコード
python
1 2# python example/tf_example.py 'r"C:\Users\name\Desktop\mandaras\IMG_9046.jpg"' 3 4import json 5 6import numpy as np 7import tensorflow as tf 8from PIL import Image 9 10 11with open(r"C:\Users\name\Desktop\mandaras\mandalastest.png TensorFlow\saved_model.pb/signature.json" "r") as f: 12 signature = json.load(f) 13 inputs = signature.get('inputs') 14 outputs = signature.get('outputs') 15 model = tf.saved_model.load(r"C:\Users\name\Desktop\mandaras\mandalastest.png TensorFlow\saved_model.pb") 16 infer = model.signatures["serving_default"] 17 # inputのサイズを取得 18input_width, input_height = inputs["Image"]["shape"][1:3] 19 20# TensorFlow2系の場合 21image = Image.open(r"C:\Users\name\Desktop\mandaras\IMG_9046.jpg") 22image = image.resize((input_width, input_height)) 23image = np.asarray(image, dtype=np.float32) / 255.0 24image = np.expand_dims(image, axis=0) 25 26# TensorFlow2系の場合 27predict = infer(tf.constant(image))['Prediction'][0] 28print(predict.numpy().decode()) 29
実行後のエラーメッセージ
python
1 File "C:\Anaconda\lib\codecs.py", line 322, in decode 2 (result, consumed) = self._buffer_decode(data, self.errors, final) 3UnicodeDecodeError: 'utf-8' codec can't decode byte 0x82 in position 557: invalid start byte 4Press any key to continue . . .
modelファイルパスの後の"r"を"rb"に変えても同じ結果になりました。
あなたの回答
tips
プレビュー