1回答
- 新しい順
- 投票が多い順
- コメントが多い順
0
"print(endpoint_response)"を確認してレスポンスが何も入っていないという認識で合っていますか?
import boto3
import json
client = boto3.client('sagemaker-runtime')
file_name = 'my_photos.jpg'
endPoint = 'my-endpoint'
with open(file_name, 'rb') as image:
f = image.read()
b = bytearray(f)
endpoint_response = client.invoke_endpoint( EndpointName=endPoint, Body=b, ContentType='image/jpeg' )
print(endpoint_response)
関連するコンテンツ
- AWS公式更新しました 2年前
- AWS公式更新しました 2年前
ありがとうございます。 正確には、client.invoke_endpoint() の行を実行中にフリーズしている様です。 endpoint_response を確認する前の問題と思われます。
以下のブログを参考にboto3のデバッグを確認してみるとよいかもしれません。 https://dev.classmethod.jp/articles/boto3-debug-logging/