Saltar al contenido

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.

preguntada hace 2 años62 visualizaciones
1 Respuesta
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

respondido hace 10 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.