Passer au contenu

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.

demandé il y a 2 ans62 vues
1 réponse
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

répondu il y a 10 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.