During model training on Amazon SageMaker, the training job fails with a 'ResourceLimitExceeded' error. What is the most likely cause?
ResourceLimitExceeded indicates the account has exceeded the allowed number of instances for that instance type.
Why this answer
The ResourceLimitExceeded error typically indicates that the AWS account has reached its service limit for the specified instance type. A syntax error would cause a different error (e.g., ClientError). A dataset too large might cause an out-of-memory error but not this specific error.
Learning rate does not cause resource limits.