我面临将数据从 appengine 上传到已部署模型以进行预测的问题。该功能在我的本地系统上运行良好,但是当我部署应用程序时,我收到一些错误,说数据不是 Json 可序列化的。我不明白这一点,任何帮助将不胜感激。
示例代码:
#convert Image to bse64 encoding
img = base64.b64encode(open("Images-Predict/"+filename, "rb").read());
#convert to valid json data
json_data={"key":"0", "image_bytes": {"b64": img}}
#Calling model for prediction
response = service.projects().predict(
name=name,
body={'instances': [json_data]}
).execute()