Skip to content

Commit

Permalink
feat: add layout analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
yanbasic committed Mar 5, 2024
1 parent 6083b60 commit dd592a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/containers/lambda-containers-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ export class LambdaContainersStack extends Stack {
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);

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

0 comments on commit dd592a4

Please sign in to comment.