You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that whenever I run a new batch transform jobs, it will create a new model and saves it.
I can see all the models from my batch transform jobs in my AWS Sagemaker Dashboard/inference/models
I've looked into the source code for declaration of class MXNetModel
classMXNetModel(FrameworkModel):
"""An MXNet SageMaker ``Model`` that can be deployed to a SageMaker ``Endpoint``."""__framework_name__="mxnet"_LOWEST_MMS_VERSION="1.4"def__init__(
self,
model_data,
role,
entry_point,
image=None,
py_version="py2",
framework_version=MXNET_VERSION,
predictor_cls=MXNetPredictor,
model_server_workers=None,
**kwargs
):
...
But I am not seeing anywhere where I can simply load the MXNetModel object using a URL Endpoint to the models in my dashboard.
If I go to console and click one of those models, I can see a button for Create batch transform job, so I know internally this is possible. But I can't find anything on the docs to do it programmatically.
Also as a side question:
How many models does the Free tier provide? In the free tier page: https://aws.amazon.com/sagemaker/#/ it just says the number of hours, but not necessarily the number of models
The text was updated successfully, but these errors were encountered:
As of now, the Python SDK doesn't have the ability to reference a defined model in the SageMaker platform. I have added an item in the backlog (MLFW-2709), as I believe implementing this ability in conjunction with the existing Model class will take some time.
Also as a side question:
How many models does the Free tier provide? In the free tier page: https://aws.amazon.com/sagemaker/#/ it just says the number of hours, but not necessarily the number of models
Let me reach out to the corresponding team and get back to you on that.
Also as a side question:
How many models does the Free tier provide? In the free tier page: https://aws.amazon.com/sagemaker/#/ it just says the number of hours, but not necessarily the number of models
The free tier limit for model deployment is 125 hours of m4.xlarge or m5.xlarge for real-time inference and batch transform, and this usage can be for a single model or aggregated across multiple models.
I notice that whenever I run a new batch transform jobs, it will create a new model and saves it.
I can see all the models from my batch transform jobs in my AWS Sagemaker Dashboard/inference/models
Here is the script that I run
I've looked into the source code for declaration of class MXNetModel
But I am not seeing anywhere where I can simply load the MXNetModel object using a URL Endpoint to the models in my dashboard.
If I go to console and click one of those models, I can see a button for Create batch transform job, so I know internally this is possible. But I can't find anything on the docs to do it programmatically.
Also as a side question:
How many models does the Free tier provide? In the free tier page: https://aws.amazon.com/sagemaker/#/ it just says the number of hours, but not necessarily the number of models
The text was updated successfully, but these errors were encountered: