问题描述
我已经成功地用 sagemaker 训练了一个 LDA 模型,我已经能够设置一个推理 API,但是它对我一次可以查询的记录数量有限制.
I've successfully trained a LDA model with sagemaker, I've been able to set up an Inference API but it has a limit of how many records I can query at a time.
我需要对大文件进行预测,并且一直在尝试使用批量转换,但遇到了障碍.
I need to get predictions for a large file and have been trying to use Batch Transformation however am running against roadblock.
我输入的日期是application/x-recordio-protobuf内容类型,代码如下:
My input date is in application/x-recordio-protobuf content type, code is as follows:
# Initialize the transformer object
transformer =sagemaker.transformer.Transformer(
base_transform_job_name='Batch-Transform',
model_name=model_name,
instance_count=1,
instance_type='ml.c4.xlarge',
output_path=output_location,
max_payload=20,
strategy='MultiRecord'
)
# Start a transform job
transformer.transform(input_location, content_type='application/x-recordio-protobuf',split_type="RecordIO")
# Then wait until the transform job has completed
transformer.wait()
# Fetch validation result
s3_client.download_file(bucket, 'topic_model_batch_transform/output/batch_tansform_part0.pbr.out', 'batch_tansform-result')
with open('batch_tansform-result') as f:
results = f.readlines()
print("Sample transform result: {}".format(results[0]))
我已将输入文件分成 10 个文件,每个文件大小约为 19MB.我首先尝试在单个块上运行,因此总共 19MB.我尝试过改变策略,尝试 SingleRecord.我也尝试过不同的 split_types,也尝试过 None 和Line".
I have chunked by input file into 10 files each around 19MB in size. I am attempting at first to run on a single chunk, therefore 19MB in total. I have tried changing strategy, trying SingleRecord. I have also tried different split_types, also trying None and "Line".
我已经阅读了文档,但不清楚我还应该尝试什么,错误消息也很不清楚.
I've read the documentation but its not clear what else I should try, also the error messages are very unclear.
2019-04-02T15:49:47.617:[sagemaker logs]: MaxConcurrentTransforms=1, MaxPayloadInMB=20, BatchStrategy=MULTI_RECORD
#011at java.lang.Thread.run(Thread.java:748)2019-04-02T15:49:48.035:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: Bad HTTP status returned from invoke: 413
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr:
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: Message:
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: <title>413 Request Entity Too Large</title>
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: <h1>Request Entity Too Large</h1>
2019-04-02T15:49:48.036:[sagemaker logs]: du-sagemaker/data/batch_transform/batch_tansform_part0.pbr: <p>The data value transmitted exceeds the capacity limit.</p>
以上是我用上面的配置得到的最后一个,在此之前我也得到了一个400的HTTP错误代码.
The above is the last one I got with the above configuration, before that I was also getting a 400 HTTP error code.
任何帮助或指示将不胜感激!谢谢
Any help or pointers would be greatly appreciated! Thank you
推荐答案
我设法解决了这个问题,我使用的 maxpayload 似乎太高了.我设置了 MaxPayloadInMB=1
,现在它像梦一样运行
I managed to resolve the issue, it seemed the maxpayload I was using was too high. I set MaxPayloadInMB=1
and it now runs like a dream
这篇关于使用 LDA 模型运行 Sagemaker Batch Transformation 时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!