File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
terraform/modules/aws-sagemaker-hf-pytorch-inference-model-deployment Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,6 @@ resource "aws_sagemaker_endpoint_configuration" "model_endpoint_configuration" {
106
106
107
107
resource "aws_sagemaker_endpoint" "model_endpoint" {
108
108
endpoint_config_name = aws_sagemaker_endpoint_configuration. model_endpoint_configuration . name
109
- name = " sagemaker- ${ var . model_name } -endpoint"
109
+ name = " ${ var . model_name } -endpoint"
110
110
}
111
111
Original file line number Diff line number Diff line change 3
3
import boto3
4
4
5
5
AWS_REGION = "us-east-1"
6
- ENDPOINT_NAME = "dev-sagemaker- multilingual-sentiment-analysis-endpoint"
6
+ ENDPOINT_NAME = "dev-multilingual-sentiment-analysis-endpoint"
7
7
8
8
sagemaker_runtime = boto3 .client ("sagemaker-runtime" , region_name = AWS_REGION )
9
9
You can’t perform that action at this time.
0 commit comments