I am Able to train my model
Below is the code
from sagemaker.estimator import Estimator
estimator_new = Estimator(image_name=ecrimage,
role=role,
train_instance_count=1,
train_instance_type='ml.c4.xlarge',
output_path="s3://my-bucket/testing",
sagemaker_session = sagemaker_session)
Model Fitting
estimator_new.fit()
But when i am trying to deploy model getting this below error
Deploy code is:
Multiple_linear_regressor_tens=estimator_new.deploy(initial_instance_count=1,
instance_type='ml.m4.xlarge')
Error message is
ClientError: An error occurred (ValidationException) when calling the CreateModel operation: Could not find model data at s3://my-bucket/testing/model/output/model.tar.gz.
Please help me to resolve this issue
If you are encountering this error in script mode, your
.py
entrypoint needs to have amodel_fn(..)
that returns the saved model. See an example here: script mode xgboost example.