Skip to content

Commit

Permalink
fix: updated model name for PII detection feature
Browse files Browse the repository at this point in the history
  • Loading branch information
yanbasic committed Oct 18, 2023
1 parent 575e098 commit af5a54f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/containers/lambda-containers-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export class LambdaContainersStack extends Stack {
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);

const ImagePIIDetection = new DockerImageFunction(
const DocumentPIIDetection = new DockerImageFunction(
this,
'photo-pii-detection-sagemaker',
'document-pii-detection-sagemaker',
{
functionName: 'photo-pii-detection-sagemaker',
functionName: 'document-pii-detection-sagemaker',
code: DockerImageCode.fromImageAsset('src/containers/image-pii-detection',
{
file: 'Dockerfile.sagemaker',
Expand Down

0 comments on commit af5a54f

Please sign in to comment.