如何使用s3中的预训练模型来预测一些数据? [英] How to use a pretrained model from s3 to predict some data?

查看:151
本文介绍了如何使用s3中的预训练模型来预测一些数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用sagemaker训练了语义分割模型,并且输出已保存到s3存储桶中.我想从s3加载此模型以预测sagemaker中的某些图像.

I have trained a semantic segmentation model using the sagemaker and the out has been saved to a s3 bucket. I want to load this model from the s3 to predict some images in sagemaker.

我知道如何预测训练后是否让笔记本实例继续运行,因为这只是一个简单的部署,但是如果我想使用较旧的模型并不能真正起到帮助作用.

I know how to predict if I leave the notebook instance running after the training as its just an easy deploy but doesn't really help if I want to use an older model.

我已经查看了这些来源,并自己提出了一些建议,但是它没有用,因此我在这里:

I have looked at these sources and been able to come up with something myself but it doesn't work hence me being here:

https://course.fast.ai/deployment_amzn_sagemaker.html#deploy -向智者 https://aws.amazon .com/getting-started/tutorials/build-train-deploy-machine-learning-model-sagemaker/

https://sagemaker.readthedocs.io/en/stable/pipeline.html

https://github.com./awslabs/amazon-sagemaker-examples/blob/master/advanced_functionality/inference_pipeline_sparkml_xgboost_abalone/inference_pipeline_sparkml_xgboost_abalone.ipynb

我的代码是这样的:

from sagemaker.pipeline import PipelineModel
from sagemaker.model import Model

s3_model_bucket = 'bucket'
s3_model_key_prefix = 'prefix'
data = 's3://{}/{}/{}'.format(s3_model_bucket, s3_model_key_prefix, 'model.tar.gz')
models = ss_model.create_model() # ss_model is my sagemaker.estimator

model = PipelineModel(name=data, role=role, models= [models])
ss_predictor = model.deploy(initial_instance_count=1, instance_type='ml.c4.xlarge')

推荐答案

您实际上可以从现有工件实例化Python SDK model对象,并将其部署到端点.这使您可以从受过训练的工件中部署模型,而不必在笔记本中进行重新训练.例如,对于语义分割模型:

You can actually instantiate a Python SDK model object from existing artifacts, and deploy it to an endpoint. This allows you to deploy a model from trained artifacts, without having to retrain in the notebook. For example, for the semantic segmentation model:

trainedmodel = sagemaker.model.Model(
    model_data='s3://...model path here../model.tar.gz',
    image='685385470294.dkr.ecr.eu-west-1.amazonaws.com/semantic-segmentation:latest',  # example path for the semantic segmentation in eu-west-1
    role=role)  # your role here; could be different name

trainedmodel.deploy(initial_instance_count=1, instance_type='ml.c4.xlarge')

类似地,您可以使用以下命令从任何支持SDK的经过身份验证的客户端实例化已部署终结点上的预测变量对象:

And similarly, you can instantiate a predictor object on a deployed endpoint from any authenticated client supporting the SDK, with the following command:

predictor = sagemaker.predictor.RealTimePredictor(
    endpoint='endpoint name here',
    content_type='image/jpeg',
    accept='image/png')

有关这些抽象的更多信息:

More on those abstractions:

  • Model: https://sagemaker.readthedocs.io/en/stable/model.html
  • Predictor: https://sagemaker.readthedocs.io/en/stable/predictors.html

这篇关于如何使用s3中的预训练模型来预测一些数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆