跳至内容

Sagemaker - Unable to prepare the model analysis report

0

I am attempting to build a model in sagemaker. I keep getting a failure message:

Unable to prepare the model analysis report Canvas can't prepare a post-build model analysis report because of an issue with the Canvas server. Contact your administrator and share the details below to resolve the issue.

If you're an administrator or an individual user, contact AWS support and provide the following code: <bd5ec7a8-e4bd-4720-9639-279ec17b764b> to resolve the issue.

已提问 2 年前62 查看次数
1 回答
0
version: 1
applications:
  - frontend:
      phases:
        preBuild:
          commands:
            - npm install
        build:
          commands:
            - npm run build
            # Rename the dist folder to the add-in name, e.g., "my-addin"
            - mv dist my-addin
            # Zip the renamed folder
            - zip -r my-addin.zip my-addin
            # (Optional) Move the zipped file to a specific directory if needed
            - mv my-addin.zip ../
      artifacts:
        # Define the files to be uploaded/deployed
        # For the Angular site, you might have:
        baseDirectory: dist
        files:
          - '**/*'
        # For the add-in, you might want to specify the zipped file
        # You can define multiple artifacts if necessary
        # Uncomment the following lines if you want to include the add-in zip
        # baseDirectory: .
        # files:
        #   - 'my-addin.zip'
      cache:
        paths:
          - node_modules/**/*

# You can define multiple applications if needed

已回答 10 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。