スキップしてコンテンツを表示

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

回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

関連するコンテンツ