aws cli を使用して、 SageMaker サンプル ノートブックから iris エンドポイントを呼び出そうとしています。次のコマンドを使用してみました。
!aws sagemaker-runtime invoke-endpoint \
--endpoint-name sagemaker-tensorflow-py2-cpu-2018-03-19-21-27-52-956 \
--body "[6.4, 3.2, 4.5, 1.5]" \
--content-type "application/json" \
output.json
次の応答が返されます。
{
"InvokedProductionVariant": "AllTraffic",
"ContentType": "*/*"
}
私は何を間違っていますか?