I am using AWS Sagemaker to perform image classification. My understanding is that Sagemaker would use MXNet for image classification by default.(based on the answer Sagemaker multi-model endpoints with unsupported built-in algorithms)
Would someone clarify what difference there is between the following two cases?
Case 1
algorithm_image=image_uris.retrieve(
region=boto3.Session().region_name,
framework="image-classification"
)
Case 2
algorithm_image=image_uris.retrieve(
region=boto3.Session().region_name,
framework="mxnet"
)
Thanks in advance.