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
Link to the notebook
In the code below I am clearly passing a different instance type where I want to deploy my trained moedl
finetuned_predictor = estimator.deploy(
instance_type='ml.g5.48xlarge', #NOTE: It is ingorring the instance I pass here and always deploying with ml.p4d.24xlarge which by the way is the most expensive possible
tags=deployment_endpoint_tags,
endpoint_name=desired_endpoint_name
)
Describe the bug
You are forcing Jumpstart to use ml.p4d.24xlarge even when instance_type is specified. It is happening under JumpstartEstimator class in the deploy method when ``get_deploy_kwargs` is passed. I needed to do this to fix.
To reproduce
Just train or load a model that is in jumpstart (in my case it was a llama3 70B one) and try to deploy it.
You probably have this check because it is a big mode, but other machines are also able to deploy this model. But if the user is passing a different instance_type you should at least let them try and if a future error happens it is because the machine did not supported that model.
Logs
If applicable, add logs to help explain your problem.
ResourceLimitExceeded: An error occurred (ResourceLimitExceeded) when calling the CreateEndpoint operation: The account-level service limit 'ml.p4d.24xlarge for endpoint usage' is 2 Instances, with current utilization of 2 Instances and a request delta of 1 Instances. Please use AWS Service Quotas to request an increase for this quota. If AWS Service Quotas is not available, contact AWS support to request an increase for this quota.
But as showed in my code, I wanna deploy ml.g5.48xlarge
I am not authtorized to share the notebook here publicly, please reach out for that.
The text was updated successfully, but these errors were encountered:
Link to the notebook
In the code below I am clearly passing a different instance type where I want to deploy my trained moedl
Describe the bug
You are forcing Jumpstart to use ml.p4d.24xlarge even when instance_type is specified. It is happening under
JumpstartEstimator
class in thedeploy
method when ``get_deploy_kwargs` is passed. I needed to do this to fix.To reproduce
Just train or load a model that is in jumpstart (in my case it was a llama3 70B one) and try to deploy it.
You probably have this check because it is a big mode, but other machines are also able to deploy this model. But if the user is passing a different
instance_type
you should at least let them try and if a future error happens it is because the machine did not supported that model.Logs
If applicable, add logs to help explain your problem.
ResourceLimitExceeded: An error occurred (ResourceLimitExceeded) when calling the CreateEndpoint operation: The account-level service limit 'ml.p4d.24xlarge for endpoint usage' is 2 Instances, with current utilization of 2 Instances and a request delta of 1 Instances. Please use AWS Service Quotas to request an increase for this quota. If AWS Service Quotas is not available, contact AWS support to request an increase for this quota.
But as showed in my code, I wanna deploy
ml.g5.48xlarge
I am not authtorized to share the notebook here publicly, please reach out for that.
The text was updated successfully, but these errors were encountered: