【发布时间】:2021-04-04 11:41:29
【问题描述】:
我是 python 编程的新手。遵循 AWS 学习路径:
执行以下块时出现错误(在 conda_python3 中):
test_data_array = test_data.drop(['y_no', 'y_yes'], axis=1).values #load the data into an array
xgb_predictor.content_type = 'text/csv' # set the data type for an inference
xgb_predictor.serializer = csv_serializer # set the serializer type
predictions = xgb_predictor.predict(test_data_array).decode('utf-8') # predict!
predictions_array = np.fromstring(predictions[1:], sep=',') # and turn the prediction into an
array
print(predictions_array.shape)
AttributeError Traceback(最近一次调用最后一次) 在 1 test_data_array = test_data.drop(['y_no', 'y_yes'], axis=1).values #将数据加载到数组中 ----> 2 xgb_predictor.content_type = 'text/csv' # 设置推理的数据类型 3 xgb_predictor.serializer = csv_serializer #设置序列化器类型 4 个预测 = xgb_predictor.predict(test_data_array).decode('utf-8') # 预测! 5 predictions_array = np.fromstring(predictions[1:], sep=',') # 并将预测转为数组
AttributeError: 无法设置属性
我查看了几个先前的问题,但在创建数据类型时找不到与此错误相关的太多信息。
提前感谢您的帮助。
【问题讨论】:
标签: python amazon-web-services amazon-s3 amazon-sagemaker