Salta al contenuto

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.

1 Risposta
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

con risposta 10 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.