The below documentation provides an example configuration and model adapter for a custom connection to a model hosted in Amazon SageMaker.
For a step-by-step guide, refer to the documentation on how to create a model adapter and how to create a connection to an externally hosted model.
First, publish and tag a model adapter using the model adapter library in the Code Repositories application. The below model adapter configures a connection to a model hosted in Amazon SageMaker using the AWS SDK for Python (Boto3) ↗ and framework. The below code was tested with versions Python 3.8.17
, boto3 1.28.1
and pandas 1.5.3
.
Note that this model adapter makes the following assumptions:
region_name
- Provided as connection configurationendpoint_name
- Provided as connection configurationaccess_key_id
- Provided as credentialssecret_access_key
- Provided as credentialsCopied!1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
import palantir_models as pm import models_api.models_api_executable as executable_api import boto3 import json import pandas as pd import logging from typing import Optional from botocore.exceptions import ClientError logger = logging.getLogger(__name__) class SageMakerTabularAdapter(pm.ExternalModelAdapter): """ :display-name: SageMaker Tabular Model Adapter :description: Default model adapter for SageMaker models that expect tabular input and output tabular data. """ def __init__(self, region_name, endpoint_name, access_key_id, secret_access_key): self.endpoint_name = endpoint_name self.runtime = boto3.client( 'runtime.sagemaker', aws_access_key_id=access_key_id, aws_secret_access_key=secret_access_key, region_name=region_name ) @classmethod def init_external(cls, external_context) -> "pm.ExternalModelAdapter": region_name = external_context.connection_config["region_name"] endpoint_name = external_context.connection_config["endpoint_name"] access_key_id = external_context.resolved_credentials["access_key_id"] secret_access_key = external_context.resolved_credentials["secret_access_key"] return cls( region_name, endpoint_name, access_key_id, secret_access_key ) @classmethod def api(cls): inputs = {"df_in": pm.Pandas()} outputs = {"df_out": pm.Pandas()} return inputs, outputs def predict(self, df_in): payload = { "instances": df_in.apply(lambda row: {"features": row.tolist()}, axis=1).tolist() } try: response = self.runtime.invoke_endpoint( EndpointName=self.endpoint_name, ContentType="application/json", Body=json.dumps(payload) ) except ClientError as error: logger.error("SageMaker inference call failed. This can indicate an error with this Model's egress " "policy. Double check your configured egress policy and ensure the remote endpoint is still " "available.") raise error try: # Output from model is assumed to be json serializable # if result is too large for executor this deserialization may cause an OOM result = json.loads(response['Body'].read().decode()) except ValueError as error: logger.error("This SageMakerTabularAdapter expects results to be json serializable.") raise error return pd.json_normalize(result)
Next, configure an externally hosted model to use this model adapter and provide the required configuration and credentials as expected by the model adapter. In this example, the model is assumed to be hosted in us-east-1
, but this is configurable.
Note that the URL is not required by the above SageMakerTabularAdapter
and so is left blank; however, the configuration and credentials maps are completed using the same keys as defined in the Model Adapter.
The below uses an egress policy that has been configured for runtime.sagemaker.us-east-1.amazonaws.com
(Port 443).
Choose the published model adapter in the Connect an externally hosted model dialog.
Define connection configurations as required by the example Amazon SageMaker tabular model adapter.
This adapter requires connection configuration of:
Define credential configurations as required by the example Amazon SageMaker tabular model adapter.
This adapter requires credential configuration of:
Now that the Amazon SageMaker model has been configured, this model can be hosted in a live deployment or Python transform.
The below image shows an example query made to the Amazon SageMaker model in a live deployment.