I am following the sage maker documentation to train and deploy an ML model. I am using the high-level Python library provided by Amazon SageMaker to achieve this.
kmeans_predictor = kmeans.deploy(initial_instance_count=1,
instance_type='ml.m4.xlarge')
The deployment fails with error
ResourceLimitExceeded: An error occurred (ResourceLimitExceeded) when calling the CreateEndpoint operation: The account-level service limit 'ml.c4.8xlarge for endpoint usage' is 0 Instances, with current utilization of 0 Instances and a request delta of 1 Instances.
Where am I going wrong?
